.home-v2 {
  --rose: #9b1c34;
  --rose-dark: #6b0e20;
  --rose-light: #f7eaed;
  --rose-mid: #c96a82;
  --cream: #fdf6f0;
  --charcoal: #16100e;
  --text: #261a18;
  --muted: #7a6a68;
  --border: #e8d8d3;
  --white: #ffffff;
  --gold: #b8882a;
  --gold-light: #f5e8c8;
  --section-gap: 48px;
  --header-gap: 18px;
  font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif !important;
  font-size: 17px;
  color: var(--text);
  background: var(--white);
}

.home-v2 .hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  display: block;
}

.home-v2 .hero-slide-link {
  display: block;
  width: 100%;
  height: 100%;
}

/* ── HERO SLIDER ── */
.home-v2 .hero {
      position: relative;
      overflow: hidden;
      background: var(--charcoal);
      height: 780px;
      border-radius: 12px;
    }

.home-v2 .hero-slides {
      display: flex;
      width: 400%;
      transition: transform .7s cubic-bezier(.77, 0, .175, 1);
    }

.home-v2 .hero-slide {
      width: 25%;
      height: 780px;
      position: relative;
      display: flex;
      align-items: center;
      background-size: cover;
      background-position: center;
    }

.home-v2 .hero-content {
      padding: 0 80px;
      max-width: 620px;
    }

.home-v2 .hero-tag {
      font-size: 11px;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: var(--rose-mid);
      margin-bottom: 16px;
    }

.home-v2 .hero-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 58px;
      font-weight: 300;
      color: #fff;
      line-height: 1.1;
      margin-bottom: 20px;
    }

.home-v2 .hero-title em {
      font-style: italic;
      color: var(--rose-mid);
    }

.home-v2 .hero-desc {
      font-size: 15px;
      color: rgba(255, 255, 255, .72);
      font-weight: 300;
      margin-bottom: 34px;
      max-width: 440px;
      line-height: 1.7;
    }

.home-v2 .hero-btns {
      display: flex;
      gap: 14px;
      align-items: center;
    }

.home-v2 .btn-primary {
      background: var(--rose);
      color: #fff;
      padding: 13px 32px;
      text-decoration: none;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: .08em;
      text-transform: uppercase;
      border-radius: 2px;
      transition: background .2s, transform .15s;
      display: inline-block;
    }

.home-v2 .btn-primary:hover {
      background: var(--rose-dark);
      transform: translateY(-1px);
    }

.home-v2 .btn-ghost {
      border: 1px solid rgba(255, 255, 255, .45);
      color: #fff;
      padding: 12px 30px;
      text-decoration: none;
      font-size: 13px;
      letter-spacing: .08em;
      text-transform: uppercase;
      border-radius: 2px;
      transition: border-color .2s, background .2s;
    }

.home-v2 .btn-ghost:hover {
      border-color: #fff;
      background: rgba(255, 255, 255, .08);
    }

.home-v2 .hero-dots {
      position: absolute;
      bottom: 28px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 8px;
    }

.home-v2 .hero-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .35);
      cursor: pointer;
      transition: background .3s, transform .3s;
      border: none;
    }

.home-v2 .hero-dot.active {
      background: #fff;
      transform: scale(1.4);
    }

.home-v2 .hero-arrows {
      position: absolute;
      bottom: 20px;
      right: 40px;
      display: flex;
      gap: 8px;
    }

.home-v2 .hero-arr {
      width: 40px;
      height: 40px;
      border: 1px solid rgba(255, 255, 255, .3);
      background: transparent;
      color: #fff;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      transition: background .2s;
      border-radius: 2px;
    }

.home-v2 .hero-arr:hover {
      background: var(--rose);
      border-color: var(--rose);
    }


    /* ── SECTION COMMON ── */
.home-v2 .home-v2-container {
      display: flex;
      flex-direction: column;
      gap: var(--section-gap);
      padding-top: 16px;
      padding-bottom: 32px;
    }

.home-v2 .home-v2-container > section,
.home-v2 .home-v2-container > .split-banner,
.home-v2 .home-v2-container > .clients-section {
      margin: 0;
    }

.home-v2 section {
      padding: 0;
    }

.home-v2 .hero {
      padding: 0;
    }

