/** Shopify CDN: Minification failed

Line 2351:0 Unexpected "}"
Line 3281:1 Expected "}" to go with "{"

**/
:root {
  --primary: #b6aaff;
  --lavender: #e6e6fa;
  --sky: #cbe7ff;
  --white: #ffffff;
  --gray: #f7f7fa;
  --radius: 18px;
  --shadow: 0 4px 24px rgba(180,170,255,0.10);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: var(--gray);
  color: #333;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.header,
.footer {
  background: white;
  box-shadow: var(--shadow);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
}

.logo {
  font-size: 28px;
  font-weight: bold;
  text-decoration: none;
  color: var(--primary);
}

/* =========================
   HOMEPAGE HERO BANNER
========================= */


/* MOBILE */

@media screen and (max-width: 990px) {

  .homepage-hero-wrapper {

    flex-direction: column;
    text-align: center;
  }

  .homepage-hero-content h1 {

    font-size: 58px;
  }

  .homepage-hero-content h2 {
    font-size: 42px;
  }

  .homepage-hero-content p {
    font-size: 18px;
  }

  .homepage-hero-buttons {
    justify-content: center;
  }

  .homepage-hero-features {
    grid-template-columns: 1fr 1fr;
  }

}

@media screen and (max-width: 640px) {

  .homepage-hero-features {

    grid-template-columns: 1fr;
  }

}

/* MOBILE MENU */

.mobile-menu-toggle {

  display: none;
}

/* MOBILE ONLY */

@media screen and (max-width: 991px) {

  .mobile-menu-toggle {

    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: none;
    background: #fff;
    border-radius: 12px;
    font-size: 26px;
    color: #1d2b6b;
    cursor: pointer;
    z-index: 100001;
  }

  /* MOBILE NAV */

  .main-nav {

    position: fixed !important;
    top: 0 !important;
    right: -100% !important;
    width: 280px !important;
    height: 100vh !important;
    background: #ffffff !important;
    padding: 100px 30px 30px !important;
    transition: .35s ease !important;
    z-index: 99999 !important;
    overflow-y: auto !important;
    display: block !important;
  }

  /* ACTIVE */

  .main-nav.active {

    right: 0 !important;
  }

  /* MENU */

  .main-menu {

    display: flex !important;
    flex-direction: column !important;
    gap: 18px !important;
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
  }

  .main-menu li {

    width: 100%;
  }

  .main-menu li a {

    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #1d2b6b;
    text-decoration: none;
  }

  /* DROPDOWN */

  .dropdown-menu {

    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
    background: transparent !important;
    padding-left: 14px !important;
    margin-top: 10px !important;
    display: block !important;
  }

}
/* =========================
   HERO BANNER
========================= */

.hero-banner {
  padding: 20px 0;
}

/* MAIN WRAPPER */

.hero-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 40px;
  background: #f5f1ff;
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

@media screen and (max-width: 991px) {

  .hero-wrapper{
    grid-template-columns:1fr;
  }

}
/* =========================
   LEFT CONTENT
========================= */

.hero-content {

  position: relative;
  z-index: 5;

  max-width: 620px;
}

/* TITLE */

.hero-content h1 {

  font-size: 82px;
  line-height: .95;
  margin: 0 0 18px;
  color: #1d2860;
  font-weight: 800;
  letter-spacing: -2px;
}

/* SUBTITLE */

.hero-content h2 {

  font-size: 58px;
  margin: 0 0 28px;
  color: #ff6da9;
  font-style: italic;
  font-weight: 700;
}

/* DESCRIPTION */

.hero-content p {

  font-size: 22px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 38px;
}

/* =========================
   BUTTONS
========================= */

.hero-buttons {

  display: flex;
  align-items: center;
  gap: 18px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 34px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 17px;
  font-weight: 700;

  transition: .25s ease;
}

/* PRIMARY */

.primary-btn {

  background: linear-gradient(
    90deg,
    #ff67b1,
    #ff85c2
  );

  color: white;
  box-shadow:
    0 12px 25px rgba(255,103,177,.25);
}

/* SECONDARY */

.secondary-btn {

  background: white;
  border: 2px solid #eadfff;
  color: #6b52d9;
}

/* HOVER */

.hero-btn:hover {
  transform: translateY(-3px);
}

/* =========================
   FEATURES
========================= */

/* BEST SELLER FEATURES */
.best-seller-image-side img {

  width: 100%;
  max-width: 600px;
  max-height: 380px;
  height: auto;
  display: block;
  object-fit: contain;
}
.best-seller-wrapper {

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 0;
  padding-bottom: 0;
}

.hero-features {

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 0px;
  padding-top: 0;
  position: relative;
  width: 100%;
}

/* FEATURE ITEM */

.feature-item {

  background: #fff;
  border-radius: 24px;
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* ICON */

.feature-icon {

  font-size: 28px;
}

/* TEXT */

.feature-text {

  display: flex;
  flex-direction: column;
}

.feature-text strong {

  color: #1d2b6b;
  font-size: 16px;
}

.feature-text span {

  font-size: 14px;
  color: #666;
}

/* =========================
   MOBILE
========================= */

@media(max-width:1100px){

  .hero-wrapper {
    grid-template-columns: 1fr;
    padding:
      60px
      35px
      140px;

    text-align: center;
  }

  .hero-content {

    max-width: 100%;
  }

  .hero-content h1 {
    font-size: 56px;
  }

  .hero-content h2 {
    font-size: 40px;
  }

  .hero-content p {
    font-size: 18px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-features {

    width: calc(100% - 40px);
    grid-template-columns: 1fr 1fr;
  }

}

@media(max-width:768px){
  .hero-wrapper {
    min-height: auto;
    padding:
      50px
      25px
      120px;
  }

 .hero-content h1 {
  font-size: 74px;
  line-height: .95;
  margin: 0 0 14px;
  color: #1d2860;
  font-weight: 800;
  letter-spacing: -2px;
}

.hero-content h2 {
  font-size: 52px;
  margin: 0 0 24px;
  color: #ff6da9;
  font-style: italic;
  font-weight: 700;
}

  .hero-content p {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-btn {
    width: 100%;
  }

  .hero-features {
    position: relative;
    width: 100%;
    left: auto;
    bottom: auto;
    transform: none;
    margin-top: 40px;
    grid-template-columns: 1fr;
  }

}
/* DOWNLOAD BADGE */

.download-badge {
  position: absolute;
  bottom: 60px;
  right: 20px;
  width: 150px;
  height: 150px;
  border-radius: 999px;
  background: #8d63ff;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.4;

  box-shadow:
    0 15px 30px rgba(141,99,255,.35);

  z-index: 5;
}

/* FEATURES */

.hero-features {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
  margin-top: 28px;
  padding: 0 20px;
}

/* FEATURE ITEM */

.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: white;
  border-radius: 18px;
  padding: 18px 20px;
  box-shadow:
    0 8px 24px rgba(0,0,0,.05);

  font-size: 28px;
}

.feature-item strong {
  display: block;
  font-size: 15px;
  margin-bottom: 3px;
}

.feature-item span {
  font-size: 13px;
  color: #666;
}

/* MOBILE */

@media(max-width: 1100px){

  .hero-wrapper {
    grid-template-columns: 1fr;
    padding: 50px 30px;
    min-height: auto;
  }

  .hero-content h1 {
    font-size: 48px;
  }

  .hero-content h2 {
    font-size: 36px;
  }

  .hero-images {
    min-height: 500px;
    margin-top: 40px;
  }

  .hero-features {
    grid-template-columns: 1fr 1fr;
  }

}

@media(max-width: 768px){

  .hero-features {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

}

/* =========================
   TOP BAR
========================= */

.top-bar {
  background: #bfd7f3;
  padding: 7px 0;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  color: #3f4e6f;
  letter-spacing: .3px;
}

/* =========================
   HEADER
========================= */

.header {
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 9999;
  border-bottom: 1px solid #efefef;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 88px;
}

/* =========================
   LOGO
========================= */

.logo img {
  height: 72px;
  width: auto;
  display: block;
}

/* =========================
   NAVIGATION
========================= */

.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.main-nav > ul {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav li {
  position: relative;
}

.main-nav a {
  text-decoration: none;
  color: #333;
  font-size: 12px;
  font-weight: 600;
  transition: .2s ease;
  white-space: nowrap;
}

.main-nav a:hover {
  color: #8e63ff;
}

/* =========================
   DROPDOWN
========================= */

.dropdown-parent {
  position: relative;
}

/* BUTTON */

.dropdown-toggle,
.dropdown-parent > a {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ARROW */

.dropdown-arrow {
  font-size: 10px;
  margin-top: 1px;
}

/* DROPDOWN MENU */

.dropdown-menu {

  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform:
    translateX(-50%)
    translateY(10px);

  width: 320px;
  background: #ffffff;
  padding: 14px;
  border-radius: 22px;
  border: 1px solid #ececec;

  box-shadow:
    0 18px 40px rgba(0,0,0,.08),
    0 4px 14px rgba(0,0,0,.05);

  opacity: 0;
  visibility: hidden;
  transition: .25s ease;
  z-index: 9999;

  /* IMPORTANT FIX */
  display: flex !important;
  flex-direction: column !important;
  gap: 10px;
  list-style: none;
  margin: 0;
}

/* SHOW MENU */

.dropdown-parent:hover .dropdown-menu {

  opacity: 1;
  visibility: visible;

  transform:
    translateX(-50%)
    translateY(0);
}

/* MENU ITEM */

.dropdown-menu li {

  width: 100%;
  display: block !important;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* LINKS */

.dropdown-menu a {

  display: flex !important;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 15px 18px;
  border-radius: 16px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: #2f2f2f;

  transition:
    background .22s ease,
    color .22s ease,
    transform .22s ease;

  white-space: nowrap;
}

/* ICON */

.dropdown-menu a span:first-child {

  width: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

/* HOVER */

.dropdown-menu a:hover {

  background:
    linear-gradient(
      135deg,
      #7c4dff,
      #a56eff
    );

  color: white;
  transform: translateX(4px);
}

/* FIX OVERFLOW */

.header,
.header-inner,
.main-nav,
.main-nav > ul,
.dropdown-parent {

  overflow: visible !important;
}
/* =========================
   HEADER ICONS
========================= */

.header-icons {
  display: flex;
  align-items: center;
  gap: 14px;
}

.icon-btn {
  position: relative;
  text-decoration: none;
  font-size: 17px;
  color: #333;
  transition: .2s ease;
}

.icon-btn:hover {
  transform: translateY(-2px);
}

/* CART */

.cart-icon {
  position: relative;
}

.cart-count {
  position: absolute;
  top: -7px;
  right: -9px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #ff77b7;
  color: white;

  font-size: 10px;
  font-weight: bold;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* =========================
   MOBILE
========================= */

@media(max-width: 1200px){

  .main-nav {
    display: none;
  }

  .header-inner {
    min-height: 76px;
  }

  .logo img {
    height: 58px;
  }

}
/* =========================
   DIGITAL COLLECTIONS
========================= */

.digital-collections {
  padding: 45px 0 60px;
}

/* HEADING */

.section-heading {

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 30px;
  text-align: center;
}

.section-heading h2 {

  font-size: 34px;
  font-weight: 800;
  color: #1d2860;
  margin: 0;
}

.sparkle {
  color: #d8b4ff;
  font-size: 16px;
}

/* GRID */

/* COLLECTION SLIDER */

.collection-grid {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
  scrollbar-width: none;
}

/* HIDE SCROLLBAR */

.collection-grid::-webkit-scrollbar {
  display: none;
}

/* CARD */

.collection-card {

  width: 280px;
  min-width: 280px;
  flex-shrink: 0;
  display: block;
  text-decoration: none;
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  transition: .25s ease;
  box-shadow:
    0 8px 24px rgba(0,0,0,.05);
}

/* IMAGE */

.collection-card img {

  width: 100%;
  height: 320px;
  object-fit: contain;
  background: #f8f6ff;
  padding: 10px;
  display: block;

}

/* DESKTOP FIX */

.collection-grid {

  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 10px 5px 20px;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.collection-grid::-webkit-scrollbar {
  display: none;
}
/* MOBILE */

@media(max-width:1100px){

  .collection-card {
    min-width: calc(50% - 12px);
  }

}

@media(max-width:768px){

  .collection-card {
    min-width: 85%;
  }

}
/* SLIDER BUTTONS */

.collection-slider-controls {

  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-bottom: 20px;
}

.slider-btn {

  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: none;
  background: white;
  box-shadow:
    0 6px 18px rgba(0,0,0,.08);

  cursor: pointer;
  font-size: 18px;
  transition: .25s ease;
}

.slider-btn:hover {

  background: #8d63ff;
  color: white;
  transform: translateY(-2px);
}

/* CONTENT */

.collection-content {

  padding: 20px;
}

.collection-content h3 {

  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 700;
  color: #1d2860;
}

.collection-content p {

  margin: 0;
  font-size: 14px;
  line-height: 1.6;

  color: #666;
}

/* BUTTON */

.collection-button {

  text-align: center;
  margin-top: 40px;
}

.view-all-btn {

  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  background: white;
  border: 2px solid #f1d4ff;
  color: #7c4dff;
  text-decoration: none;
  font-weight: 700;
  transition: .25s ease;
}

.view-all-btn:hover {

  background:
    linear-gradient(
      135deg,
      #7c4dff,
      #b276ff
    );

  color: white;

  transform: translateY(-3px);
}

/* MOBILE */

@media(max-width:768px){

  .section-heading h2 {
    font-size: 26px;
  }

  .collection-card img {
    height: 180px;
  }

}
/* =========================
   FOOTER
========================= */

.footer {
  background: #ffffff;
  margin-top: 12px;
  border-top: 1px solid #ececec;
}

/* TOP */

.footer-top {
  display: grid;
  grid-template-columns:
    1.3fr
    1fr
    1fr
    1.2fr
    .9fr;

  gap: 40px;
  padding: 30px 0;
}

/* LOGO */

.footer-logo {
  width: 150px;
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  max-width: 240px;
}

/* TITLES */

.footer-column h4 {
  font-size: 18px;
  margin-bottom: 18px;
  color: #232323;
}

/* LINKS */

.footer-column ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-column li {
  margin-bottom: 10px;
}

.footer-column a {
  text-decoration: none;
  color: #444;
  font-size: 14px;
  transition: .2s ease;
}

.footer-column a:hover {
  color: #8d63ff;
}

/* SOCIALS */

.footer-socials,
.footer-social-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
}

.footer-socials a,
.footer-social-row a {
  text-decoration: none;
  font-size: 18px;
  transition: .2s ease;
}

.footer-socials a:hover,
.footer-social-row a:hover {
  transform: translateY(-2px);
}

/* NEWSLETTER */

.newsletter-text {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 16px;
}

.newsletter-form {
  position: relative;
}

.newsletter-form input {
  width: 100%;
  height: 48px;
  border-radius: 14px;
  border: 1px solid #ddd;
  padding: 0 55px 0 18px;
  font-size: 14px;
  outline: none;
}

.newsletter-form button {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 10px;
  background: #d9d2ff;
  cursor: pointer;
}

/* PAYMENTS */

.payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.payment-box {
  min-width: 78px;
  height: 42px;
  border: 1px solid #ececec;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  font-size: 13px;
  font-weight: 700;
}

/* BOTTOM BAR */

.footer-bottom {
  background: #d9c0ff;
  padding: 12px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-bottom p {
  margin: 0;
  font-size: 13px;
  color: #333;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: #333;
}

.footer-heart {
  font-size: 18px;
}

/* MOBILE */

@media(max-width: 1100px){

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

}

@media(max-width: 768px){

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

}

/* =========================
   FOOTER NEWSLETTER
========================= */

.footer-newsletter {
  padding: 0 0 0px;
}

/* WRAPPER */

.newsletter-wrapper {

  background:
    linear-gradient(
      90deg,
      #d9ebff,
      #f3e7ff
    );

  border-radius: 24px;
  padding:
    24px
    30px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  box-shadow:
    0 10px 30px rgba(0,0,0,.05);
}

/* LEFT */

.newsletter-left {

  display: flex;
  align-items: center;
  gap: 18px;
}

/* ICON */

.newsletter-icon {

  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow:
    0 8px 20px rgba(0,0,0,.05);
}

/* TEXT */

.newsletter-texts h3 {

  margin: 0 0 6px;
  font-size: 24px;
  font-weight: 800;
  color: #1d2860;
}

.newsletter-texts p {

  margin: 0;
  font-size: 14px;
  color: #555;
}

/* FORM */

.footer-newsletter .newsletter-form {

  display: flex;
  align-items: center;
  gap: 0;
  max-width: 460px;
  width: 100%;
}

/* FORM */

.footer-newsletter .newsletter-form {

  display: flex;
  align-items: center;
  width: 100%;
  max-width: 430px;
  background: white;
  border-radius: 999px;
  overflow: hidden;
  box-shadow:
    0 6px 18px rgba(0,0,0,.05);
}

/* INPUT */

.footer-newsletter .newsletter-form input {

  flex: 1;
  height: 54px;
  border: none;
  padding: 0 20px;
  font-size: 14px;
  outline: none;
  background: transparent;
}

/* BUTTON */

.footer-newsletter .newsletter-form button {
  min-width: 120px;
  height: 54px;
  border: none;
  background:
    linear-gradient(
      135deg,
      #ff6eb7,
      #ff8cc8
    );

  color: white;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: .25s ease;
  flex-shrink: 0;
}

/* HOVER */

.footer-newsletter .newsletter-form button:hover {
  opacity: .92;
}
/* MOBILE */

@media(max-width: 900px){

  .newsletter-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .newsletter-left {
    flex-direction: column;
  }

  .footer-newsletter .newsletter-form {
    width: 100%;
  }

}

@media(max-width: 600px){

  .footer-newsletter .newsletter-form {
    flex-direction: column;
    gap: 12px;
  }

  .footer-newsletter .newsletter-form input {
    border-radius: 999px;
    width: 100%;
  }

  .footer-newsletter .newsletter-form button {
    width: 100%;
    border-radius: 999px;
  }

}

/* PAGE TEMPLATE */

.page-section {

  padding: 80px 20px;
}

.page-container {

  max-width: 900px;
  margin: 0 auto;
}

.page-title {

  font-size: 42px;
  color: #1d2b6b;
  margin-bottom: 30px;
  text-align: center;
}

.page-content {

  font-size: 17px;
  line-height: 1.9;
  color: #444;
}

.page-content h2,
.page-content h3 {

  color: #1d2b6b;
  margin-top: 35px;
}

.page-content ul {

  padding-left: 22px;
} 

/* BEST SELLER WRAPPER */

.best-seller-wrapper {

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: nowrap;
}

/* LEFT CONTENT */

.best-seller-content {

  flex: 1;
  max-width: 520px;
}

/* RIGHT IMAGE */

.best-seller-image-side {

  flex: 1;
  display: flex;
  justify-content: flex-end;
}

/* IMAGE */

.best-seller-image-side img {

  width: 100%;
  max-width: 650px;
  height: auto;
  display: block;
  object-fit: contain;
}

/* COLLECTION LAYOUT */

.collection-layout {
  padding: 20px 0 10px;
}

.collection-wrapper {

  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 0;
  padding-bottom: 0;
}

/* SIDEBAR */

.collection-sidebar {

  background: #fff;
  padding: 30px;
  border-radius: 24px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  height: fit-content;
}

.collection-sidebar h3 {

  font-size: 28px;
  margin-bottom: 25px;
  color: #1d2b6b;
}

.filter-group {

  margin-bottom: 30px;
}

.filter-group h4 {

  margin-bottom: 15px;
  color: #1d2b6b;
}

.filter-group label {

  display: block;
  margin-bottom: 10px;
  color: #555;
  font-size: 15px;
}

/* TOPBAR */

.collection-topbar {

  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.collection-topbar h2 {

  color: #1d2b6b;
  margin-bottom: 5px;
}

/* SORT */

.sort-dropdown {

  padding: 12px 18px;
  border-radius: 14px;
  border: 1px solid #ddd;
  background: #fff;
}

/* GRID */

/* PRODUCT GRID */

.product-grid {

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  width: 100%;
}

/* BUTTON */

.clear-btn {

  width: 100%;
  border: 2px solid #ff69b4;
  background: transparent;
  color: #ff69b4;
  padding: 14px;
  border-radius: 999px;
  cursor: pointer;
}

/* BOTTOM BANNER */

.bestseller-bottom-banner {

  max-width: 1200px;
  width: 100%;
  margin: 12px auto 8px;
  padding: 0 20px;
}

.bestseller-bottom-banner img {

  width: 100%;
  height: auto;
  display: block;
  border-radius: 28px;
  object-fit: cover;
}

/* =========================
   PRODUCT GRID
========================= */

.product-grid {

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* CARD */

.rs-product-card {

  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.rs-product-card:hover {

  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(0,0,0,0.08);
}

.rs-product-card a {

  text-decoration: none;
  display: block;
}

/* IMAGE */

.rs-product-image {

  background: #f8f5ff;
  padding: 20px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rs-product-image img {

  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* INFO */

.rs-product-info {

  padding: 20px;
}

/* VENDOR */

.rs-product-vendor {

  color: #ff69b4;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 10px;
}

/* TITLE */

.rs-product-info h3 {

  color: #1d2b6b;
  font-size: 22px;
  line-height: 1.3;
  margin-bottom: 14px;
  min-height: 58px;
}

/* PRICE */

.rs-product-price {

  color: #1d2b6b;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 18px;
}

/* BUTTON */

.rs-product-btn {

  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ff69b4;
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  transition: 0.3s ease;
}

.rs-product-card:hover .rs-product-btn {

  background: #ff4fa7;
}

/* MOBILE */

@media(max-width: 990px){

  .product-grid {

    grid-template-columns: 1fr 1fr;
  }

}

@media(max-width: 640px){

  .product-grid {

    grid-template-columns: 1fr;
  }

}

/* =========================
   SHOP PAGE
========================= */

.shop-layout {

  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  align-items: start;
  margin-top: 40px;
}

/* SIDEBAR */

.shop-sidebar {

  background: #fff;
  border-radius: 28px;
  padding: 28px;
  position: sticky;
  top: 120px;
  height: fit-content;
  box-shadow: 0 8px 24px rgba(0,0,0,.04);
}

.shop-sidebar h3 {

  font-size: 32px;
  color: #1d2b6b;
  margin-bottom: 24px;
}

/* GRID */

.product-grid {

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

/* CARD */

/* PRODUCT CARD */

.rs-shop-card {

  width: 100%;
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  border: 2px solid #f2ebff;
  transition: .3s ease;
  display: flex;
  flex-direction: column;
}

.rs-shop-card:hover {

  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(0,0,0,.08);
}

.rs-shop-card a {

  text-decoration: none;
  display: block;
}

/* BADGE */

.rs-badge {

  position: absolute;
  top: 12px;
  left: 12px;
  background: #ff69b4;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 8px 10px;
  border-radius: 10px;
  z-index: 5;
}

/* IMAGE */

/* PRODUCT IMAGE */

.rs-shop-image {

  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.rs-shop-image img {

  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* CONTENT */

.rs-shop-content {
  padding: 16px 18px 18px;
}

/* TITLE */

.rs-shop-content h3 {

  font-size: 16px;
  line-height: 1.45;
  color: #1d2b6b;
  margin-bottom: 10px;
  min-height: 44px;
}

/* PRICE */

.rs-price {

  font-size: 18px;
  font-weight: 800;
  color: #1d2b6b;
  margin-bottom: 12px;
}

/* BUTTON */

.rs-cart-btn {

  width: 100%;
  height: 42px;
  border-radius: 999px;
  border: 2px solid #d9c4ff;
  background: #fff;
  color: #6a4dff;
  font-weight: 700;
  cursor: pointer;
  transition: .3s ease;
  font-size: 13px;
}

.rs-cart-btn:hover {
  background: #ff69b4;
  border-color: #ff69b4;
  color: #fff;
}

/* MOBILE */

@media(max-width:1200px){

  .product-grid {

    grid-template-columns: repeat(3,1fr);
  }

}

@media(max-width:990px){

  .shop-layout {

    grid-template-columns: 1fr;
  }

  .product-grid {

    grid-template-columns: repeat(2,1fr);
  }

}

@media(max-width:640px){

  .product-grid {

    grid-template-columns: 1fr;
  }

}

/* SIDEBAR */

.shop-sidebar {

  background: #fff;
  border-radius: 28px;
  padding: 28px;
  position: sticky;
  top: 120px;
  height: fit-content;
  box-shadow: 0 8px 24px rgba(0,0,0,.04);
}

/* FILTER GROUP */

.shop-filter-group {

  margin-bottom: 34px;
}

/* FILTER TITLE */

.shop-filter-group h4 {

  font-size: 18px;
  color: #1d2b6b;
  margin-bottom: 18px;
}

/* LABELS */

.shop-filter-group label {

  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 16px;
  color: #555;
  cursor: pointer;
}

/* RADIO / CHECKBOX */

.shop-filter-group input[type="checkbox"],
.shop-filter-group input[type="radio"] {

  accent-color: #c084fc;
  width: 16px;
  height: 16px;
}

/* RANGE */

.price-range {

  width: 100%;
  accent-color: #c084fc;
  margin-bottom: 12px;
}

/* PRICE LABELS */

.price-labels {

  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #777;
}

/* CLEAR BUTTON */

.clear-filter-btn {

  width: 100%;
  height: 52px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(
    135deg,
    #ff69b4,
    #c084fc
  );

  color: #fff;

  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: .3s ease;
}

.clear-filter-btn:hover {

  transform: translateY(-2px);
  opacity: .9;
}

/* PAGINATION */

.shop-pagination {

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
  margin-bottom: 10px;
}

/* LINKS */

.shop-pagination a,
.shop-pagination span {

  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: .3s ease;
}

/* DEFAULT */

.shop-pagination a {

  background: #fff;
  color: #6a4dff;
  border: 2px solid #efe7ff;
}

/* HOVER */

.shop-pagination a:hover {

  background: #f6efff;
}

/* ACTIVE */

.shop-pagination .active {

  background: #8b5cf6;
  color: #fff;
  border-color: #8b5cf6;
}

/* DOTS */

.shop-pagination span {

  color: #999;
}

/* PRICE SLIDER */

.custom-price-slider {

  display: flex;
  flex-direction: column;
  gap: 14px;
}

.price-slider {

  width: 100%;
  accent-color: #c084fc;
  cursor: pointer;
}

/* PRICE LABELS */

.price-slider-labels {

  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #666;
}

/* RESET */

.reset-filters-btn {

  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 48px;
  margin-top: 10px;
  border-radius: 999px;
  background: #fff;
  border: 2px solid #f0e7ff;
  text-decoration: none;
  color: #6a4dff;
  font-weight: 700;
  transition: .3s ease;
}

.reset-filters-btn:hover {

  background: #f8f3ff;
}

.shop-layout {

  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 36px;
  align-items: start;
}

.shop-products {

  width: 100%;
  min-width: 0;
}

.product-grid {

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

/* STICKY FILTER */

.shop-sidebar {

  position: sticky;
  top: 120px;
  align-self: start;
  height: fit-content;
  z-index: 10;
}

/* RADIO */

.shop-filter-group input[type="radio"] {

  accent-color: #c084fc;
  width: 16px;
  height: 16px;
}

/* MOBILE MENU */

/* =========================
   MOBILE HEADER ONLY
========================= */

.mobile-menu-toggle {

  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 2px solid #efe7ff;
  background: #fff;
  color: #1d2b6b;
  font-size: 24px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

/* =========================
   MOBILE ONLY
========================= */

@media screen and (max-width: 991px) {

  .mobile-menu-toggle {

    display: flex;
  }

  .main-nav {

    position: fixed;
    top: 70px;
    right: -100%;
    width: 280px;
    height: calc(100vh - 85px);
    background: #fff;
    padding: 30px;
    transition: .35s ease;
    z-index: 99999;
    overflow-y: auto;
    box-shadow: -10px 0 30px rgba(0,0,0,.08);
  }

  .main-nav.active {

    right: 0;
  }

  .main-menu {

    flex-direction: column;
    gap: 18px;
  }

    /* MOBILE DROPDOWN */

.dropdown-menu {

  display: none !important;
  position: static !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  box-shadow: none !important;
  background: transparent !important;
  padding-left: 14px !important;
  margin-top: 12px !important;
  border: none !important;
}

/* ACTIVE */

.dropdown-parent.active .dropdown-menu {

  display: block !important;
}

}
  /* LOGO */

  .logo img {

    max-width: 130px;
  }

  /* ICONS */

  .header-icons {

    gap: 12px;
  }

}

/* =========================
   MOBILE DROPDOWN FIX
========================= */

@media screen and (max-width: 991px) {

  .dropdown-menu {

    display: block !important;
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
    background: transparent !important;
    border: none !important;
    padding-left: 12px !important;
    margin-top: 10px !important;
    width: 100% !important;
  }

  .dropdown-parent:hover .dropdown-menu {

    display: block !important;
  }

  .dropdown-toggle {

    pointer-events: none;
  }

}

/* MOBILE CATEGORY ACCORDION */

.dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: inherit;
  font-family: inherit;
  color: #1d2b6b;
  font-weight: 700;
}

@media screen and (max-width: 991px) {

  .dropdown-menu {

    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition:
      max-height .35s ease,
      opacity .25s ease;

    position: static !important;
    transform: none !important;
    box-shadow: none !important;
    background: transparent !important;
    padding-left: 14px !important;
    border: none !important;
  }

  .dropdown-parent.active .dropdown-menu {

    max-height: 600px;
    opacity: 1;
    visibility: visible;
    margin-top: 14px;
  }

  .dropdown-arrow {

    transition: .3s ease;
  }

  .dropdown-parent.active .dropdown-arrow {

    transform: rotate(180deg);
  }

}
/* MOBILE TAP TARGET FIX */

@media screen and (max-width: 991px) {

  .icon-btn,
  .mobile-menu-toggle,
  .hero-btn,
  .product-card .btn-primary,
  .shop-pagination a,
  .shop-sidebar label {

    min-height: 48px;
    min-width: 48px;
  }

  .header-icons {

    gap: 14px;
  }

  .hero-buttons {

    gap: 14px;
  }

  .shop-sidebar label {

    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
  }

}

/* MOBILE OVERFLOW FIX */

html,
body {

  overflow-x: hidden;
}

img {

  max-width: 100%;

  height: auto;
}

@media screen and (max-width: 991px) {

  .container {

    width: 100%;
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-wrapper,
  .shop-layout,
  .product-grid {

    width: 100%;
    overflow-x: hidden;
  }

  .hero-content h1 {

    font-size: 54px;
    line-height: 0.95;
  }

  .hero-image-side img {

    width: 100%;
    max-width: 220px;
    margin: 0 auto;
  }

  .hero-buttons {

    flex-direction: column;
    width: 100%;
  }

  .hero-btn {

    width: 100%;
  }

  .product-grid {

    grid-template-columns: 1fr !important;
  }

}

/* MOBILE MENU PREMIUM */

.mobile-menu-overlay {

  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  opacity: 0;
  visibility: hidden;
  transition: .3s ease;
  z-index: 998;
}

.mobile-menu-overlay.active {

  opacity: 1;
  visibility: visible;
}

@media screen and (max-width: 991px) {

  .mobile-menu-toggle {

    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    border: none;
    background: #f3ebff;
    color: #1d2b6b;
    font-size: 28px;
    cursor: pointer;
    z-index: 1001;
    position: relative;
  }

  .main-nav {

    position: fixed;
    top: 0;
    right: -100%;
    width: 82%;
    max-width: 340px;
    height: 100vh;
    background: white;
    padding: 110px 28px 40px;
    transition: .35s ease;
    z-index: 999;
    overflow-y: auto;
    border-radius: 24px 0 0 24px;
    box-shadow:
      -10px 0 30px rgba(0,0,0,.08);
  }

  .main-nav.active {

    right: 0;
  }

  .main-menu {

    flex-direction: column;
    gap: 28px;
  }

  .main-menu li a {

    font-size: 22px;
    font-weight: 700;
  }

  .dropdown-toggle {

    font-size: 22px;
  }

  .dropdown-menu {

    margin-top: 18px;
    padding: 18px;
    border-radius: 18px;
    background: #faf7ff !important;
  }

  .dropdown-menu li a {

    font-size: 18px;
    padding: 12px 0;
    display: block;
  }

}

@media screen and (max-width: 991px) {

  /* HIDE DESKTOP ICONS */

  .header-icons .icon-btn {

    display: none !important;
  }

  /* ONLY SHOW HAMBURGER */

  .mobile-menu-toggle {

    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border: none;
    border-radius: 14px;
    background: #f3ebff;
    color: #7c3aed;
    font-size: 30px;
    cursor: pointer;
    position: relative;
    z-index: 1002;
  }

  /* MOBILE MENU */

  .main-nav {

    position: fixed;
    top: 0;
    right: -100%;
    width: 82%;
    max-width: 340px;
    height: 100vh;
    background: #fff;
    padding: 110px 28px 40px;
    transition: .35s ease;
    z-index: 1001;
    overflow-y: auto;
    border-radius: 24px 0 0 24px;
    box-shadow:
      -10px 0 30px rgba(0,0,0,.08);
  }

  .main-nav.active {

    right: 0;
  }

  /* X BUTTON INSIDE MENU */



.mobile-menu-toggle {

  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 14px;
  background: #f3ebff;
  color: #7c3aed;
  font-size: 30px;
  cursor: pointer;
  z-index: 1002;
}

  /* MENU ITEMS */

  .main-menu {

    display: flex;
    flex-direction: column;
    gap: 26px;
  }

  .main-menu li a {

    font-size: 22px;
    font-weight: 700;
    color: #1d2b6b;
  }

  /* DROPDOWN */

  .dropdown-menu {

    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition:
      max-height .35s ease,
      opacity .25s ease;

    margin-top: 12px;
    background: #faf7ff;
    border-radius: 18px;
    padding: 0 18px;
  }

  .dropdown-parent.active .dropdown-menu {

    max-height: 600px;
    opacity: 1;
    visibility: visible;
    padding: 18px;
  }

  .dropdown-menu li a {

    display: block;
    padding: 12px 0;
    font-size: 18px;
  }

}

@media screen and (max-width: 991px) {

  .mobile-close-btn {

    position: absolute;
    top: 18px;
    right: 18px;
    width: 52px;
    height: 52px;
    border: none;
    border-radius: 14px;
    background: #7c3aed;
    color: #fff;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }

}

/* HIDE CLOSE BUTTON DESKTOP */

.mobile-close-btn {

  display: none;
}

@media screen and (max-width: 991px) {

  .mobile-close-btn {

    display: flex;
    position: absolute;
    top: 18px;
    right: 18px;
    width: 52px;
    height: 52px;
    border: none;
    border-radius: 14px;
    background: #7c3aed;
    color: #fff;
    font-size: 28px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1002;
  }

}

/* ===================================
   CLEAN HERO FIX
=================================== */

.hero-wrapper{

  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 60px;
  min-height: auto;
}

.hero-content h1{

  font-size: 72px;
  line-height: 1;
  letter-spacing: -2px;
}

.hero-content h2{

  font-size: 48px;
}

.hero-content p{

  font-size: 20px;
  line-height: 1.7;
  max-width: 560px;
}

/* BUTTONS */

.hero-buttons{

  display:flex;
  gap:16px;
  flex-wrap:wrap;
}

.hero-btn{

  min-width:220px;
  height:58px;
  border-radius:999px;
  font-size:16px;
  font-weight:700;
}

/* SAME STYLE */

.primary-btn,
.secondary-btn{

  background:linear-gradient(
    135deg,
    #ff69b4,
    #ff85c2
  );

  color:#fff;
  border:none;
}

/* HOVER */

.primary-btn:hover,
.secondary-btn:hover{

  transform:translateY(-3px);
  opacity:.92;
}

/* IMAGE */

.hero-image-side img{

  width:100%;
  max-width:720px;
  transform:none;
}

/* MOBILE */

@media screen and (max-width:991px){

  .hero-wrapper{

    grid-template-columns:1fr;
    padding:40px 24px;
    text-align:center;
  }

  .hero-content{

    max-width:100%;
  }

  .hero-content h1{

    font-size:52px;
  }

  .hero-content h2{

    font-size:36px;
  }

  .hero-content p{

    font-size:17px;
  }

  .hero-buttons{

    justify-content:center;
    flex-direction:column;
    align-items:center;
  }

  .hero-btn{

    width:100%;
    max-width:320px;
  }

  .hero-image-side{

    order:-1;
  }

  .hero-image-side img{

    max-width:460px;
  }

}

/* =========================
   HERO BANNER
========================= */

.hero-banner {

  padding: 24px 0 40px;
}

/* HERO CARD */

.hero-card {

  background:
    linear-gradient(
      135deg,
      #f7f1ff,
      #fff8fd
    );

  border-radius: 42px;
  padding: 40px 45px;
  display: grid;
  grid-template-columns:
    1fr
    1fr;

  align-items: center;
  gap: 40px;
  overflow: hidden;
}
/* LEFT SIDE */

.hero-content {

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 520px;
}

/* TITLE */

.hero-content h1 {

  font-size: 76px;
  line-height: .9;
  letter-spacing: -2px;
  margin-bottom: 14px;
  color: #1d2860;
  font-weight: 800;
}

/* SUBTITLE */

.hero-content h2 {

  font-size: 42px;
  color: #ff69b4;
  margin-bottom: 18px;
  font-style: italic;
  font-weight: 700;
}

/* DESCRIPTION */

.hero-content p {

  font-size: 18px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 26px;
}

/* BUTTONS */

.hero-buttons {

  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-btn {

  min-width: 190px;
  height: 54px;
  padding:
    0
    24px;

  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  transition: .3s ease;
}

/* BUTTON STYLE */

.primary-btn {

  background:
    linear-gradient(
      135deg,
      #ff69b4,
      #ff85c2
    );

  color: #fff;
  box-shadow:
    0 10px 22px rgba(255,105,180,.22);
}

.secondary-btn {

  background: #fff;
  color: #1d2860;
  border: 2px solid #eadbff;
}

/* HOVER */

.primary-btn:hover,
.secondary-btn:hover {

  transform: translateY(-3px);
}

/* FEATURES */

.hero-features {

  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
  width: 100%;
}
.hero-feature {

  flex: 1;
  min-width: 180px;
  background:
    rgba(255,255,255,.92);

  border-radius: 18px;

  padding:
    16px
    18px;

  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 700;
  color: #1d2860;
  box-shadow:
    0 8px 20px rgba(0,0,0,.04);
}

/* IMAGE */

.hero-image img {

  width: 100%;
  max-width: 860px;
  min-width: 620px;
  height: auto;
  display: block;
  object-fit: contain;
  transform: scale(1.12);
}

/* MOBILE */

@media screen and (max-width: 991px){

  .hero-card {

    grid-template-columns: 1fr;
    padding:
      42px
      22px;
    text-align: center;
  }

  .hero-content {

    align-items: center;
    max-width: 100%;
  }

  .hero-image {

    order: -1;
  }

  .hero-image img {

  max-width: 520px;
  min-width: auto;
  transform: none;
}
  .hero-content h1 {

    font-size: 54px;
  }

  .hero-content h2 {
    font-size: 34px;
  }

  .hero-content p {
    font-size: 17px;
  }

  .hero-buttons {

    justify-content: center;
    flex-direction: column;
    align-items: center;
  }

  .hero-btn {

    width: 100%;
    max-width: 320px;
  }

  .hero-features {

  position: static;
  grid-template-columns: 1fr;
  margin-top: 24px;
}

/* ===================================
   HOMEPAGE HERO FINAL FIX
=================================== */

.hero-card{

  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  gap:60px;
}

.hero-content{

  max-width:540px;
}

.hero-image{

  display:flex;
  justify-content:center;
  align-items:center;
}

.hero-image img{

  width:100%;
  max-width:700px;
  min-width:auto;
  transform:none;
}

.homepage-hero-features{

  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
  width:100%;
  margin-top:30px;
}

.homepage-hero-features .hero-feature{

  background:#fff;
  border-radius:18px;
  padding:16px;
  text-align:center;
  justify-content:center;
  box-shadow:0 8px 20px rgba(0,0,0,.05);
}

@media(max-width:991px){

  .hero-card{

    grid-template-columns:1fr;
    text-align:center;
  }

  .hero-content{

    max-width:100%;
    align-items:center;
  }

  .hero-image{

    order:-1;
  }

  .hero-image img{

    max-width:450px;
  }

  .homepage-hero-features{

    grid-template-columns:1fr 1fr;
  }

}

@media(max-width:640px){

  .homepage-hero-features{

    grid-template-columns:1fr;
  }

}