/* ═══════════════════════════════════════════════════════ ELEGANCE OF INDIA — LUXURY FASHION HOMEPAGE Inspired by Aashni & Co ═══════════════════════════════════════════════════════ */ /* ── RESET & BASE ── */ *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; } :root { --gold: #b8963e; --gold-lt: #d4af6a; --gold-dk: #8a6d20; --black: #111111; --charcoal: #2a2a2a; --warm-gray: #f7f5f2; --mid-gray: #e8e4e0; --serif: 'Raleway', sans-serif; --sans: 'Raleway', sans-serif; --white: #ffffff; --text-lt: #888888; --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94); --shadow-sm: 0 2px 12px rgba(0,0,0,0.08); --shadow-md: 0 8px 32px rgba(0,0,0,0.12); --shadow-lg: 0 20px 60px rgba(0,0,0,0.16); } html { scroll-behavior: smooth; } body { font-family: var(--sans); font-size: 14px; color: var(--text); background: var(--white); overflow-x: hidden; line-height: 1.6; } a { color: inherit; text-decoration: none; } img { display: block; width: 100%; object-fit: cover; } ul { list-style: none; } button { cursor: pointer; border: none; background: none; font-family: var(--sans); } .container { max-width: 1380px; margin: 0 auto; padding: 0 32px; } /* ── SECTION ── */ .section { padding: 80px 0; } .section-header { text-align: center; margin-bottom: 52px; position: relative; } .section-header h2 { font-family: var(--serif); font-style: italic; font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 400; color: var(--black); letter-spacing: 0.02em; margin-bottom: 12px; } .section-header p { font-size: 13px; color: var(--text-lt); letter-spacing: 0.12em; text-transform: uppercase; } .view-all-link { position: absolute; right: 0; top: 50%; transform: translateY(-50%); font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); transition: color var(--transition); } .view-all-link:hover { color: var(--gold-dk); } .view-all-link i { margin-left: 6px; font-size: 10px; } /* ── BUTTONS ── */ .btn { display: inline-block; padding: 13px 32px; font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; transition: all var(--transition); } .btn-gold { background: var(--gold); color: var(--white); border: 1px solid var(--gold); } .btn-gold:hover { background: var(--gold-dk); border-color: var(--gold-dk); } .btn-light { background: var(--white); color: var(--black); } .btn-light:hover { background: var(--gold); color: var(--white); } .btn-outline-light { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.7); } .btn-outline-light:hover { background: var(--white); color: var(--black); } /* ═══════════════════════════════════════════════════════ TOP BAR ═══════════════════════════════════════════════════════ */ .topbar { background: var(--black); color: var(--white); font-size: 11px; letter-spacing: 0.1em; height: 36px; display: flex; align-items: center; justify-content: space-between; padding: 0 32px; overflow: hidden; position: relative; z-index: 200; } /* ═══════════════════════════════════════════════════════ HEADER & NAVIGATION ═══════════════════════════════════════════════════════ */ .announcement-bar { background: var(--black); color: var(--white); padding: 10px 0; font-family: var(--sans); font-size: 10px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; overflow: hidden; position: relative; z-index: 160; } .announcement-bar-content { display: flex; justify-content: center; align-items: center; gap: 40px; white-space: nowrap; } .announcement-item { display: flex; align-items: center; gap: 8px; } .announcement-item i { color: var(--gold); font-size: 12px; } /* HEADER */ .site-header { position: sticky; top: 0; z-index: 150; background: rgba(255,255,255,0.97); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid var(--mid-gray); transition: box-shadow var(--transition), background var(--transition); } .site-header.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.08); background: rgba(255,255,255,0.95); } .header-main-row { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; height: 80px; padding: 0 40px; } .header-left { display: flex; align-items: center; gap: 20px; } .header-center { display: flex; justify-content: center; } .header-right { display: flex; justify-content: flex-end; align-items: center; } .header-nav-row { display: flex; align-items: center; justify-content: center; height: 48px; padding: 0 24px; } .logo { font-family: var(--serif); font-size: 1.9rem; font-weight: 400; color: var(--black); text-decoration: none; letter-spacing: 0.08em; text-transform: capitalize; white-space: nowrap; } /* ── NAVIGATION ── */ .main-nav { display: flex; justify-content: center; } .main-nav > ul { display: flex; align-items: center; gap: 2px; } .main-nav > ul > li { position: relative; } .main-nav > ul > li > a { display: flex; align-items: center; gap: 5px; padding: 8px 14px; font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--charcoal); transition: color var(--transition); white-space: nowrap; } .main-nav > ul > li > a:hover, .main-nav > ul > li:hover > a { color: var(--gold); } .main-nav > ul > li > a i { font-size: 8px; opacity: 0.7; transition: transform var(--transition); } .main-nav > ul > li:hover > a i { transform: rotate(180deg); } .nav-weddings { color: var(--gold) !important; } .nav-sale { color: #c0392b !important; } /* Mega Menu */ .mega-panel { position: absolute; top: calc(100% + 1px); left: 50%; transform: translateX(-50%) translateY(10px); background: var(--white); border: 1px solid var(--mid-gray); border-top: 2px solid var(--gold); display: flex; gap: 0; padding: 28px 32px; min-width: 520px; box-shadow: var(--shadow-lg); opacity: 0; pointer-events: none; transition: opacity var(--transition), transform var(--transition); z-index: 200; } .main-nav > ul > li:hover .mega-panel { opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0); } .mega-col { flex: 1; padding: 0 16px; border-right: 1px solid var(--mid-gray); } .mega-col:first-child { padding-left: 0; } .mega-col:last-child { border-right: none; } .mega-col h4 { font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; } .mega-col ul li a { display: block; padding: 5px 0; font-size: 12px; color: var(--text); letter-spacing: 0.04em; transition: color var(--transition), padding var(--transition); } .mega-col ul li a:hover { color: var(--gold); padding-left: 6px; } .mega-img { flex: 0 0 160px; margin-left: 16px; position: relative; overflow: hidden; } .mega-img img { width: 100%; height: 200px; object-fit: cover; transition: transform var(--transition); } .mega-panel:hover .mega-img img { transform: scale(1.05); } .mega-img span { position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%); background: var(--black); color: var(--white); font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 6px 14px; white-space: nowrap; } .mega-designers { min-width: 440px; } /* Mega menu photo strip */ .mega-photo:hover span { color: var(--gold); } /* ── Customer Care + Header Icons ── */ .header-care { display: flex; align-items: center; gap: 12px; } .header-care-desktop { display: block; } .header-care-link { display: flex; align-items: center; gap: 8px; text-decoration: none; color: var(--charcoal); font-family: var(--sans); font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; transition: color var(--transition); } .header-care-link:hover { color: var(--gold); } .header-care-link i { font-size: 16px; color: #25d366; } .header-icons { display: flex; align-items: center; gap: 20px; justify-content: flex-end; } .header-icon-btn { background: none; border: none; font-size: 18px; color: var(--charcoal); cursor: pointer; padding: 8px; transition: color var(--transition), transform var(--transition); display: flex; align-items: center; justify-content: center; position: relative; } .header-icon-btn:hover { color: var(--gold); transform: translateY(-2px); } .cart-badge { position: absolute; top: 0; right: 0; min-width: 16px; height: 16px; background: var(--gold); color: var(--white); border-radius: 50%; font-size: 9px; font-family: var(--sans); font-weight: 700; display: none; align-items: center; justify-content: center; padding: 0 2px; border: 1.5px solid var(--white); } /* Search row (shown when search icon clicked) */ .header-search-row { display: none; padding: 0 32px; border-bottom: 1px solid var(--mid-gray); background: var(--white); } .header-search-row.open { display: flex; align-items: center; } .header-search-form { position: relative; max-width: 800px; width: 100%; display: flex; align-items: center; background: var(--warm-gray); padding: 0 24px; border-radius: 4px; gap: 0; } .header-search-form > i { font-size: 15px; color: #888; flex-shrink: 0; margin-right: 15px; } .header-search-form input { flex: 1; background: none; border: none; padding: 16px 0; font-family: var(--sans); font-size: 14px; color: var(--black); outline: none; } .header-search-form input::placeholder { color: #999; letter-spacing: 0.05em; } .header-search-form input::-webkit-search-cancel-button { display: none; } .search-row-close { background: none; border: none; cursor: pointer; color: var(--charcoal); font-size: 15px; transition: color var(--transition); padding: 4px; } .search-row-close:hover { color: var(--gold); } .mobile-menu-btn { display: none; flex-direction: column; gap: 5px; padding: 6px; cursor: pointer; z-index: 160; } .mobile-menu-btn span { display: block; width: 24px; height: 2px; background: var(--black); transition: all var(--transition); } .mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); } .mobile-menu-btn.active span:nth-child(2) { opacity: 0; } .mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); } .mobile-nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 139; opacity: 0; transition: opacity 0.35s; } .mobile-nav-overlay.open { display: block; opacity: 1; } /* ═══════════════════════════════════════════════════════ HERO SLIDER ═══════════════════════════════════════════════════════ */ .hero-slider { position: relative; width: 100%; aspect-ratio: 2 / 1; overflow: hidden; } .slide { position: absolute; inset: 0; background-size: cover; background-position: center center; opacity: 0; transition: opacity 1.2s ease; display: flex; align-items: center; justify-content: flex-start; } .slide.active { opacity: 1; z-index: 2; } .slide-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.2) 60%, transparent 100%); } .slide-content { position: relative; z-index: 3; padding-left: clamp(32px, 8vw, 120px); color: var(--white); max-width: 600px; } .slide-kicker { font-size: 11px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-lt); margin-bottom: 18px; } .slide-content h1 { font-family: var(--serif); font-style: italic; font-size: clamp(3rem, 7vw, 6rem); font-weight: 300; line-height: 1.05; margin-bottom: 20px; } .slide-content h1 em { font-style: italic; color: var(--gold-lt); } .slide-sub { font-size: 14px; letter-spacing: 0.06em; opacity: 0.85; margin-bottom: 40px; } .slide-shop-link { display: inline-block; margin-top: 4px; font-family: var(--sans); font-style: italic; font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--white); border-bottom: 1px solid rgba(255,255,255,0.5); padding-bottom: 3px; transition: color var(--transition), border-color var(--transition); } .slide-shop-link:hover { color: var(--gold-lt); border-color: var(--gold-lt); } /* Slider controls */ .hero-prev, .hero-next { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; width: 52px; height: 52px; background: rgba(255,255,255,0.12); backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,0.3); color: var(--white); font-size: 14px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all var(--transition); } .hero-prev { left: 28px; } .hero-next { right: 28px; } .hero-prev:hover, .hero-next:hover { background: var(--gold); border-color: var(--gold); } .hero-dots { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 10; display: flex; gap: 10px; } .dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,0.4); border: 1px solid rgba(255,255,255,0.6); cursor: pointer; transition: all var(--transition); } .dot.active { background: var(--gold); border-color: var(--gold); width: 28px; border-radius: 4px; } /* ═══════════════════════════════════════════════════════ CATEGORY GRID ═══════════════════════════════════════════════════════ */ /* Category carousel wrapper */ .cat-carousel { position: relative; } .cat-arrow { position: absolute; top: 50%; transform: translateY(-60%); z-index: 10; background: var(--white); border: 1px solid var(--mid-gray); width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 12px; color: var(--charcoal); transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease; box-shadow: 0 2px 8px rgba(0,0,0,0.08); } .cat-arrow:hover { background: var(--black); color: var(--white); border-color: var(--black); } .cat-arrow:disabled { opacity: 0.3; cursor: default; } .cat-arrow--prev { left: -18px; } .cat-arrow--next { right: -18px; } .cat-track-wrap { overflow: hidden; } .category-grid { display: grid; grid-template-columns: repeat(6, calc((100% - 3 * 24px) / 4)); gap: 24px; transition: transform 0.75s cubic-bezier(0.4, 0, 0.2, 1); will-change: transform; } .cat-card { position: relative; display: flex; flex-direction: column; } .cat-img-wrap { position: relative; overflow: hidden; aspect-ratio: 2/3; background: var(--warm-gray); } .cat-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.7s ease; } .cat-card:hover .cat-img-wrap img { transform: scale(1.06); } .cat-label { padding: 10px 0 6px; text-align: center; } .cat-label span { font-family: var(--serif); font-style: italic; font-size: 1rem; font-weight: 500; color: var(--charcoal); letter-spacing: 0.06em; } .cat-img-wrap::after { content: none; } /* ═══════════════════════════════════════════════════════ FEATURED BANNER ═══════════════════════════════════════════════════════ */ .featured-banner { display: grid; grid-template-columns: 1fr 1fr; height: 580px; } .fb-left, .fb-right { position: relative; overflow: hidden; } .fb-left img, .fb-right img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; } .fb-left:hover img, .fb-right:hover img { transform: scale(1.05); } .fb-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%); display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; padding: 48px; color: var(--white); } .fb-kicker { font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-lt); margin-bottom: 10px; } .fb-overlay h3 { font-family: var(--serif); font-style: italic; font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 400; margin-bottom: 24px; } /* ═══════════════════════════════════════════════════════ PRODUCT CARDS ═══════════════════════════════════════════════════════ */ /* ── New Arrivals Carousel ── */ .na-carousel { position: relative; } .na-track-wrap { overflow: hidden; } .products-grid { display: grid; grid-template-columns: repeat(5, calc((100% - 4 * 24px) / 4)); gap: 24px; transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1); will-change: transform; } .na-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 36px; height: 36px; border: 1px solid var(--mid-gray); background: var(--white); color: var(--charcoal); font-size: 12px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.25s, color 0.25s, border-color 0.25s; z-index: 10; } .na-arrow:hover { background: var(--black); color: var(--white); border-color: var(--black); } .na-arrow--prev { left: -20px; } .na-arrow--next { right: -20px; } .na-arrow:disabled { opacity: 0.3; cursor: default; } .na-arrow:disabled:hover { background: var(--white); color: var(--charcoal); border-color: var(--mid-gray); } .product-card { position: relative; } .product-img-wrap { position: relative; overflow: hidden; aspect-ratio: 2/3; background: var(--warm-gray); } .product-img-wrap img { width: 100%; height: 100%; object-fit: contain; display: block; transition: opacity 0.5s ease, transform 0.7s ease; } .product-img-wrap .hover-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; } .product-card:hover .product-img-wrap img:first-child { opacity: 0; } .product-card:hover .hover-img { opacity: 1; } .product-card:hover .product-img-wrap img { transform: scale(1.04); } /* cycle-img styles handled via inline styles on the element */ .product-actions { position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%) translateY(20px); display: flex; gap: 8px; opacity: 0; transition: all var(--transition); } .product-card:hover .product-actions { opacity: 1; transform: translateX(-50%) translateY(0); } .action-btn { width: 40px; height: 40px; background: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; color: var(--charcoal); box-shadow: var(--shadow-sm); transition: all var(--transition); } .action-btn:hover { background: var(--gold); color: var(--white); } .product-badge { position: absolute; top: 14px; left: 14px; background: var(--black); color: var(--white); font-size: 9px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; padding: 4px 10px; } .bestseller-badge { background: var(--gold); } .product-info { padding: 18px 4px 8px; } .product-designer { font-size: 10px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; } .product-name { font-family: var(--serif); font-style: italic; font-size: 1.05rem; font-weight: 400; color: var(--black); margin-bottom: 8px; line-height: 1.3; } .product-price { font-size: 13px; font-weight: 500; color: var(--charcoal); letter-spacing: 0.04em; } /* ═══════════════════════════════════════════════════════ OCCASION GRID ═══════════════════════════════════════════════════════ */ .occasion-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(2, 260px); gap: 10px; } .occ-card { position: relative; overflow: hidden; background-size: cover; background-position: center; display: block; } .occ-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.35); display: flex; align-items: center; justify-content: center; transition: background var(--transition); } .occ-card:hover .occ-overlay { background: rgba(0,0,0,0.55); } .occ-overlay span { font-family: var(--serif); font-style: italic; font-size: 1.6rem; font-weight: 400; color: var(--white); letter-spacing: 0.06em; text-shadow: 0 2px 8px rgba(0,0,0,0.4); border-bottom: 1px solid rgba(255,255,255,0.4); padding-bottom: 4px; transition: border-color var(--transition), color var(--transition); } .occ-card:hover .occ-overlay span { border-color: var(--gold-lt); color: var(--gold-lt); } /* ═══════════════════════════════════════════════════════ DESIGNER CAROUSEL ═══════════════════════════════════════════════════════ */ .designer-carousel { position: relative; overflow: hidden; } .designer-track { display: flex; gap: 20px; transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94); } .designer-card { flex: 0 0 calc((100% - 120px) / 7); text-align: center; } .designer-img { aspect-ratio: 3/4; overflow: hidden; background: var(--warm-gray); margin-bottom: 14px; } .designer-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; } .designer-card:hover .designer-img img { transform: scale(1.07); } .designer-card p { font-family: var(--serif); font-style: italic; font-size: 1rem; font-weight: 400; color: var(--black); letter-spacing: 0.04em; transition: color var(--transition); } .designer-card:hover p { color: var(--gold); } .carousel-prev, .carousel-next { position: absolute; top: 40%; transform: translateY(-50%); width: 44px; height: 44px; background: var(--white); border: 1px solid var(--mid-gray); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; color: var(--charcoal); box-shadow: var(--shadow-sm); z-index: 5; transition: all var(--transition); } .carousel-prev { left: -22px; } .carousel-next { right: -22px; } .carousel-prev:hover, .carousel-next:hover { background: var(--gold); color: var(--white); border-color: var(--gold); } /* ═══════════════════════════════════════════════════════ FULL PROMO ═══════════════════════════════════════════════════════ */ .full-promo { position: relative; height: 600px; overflow: hidden; display: flex; align-items: center; justify-content: flex-end; } .promo-image { position: absolute; inset: 0; } .promo-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; } .promo-image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to left, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.2) 60%, transparent 100%); } .promo-content { position: relative; z-index: 2; color: var(--white); text-align: right; padding-right: clamp(32px, 8vw, 120px); max-width: 560px; } .promo-kicker { font-size: 11px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-lt); margin-bottom: 18px; } .promo-content h2 { font-family: var(--serif); font-style: italic; font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 300; line-height: 1.1; margin-bottom: 20px; } .promo-content h2 em { font-style: italic; color: var(--gold-lt); } .promo-content p { font-size: 14px; opacity: 0.85; letter-spacing: 0.04em; line-height: 1.7; margin-bottom: 36px; } /* ═══════════════════════════════════════════════════════ JOURNAL ═══════════════════════════════════════════════════════ */ .journal-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 24px; } .journal-card { display: block; overflow: hidden; background: var(--warm-gray); } .journal-featured { display: flex; flex-direction: column; } .journal-featured img { height: 380px; transition: transform 0.7s ease; } .journal-card:hover img { transform: scale(1.04); } .journal-info { padding: 28px; } .journal-tag { display: inline-block; font-size: 9px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; } .journal-featured h3 { font-family: var(--serif); font-style: italic; font-size: 1.6rem; font-weight: 400; color: var(--black); line-height: 1.3; margin-bottom: 14px; } .journal-small h3 { font-family: var(--serif); font-style: italic; font-size: 1.1rem; font-weight: 400; color: var(--black); line-height: 1.3; margin-bottom: 12px; } .journal-featured p { font-size: 13px; color: var(--text-lt); line-height: 1.7; margin-bottom: 20px; } .journal-read { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); display: inline-flex; align-items: center; gap: 8px; transition: gap var(--transition); } .journal-card:hover .journal-read { gap: 14px; } .journal-side { display: flex; flex-direction: column; gap: 24px; } .journal-small { display: flex; flex-direction: column; flex: 1; } .journal-small img { height: 200px; } /* ═══════════════════════════════════════════════════════ TRUST BADGES ═══════════════════════════════════════════════════════ */ .trust-section { background: var(--warm-gray); padding: 60px 0; border-top: 1px solid var(--mid-gray); border-bottom: 1px solid var(--mid-gray); } .trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; } .trust-item i { font-size: 1.8rem; color: var(--gold); margin-bottom: 16px; } .trust-item h4 { font-size: 13px; font-weight: 600; letter-spacing: 0.08em; color: var(--black); margin-bottom: 8px; text-transform: uppercase; } .trust-item p { font-size: 12px; color: var(--text-lt); } /* ═══════════════════════════════════════════════════════ INSTAGRAM GRID ═══════════════════════════════════════════════════════ */ .insta-section { padding-bottom: 0; } .insta-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0; margin-top: 40px; } .insta-cell { position: relative; overflow: hidden; aspect-ratio: 1; } .insta-cell img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; } .insta-cell:hover img { transform: scale(1.08); } .insta-hover { position: absolute; inset: 0; background: rgba(0,0,0,0.45); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity var(--transition); } .insta-cell:hover .insta-hover { opacity: 1; } .insta-hover i { font-size: 1.6rem; color: var(--white); } /* ═══════════════════════════════════════════════════════ NEWSLETTER ═══════════════════════════════════════════════════════ */ .newsletter-section { background: var(--black); padding: 80px 0; } .newsletter-inner { display: flex; align-items: center; justify-content: space-between; gap: 48px; } .newsletter-text h2 { font-family: var(--serif); font-style: italic; font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 400; color: var(--white); margin-bottom: 10px; } .newsletter-text p { font-size: 13px; color: rgba(255,255,255,0.6); max-width: 400px; } .newsletter-form { display: flex; gap: 0; flex-shrink: 0; } .newsletter-form input { width: 320px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.18); border-right: none; color: var(--white); padding: 14px 20px; font-family: var(--sans); font-style: italic; font-size: 12px; letter-spacing: 0.06em; outline: none; transition: border-color var(--transition); } .newsletter-form input::placeholder { color: rgba(255,255,255,0.4); } .newsletter-form input:focus { border-color: var(--gold); } .newsletter-form .btn-gold { border-left: none; } /* ═══════════════════════════════════════════════════════ FOOTER ═══════════════════════════════════════════════════════ */ .site-footer { background: #0d0d0d; color: rgba(255,255,255,0.7); padding: 80px 0 0; } .footer-logo { color: var(--white) !important; font-size: 1.8rem !important; } .footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.08); } .footer-brand p { font-size: 12px; line-height: 1.8; margin: 24px 0 32px; max-width: 300px; } .social-links { display: flex; gap: 16px; } .social-links a { width: 38px; height: 38px; border: 1px solid rgba(255,255,255,0.18); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; color: rgba(255,255,255,0.7); transition: all var(--transition); } .social-links a:hover { background: var(--gold); border-color: var(--gold); color: var(--white); } .footer-col h5 { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--white); margin-bottom: 20px; } .footer-col ul li { margin-bottom: 10px; } .footer-col ul li a { font-size: 12px; color: rgba(255,255,255,0.55); transition: color var(--transition); } .footer-col ul li a:hover { color: var(--gold); } .footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 24px 0; border-top: 1px solid rgba(255,255,255,0.06); } .footer-bottom p { font-size: 11px; color: rgba(255,255,255,0.3); } .payment-icons { display: flex; gap: 14px; font-size: 1.6rem; color: rgba(255,255,255,0.4); align-items: center; } .pay-label { font-family: var(--sans); font-style: italic; font-size: 11px; letter-spacing: 0.05em; color: rgba(255,255,255,0.4); } /* Footer info bar */ .footer-info-bar { background: #0a0a0a; border-top: 1px solid rgba(255,255,255,0.06); padding: 14px 0; } .footer-info-bar__inner { max-width: 1400px; margin: 0 auto; padding: 0 40px; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 8px 28px; } .footer-info-bar__inner a { font-family: var(--sans); font-style: italic; font-size: 11px; letter-spacing: 0.06em; color: rgba(255,255,255,0.4); text-decoration: none; transition: color var(--transition); } .footer-info-bar__inner a:hover { color: var(--gold-lt); } /* ═══════════════════════════════════════════════════════ NEW ARRIVALS ═══════════════════════════════════════════════════════ */ .new-arrivals { background: var(--white); } .na-header { display: flex; align-items: baseline; justify-content: space-between; padding-bottom: 20px; margin-bottom: 36px; border-bottom: 1px solid var(--mid-gray); } .na-header h2 { font-family: var(--serif); font-style: italic; font-size: 1.7rem; font-weight: 400; letter-spacing: 0.06em; color: var(--black); } .view-all-link { display: inline-flex; align-items: center; gap: 6px; font-family: var(--sans); font-style: italic; font-size: 10px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--charcoal); text-decoration: none; transition: gap var(--transition), color var(--transition); } .view-all-link:hover { gap: 10px; color: var(--gold); } .product-card { text-decoration: none; color: inherit; display: block; } .product-card .product-img-wrap { position: relative; overflow: hidden; aspect-ratio: 2/3; background: var(--warm-gray); } .product-card .product-img-wrap img { width: 100%; height: 100%; object-fit: contain; display: block; transition: transform 0.8s ease; } .product-card:hover .product-img-wrap img { transform: scale(1.05); } .product-card .action-btn.wishlist-btn { position: absolute; top: 14px; right: 14px; width: 36px; height: 36px; background: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; color: var(--charcoal); opacity: 0; transform: translateY(-6px); transition: opacity var(--transition), transform var(--transition), color var(--transition); box-shadow: 0 2px 8px rgba(0,0,0,0.12); border: none; cursor: pointer; } .product-card:hover .action-btn.wishlist-btn { opacity: 1; transform: translateY(0); } .product-card .action-btn.wishlist-btn:hover { color: #c0392b; } .product-info { padding: 16px 2px 4px; } .product-designer { font-family: var(--sans); font-style: italic; font-size: 10px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; } .product-name { font-family: var(--serif); font-style: italic; font-size: 1rem; font-weight: 400; color: var(--black); margin-bottom: 8px; line-height: 1.35; transition: color var(--transition); } .product-card:hover .product-name { color: var(--gold-dk); } .product-price { font-family: var(--sans); font-style: italic; font-size: 12px; font-weight: 500; color: var(--charcoal); letter-spacing: 0.04em; } .product-badge { position: absolute; top: 12px; left: 12px; background: var(--black); color: var(--white); font-family: var(--sans); font-style: italic; font-size: 9px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; padding: 4px 10px; } .bestseller-badge { background: var(--gold); } /* ═══════════════════════════════════════════════════════ EDITORIAL SPLIT ═══════════════════════════════════════════════════════ */ .editorial-split { display: grid; grid-template-columns: 3fr 2fr; max-height: 420px; min-height: 0; height: 420px; } .editorial-split__image { overflow: hidden; height: 100%; } .editorial-split__image img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; transition: transform 0.9s ease; } .editorial-split:hover .editorial-split__image img { transform: scale(1.03); } .editorial-split__text { background: var(--warm-gray); display: flex; flex-direction: column; justify-content: center; padding: 36px 44px; } .editorial-split__kicker { font-family: var(--sans); font-style: italic; font-size: 10px; font-weight: 600; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; } .editorial-split__text h2 { font-family: var(--serif); font-style: italic; font-size: clamp(2.6rem, 4vw, 4rem); font-weight: 400; color: var(--black); line-height: 1.05; letter-spacing: 0.02em; margin: 0 0 28px; } .editorial-split__rule { width: 40px; height: 1px; background: var(--gold); margin-bottom: 28px; } .editorial-split__body { font-family: var(--sans); font-style: italic; font-size: 13px; line-height: 1.85; color: var(--charcoal); max-width: 300px; margin-bottom: 40px; } .editorial-split__link { font-family: var(--sans); font-style: italic; font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--black); text-decoration: none; display: inline-flex; align-items: center; gap: 8px; border-bottom: 1px solid var(--black); padding-bottom: 5px; transition: color var(--transition), border-color var(--transition), gap var(--transition); } .editorial-split__link:hover { color: var(--gold); border-color: var(--gold); gap: 13px; } /* ═══════════════════════════════════════════════════════ SHOP BY OCCASION ═══════════════════════════════════════════════════════ */ .occ-section { background: var(--white); } .occ-mosaic { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; } .occ-mosaic-tile { display: block; text-decoration: none; color: inherit; } .occ-mosaic-img { overflow: hidden; aspect-ratio: 3/4; background: var(--warm-gray); } .occ-mosaic-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; transition: transform 0.8s ease; } .occ-mosaic-tile:hover .occ-mosaic-img img { transform: scale(1.05); } .occ-mosaic-caption { padding: 16px 2px 10px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--mid-gray); } .occ-mosaic-caption span { font-family: var(--serif); font-style: italic; font-size: 1.15rem; font-weight: 400; color: var(--black); letter-spacing: 0.03em; transition: color var(--transition); } .occ-mosaic-caption i { font-size: 11px; color: var(--gold); opacity: 0; transform: translateX(-6px); transition: all var(--transition); } .occ-mosaic-tile:hover .occ-mosaic-caption i { opacity: 1; transform: translateX(0); } .occ-mosaic-tile:hover .occ-mosaic-caption span { color: var(--gold-dk); } /* ═══════════════════════════════════════════════════════ VIDEO REEL ═══════════════════════════════════════════════════════ */ .video-reel { overflow: hidden; background: var(--black); } .video-reel__track { display: flex; gap: 0; } .video-reel__item { flex: 0 0 25%; position: relative; overflow: hidden; aspect-ratio: 9/16; } .video-reel__item video { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.7s ease; } .video-reel__item:hover video { transform: scale(1.04); } @media (max-width: 1024px) { .video-reel__item { flex: 0 0 50%; } } @media (max-width: 600px) { .video-reel__item { flex: 0 0 100%; } } /* ═══════════════════════════════════════════════════════ PROMISE BAR ═══════════════════════════════════════════════════════ */ .promise-bar { border-top: 1px solid var(--mid-gray); border-bottom: 1px solid var(--mid-gray); padding: 0; background: var(--white); } .promise-list { display: flex; align-items: stretch; justify-content: center; list-style: none; margin: 0; padding: 0; } .promise-list li { display: flex; align-items: center; gap: 12px; font-family: var(--sans); font-style: italic; font-size: 10.5px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--charcoal); padding: 22px 36px; border-right: 1px solid var(--mid-gray); flex: 1; justify-content: center; } .promise-list li:last-child { border-right: none; } .promise-list li i { color: var(--gold); font-size: 15px; flex-shrink: 0; } /* ═══════════════════════════════════════════════════════ BACK TO TOP ═══════════════════════════════════════════════════════ */ .back-to-top { position: fixed; bottom: 32px; right: 32px; width: 48px; height: 48px; background: var(--black); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; box-shadow: var(--shadow-md); z-index: 100; opacity: 0; transform: translateY(20px); transition: all var(--transition); } .back-to-top.visible { opacity: 1; transform: translateY(0); } .back-to-top:hover { background: var(--gold); } /* ═══════════════════════════════════════════════════════ QUICK VIEW MODAL ═══════════════════════════════════════════════════════ */ .modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 500; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity var(--transition); backdrop-filter: blur(4px); } .modal-overlay.open { opacity: 1; pointer-events: all; } .quick-view-modal { background: var(--white); width: 760px; max-width: 90vw; display: flex; position: relative; transform: scale(0.95) translateY(20px); transition: transform var(--transition); } .modal-overlay.open .quick-view-modal { transform: scale(1) translateY(0); } .modal-close { position: absolute; top: 16px; right: 16px; width: 36px; height: 36px; background: var(--black); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; z-index: 10; transition: background var(--transition); } .modal-close:hover { background: var(--gold); } .qv-image { flex: 1; } .qv-image img { width: 100%; height: 420px; object-fit: cover; } .qv-details { flex: 1; padding: 48px 40px; display: flex; flex-direction: column; justify-content: center; gap: 14px; } .qv-designer { font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); } .qv-details h3 { font-family: var(--serif); font-style: italic; font-size: 1.6rem; font-weight: 400; color: var(--black); } .qv-price { font-size: 1.1rem; font-weight: 500; color: var(--charcoal); } /* ═══════════════════════════════════════════════════════ RESPONSIVE ═══════════════════════════════════════════════════════ */ @media (max-width: 1200px) { .main-nav > ul > li > a { padding: 8px 10px; font-size: 10px; } .products-grid { grid-template-columns: repeat(5, calc((100% - 4 * 24px) / 4)); } .designer-card { flex: 0 0 calc((100% - 80px) / 5); } .insta-grid { grid-template-columns: repeat(3, 1fr); } } @media (max-width: 1024px) { .category-grid { grid-template-columns: repeat(6, calc((100% - 2 * 24px) / 3)); } .footer-top { grid-template-columns: 1fr 1fr; } .journal-grid { grid-template-columns: 1fr; } .journal-side { flex-direction: row; } .occ-mosaic { grid-template-columns: repeat(2, 1fr); } .editorial-split { grid-template-columns: 1fr 1fr; min-height: 480px; } .editorial-split__text { padding: 56px 48px; } .promise-list li { padding: 18px 20px; font-size: 10px; } } @media (max-width: 768px) { /* Header */ .announcement-bar-content { gap: 20px; padding: 0 20px; } .announcement-item:not(:first-child) { display: none; } .header-main-row { height: 64px; padding: 0 20px; } .header-care-desktop { display: none; } .mobile-menu-btn { display: flex; } .logo { font-size: 1.4rem; } .header-nav-row { display: none; } .mobile-menu-btn { display: flex; left: 20px; } .header-search { right: 20px; } .header-search-form { width: 160px; } .header-search-form:focus-within { width: 180px; } .main-nav { position: fixed; inset: 0; top: 96px; background: var(--white); flex-direction: column; padding: 32px 24px; overflow-y: auto; transform: translateX(-100%); transition: transform var(--transition); z-index: 140; justify-content: flex-start; } .main-nav.open { transform: translateX(0); } .main-nav > ul { flex-direction: column; width: 100%; gap: 0; } .main-nav > ul > li > a { padding: 14px 0; font-size: 13px; border-bottom: 1px solid var(--mid-gray); justify-content: space-between; } .mega-panel { position: static; transform: none; opacity: 1; pointer-events: all; box-shadow: none; border: none; border-top: none; padding: 0 0 0 16px; min-width: auto; flex-direction: column; display: none; } .mega-img { display: none; } .has-mega.open .mega-panel { display: flex; } .mega-col { border-right: none; padding: 12px 0; } /* Hero */ .hero-slider { aspect-ratio: 2 / 1; } .slide-content h1 { font-size: clamp(2.2rem, 8vw, 3.5rem); } .hero-prev, .hero-next { width: 40px; height: 40px; } /* Grids */ .products-grid { grid-template-columns: repeat(5, calc((100% - 4 * 24px) / 3)); gap: 16px; } .occ-mosaic { grid-template-columns: repeat(2, 1fr); } .editorial-split { grid-template-columns: 1fr; min-height: auto; } .editorial-split__image { height: 380px; } .editorial-split__text { padding: 48px 32px; } .promise-list { flex-wrap: wrap; } .promise-list li { border-right: none; border-bottom: 1px solid var(--mid-gray); flex: 1 1 50%; } .promise-list li:nth-child(odd) { border-right: 1px solid var(--mid-gray); } .promise-list li:nth-last-child(-n+2) { border-bottom: none; } .designer-card { flex: 0 0 calc((100% - 40px) / 3); } .featured-banner { grid-template-columns: 1fr; height: auto; } .fb-left, .fb-right { height: 320px; } .full-promo { height: 500px; } .promo-content { padding-right: 32px; text-align: left; margin-left: 32px; } /* Trust */ .trust-grid { grid-template-columns: repeat(2, 1fr); } /* Newsletter */ .newsletter-inner { flex-direction: column; text-align: center; } .newsletter-form { width: 100%; } .newsletter-form input { width: 100%; flex: 1; } /* Footer */ .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; } .footer-brand { grid-column: 1 / -1; } /* Journal */ .journal-side { flex-direction: column; } .view-all-link { position: static; transform: none; display: block; margin-top: 14px; } /* Insta */ .insta-grid { grid-template-columns: repeat(3, 1fr); } } @media (max-width: 480px) { .products-grid { grid-template-columns: repeat(5, calc((100% - 4 * 12px) / 2)); gap: 12px; } .occasion-grid { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3, 200px); } .topbar { padding: 0 16px; font-size: 10px; } .insta-grid { grid-template-columns: repeat(2, 1fr); } .newsletter-form { flex-direction: column; } .newsletter-form input { border-right: 1px solid rgba(255,255,255,0.18); } .footer-top { grid-template-columns: 1fr; gap: 24px; } .footer-brand { grid-column: auto; } .footer-bottom { flex-direction: column; gap: 12px; text-align:center; } } /* ═══════════════════════════════════════════════════════ LOGIN MODAL ═══════════════════════════════════════════════════════ */ .login-modal { position: fixed; inset: 0; z-index: 2000; display: flex; align-items: center; justify-content: center; padding: 24px; background: rgba(0,0,0,0.6); opacity: 0; pointer-events: none; transition: opacity 0.35s; } .login-modal.open { opacity: 1; pointer-events: all; } .login-modal-inner { background: var(--white); max-width: 860px; width: 100%; display: grid; grid-template-columns: 1fr 1fr; max-height: 90vh; overflow: hidden; position: relative; box-shadow: var(--shadow-lg); } .login-img-panel { position: relative; overflow: hidden; min-height: 480px; } .login-img-panel img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; } .login-form-panel { padding: 50px 44px 44px; display: flex; flex-direction: column; overflow-y: auto; } @media (max-width: 640px) { .login-modal-inner { grid-template-columns: 1fr; max-width: 420px; } .login-img-panel { display: none; } } .login-close { position: absolute; top: 14px; right: 14px; width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.92); border: 1px solid var(--mid-gray); cursor: pointer; z-index: 5; font-size: 12px; color: var(--charcoal); transition: background 0.2s, color 0.2s; } .login-close:hover { background: var(--white); color: var(--black); } .login-modal-logo { font-family: var(--serif); font-style: italic; font-size: 1.55rem; font-weight: 400; color: var(--black); letter-spacing: 0.06em; margin-bottom: 28px; } .login-tabs { display: flex; border-bottom: 1px solid var(--mid-gray); margin-bottom: 28px; } .login-tab { flex: 1; padding: 10px 0; font-family: var(--sans); font-style: italic; font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-lt); cursor: pointer; border: none; border-bottom: 2px solid transparent; background: none; text-align: center; transition: color 0.2s, border-color 0.2s; margin-bottom: -1px; } .login-tab.active { color: var(--black); border-bottom-color: var(--black); } .login-panel { display: none; } .login-panel.active { display: block; } .lf-group { margin-bottom: 20px; } .lf-group label { display: block; font-family: var(--sans); font-style: italic; font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-lt); margin-bottom: 7px; } .lf-group input { width: 100%; padding: 11px 0; border: none; border-bottom: 1px solid var(--mid-gray); background: transparent; font-family: var(--sans); font-style: italic; font-size: 13px; color: var(--black); outline: none; transition: border-color 0.2s; } .lf-group input:focus { border-bottom-color: var(--black); } .lf-group input::placeholder { color: var(--text-lt); font-size: 12px; } .lf-forgot { display: block; text-align: right; font-family: var(--sans); font-style: italic; font-size: 10.5px; letter-spacing: 0.08em; color: var(--gold); margin-top: -10px; margin-bottom: 22px; transition: color 0.2s; } .lf-forgot:hover { color: var(--gold-dk); } /* ── Login role toggle ── */ .lf-role-toggle { display: flex; border: 1px solid var(--mid-gray); margin-bottom: 18px; overflow: hidden; } .lf-role-btn { flex: 1; padding: 9px 10px; background: transparent; border: none; font-family: var(--sans); font-style: italic; font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-lt); cursor: pointer; transition: background 0.2s, color 0.2s; } .lf-role-btn.active { background: var(--black); color: var(--white); } /* ── Credential hint box ── */ .lf-hint { display: flex; align-items: center; gap: 9px; background: #fdf8ef; border-left: 3px solid var(--gold); padding: 9px 12px; margin-bottom: 18px; font-family: var(--sans); font-style: italic; font-size: 11px; color: var(--charcoal); line-height: 1.5; } .lf-hint i { color: var(--gold); flex-shrink: 0; } /* ── Error message ── */ .lf-error { font-family: var(--sans); font-style: italic; font-size: 11px; color: #c0392b; min-height: 0; margin-bottom: 8px; display: flex; align-items: center; gap: 6px; } .lf-error:not(:empty) { margin-bottom: 12px; } .btn-login-submit { width: 100%; padding: 14px 20px; font-family: var(--sans); font-style: italic; font-size: 11px; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase; background: var(--black); color: var(--white); border: none; cursor: pointer; transition: background 0.25s, letter-spacing 0.25s; display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 16px; } .btn-login-submit:hover { background: #1a1a1a; letter-spacing: 0.28em; } .login-divider { display: flex; align-items: center; gap: 12px; margin: 4px 0 16px; font-family: var(--sans); font-style: italic; font-size: 10px; letter-spacing: 0.1em; color: var(--text-lt); } .login-divider::before, .login-divider::after { content: ''; flex: 1; height: 1px; background: var(--mid-gray); } .btn-google-login { width: 100%; padding: 13px 20px; font-family: var(--sans); font-style: italic; font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; background: transparent; color: var(--charcoal); border: 1px solid var(--mid-gray); cursor: pointer; transition: border-color 0.25s, color 0.25s; display: flex; align-items: center; justify-content: center; gap: 10px; } .btn-google-login:hover { border-color: var(--black); color: var(--black); } .btn-google-login i { font-size: 15px; color: #4285f4; } @media (max-width: 680px) { .login-form-panel { padding: 44px 28px 36px; } } /* ═══════════════════════════════════════════════════════ CART DRAWER ═══════════════════════════════════════════════════════ */ .cart-drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.48); z-index: 900; opacity: 0; pointer-events: none; transition: opacity 0.35s; } .cart-drawer-overlay.open { opacity: 1; pointer-events: all; } .cart-drawer { position: fixed; top: 0; right: 0; bottom: 0; width: 420px; background: var(--white); z-index: 910; display: flex; flex-direction: column; transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); box-shadow: var(--shadow-lg); } .cart-drawer.open { transform: translateX(0); } .cart-drawer-header { display: flex; align-items: center; justify-content: space-between; padding: 22px 24px; border-bottom: 1px solid var(--mid-gray); flex-shrink: 0; } .cart-drawer-title { font-family: var(--serif); font-style: italic; font-size: 1.4rem; font-weight: 400; color: var(--black); letter-spacing: 0.03em; } .cart-drawer-count { font-family: var(--sans); font-style: italic; font-size: 10.5px; letter-spacing: 0.1em; color: var(--text-lt); margin-left: 8px; } .cart-drawer-close { width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--mid-gray); display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 12px; color: var(--charcoal); transition: border-color 0.2s, color 0.2s; background: none; } .cart-drawer-close:hover { border-color: var(--black); color: var(--black); } .cart-drawer-items { flex: 1; overflow-y: auto; } .cart-drawer-item { display: flex; gap: 14px; padding: 18px 24px; border-bottom: 1px solid var(--mid-gray); } .cart-drawer-item-img { width: 74px; height: 96px; flex-shrink: 0; background: var(--warm-gray); } .cart-drawer-item-img img { width: 100%; height: 100%; object-fit: contain; object-position: center; } .cart-drawer-item-info { flex: 1; min-width: 0; } .cdi-designer { font-family: var(--sans); font-style: italic; font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-lt); margin-bottom: 3px; } .cdi-name { font-family: var(--sans); font-style: italic; font-size: 12.5px; letter-spacing: 0.03em; color: var(--black); line-height: 1.4; margin-bottom: 4px; } .cdi-meta { font-family: var(--sans); font-style: italic; font-size: 10px; letter-spacing: 0.08em; color: var(--text-lt); margin-bottom: 10px; } .cdi-bottom { display: flex; align-items: center; justify-content: space-between; } .qty-stepper { display: flex; align-items: center; border: 1px solid var(--mid-gray); } .qty-btn { width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; font-size: 15px; color: var(--charcoal); cursor: pointer; background: none; border: none; transition: background 0.15s; line-height: 1; } .qty-btn:hover { background: var(--warm-gray); } .qty-val { width: 30px; text-align: center; font-family: var(--sans); font-style: italic; font-size: 12px; color: var(--black); border-left: 1px solid var(--mid-gray); border-right: 1px solid var(--mid-gray); height: 28px; line-height: 28px; } .cdi-price { font-family: var(--sans); font-style: italic; font-size: 14px; color: var(--black); } .cart-remove-btn { background: none; border: none; font-family: var(--sans); font-style: italic; font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-lt); cursor: pointer; padding: 0; margin-top: 7px; transition: color 0.2s; } .cart-remove-btn:hover { color: var(--black); } .cart-empty-state { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 60px 28px; text-align: center; } .cart-empty-state i { font-size: 42px; color: var(--mid-gray); margin-bottom: 18px; } .cart-empty-state p { font-family: var(--sans); font-style: italic; font-size: 13px; letter-spacing: 0.06em; color: var(--text-lt); line-height: 1.7; } .cart-drawer-footer { padding: 20px 24px; border-top: 1px solid var(--mid-gray); flex-shrink: 0; background: var(--warm-gray); } .cart-subtotal-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 5px; } .cart-subtotal-label { font-family: var(--sans); font-style: italic; font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-lt); } .cart-subtotal-val { font-family: var(--sans); font-style: italic; font-size: 18px; color: var(--black); } .cart-free-ship { font-family: var(--sans); font-style: italic; font-size: 10px; letter-spacing: 0.08em; color: var(--text-lt); margin-bottom: 16px; display: flex; align-items: center; gap: 5px; } .cart-free-ship i { color: var(--gold); font-size: 11px; } .btn-checkout-now { display: block; width: 100%; padding: 15px 20px; font-family: var(--sans); font-style: italic; font-size: 11px; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase; background: var(--black); color: var(--white); border: none; cursor: pointer; text-align: center; text-decoration: none; transition: background 0.25s, letter-spacing 0.25s; margin-bottom: 10px; } .btn-checkout-now:hover { background: #1a1a1a; letter-spacing: 0.28em; } .btn-view-bag { display: block; width: 100%; padding: 13px 20px; font-family: var(--sans); font-style: italic; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; background: transparent; color: var(--charcoal); border: 1px solid var(--mid-gray); cursor: pointer; text-align: center; text-decoration: none; transition: border-color 0.25s, color 0.25s; } .btn-view-bag:hover { border-color: var(--black); color: var(--black); } .wl-btn-view, .wl-btn-move-cart { padding: 7px 14px; font-family: var(--sans); font-style: italic; font-size: 9.5px; letter-spacing: 0.14em; text-transform: uppercase; cursor: pointer; border: 1px solid var(--mid-gray); background: transparent; color: var(--charcoal); text-decoration: none; display: inline-block; transition: border-color 0.2s, color 0.2s, background 0.2s; } .wl-btn-view:hover { border-color: var(--black); color: var(--black); } .wl-btn-move-cart { background: var(--black); color: var(--white); border-color: var(--black); } .wl-btn-move-cart:hover { background: #1a1a1a; } @media (max-width: 480px) { .cart-drawer { width: 100%; } } /* ── TOAST NOTIFICATIONS ── */ .eoi-toast { position: fixed; bottom: 40px; left: 50%; transform: translateX(-50%) translateY(20px); background: var(--black); color: var(--white); padding: 14px 32px; font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; z-index: 20000; opacity: 0; transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1); pointer-events: none; box-shadow: 0 10px 40px rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.1); white-space: nowrap; } .eoi-toast.visible { opacity: 1; transform: translateX(-50%) translateY(0); } /* ── HEADER BADGE ── */ .hdr-badge { position: absolute; top: -2px; right: -2px; min-width: 17px; height: 17px; background: var(--gold); color: var(--white); border-radius: 50%; font-size: 9px; font-weight: 800; display: flex; align-items: center; justify-content: center; padding: 0 2px; border: 2px solid var(--white); box-shadow: 0 2px 8px rgba(0,0,0,0.15); pointer-events: none; } @media (max-width: 768px) { .hdr-badge { top: -4px; right: -4px; min-width: 15px; height: 15px; font-size: 8px; } }