.home-v2 .section-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: var(--header-gap);
    }

.home-v2 .section-label {
      font-size: 13px;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 2px;
    }

.home-v2 .section-title {
      font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif !important;
      margin-top: 0;
      font-size: 44px;
      font-weight: 400;
      color: var(--charcoal);
      line-height: 1.15;
    }

.home-v2 h1,
.home-v2 h2,
.home-v2 h3,
.home-v2 h4,
.home-v2 h5,
.home-v2 h6 {
      font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif !important;
    }

.home-v2 .view-all {
      font-size: 16px;
      color: var(--rose);
      text-decoration: none;
      letter-spacing: .06em;
      border-bottom: 1px solid var(--rose);
      padding-bottom: 2px;
      transition: opacity .2s;
      white-space: nowrap;
    }

.home-v2 .view-all:hover {
      opacity: .7;
    }

    /* ── OCCASIONS SECTION ── */
.home-v2 .category-section {
      background: transparent;
    }

    /* ── PRODUCT CARD ── */
.home-v2 .product-carousel-wrap {
      position: relative;
      /* padding: 0 32px; */
    }

.home-v2 .home-v2-product-slider {
      position: relative;
    }

.home-v2 .home-v2-product-slider .owl-nav {
      margin: 0;
    }

.home-v2 .home-v2-product-slider .owl-stage-outer {
      overflow: hidden;
    }

.home-v2 .product-carousel-item {
      height: 100%;
    }

.home-v2 .home-v2-product-slider .product-card {
      height: 100%;
      width: 100%;
      max-width: none;
      margin: 0;
    }

.home-v2 .home-v2-product-slider .owl-nav button.owl-prev,
.home-v2 .home-v2-product-slider .owl-nav button.owl-next {
      position: absolute;
      top: 42%;
      transform: translateY(-50%);
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--white) !important;
      border: 1px solid var(--border) !important;
      color: var(--charcoal) !important;
      font-size: 20px !important;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
      transition: background .2s, color .2s, border-color .2s;
}

.home-v2 .home-v2-product-slider .owl-nav button.owl-prev:hover,
.home-v2 .home-v2-product-slider .owl-nav button.owl-next:hover {
      background: var(--rose) !important;
      border-color: var(--rose) !important;
      color: #fff !important;
}

.home-v2 .home-v2-product-slider .owl-nav button.owl-prev {
      left: 0;
}

.home-v2 .home-v2-product-slider .owl-nav button.owl-next {
      right: 0;
}

.home-v2 .home-v2-product-slider .owl-dots {
      margin-top: 12px;
      text-align: center;
    }

.home-v2 .home-v2-product-slider .owl-dot span {
      width: 8px;
      height: 8px;
      margin: 0 5px;
      background: var(--border);
      transition: background .2s, transform .2s;
}

.home-v2 .home-v2-product-slider .owl-dot.active span,
.home-v2 .home-v2-product-slider .owl-dot:hover span {
      background: var(--rose);
      transform: scale(1.2);
}

.home-v2 .product-card {
      display: flex;
      flex-direction: column;
      background: #fff;
      border: 1px solid #ececec;
      /* border-radius: 10px; */
      overflow: hidden;
      text-decoration: none;
      color: inherit;
      box-shadow: 0 1px 6px rgba(0, 0, 0, 0.04);
      transition: box-shadow .25s ease, transform .25s ease;
      width: 100%;
    }

.home-v2 .product-card:hover {
      box-shadow: 0 4px 14px rgba(0, 0, 0, 0.07);
      transform: translateY(-1px);
      text-decoration: none;
      color: inherit;
    }

.home-v2 .product-card-media {
      position: relative;
      aspect-ratio: 4 / 5;
      overflow: hidden;
    }

.home-v2 .product-card-media img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
    }

.home-v2 .product-delivery-badge {
      position: absolute;
      top: 8px;
      right: 8px;
      z-index: 2;
      background: #FDE2DE;
      color: #000;
      font-size: 13px;
      font-weight: 600;
      line-height: 1;
      padding: 6px 10px;
      border-radius: 4px;
      letter-spacing: 0;
      text-transform: none;
      box-shadow: 0 2px 6px rgba(253, 226, 222, 0.6);
    }

