


/*selfcss*/

:root {
      --brand: #1a3c5e;
      --brand-light: #2a5580;
      --brand-dark: #0f2740;
      --gold: #c9a84c;
      --gold-light: #dfc06e;
      --gold-dark: #a68a2e;
      --cream: #f8f6f1;
      --sidebar-w: 280px;
    }
    * { margin: 0; padding: 0; box-sizing: border-box; }
    body { font-family: 'Poppins', sans-serif; color: #333; background: #f5f5f5; overflow-x: hidden; }
    a { text-decoration: none; color: inherit; transition: color .3s; }
    a:hover { color: var(--gold); }
    img { max-width: 100%; display: block; }

    /* === Utility === */
    .bg-brand { background-color: var(--brand) !important; }
    .text-brand { color: var(--brand) !important; }
    .text-gold { color: var(--gold) !important; }
    .btn-gold { background: var(--gold); color: #fff; border: none; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; transition: all .3s; }
    .btn-gold:hover { background: var(--gold-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,168,76,.3); }
    .section-label { font-size: .75rem; font-weight: 500; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); }
    .section-heading { font-size: 2rem; font-weight: 700; color: #1a1a1a; }
    .section-line { width: 60px; height: 3px; background: linear-gradient(90deg, transparent, var(--gold), transparent); margin: 0 auto; }

    /* === Animations === */
    @keyframes fadeUp { from { opacity:0; transform:translateY(40px) } to { opacity:1; transform:translateY(0) } }
    @keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
    @keyframes slideProgress { from{width:0} to{width:100%} }
    .anim { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
    .anim.visible { opacity: 1; transform: translateY(0); }

    /* === Announcement === */
    .announcement { background: var(--brand-dark); color: rgba(255,255,255,.85); overflow: hidden; white-space: nowrap; padding: 7px 0; font-size: .7rem; letter-spacing: 2px; text-transform: uppercase; }
    .announcement .track { display: inline-block; animation: marquee 35s linear infinite; }
    .announcement .track span { padding: 0 40px; }
    .announcement .track span i { color: var(--gold); margin: 0 6px; }

    /* === Header (Bootstrap-based like header.php) === */
    .site-container { max-width: 1440px; margin: 0 auto; }
    .header { background: #fff; position: sticky; top: 0; z-index: 1000; transition: box-shadow .3s; border-bottom: 1px solid #e8e8e8; }
    .header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.1); }
    .search-input-wrap { position: relative; }
    .search-input-wrap .form-control { padding-right: 38px; border-radius: 8px; font-size: .82rem; height: 42px; border: 1px solid #ddd; }
    .search-input-wrap .search-icon { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); color: #999; font-size: .9rem; }
    .search-type label { cursor: pointer; margin-right: 12px; color: #555; font-size: .8rem; }
    .search-type .form-check-input:checked { background-color: var(--brand); border-color: var(--brand); }
    .top-link-bar a { color: #555; font-size: .78rem; transition: color .3s; }
    .top-link-bar a:hover { color: var(--brand); }
    .top-link-bar span { color: #ccc; font-size: .7rem; }
    .mini-link-bar a { color: #556; font-size: .78rem; white-space: nowrap; }
    .mini-link-bar a:hover { color: var(--brand); }
    .mini-link-bar span { color: #ccc; font-size: .7rem; }
    .icon-btn { color: #333; position: relative; transition: color .3s; }
    .icon-btn:hover { color: var(--brand); }
    .icon-btn .bi { font-size: 1.4rem; }
    .header-icon-badge { position: absolute; top: -6px; right: -10px; background: var(--gold); color: #fff; font-size: .55rem; width: 16px; height: 16px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; }
    .header-phone { font-size: 1.15rem; font-weight: 700; color: var(--brand); letter-spacing: .5px; }
    .header-phone .bi { color: var(--brand); font-size: 1rem; }

    /* === Main Nav === */
    .desktop-main-nav { background: transparent; border-bottom: 1px solid #e8e8e8; z-index: 99999;}
    .desktop-main-nav .nav-link { color: #fff; font-size: .82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; padding: 14px 22px !important; position: relative; transition: all .3s; }
    .desktop-main-nav .nav-link .bi-chevron-down { font-size: .5rem; margin-left: 4px; opacity: .7; }
    .desktop-main-nav .nav-link::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 0; height: 3px; background: var(--gold); transition: width .3s; }
    .desktop-main-nav .nav-link:hover { color: var(--gold); }
    .desktop-main-nav .nav-link:hover::after { width: 80%; }
    .desktop-main-nav .nav-item { position: relative; }
    .desktop-main-nav .nav-item.has-mega { position: static; }

    /* Mega Menu - FULL WIDTH */
    .mega-dropdown { position: absolute; top: 100%; left: 0; right: 0; width: 100%; background: #f5f3ef; box-shadow: 0 15px 40px rgba(0,0,0,.12); border-top: 3px solid var(--brand); padding: 0; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all .3s; z-index: 100; }
    .nav-item:hover > .mega-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
    .mega-dropdown-inner { max-width: 1440px; margin: 0 auto; padding: 28px 40px 20px; }
    .mega-dropdown h6 { font-size: .9rem; font-weight: 700; color: var(--brand); margin-bottom: 14px; }
    .mega-dropdown ul { list-style: none; padding: 0; margin: 0; }
    .mega-dropdown ul li { margin-bottom: 2px; }
    .mega-dropdown ul li a { display: flex; align-items: center; gap: 10px; padding: 6px 0; font-size: .88rem; color: #444; transition: all .3s; }
    .mega-dropdown ul li a:hover { color: var(--brand); padding-left: 6px; }
    .mega-cat-icon { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 1px solid #e0ddd6; background: #fff; }
    .mega-promo-card { position: relative; border-radius: 14px; overflow: hidden; height: 100%; min-height: 280px; }
    .mega-promo-card img { width: 100%; height: 100%; object-fit: cover; }
    .mega-promo-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px; background: linear-gradient(transparent, rgba(0,0,0,.65)); color: #fff; }
    .mega-promo-overlay p { font-size: .65rem; letter-spacing: 2px; color: var(--gold); margin-bottom: 4px; }
    .mega-promo-overlay h5 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 6px; line-height: 1.3; }
    .mega-view-all { display: inline-block; margin-top: 14px; padding: 8px 24px; font-size: .75rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; background: var(--brand); color: #fff; border: none; border-radius: 4px; transition: all .3s; cursor: pointer; }
    .mega-view-all:hover { background: var(--gold); color: #fff; }
    .dropdown-simple { position: absolute; top: 100%; left: 0; background: #fff; box-shadow: 0 10px 30px rgba(0,0,0,.1); border-top: 3px solid var(--brand); min-width: 220px; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all .3s; z-index: 100; padding: 12px 0; }
    .nav-item:hover > .dropdown-simple { opacity: 1; visibility: visible; transform: translateY(0); }
    .dropdown-simple a { display: block; padding: 7px 22px; font-size: .82rem; color: #444; transition: all .3s; }
    .dropdown-simple a:hover { background: var(--cream); color: var(--brand); padding-left: 28px; }

    /* === TANISHQ BANNER (Swiper with side peek) === */
    .hero-banner-section { padding: 24px 0 0; background: #eceae4; overflow: visible; }
    .hero-swiper { overflow: visible !important; padding: 0 4%; }
    .hero-swiper .swiper-wrapper { overflow: visible; }
    .hero-swiper .swiper-slide { position: relative; height: 480px; overflow: hidden; opacity: .55; transform: scale(.88); transition: opacity .6s ease, transform .6s ease; filter: brightness(.85); }
    .hero-swiper .swiper-slide-active { opacity: 1; transform: scale(1); filter: brightness(1); box-shadow: 0 8px 40px rgba(0,0,0,.18); }
    .hero-swiper .swiper-slide img, .hero-swiper .swiper-slide video { width: 100%; height: 100%; object-fit: cover; }
    .hero-slide-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: flex; align-items: center; background: linear-gradient(90deg, rgba(15,39,64,.72) 0%, rgba(15,39,64,.25) 45%, transparent 100%); }
    .hero-slide-content { padding: 50px; max-width: 550px; }
    .hero-slide-content .brand-label { font-size: .85rem; color: var(--gold); letter-spacing: 4px; text-transform: uppercase; margin-bottom: 8px; font-weight: 300; }
    .hero-slide-content h2 { font-size: 2.6rem; color: #fff; font-weight: 700; line-height: 1.15; margin-bottom: 20px; text-shadow: 0 2px 10px rgba(0,0,0,.25); }
    .hero-slide-content .hero-cta { display: inline-block; padding: 14px 40px; background: #fff; color: var(--brand); font-size: .78rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; border: none; transition: all .3s; border-radius: 3px; }
    .hero-slide-content .hero-cta:hover { background: var(--gold); color: #fff; }
    .hero-swiper .swiper-button-next,
    .hero-swiper .swiper-button-prev { width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,.92); box-shadow: 0 4px 16px rgba(0,0,0,.18); z-index: 10; }
    .hero-swiper .swiper-button-prev { left: 2%; }
    .hero-swiper .swiper-button-next { right: 2%; }
    .hero-swiper .swiper-button-next::after,
    .hero-swiper .swiper-button-prev::after { font-size: .85rem; color: var(--brand); font-weight: 700; }
    .hero-swiper .swiper-button-next:hover,
    .hero-swiper .swiper-button-prev:hover { background: var(--gold); }
    .hero-swiper .swiper-button-next:hover::after,
    .hero-swiper .swiper-button-prev:hover::after { color: #fff; }
    /* Diamond dots */
    .hero-dots { display: flex; justify-content: center; gap: 14px; padding: 18px 0 8px; }
    .hero-dots .dot { width: 11px; height: 11px; background: rgba(26,60,94,.18); cursor: pointer; transform: rotate(45deg); transition: all .3s; border: none; }
    .hero-dots .dot.active { background: var(--gold); transform: rotate(45deg) scale(1.25); }
    .hero-progress { height: 3px; background: #d8d4cc; border-radius: 2px; margin: 0 25px 15px; overflow: hidden; }
    .hero-progress-bar { height: 100%; background: var(--gold); border-radius: 2px; }

    /* === SUB-BANNERS (2 banners below main) === */
    .sub-banners { padding: 15px 25px 5px; background: #eceae4; }
    .sub-banner-card { position: relative; border-radius: 14px; overflow: hidden; height: 300px; cursor: pointer; transition: all .5s; }
    .sub-banner-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,.12); }
    .sub-banner-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
    .sub-banner-card:hover img { transform: scale(1.05); }
    .sub-banner-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 25px; background: linear-gradient(transparent, rgba(0,0,0,.65)); }
    .sub-banner-overlay h3 { font-size: 1.3rem; font-weight: 700; color: #fff; margin-bottom: 6px; }
    .sub-banner-overlay .sub-cta { display: inline-flex; align-items: center; gap: 6px; color: var(--gold); font-size: .78rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
    .sub-banner-overlay .sub-cta:hover { gap: 12px; }

    /* === SIDEBAR + CONTENT SECTION === */
    .sidebar-section { background: #fff; }
    .sidebar-col { background: var(--brand); color: #fff; min-height: 600px; }
    .sidebar-header { padding: 18px 20px; border-bottom: 1px solid rgba(255,255,255,.1); }
    .sidebar-header h5 { font-size: 1rem; font-weight: 600; color: var(--gold); letter-spacing: 1px; margin: 0; }
    .sidebar-links { padding: 12px 20px; border-bottom: 1px solid rgba(255,255,255,.1); }
    .sidebar-links a { display: flex; align-items: center; gap: 8px; padding: 7px 0; font-size: .78rem; color: rgba(255,255,255,.7); }
    .sidebar-links a:hover { color: var(--gold); }
    .sidebar-links a i { color: var(--gold); font-size: .5rem; }
    .sidebar-nav-item { border-bottom: 1px solid rgba(255,255,255,.08); }
    .sidebar-nav-item > .sidebar-toggle { display: flex; justify-content: space-between; align-items: center; padding: 12px 20px; font-size: .82rem; font-weight: 500; color: rgba(255,255,255,.85); cursor: pointer; transition: all .3s; background: none; border: none; width: 100%; text-align: left; }
    .sidebar-nav-item > .sidebar-toggle:hover { background: rgba(255,255,255,.08); color: var(--gold); }
    .sidebar-nav-item > .sidebar-toggle .toggle-icon { font-size: .7rem; color: rgba(255,255,255,.4); transition: transform .3s; }
    .sidebar-nav-item > .sidebar-toggle .toggle-icon.rotated { transform: rotate(45deg); color: var(--gold); }
    .sidebar-sub { max-height: 0; overflow: hidden; transition: max-height .4s ease; background: rgba(0,0,0,.15); }
    .sidebar-sub.open { max-height: 600px; }
    .sidebar-sub a { display: block; padding: 8px 20px 8px 36px; font-size: .76rem; color: rgba(255,255,255,.55); border-bottom: 1px solid rgba(255,255,255,.04); transition: all .3s; }
    .sidebar-sub a:hover { color: var(--gold); background: rgba(255,255,255,.05); padding-left: 42px; }

    /* === PRODUCT CARDS (with hover image swap) === */
    .product-card { background: #fff; border-radius: 12px; overflow: hidden; transition: all .4s; border: 1px solid #f0ebe3; height: 100%; }
    .product-card:hover { transform: translateY(-6px); box-shadow: 0 15px 35px rgba(0,0,0,.08); border-color: var(--gold); }
    .product-img-wrap { position: relative; overflow: hidden; height: 200px; background: #faf7f2; }
    .product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: opacity .5s, transform .6s; }
    .product-img-wrap .img-primary { position: relative; z-index: 1; }
    .product-img-wrap .img-hover { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; z-index: 2; }
    .product-card:hover .img-primary { opacity: 0; }
    .product-card:hover .img-hover { opacity: 1; transform: scale(1.05); }
    .product-badge { position: absolute; top: 8px; left: 8px; padding: 3px 10px; font-size: .6rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; border-radius: 3px; background: #c0392b; color: #fff; z-index: 3; }
    .product-actions { position: absolute; right: 8px; top: 50%; transform: translateY(-50%) translateX(40px); display: flex; flex-direction: column; gap: 6px; opacity: 0; transition: all .4s; z-index: 5; }
    .product-card:hover .product-actions { opacity: 1; transform: translateY(-50%) translateX(0); }
    .product-action-btn { width: 32px; height: 32px; border-radius: 50%; background: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; border: none; box-shadow: 0 2px 8px rgba(0,0,0,.1); color: #444; font-size: .8rem; transition: all .3s; }
    .product-action-btn:hover { background: var(--brand); color: #fff; }
    .product-info { padding: 14px; }
    .product-name { font-size: .8rem; color: #1a1a1a; margin-bottom: 6px; font-weight: 500; line-height: 1.45; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
    .product-price .current { font-size: .95rem; font-weight: 700; color: var(--brand); }
    .product-price .original { font-size: .75rem; color: #bbb; text-decoration: line-through; margin-left: 6px; }
    .product-buy-btn { display: block; width: 100%; padding: 9px; background: var(--brand); color: #fff; border: none; font-size: .75rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; cursor: pointer; transition: all .3s; margin-top: 10px; border-radius: 4px; }
    .product-buy-btn:hover { background: var(--gold); }

    /* === DIAMOND FANCY CARDS === */
    .diamond-fancy-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
    @media (max-width: 991px) { .diamond-fancy-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 575px) { .diamond-fancy-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }
    .diamond-fancy-card { position: relative; border-radius: 5px; overflow: hidden; cursor: pointer; height: 220px; transition: all .5s; }
    .diamond-fancy-card::before { content: ''; position: absolute; inset: 0; background: rgba(0, 0, 0, 0.4); }
    .diamond-fancy-card:hover::before { background: linear-gradient(135deg, rgba(27,58,92,.85) 0%, rgba(201,168,76,.6) 100%); }
    .diamond-fancy-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(27,58,92,.2); }
    .diamond-fancy-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
    .diamond-fancy-card:hover img { transform: scale(1.12); }
    .diamond-fancy-card .card-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px; z-index: 2; display: flex; flex-direction: column; align-items: flex-start; }
    .diamond-fancy-card .card-overlay h6 { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 4px; text-shadow: 0 2px 8px rgba(0,0,0,.3); }
    .diamond-fancy-card .card-overlay .fancy-cta { display: inline-flex; align-items: center; gap: 6px; font-size: .72rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); transition: all .3s; }
    .diamond-fancy-card:hover .card-overlay .fancy-cta { gap: 12px; color: #fff; }
    .diamond-fancy-card .card-count { position: absolute; top: 14px; right: 14px; background: rgba(255,255,255,.15); backdrop-filter: blur(8px); color: #fff; font-size: .65rem; font-weight: 600; padding: 4px 12px; border-radius: 20px; z-index: 2; letter-spacing: .5px; }
    .diamond-fancy-card .card-icon { position: absolute; top: 14px; left: 14px; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.15); backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center; z-index: 2; }
    .diamond-fancy-card .card-icon i { color: var(--gold); font-size: 1rem; }

    /* === WATCH CARDS === */
    .watch-card { position: relative; border-radius: 14px; overflow: hidden; height: 280px; cursor: pointer; transition: all .5s; }
    .watch-card:hover { transform: translateY(-6px); box-shadow: 0 15px 35px rgba(0,0,0,.12); }
    .watch-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
    .watch-card:hover img { transform: scale(1.06); }
    .watch-card-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 30px 25px; background: linear-gradient(transparent, rgba(0,0,0,.65)); }
    .watch-card-overlay h4 { font-size: 1.3rem; font-weight: 700; color: #fff; margin-bottom: 6px; }
    .watch-card-overlay a { color: var(--gold); font-size: .78rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; display: inline-flex; align-items: center; gap: 6px; }
    .watch-card-overlay a:hover { gap: 12px; }

    /* === GEM CARDS === */
    .gem-card { text-align: center; padding: 22px 15px; border-radius: 14px; background: #fff; border: 1px solid #f0ebe3; transition: all .4s; cursor: pointer; height: 100%; }
    .gem-card:hover { transform: translateY(-6px); box-shadow: 0 12px 30px rgba(0,0,0,.08); border-color: var(--gold); }
    .gem-card-img { width: 95px; height: 95px; border-radius: 50%; margin: 0 auto 12px; overflow: hidden; border: 3px solid #f0ebe3; transition: border-color .4s; }
    .gem-card:hover .gem-card-img { border-color: var(--gold); }
    .gem-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
    .gem-card:hover .gem-card-img img { transform: scale(1.1); }
    .gem-card h6 { font-size: .9rem; font-weight: 600; color: #1a1a1a; margin-bottom: 2px; }
    .gem-card small { font-size: .7rem; color: #999; }

    /* === TESTIMONIALS (new style with avatar, stars, source logo) === */
    .review-card { background: #fff; border-radius: 14px; padding: 28px; border: 1px solid #e8e8e8; transition: all .4s; height: 100%; display: flex; flex-direction: column; }
    .review-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,.08); border-color: var(--gold); }
    .review-header { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
    .review-avatar { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 2px solid #e8e8e8; }
    .review-name { font-size: .95rem; font-weight: 700; color: #1a1a1a; margin: 0; }
    .review-date { font-size: .75rem; color: #999; margin: 0; }
    .review-title { font-size: 1rem; font-weight: 700; color: #1a1a1a; margin-bottom: 8px; }
    .review-text { font-size: .88rem; color: #555; line-height: 1.7; flex-grow: 1; }
    .review-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 18px; padding-top: 14px; border-top: 1px solid #f0f0f0; }
    .review-stars { color: #f5a623; font-size: 1.1rem; letter-spacing: 2px; }
    .review-source { height: 22px; opacity: .7; }
    .review-source:hover { opacity: 1; }

    /* === OCCASION CARDS === */
    .occasion-card { position: relative; border-radius: 5px; overflow: hidden; height: 300px; cursor: pointer; transition: all .5s; }
    .occasion-card:hover { transform: translateY(-6px); box-shadow: 0 15px 35px rgba(0,0,0,.1); }
    .occasion-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
    .occasion-card:hover img { transform: scale(1.08); }
    .occasion-card-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 18px; background: linear-gradient(transparent, rgba(0,0,0,.65)); text-align: center; }
    .occasion-card-overlay h5 { font-size: 1rem; font-weight: 600; color: #fff; margin: 0; }

    /* === PROMO BANNER === */
    .promo-banner { position: relative; min-height: 280px; display: flex; align-items: center; overflow: hidden; border-radius: 14px; }
    .promo-banner-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; }
    .promo-banner-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(26,60,94,.9), rgba(26,60,94,.5)); }
    .promo-banner-content { position: relative; z-index: 2; padding: 45px 50px; max-width: 600px; }

    /* === FEATURES === */
    .feature-icon-box { width: 50px; height: 50px; border-radius: 50%; border: 1.5px solid var(--gold); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--gold); flex-shrink: 0; transition: all .3s; }
    .feature-item:hover .feature-icon-box { background: var(--gold); color: #fff; }

    /* === ADDITIONAL INFO SECTION === */
    .addl-info-section { background: #e0ddd6; }
    .addl-info-card { background: #fff; border-radius: 12px; overflow: hidden; text-align: center; padding: 24px 18px; transition: all .4s; cursor: pointer; height: 100%; border: 1px solid #e8e4dc; display: flex; flex-direction: column; align-items: center; justify-content: center; }
    .addl-info-card:hover { transform: translateY(-5px); box-shadow: 0 12px 30px rgba(0,0,0,.1); border-color: var(--gold); }
    .addl-info-icon { width: 70px; height: 70px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; font-size: 1.8rem; }
    .addl-info-card h6 { font-size: .85rem; font-weight: 700; color: #1a1a1a; margin-bottom: 6px; line-height: 1.4; }
    .addl-info-card p { font-size: .72rem; color: #777; margin-bottom: 8px; line-height: 1.5; }
    .addl-info-card .highlight { font-size: 1.1rem; font-weight: 800; color: var(--brand); display: block; margin-bottom: 4px; }
    .addl-info-card .highlight-gold { color: var(--gold); font-weight: 700; }
    .addl-info-card .highlight-red { color: #c0392b; font-weight: 700; }
    .addl-info-card .highlight-green { color: #27ae60; font-weight: 700; }
    .addl-info-card .sub-text { font-size: .68rem; color: #999; display: block; margin-top: 4px; }
    .addl-info-badge { display: inline-block; padding: 4px 14px; font-size: .65rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; border-radius: 3px; margin-top: 8px; }

    /* === BUYERS PICKS GRID === */
    .buyers-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
    @media (max-width: 991px) { .buyers-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
    @media (max-width: 575px) { .buyers-grid { grid-template-columns: 1fr; gap: 14px; } }
    .buyer-card { background: #fff; border-radius: 14px; overflow: hidden; border: 1px solid #e8e8e8; transition: all .4s; height: 100%; display: flex; flex-direction: column; }
    .buyer-card:hover { border-color: var(--gold); box-shadow: 0 8px 24px rgba(0,0,0,.08); }
    .buyer-card-img { position: relative; width: 100%; height: 300px; overflow: hidden; }
    .buyer-card-img .img-primary { width: 100%; height: 100%; object-fit: cover; transition: opacity .5s; position: absolute; top: 0; left: 0; z-index: 1; }
    .buyer-card-img .img-hover { width: 100%; height: 100%; object-fit: cover; position: absolute; top: 0; left: 0; z-index: 0; }
    .buyer-card:hover .buyer-card-img .img-primary { opacity: 0; }
    .buyer-card-img .sale-badge { position: absolute; top: 14px; left: 14px; background: #b71c1c; color: #fff; font-size: .7rem; font-weight: 700; padding: 4px 12px; border-radius: 4px; letter-spacing: .5px; z-index: 3; }
    .buyer-card-img .hover-icons { position: absolute; top: 14px; right: 14px; display: flex; flex-direction: column; gap: 8px; z-index: 3; opacity: 0; transform: translateX(10px); transition: all .35s; }
    .buyer-card:hover .buyer-card-img .hover-icons { opacity: 1; transform: translateX(0); }
    .hover-icons a { width: 36px; height: 36px; border-radius: 50%; background: #fff; display: flex; align-items: center; justify-content: center; color: #333; font-size: .95rem; box-shadow: 0 2px 8px rgba(0,0,0,.12); transition: all .3s; text-decoration: none; }
    .hover-icons a:hover { background: var(--brand); color: #fff; }
    .buyer-card-body { padding: 16px 18px 18px; display: flex; flex-direction: column; flex-grow: 1; text-align: left; }
    .buyer-card-name { font-size: .9rem; color: #333; line-height: 1.5; margin-bottom: 10px; min-height: 2.7em; font-weight: 500; }
    .buyer-card-price { margin-bottom: 14px; display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
    .buyer-card-price .price-new { font-size: 1.25rem; font-weight: 800; color: #1a1a1a; }
    .buyer-card-price .price-old { font-size: .9rem; color: #999; text-decoration: line-through; }
    .buyer-card .btn-buy { display: block; width: 100%; background: var(--brand); color: #fff; font-size: .85rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 12px; border: none; border-radius: 8px; cursor: pointer; transition: all .3s; text-align: center; text-decoration: none; margin-top: auto; }
    .buyer-card .btn-buy:hover { background: #0f2740; }
    .best-sellers-label { font-size: .75rem; font-weight: 600; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }

    /* === WATCH BANNER (overlay style) === */
    .watch-banner { position: relative; border-radius: 14px; overflow: hidden; display: block; min-height: 320px; }
    .watch-banner img { width: 100%; height: 100%; object-fit: cover; position: absolute; top: 0; left: 0; transition: transform .7s; }
    .watch-banner:hover img { transform: scale(1.05); }
    .watch-banner .overlay-content { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: flex; background: linear-gradient(transparent 40%, rgba(0,0,0,.55)); }
    .watch-banner .overlay-content h2 { color: #fff; font-weight: 300; }
    .watch-banner .overlay-content span { color: #fff; letter-spacing: 2px; }

    /* === SECTION TITLE (with double lines) === */
    .section-title { text-align: center; margin-bottom: 28px; }
    .section-title h2 { font-size: 1.8rem; font-weight: 700; color: #1a1a1a; margin-bottom: 8px; }
    .section-title-lines { display: flex; align-items: center; justify-content: center; gap: 8px; }
    .section-title-lines span { display: block; width: 40px; height: 2px; background: var(--gold); }

    /* === PROMO LOGO CARD === */
    .promo-logo-card { background: #fff; border-radius: 10px; padding: 18px 24px; border: 1px solid #e8e8e8; transition: all .3s; flex: 1; min-width: 120px; }
    .promo-logo-card:hover { border-color: var(--gold); box-shadow: 0 4px 16px rgba(0,0,0,.06); }
    .promo-logo-card img { max-height: 32px; max-width: 100%; object-fit: contain; }

    /* === FEATURED COPY === */
    .featured-copy { max-width: 900px; margin: 30px auto 0; }
    .featured-copy h4 { font-size: 1.1rem; font-weight: 700; color: var(--brand); text-align: center; margin-bottom: 16px; }
    .muted-copy { font-size: .85rem; color: #777; line-height: 1.85; }
    .muted-copy a { color: var(--brand); }

    /* === MAP IMAGE === */
    .map-image { max-width: 600px; }

    /* === ABOUT US SECTION === */
    .about-section { background: var(--cream); }
    .about-img { border-radius: 14px; overflow: hidden; }
    .about-img img { width: 100%; height: 100%; object-fit: cover; }

    /* === NEWSLETTER === */
    .newsletter-section { background: linear-gradient(135deg, #0f2740, #1a3c5e); }

    /* === FOOTER === */
    .site-footer { background: #0a1a2b; color: rgba(255,255,255,.6); }
    .site-footer h6 { color: #fff; font-weight: 600; margin-bottom: 14px; }
    .site-footer ul { list-style: none; padding: 0; margin: 0; }
    .site-footer ul li { margin-bottom: 7px; }
    .site-footer ul li a { font-size: .78rem; color: rgba(255,255,255,.55); transition: all .3s; }
    .site-footer ul li a:hover { color: var(--gold); padding-left: 5px; }
    .footer-social a { width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(255,255,255,.15); display: inline-flex; align-items: center; justify-content: center; color: rgba(255,255,255,.5); font-size: .8rem; transition: all .3s; }
    .footer-social a:hover { background: var(--gold); border-color: var(--gold); color: #fff; }

    .scroll-top-btn { position: fixed; bottom: 25px; right: 25px; width: 44px; height: 44px; border-radius: 50%; background: var(--brand); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1rem; cursor: pointer; z-index: 999; opacity: 0; visibility: hidden; transition: all .3s; border: none; box-shadow: 0 4px 16px rgba(26,60,94,.3); }
    .scroll-top-btn.visible { opacity: 1; visibility: visible; }
    .scroll-top-btn:hover { transform: translateY(-3px); background: var(--gold); }

    /* === RESPONSIVE === */
    @media (max-width: 991px) {
      .hero-swiper .swiper-slide { height: 320px; }
      .hero-swiper { padding: 0 2%; }
      .hero-slide-content h2 { font-size: 1.8rem; }
      .sidebar-col { display: none; }
      .sub-banner-card { height: 220px; }
      .watch-banner { min-height: 240px; }
    }
    @media (max-width: 575px) {
      .hero-swiper .swiper-slide { height: 240px; }
      .hero-swiper { padding: 0 1%; }
      .hero-slide-content { padding: 25px; }
      .hero-slide-content h2 { font-size: 1.4rem; }
      .hero-slide-content .hero-cta { padding: 10px 25px; font-size: .7rem; }
      .sub-banner-card { height: 180px; }
      .watch-banner { min-height: 200px; }
      .review-card { padding: 18px; }
    }

    /* Mobile menu offcanvas */
    .offcanvas-brand { background: var(--brand); color: #fff; }
    .offcanvas-brand .btn-close { filter: invert(1); }
    .offcanvas-brand .offcanvas-title { color: var(--gold); font-weight: 600; }
    .mobile-nav a { display: block; padding: 10px 0; color: rgba(255,255,255,.8); font-size: .85rem; border-bottom: 1px solid rgba(255,255,255,.08); }
    .mobile-nav a:hover { color: var(--gold); }
    
    
    
    
    



.swiper-slide-active {
    width: 1500px !important;
}
.hero-swiper {
padding: 0 !important;
}
.hero-banner-section {
    padding-top: 0 !important;
    margin-top: -50px !important;
}
.hero-banner-section {
  position: relative !important;
  width: 100% !important;
  overflow: hidden !important;
}

.hero-swiper,
.swiper-slide {
  width: 100% !important;
  height: 90vh !important;
}

.swiper-slide video {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

/* Overlay */
.hero-slide-overlay {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4); 
  display: flex;
  align-items: center;
  justify-content: left !important; 
}

/* Content */
.hero-slide-content {
  text-align: left;
  color: #fff;
  max-width: 700px;
  padding: 20px;
}

.hero-slide-content h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
}

.brand-label {
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.hero-cta {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 30px;
  background: #fff;
  color: #000;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
}

/* Mobile Fix */
@media (max-width: 768px) {
  .swiper-slide {
    height: 70vh;
  }

  .hero-slide-content h2 {
    font-size: 28px;
  }
}
.hero-slide-content {
    max-width: 800px !important;
}
.hero-slide-content h2 {
    font-family: 'Cormorant Garamond', serif !important;
    font-weight: 500 !important;
    font-style: italic !important;
    font-size: 3.6rem !important;

}
.section-label {
  font-family: 'Cormorant Garamond', serif !important;
    font-style: italic !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
}
/* .diamond-fancy-card img {
    width: 155px !important;
    height: 130px !important;
}
.diamond-fancy-card {
    display: flex !important;
    justify-content: center !important;
} */
 .diamond-fancy-card {
    height: 300px !important;
 }
.card-overlay {
    display: flex !important;
    justify-content: center !important;
    text-align: center !important;
    align-items: center !important;
}

.card-overlay span {
    color: #fff !important;
    border:1px solid #fff !important;
    padding: 5px !important;
    border-radius: 5px !important;
}
.diamond-fancy-card .card-icon i {
    color: #fff !important;
}

.section-label {
     color: #19395a !important;
}




.shop-shape-v2 {
  padding: 30px 0;
  background: #f5f5f5;
}

.shape-row {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  padding: 10px;
}

.shape-row::-webkit-scrollbar {
  display: none;
}

.shape-card {
  min-width: 157px;
  background: #fff;
  border-radius: 4px;
  text-align: center;
  padding: 10px 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
}

.shape-card span {
  display: block;
  font-size: 12px;
  color: #777;
  margin-bottom: 8px;
}

.shape-card img {
  width: 55px;
  height: auto;
  transition: transform 0.3s ease;
}

/* Hover 🔥 */
.shape-card:hover {
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.shape-card:hover img {
  transform: scale(1.1);
}

.shape-card:hover span {
  color: #000;
}

.category-section {
  text-align: center;
  padding: 50px 20px;
  background: #f5f5f5;
}

.category-section h2 {
  margin-bottom: 30px;
  font-size: 24px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.card {
  position: relative;
  overflow: hidden;
  background: #eee;
  cursor: pointer;
}

.card img {
  width: 100%;
  display: block;
  transition: 0.4s ease;
}

/* Hover image hidden initially */
.card .hover-img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

/* Hover effect */
.card:hover .hover-img {
  opacity: 1;
}

.card:hover .main-img {
  opacity: 0;
}

/* Bottom title */
.card .title {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(150,150,150,0.8);
  color: #fff;
  padding: 12px;
  font-size: 16px;
}

/* Optional shadow hover */
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  transition: 0.3s;
}
.card img {
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background: #000;
}
.card:hover img {
  transform: scale(1.05);
}

.product-card {
  background: #fff;
  padding: 15px;
  position: relative;
  transition: 0.3s;
}

.img-box {
  position: relative;
  overflow: hidden;
}

.img-box img {
  width: 100%;
  transition: 0.4s ease;
}

/* hover image hidden */
.hover-img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

/* hover effect */
.product-card:hover .hover-img {
  opacity: 1;
}

.product-card:hover .main-img {
  opacity: 0;
}

/* zoom effect */
.product-card:hover img {
  transform: scale(1.05);
}

/* wishlist */
.wishlist {
  position: absolute;
  top: 10px;
  right: 10px;
}

/* customize button */
.custom-btn {
  position: absolute;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  background: #000;
  color: #fff;
  border: none;
  padding: 6px 18px;
  opacity: 0;
  transition: 0.3s;
  
}

.product-card:hover .custom-btn {
  opacity: 1;
}

/* button */
.discover-btn {
  border: 1px solid #000;
  padding: 10px 30px;
  background: transparent;
}

.discover-btn:hover {
  background: #000;
  color: #fff;
}


.product-card {
  background: #f9f9f9;
  border: 1px solid #d4af37;
  border-radius: 12px;
  padding: 20px 15px;
  position: relative;
  text-align: center;
  transition: 0.3s;
}

/* badge */
.sale-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #c62828;
  color: #fff;
  padding: 4px 8px;
  font-size: 12px;
}

/* icons */
.icons {
  position: absolute;
  right: 10px;
  top: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.icons i {
  background: #fff;
  padding: 8px;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* image */
.img-box {
  margin: 20px 0;
  position: relative;
}

.main-img {
  width: 120px;
  height: auto;
}

.hover-img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  width: 120px;
  height: auto;
  transition: 0.3s;
}

.img-box:hover .hover-img {
  opacity: 1;
}

/* text */
.price .old {
  text-decoration: line-through;
  color: #999;
}

/* button */
.buy-btn {
  width: 100%;
  background: #1f3b57;
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 6px;
}

/* hover */
.product-card:hover {
  transform: translateY(-5px);
}

.carousel-inner .carousel-item {
  transition: transform 0.5s ease;
}

.carousel-inner .carousel-item-next,
.carousel-inner .carousel-item-prev,
.carousel-inner .carousel-item.active {
  display: flex;
}

.carousel-inner .carousel-item-end.active,
.carousel-inner .carousel-item-next {
  transform: translateX(25%); /* 100 / 4 = 25% */
}

.carousel-inner .carousel-item-start.active,
.carousel-inner .carousel-item-prev {
  transform: translateX(-25%);
}





body {
  background: #e9e9e9;
  font-family: Arial;
}

/* Slider Size */
.lux-slider {
  width: 100%;
  padding: 80px 0;
}

.swiper {
  width: 100%;
  height: 600px;
}

/* Slide Base */
.swiper-slide {
  width: 320px;
  height: 520px;
  
  overflow: hidden;
  transition: 0.5s;
  transform: scale(0.75);
  opacity: 0.4;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CENTER ACTIVE */
.swiper-slide-active {
  transform: scale(1);
  opacity: 1;
  z-index: 5;
}

/* Main Card */
.main-card {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #1a2c73, #000);
  color: #fff;
  padding: 25px;
  border-radius: 20px;
  text-align: center;
  position: relative;
}

/* Top text */
.top-text {
  font-size: 12px;
  opacity: 0.8;
}

/* Heading */
.main-card h2 {
  font-size: 22px;
  margin: 15px 0;
}

/* Product Image */
.product-img {
  margin: 20px auto;
  border: 1px solid #4ecbff;
  padding: 15px;
  border-radius: 12px;
}

.product-img img {
  width: 120px;
}

/* Subtitle */
.subtitle {
  margin-top: 10px;
  font-size: 14px;
}

/* Bottom Product Card */
.bottom-card {
  position: absolute;
  bottom: 60px;
  left: 15px;
  right: 15px;
  background: #1c1c1c;
  padding: 10px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.bottom-card img {
  width: 45px;
  border-radius: 8px;
}

.bottom-card span {
  font-size: 12px;
  flex: 1;
}

.arrow {
  background: #333;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Bottom Lines */
.lines {
  position: absolute;
  bottom: 15px;
  left: 0;
  width: 100%;
  text-align: center;
}

.lines span {
  display: inline-block;
  width: 30px;
  height: 3px;
  background: #666;
  margin: 0 4px;
  border-radius: 2px;
}

.lines span:first-child {
  background: #fff;
}





 .after-sec {
    width: 100%;
    background: #f0ede8;
    padding: 60px 0;
    font-family: 'Segoe UI', sans-serif;
    box-sizing: border-box;
    overflow: hidden;
  }

  .after-sec .slider-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .after-sec .stage {
    position: relative;
    width: 100%;
    height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .after-sec .card {
    position: absolute;
    width: 300px;
    height: 400px;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    /* only transform + opacity animate — innerHTML never changes */
    transition: transform 0.65s cubic-bezier(0.33, 1, 0.68, 1),
                opacity  0.65s cubic-bezier(0.33, 1, 0.68, 1),
                box-shadow 0.65s ease;
    will-change: transform, opacity;
  }

  .after-sec .card img.card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
    transition: opacity 0.35s ease;
  }

  /* top bar */
  .after-sec .top-bar {
    position: absolute;
    top: 0; left: 0; right: 0;
    background: rgba(8,8,18,0.68);
    padding: 9px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 3;
    transition: opacity 0.35s ease;
  }
  .after-sec .t-title {
    font-size: 11px;
    color: rgba(255,255,255,0.9);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
  }
  .after-sec .icons {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: 8px;
  }
  .after-sec .brand-tag {
    background: rgba(255,255,255,0.15);
    border-radius: 3px;
    padding: 2px 7px;
    font-size: 9px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.08em;
  }

  .after-sec .unmute {
    position: absolute;
    top: 40px; right: 10px;
    background: rgba(255,255,255,0.88);
    border-radius: 6px;
    padding: 3px 9px;
    font-size: 10px;
    font-weight: 600;
    color: #111;
    z-index: 3;
    transition: opacity 0.35s ease;
  }

  /* bottom product label */
  .after-sec .product-label {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: rgba(8,8,18,0.82);
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 3;
  }
  .after-sec .product-thumb {
    width: 38px; height: 38px;
    border-radius: 7px;
    overflow: hidden;
    flex-shrink: 0;
    background: rgba(255,255,255,0.1);
  }
  .after-sec .product-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.35s ease;
  }
  .after-sec .product-name {
    flex: 1;
    font-size: 11px;
    font-weight: 500;
    color: #fff;
    line-height: 1.35;
  }
  .after-sec .arrow-circle {
    width: 24px; height: 24px;
    border-radius: 50%;
    background: #fff
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }

  /* nav */
  .after-sec .nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px; height: 42px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.12);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    z-index: 40;
    box-shadow: 0 2px 10px rgba(0,0,0,0.13);
    transition: background 0.2s;
  }
  .after-sec .nav-btn:hover { background: #f0f0f0; }
  .after-sec .nav-btn.left  { left: 14px; }
  .after-sec .nav-btn.right { right: 14px; }
  .after-sec .nav-btn svg   { width: 15px; height: 15px; }

  /* dots */
  .after-sec .dots {
    display: flex;
    gap: 6px;
    margin-top: 22px;
  }
  .after-sec .dot {
    width: 24px; height: 3px;
    border-radius: 2px;
    background: rgba(0,0,0,0.16);
    transition: background 0.3s, width 0.3s;
    cursor: pointer;
  }
  .after-sec .dot.active {
    background: rgba(0,0,0,0.55);
    width: 38px;
  }

  .top-bar span {
    color: #fff;
  }




.lux-section {
  display: flex;
  align-items: center;
  height: 600px;
  overflow: hidden;
}

/* LEFT SIDE */
.lux-content {
  width: 35%;
  background: #5a4a3f;
  color: #fff;
  padding: 80px;
  position: relative;
}

.tag {
  letter-spacing: 3px;
  font-size: 12px;
  color: #d6a77a;
}

.lux-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  margin: 20px 0;
}

.desc {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 25px;
}

.price {
  margin-bottom: 25px;
}

.price .new {
  font-size: 18px;
  margin-right: 15px;
}

.price .old {
  text-decoration: line-through;
  opacity: 0.7;
}

/* Button */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border: 1px solid #fff;
  text-decoration: none;
  color: #fff;
  transition: 0.3s;
}

.btn:hover {
  background: #fff;
  color: #000;
}

/* CENTER IMAGE */
.center-img {
  width: 30%;
  display: flex;
  justify-content: center;
  z-index: 2;
}

.center-img img {
  width: 280px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

/* RIGHT IMAGE */
.right-img {
  width: 35%;
}

.right-img img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

/* ================= */
/* 🔥 ANIMATIONS */
/* ================= */

.animate {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease;
}

/* left slide */
.fade-left {
  transform: translateX(-80px);
}

/* right slide */
.fade-right {
  transform: translateX(80px);
}

/* zoom */
.zoom-in {
  transform: scale(0.7);
}

/* active */
.animate.show {
  opacity: 1;
  transform: translate(0) scale(1);
}






.about-sec {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    min-height: 100vh !important;
    font-family: 'Montserrat', sans-serif !important;
    background: #f5f0e8 !important;
  }

  /* ── LEFT: IMAGES ── */
  .about-sec__images {
    position: relative !important;
    background: #e8e2d8 !important;
    overflow: hidden !important;
  }

  .about-sec__img-main {
    position: absolute !important;
    left: 10% !important;
    top: 8% !important;
    width: 58% !important;
    aspect-ratio: 3 / 4 !important;
    background: url('https://images.unsplash.com/photo-1589128777073-263566ae5e4d?w=600&q=80') center / cover no-repeat;
    box-shadow: 12px 20px 48px rgba(0, 0, 0, 0.18) !important;
    z-index: 2;
    animation: about-floatIn 0.9s 0.2s ease both !important;
  }

  .about-sec__img-accent {
    position: absolute !important;
    right: 6% !important; 
    bottom: 8% !important;
    width: 46% !important;
    aspect-ratio: 1 / 1.2 !important;
    background: url('https://images.unsplash.com/photo-1515562141207-7a88fb7ce338?w=600&q=80') center / cover no-repeat !important;
    box-shadow: 8px 12px 32px rgba(0, 0, 0, 0.14) !important;
    z-index: 1 !important;
    animation: about-floatIn 0.9s 0.4s ease both !important;
  }

  /* Years badge */
  .about-sec__badge {
    position: absolute !important;
    left: 6% !important;
    bottom: 12% !important;
    background: #5c5346 !important;
    color: #f5f0e8 !important;
    padding: 16px 20px !important;
    z-index: 3 !important;
    min-width: 130px !important;
    animation: about-fadeUp 0.8s 0.6s ease both !important;
  }

  .about-sec__badge-num {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 36px !important;
    font-weight: 300 !important;
    display: block !important;
    line-height: 1 !important;
  }

  .about-sec__badge-text {
    font-size: 9px !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    color: rgba(245, 240, 232, 0.7) !important;
    margin-top: 4px !important;
    display: block !important;
  }

  /* ── RIGHT: CONTENT ── */
  .about-sec__content {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    padding: 64px 60px !important;
    background: #5c5346 !important;
  }

  .about-sec__label {
    font-size: 10px !important;
    letter-spacing: 4px !important;
    color: #c9956a !important;
    text-transform: uppercase !important;
    margin-bottom: 18px !important;
    animation: about-fadeUp 0.8s 0.2s ease both !important;
  }

  .about-sec__title {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: clamp(30px, 3.5vw, 48px) !important;
    font-weight: 300 !important;
    color: #f5f0e8 !important;
    line-height: 1.15 !important;
    margin-bottom: 24px !important; 
    letter-spacing: 0.5px !important;
    animation: about-fadeUp 0.8s 0.35s ease both !important;
  }

  .about-sec__divider {
    width: 48px !important; 
    height: 1.5px !important;
    background: #c9956a !important;
    margin-bottom: 24px !important;
    animation: about-fadeUp 0.8s 0.45s ease both !important; 
        left: 310px;
    position: relative;
  }

  .about-sec__desc {
    font-size: 16.5px !important;
    line-height: 1.9 !important;
    color: #fff !important;
    font-weight: 300 !important;
    margin-bottom: 16px !important;
    animation: about-fadeUp 0.8s 0.55s ease both !important;
  }

  /* Stats row */
  .about-sec__stats {
    display: flex !important;
    gap: 36px !important;
    margin-top: 32px !important;
    padding-top: 28px !important;
    border-top: 1px solid rgba(245, 240, 232, 0.12) !important;
    animation: about-fadeUp 0.8s 0.7s ease both !important;
    justify-content: center;
  }

  .about-sec__stat {}

  .about-sec__stat-num {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 30px !important;
    font-weight: 300 !important;
    color: #c9956a !important;
    display: block !important;
    line-height: 1 !important;
  }

  .about-sec__stat-label {
    font-size: 9px !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    color: #fff !important;
    margin-top: 4px !important;
    display: block !important;
  }

  /* ── ANIMATIONS ── */
  @keyframes about-fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  @keyframes about-floatIn {
    from { opacity: 0; transform: scale(0.95) translateY(16px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 768px) {
    .about-sec {
      grid-template-columns: 1fr;
    }

    .about-sec__images {
      min-height: 400px;
    }

    .about-sec__content {
      padding: 48px 32px;
    }

    .about-sec__stats {
      gap: 24px;
    }
  }
.cta-sec {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    min-height: 380px;
    background: #f2ede6;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
  }

  /* ── SIDE IMAGE PANELS ── */
  .cta-sec__img-wrap {
    height: 100%;
    min-height: 380px;
    position: relative;
    overflow: hidden;
  }

  .cta-sec__img-wrap--left {
    background: url('https://images.unsplash.com/photo-1599643478518-a784e5dc4c8f?w=600&q=80')
      center top / cover no-repeat;
    animation: cta-fadeIn 1s 0.1s ease both;
  }

  .cta-sec__img-wrap--right {
    background: url('https://images.unsplash.com/photo-1605100804763-247f67b3557e?w=600&q=80')
      center top / cover no-repeat;
    animation: cta-fadeIn 1s 0.1s ease both;
  }

  /* Fade edges into background */
  .cta-sec__img-wrap--left::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 50%, #f2ede6 100%);
  }

  .cta-sec__img-wrap--right::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to left, transparent 50%, #f2ede6 100%);
  }

  /* ── CENTER BODY ── */
  .cta-sec__body {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 56px 64px;
    min-width: 380px;
  }

  .cta-sec__tag {
    display: inline-block;
    font-size: 13.5px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #b08d6a;
    margin-bottom: 18px;
    animation: cta-fadeUp 0.7s 0.3s ease both;
  }

  .cta-sec__title {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: clamp(28px, 3.2vw, 42px) !important;
    font-weight: 300;
    color: #1e1a16 !important;
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: 0.3px;
    animation: cta-fadeUp 0.7s 0.45s ease both !important;
  }

  .cta-sec__title em {
    font-style: italic;
    color: #b08d6a;
  }

  .cta-sec__divider {
    width: 40px;
    height: 1px;
    background: #b08d6a;
    margin: 0 auto 18px;
    animation: cta-fadeUp 0.7s 0.55s ease both;
  }

  .cta-sec__desc {
    font-size: 15px;
    color: #000;
    font-weight: 300;
    letter-spacing: 0.8px;
    line-height: 1.8;
    margin-bottom: 36px;
    animation: cta-fadeUp 0.7s 0.65s ease both;
  }

  /* ── BUTTON ── */
  .cta-sec__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 44px;
    border: 1px solid #1e1a16;
    background: transparent;
    color: #1e1a16;
    font-family: 'Montserrat', sans-serif;
    font-size: 9.5px;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: color 0.4s ease;
    animation: cta-fadeUp 0.7s 0.75s ease both;
  }

  .cta-sec__btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #1e1a16;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 0;
  }

  .cta-sec__btn:hover::before { transform: scaleX(1); }
  .cta-sec__btn:hover { color: #f2ede6; }

  .cta-sec__btn span { position: relative; z-index: 1; }

  .cta-sec__btn-arrow {
    position: relative;
    z-index: 1;
    font-size: 13px;
    transition: transform 0.3s ease;
  }

  .cta-sec__btn:hover .cta-sec__btn-arrow { transform: translateX(4px); }

  /* ── ANIMATIONS ── */
  @keyframes cta-fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
  }

  @keyframes cta-fadeUp {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    .cta-sec {
      grid-template-columns: 1fr;
    }
    .cta-sec__img-wrap--left,
    .cta-sec__img-wrap--right { display: none; }
    .cta-sec__body {
      padding: 48px 24px;
      min-width: unset;
    }
  }


  body {
  font-family: 'Poppins', sans-serif !important;
}

.footer {
  background: #f5f5f5 !important;
  padding: 60px 40px 20px !important;
  color: #111 !important;
}

.footer-container {
  display: grid !important;
  grid-template-columns: repeat(5, 1fr) !important;
  gap: 40px !important;
}

.footer-col h3 {
  font-size: 18px !important;
  margin-bottom: 15px !important;
  position: relative !important;
}

.footer-col h3::after {
  content: "" !important;
  width: 40px !important;
  height: 2px !important;
  background: #000 !important;
  position: absolute !important;
  bottom: -5px !important;
  left: 0px !important;
}

.footer-col ul {
  list-style: none !important;
  padding: 0 !important;
  margin-top: 20px !important;
}

.footer-col ul li {
  margin-bottom: 10px !important;
  font-size: 14px !important;
}

.footer-col ul li a {
  text-decoration: none !important;
  color: #333 !important;
}

.footer-col ul li a:hover {
  color: #000 !important;
}

.contact li {
  margin-bottom: 10px !important;
}

.social-icons {
  margin-top: 15px !important;
}

.social-icons span {
  display: inline-block !important;
  width: 35px !important;
  height: 35px !important;
  border: 1px solid #000 !important;
  border-radius: 50% !important;
  text-align: center !important;
  line-height: 35px !important;
  margin-right: 8px !important;
  font-size: 14px !important;
}

.newsletter p {
  font-size: 14px !important;
  margin: 15px 0 !important;
}

.subscribe-box {
  display: flex !important;
}

.subscribe-box input {
  flex: 1 !important;
  padding: 12px !important;
  border: none !important;
  background: #e5e5e5 !important;
  outline: none !important;
}

.subscribe-box button {
  background: #000 !important;
  color: #fff !important;
  border: none !important;
  padding: 12px 20px !important;
  cursor: pointer !important;
}

.footer-bottom {
  border-top: 1px solid #ddd !important;
  margin-top: 40px !important;
  padding-top: 20px !important;
  text-align: center !important;
}

.footer-bottom .logo {
  font-size: 28px !important;
  margin-bottom: 10px !important;
}

.payments img {
  height: 25px !important;
  margin: 5px !important;
}

.footer-bottom p {
  font-size: 13px !important;
  color: #555 !important;
}
.payments {
      display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px !important;
}
.payments img {
  width: 53% !important;
  max-width: 53% !important;
}
.footer-bottom .logo img {
  width: 188px !important;
  height: 110px !important;
}
.category-section {
  padding-bottom: 0 !important;
}
.footer-col li,
.footer-col h3,
.footer-col p {
  text-align: left !important;
}


/* show multiple items */
.carousel-inner {
  display: flex;
}

.carousel-item {
  display: flex !important;
  transition: transform 0.8s ease;
}

/* each card width */
.carousel-item > .container {
  flex: 0 0 100%;
}

/* important: prevent full jump */
.carousel-inner .carousel-item-next,
.carousel-inner .carousel-item-prev,
.carousel-inner .carousel-item.active {
  display: flex;
}
.card {
  height: 400px !important;
    display: flex;
    align-items: center;
    justify-content: center;
}
.card>img.main-img {
  width: 42% !important;
}

.carousel-wrapper {
  overflow: hidden !important;
  width: 100% !important;
}

.carousel-track {
  display: flex !important;
  gap: 20px !important;
  animation: scroll 15s linear infinite !important;
}

/* 🔥 EXACT 4 BOX FIX */
.product-card {
  flex: 0 0 25% !important;   /* 4 cards */
  max-width: 25% !important;
  box-sizing: border-box !important;
}

/* animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}