.home-v2 .product-card-body {
      padding: 12px 12px 14px;
      display: flex;
      flex-direction: column;
      gap: 6px;
      flex: 1;
    }

.home-v2 .product-brand {
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #000;
      line-height: 1.2;
    }

.home-v2 .product-title {
      margin: 0;
      font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
      font-size: 19px;
      font-weight: 500;
      line-height: 1.35;
      color: #333;
      display: -webkit-box;
      -webkit-line-clamp: 1;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

.home-v2 .product-price {
      margin-top: auto;
      padding-top: 6px;
      font-size: 18px;
      font-weight: 700;
      color: var(--rose);
      line-height: 1.2;
      text-align: left;
      letter-spacing: 0.02em;
    }

    /* ── OCCASIONS / EVENTS GRID ── */
.home-v2 .events-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 16px;
    }

.home-v2 .event-card {
      position: relative;
      overflow: hidden;
      border-radius: 4px;
      aspect-ratio: 3/4;
      cursor: pointer;
      background: var(--rose-light);
    }

.home-v2 .event-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .5s ease;
      display: block;
    }

.home-v2 .event-card:hover img {
      transform: scale(1.08);
    }

.home-v2 .event-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(20, 4, 8, .7) 0%, transparent 60%);
    }

.home-v2 .event-label {
      position: absolute;
      bottom: 16px;
      left: 16px;
      right: 16px;
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      color: #fff;
      font-weight: 400;
    }

    /* ── FEATURED SPLIT BANNER ── */
.home-v2 .split-banner {
      padding: 0;
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 380px;
      border-radius: 12px;
      overflow: hidden;
    }

.home-v2 .split-panel {
      position: relative;
      overflow: hidden;
    }

.home-v2 .split-panel img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .5s ease;
    }

.home-v2 .split-panel:hover img {
      transform: scale(1.04);
    }

.home-v2 .split-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(20, 4, 8, .6) 0%, rgba(20, 4, 8, .15) 100%);
      display: flex;
      align-items: flex-end;
      padding: 36px 40px;
    }

.home-v2 .split-content .split-tag {
      font-size: 12px;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--rose-mid);
      margin-bottom: 8px;
    }

.home-v2 .split-content .split-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 36px;
      color: #fff;
      font-weight: 300;
      line-height: 1.2;
      margin-bottom: 16px;
    }

.home-v2 .split-content .split-title em {
      font-style: italic;
    }

.home-v2 .btn-outline-white {
      border: 1px solid rgba(255, 255, 255, .6);
      color: #fff;
      padding: 9px 22px;
      font-size: 14px;
      letter-spacing: .08em;
      text-transform: uppercase;
      text-decoration: none;
      transition: background .2s;
      border-radius: 2px;
      display: inline-block;
    }

.home-v2 .btn-outline-white:hover {
      background: rgba(255, 255, 255, .15);
      border-color: #fff;
    }

    /* ── TESTIMONIALS ── */
.home-v2 .testimonials-section {
      background: transparent;
    }

.home-v2 .testi-carousel-wrap {
      position: relative;
      padding: 0 32px;
    }

.home-v2 .home-v2-testimonial-slider {
      position: relative;
    }

.home-v2 .home-v2-testimonial-slider .owl-nav {
      margin: 0;
    }

.home-v2 .home-v2-testimonial-slider .owl-stage-outer {
      overflow: hidden;
    }

.home-v2 .home-v2-testimonial-slider .testi-card {
      height: 100%;
    }

.home-v2 .home-v2-testimonial-slider .owl-nav button.owl-prev,
.home-v2 .home-v2-testimonial-slider .owl-nav button.owl-next {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--white) !important;
      border: 1px solid var(--border) !important;
      color: var(--charcoal) !important;
      font-size: 20px !important;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
      transition: background .2s, color .2s, border-color .2s;
    }

.home-v2 .home-v2-testimonial-slider .owl-nav button.owl-prev:hover,
.home-v2 .home-v2-testimonial-slider .owl-nav button.owl-next:hover {
      background: var(--rose) !important;
      border-color: var(--rose) !important;
      color: #fff !important;
    }

.home-v2 .home-v2-testimonial-slider .owl-nav button.owl-prev {
      left: 0;
    }

.home-v2 .home-v2-testimonial-slider .owl-nav button.owl-next {
      right: 0;
    }

.home-v2 .home-v2-testimonial-slider .owl-dots {
      margin-top: 12px;
      text-align: center;
    }

.home-v2 .home-v2-testimonial-slider .owl-dot span {
      width: 8px;
      height: 8px;
      margin: 0 5px;
      background: var(--border);
      transition: background .2s, transform .2s;
    }

.home-v2 .home-v2-testimonial-slider .owl-dot.active span,
.home-v2 .home-v2-testimonial-slider .owl-dot:hover span {
      background: var(--rose);
      transform: scale(1.2);
    }

.home-v2 .testi-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 4px;
      padding: 28px 26px;
    }

.home-v2 .testi-stars {
      display: flex;
      gap: 3px;
      margin-bottom: 14px;
    }

.home-v2 .testi-stars svg {
      width: 16px;
      height: 16px;
      fill: #f4a91e;
      stroke: none;
    }

.home-v2 .testi-text {
      color: var(--text);
      line-height: 1.75;
      margin-bottom: 20px;
      font-style: italic;
      font-family: 'Cormorant Garamond', serif;
      font-size: 19px;
    }

.home-v2 .testi-author {
      display: flex;
      align-items: center;
      gap: 12px;
    }

.home-v2 .testi-avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--rose);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Cormorant Garamond', serif;
      font-size: 18px;
      color: #fff;
      font-weight: 600;
      flex-shrink: 0;
    }

.home-v2 .testi-name {
      font-size: 17px;
      font-weight: 500;
      color: var(--charcoal);
    }

.home-v2 .testi-city {
      font-size: 15px;
      color: var(--muted);
    }

    /* ── CLIENTS ── */
.home-v2 .clients-section {
      padding: 20px 0 0;
      border-top: none;
    }

.home-v2 .clients-label {
      text-align: center;
      font-size: 13px;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: var(--header-gap);
    }

.home-v2 .clients-marquee {
      display: flex;
      justify-content: center;
      overflow: hidden;
      width: 100%;
      -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
      mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
    }

.home-v2 .clients-marquee-track {
      display: flex;
      align-items: center;
      width: max-content;
      animation: home-v2-clients-marquee 28s linear infinite;
    }

.home-v2 .clients-marquee-track:hover {
      animation-play-state: paused;
    }

@media (prefers-reduced-motion: reduce) {
.home-v2 .clients-marquee-track {
        animation: none;
      }
    }

@keyframes home-v2-clients-marquee {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }

.home-v2 .clients-marquee .client-logo {
      padding: 12px 48px;
      display: flex;
      align-items: center;
      flex-shrink: 0;
    }

.home-v2 .client-logo img {
      height: 70px;
      object-fit: contain;
      opacity: 1;
      transition: opacity .2s ease, transform .2s ease;
    }

.home-v2 .client-logo:hover img {
      opacity: 1;
      transform: scale(1.05);
    }

/* ── HOME V2 TYPOGRAPHY (page + header + footer) ── */
body.home-v2-page {
  font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  font-size: 17px;
}

body.home-v2-page .header-area,
body.home-v2-page .footer,
body.home-v2-page .mobile-header-wrapper-style,
body.home-v2-page .home-v2 {
  font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
}

body.home-v2-page .top-header-group .header-main-nav .nav-link,
body.home-v2-page .top-header-group .offer-link,
body.home-v2-page .top-header-group .opts_account,
body.home-v2-page .top-header-group .opts_account .user__name,
body.home-v2-page .callemail,
body.home-v2-page .second-row-item h4,
body.home-v2-page .second-row-item a,
body.home-v2-page .second-row-item li,
body.home-v2-page .contact-infor li,
body.home-v2-page .contact-infor span,
body.home-v2-page .footer-bottom-links a,
body.home-v2-page .footer-last-row,
body.home-v2-page .mobile-menu a,
body.home-v2-page .social-links-footer a {
  font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif !important;
}

body.home-v2-page .top-header-group .header-main-nav .nav-link {
  font-size: 22px !important;
  font-weight: 800 !important;
  color: #5c3d3d !important;
}

body.home-v2-page .top-header-group .header-main-nav .dropdown-menu .dropdown-item {
  font-size: 18px !important;
  font-weight: normal !important;
  font-family: "Jost", Arial, Helvetica, sans-serif !important;
}

body.home-v2-page .top-header-group .offer-link,
body.home-v2-page .top-header-group .opts_account .user__name {
  font-size: 19px !important;
  font-weight: 500 !important;
  color: #5c3d3d !important;
}

body.home-v2-page .callemail {
  font-size: 20px !important;
}

body.home-v2-page .second-row-item h4 {
  font-size: 22px !important;
}

body.home-v2-page .second-row-item a,
body.home-v2-page .second-row-item li,
body.home-v2-page .contact-infor li,
body.home-v2-page .contact-infor span,
body.home-v2-page .footer-bottom-links a,
body.home-v2-page .footer-last-row,
body.home-v2-page .mobile-menu a {
  font-size: 17px !important;
}

/* Keep v2 layout from being overridden by global theme styles */
body.home-v2-page .home-v2 {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  overflow-x: hidden;
}

body.home-v2-page .home-v2 section {
  box-sizing: border-box;
}

body.home-v2-page .home-v2 .product-carousel-wrap,
body.home-v2-page .home-v2 .events-grid,
body.home-v2-page .home-v2 .testi-carousel-wrap {
  margin-left: 0;
  margin-right: 0;
}

@media (max-width: 991px) {
  .home-v2 .events-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .home-v2 .event-label {
    font-size: 18px;
    bottom: 12px;
    left: 12px;
    right: 12px;
  }

  .home-v2 .split-banner {
    min-height: 300px;
  }

  .home-v2 .split-overlay {
    padding: 24px 22px;
  }

  .home-v2 .split-content .split-tag {
    font-size: 11px;
    letter-spacing: .14em;
  }

  .home-v2 .split-content .split-title {
    font-size: 28px;
  }
}

@media (max-width: 767px) {
  .home-v2 {
    --section-gap: 36px;
    --header-gap: 14px;
  }

  .home-v2 .hero {
    height: auto;
  }

  .home-v2 .hero-slide {
    height: auto;
    display: block;
  }

  .home-v2 .hero-slide img {
    object-fit: fill;
  }

  .home-v2 .section-title {
    font-size: 32px;
  }

  .home-v2 .events-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .home-v2 .event-label {
    font-size: 17px;
    line-height: 1.25;
    bottom: 10px;
    left: 10px;
    right: 10px;
  }

  .home-v2 .split-banner {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 12px;
    overflow: visible;
    background: transparent;
  }

  .home-v2 .split-panel {
    min-height: 200px;
    aspect-ratio: 16 / 10;
    border-radius: 10px;
  }

  .home-v2 .split-overlay {
    padding: 18px 20px;
    border-radius: 10px;
  }

  .home-v2 .split-content {
    width: 100%;
    max-width: 100%;
  }

  .home-v2 .split-content .split-tag {
    font-size: 10px;
    letter-spacing: .1em;
    margin-bottom: 6px;
    line-height: 1.3;
  }

  .home-v2 .split-content .split-title {
    font-size: 26px;
    margin-bottom: 10px;
    line-height: 1.15;
    word-break: break-word;
  }

  .home-v2 .split-content .btn-outline-white {
    padding: 7px 16px;
    font-size: 12px;
  }

  .home-v2 .home-v2-container {
    padding-top: 12px;
    padding-bottom: 24px;
  }

  .home-v2 .product-carousel-wrap,
  .home-v2 .testi-carousel-wrap {
    padding: 0 0px;
  }

  .home-v2 .home-v2-product-slider .owl-nav button.owl-prev,
  .home-v2 .home-v2-product-slider .owl-nav button.owl-next,
  .home-v2 .home-v2-testimonial-slider .owl-nav button.owl-prev,
  .home-v2 .home-v2-testimonial-slider .owl-nav button.owl-next {
    width: 34px;
    height: 34px;
    font-size: 16px !important;
  }
}

/* Use normal (sans-serif) font family for all price fields */
.product-price,
.main-price,
.m-price,
.ftotal-price,
.mrp-price {
  font-family: 'DM Sans', sans-serif !important;
}
    