@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

/* BASE */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Jost', sans-serif; background: #FAF7F2; color: #1a1a1a; }

/* NAV */
nav { display: flex; justify-content: space-between; align-items: center; padding: 1.2rem 3rem; background: #0f0f0f; border-bottom: 1px solid #C9A84C; position: sticky; top: 0; z-index: 998; }

/* HAMBURGER */
.hamburger { background: none; border: none; cursor: pointer; display: flex; flex-direction: column; gap: 5px; padding: 5px; flex-shrink: 0; }
.hamburger span { display: block; width: 25px; height: 1px; background: #FAF7F2; transition: 0.3s; }
.hamburger:hover span { background: #C9A84C; }

/* BRAND CENTER */
.brand-center { position: absolute; left: 50%; transform: translateX(-50%); display: flex; align-items: center; gap: 0.7rem; text-decoration: none; }
.brand-name { color: #C9A84C; font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 300; letter-spacing: 4px; text-transform: uppercase; text-decoration: none; position: relative; }
.brand-name::after { content: attr(data-text); position: absolute; top: 100%; left: 0; color: #C9A84C; transform: scaleY(-0.35); transform-origin: top center; opacity: 0.2; filter: blur(2px); mask-image: linear-gradient(to bottom, rgba(201,168,76,0.4), transparent); -webkit-mask-image: linear-gradient(to bottom, rgba(201,168,76,0.4), transparent); }

/* FLAME ANIMATION */
.flame { width: 28px; height: 38px; position: relative; display: flex; justify-content: center; }
.flame-inner { width: 18px; height: 28px; background: linear-gradient(to top, #C9A84C, #f0c040, #fff7d6); border-radius: 50% 50% 30% 30%; animation: flicker 1.5s ease-in-out infinite alternate; transform-origin: bottom center; filter: drop-shadow(0 0 6px #C9A84C); }
.flame-core { position: absolute; bottom: 4px; width: 8px; height: 14px; background: linear-gradient(to top, #fff, #fff7d6); border-radius: 50% 50% 30% 30%; opacity: 0.8; }
@keyframes flicker {
    0%   { transform: scaleX(1) scaleY(1) rotate(-2deg); filter: drop-shadow(0 0 5px #C9A84C); }
    25%  { transform: scaleX(0.95) scaleY(1.05) rotate(1deg); }
    50%  { transform: scaleX(1.05) scaleY(0.97) rotate(-1deg); filter: drop-shadow(0 0 9px #f0c040); }
    75%  { transform: scaleX(0.97) scaleY(1.03) rotate(2deg); }
    100% { transform: scaleX(1) scaleY(1) rotate(-1deg); filter: drop-shadow(0 0 6px #C9A84C); }
}

/* CART ICON */
.cart-icon { position: relative; color: #FAF7F2; display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.cart-icon:hover { color: #C9A84C; }
.cart-icon svg { width: 24px; height: 24px; }
.cart-count { position: absolute; top: -8px; right: -10px; background: #C9A84C; color: #0f0f0f; border-radius: 50%; width: 18px; height: 18px; font-size: 0.7rem; display: flex; align-items: center; justify-content: center; font-weight: 700; }

/* SIDEBAR */
.sidebar { position: fixed; top: 0; left: -300px; width: 280px; height: 100vh; background: #0f0f0f; z-index: 1000; transition: left 0.3s ease; display: flex; flex-direction: column; padding: 2rem 1.5rem; border-right: 1px solid #C9A84C; }
.sidebar.open { left: 0; }
.sidebar-overlay { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: rgba(0,0,0,0.6); z-index: 999; display: none; }
.sidebar-overlay.show { display: block; }
.sidebar-close { background: none; border: none; color: #FAF7F2; font-size: 1.3rem; cursor: pointer; align-self: flex-end; margin-bottom: 1rem; letter-spacing: 2px; }
.sidebar-close:hover { color: #C9A84C; }
.sidebar-logo { width: 130px; margin: 0 auto 2.5rem; display: block; opacity: 0.9; }
.sidebar-nav { display: flex; flex-direction: column; gap: 0.3rem; }
.sidebar-nav a { color: #FAF7F2; text-decoration: none; font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 300; letter-spacing: 3px; text-transform: uppercase; padding: 0.8rem 1rem 0.8rem 2.5rem; border-radius: 2px; transition: color 0.2s, border-left 0.2s; border-left: 1px solid transparent; position: relative; }
.sidebar-nav a:hover { color: #C9A84C; border-left: 1px solid #C9A84C; background: rgba(201,168,76,0.05); }
.sidebar-footer { margin-top: auto; color: #555; font-size: 0.75rem; text-align: center; letter-spacing: 2px; text-transform: uppercase; }

/* SIDEBAR FLAME */
.sidebar-nav a { position: relative; }
.sidebar-nav a .nav-flame { position: absolute; left: 0.8rem; top: 50%; transform: translateY(-50%); opacity: 0; font-size: 1.1rem; pointer-events: none; transition: opacity 0.25s ease; filter: drop-shadow(0 0 4px #C9A84C) drop-shadow(0 0 8px #f0c040); }
.sidebar-nav a:hover .nav-flame { opacity: 1; animation: navFlameSway 0.7s ease-in-out infinite alternate; }
@keyframes navFlameSway {
    0%   { transform: translateY(-50%) rotate(-10deg) scaleX(0.9); filter: drop-shadow(-2px 0 5px #C9A84C); }
    25%  { transform: translateY(-53%) rotate(-3deg) scaleX(1); }
    50%  { transform: translateY(-50%) rotate(3deg) scaleX(1.05); filter: drop-shadow(0 0 8px #f0c040); }
    75%  { transform: translateY(-53%) rotate(7deg) scaleX(0.95); }
    100% { transform: translateY(-50%) rotate(10deg) scaleX(0.9); filter: drop-shadow(2px 0 5px #C9A84C); }
}

/* MOBILE FLAME ON CLICK */
@media (max-width: 768px) {
    .sidebar-nav a.tapped .nav-flame { opacity: 1 !important; animation: navFlameSway 0.7s ease-in-out infinite alternate !important; }
}

/* BUTTONS */
.btn { display: inline-block; padding: 0.8rem 2rem; background: transparent; color: #C9A84C; border: 1px solid #C9A84C; border-radius: 0; text-decoration: none; cursor: pointer; font-family: 'Jost', sans-serif; font-size: 0.85rem; font-weight: 400; letter-spacing: 3px; text-transform: uppercase; transition: all 0.3s; }
.btn:hover { background: #C9A84C; color: #0f0f0f; }
.btn-remove { color: #C9A84C; text-decoration: none; font-size: 0.85rem; letter-spacing: 1px; }

/* SLIDESHOW */
.slideshow { position: relative; width: 100%; height: 580px; overflow: hidden; background: #0f0f0f; }
.slides { width: 100%; height: 100%; }
.slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; transition: opacity 1.2s ease; }
.slide.active { opacity: 1; }
.slide img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.75); }
.slide-caption { position: absolute; bottom: 70px; left: 50%; transform: translateX(-50%); color: #FAF7F2; font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 300; letter-spacing: 6px; text-transform: uppercase; }
.slide-btn { position: absolute; top: 50%; transform: translateY(-50%); background: transparent; color: #FAF7F2; border: 1px solid rgba(255,255,255,0.3); padding: 0.8rem 1rem; cursor: pointer; font-size: 1rem; transition: all 0.3s; z-index: 10; }
.slide-btn:hover { background: rgba(201,168,76,0.3); border-color: #C9A84C; color: #C9A84C; }
.slide-btn.prev { left: 20px; }
.slide-btn.next { right: 20px; }
.slide-dots { position: absolute; bottom: 25px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; }
.dot { width: 6px; height: 6px; background: rgba(255,255,255,0.3); border-radius: 50%; cursor: pointer; transition: all 0.3s; }
.dot.active { background: #C9A84C; transform: scale(1.3); }

/* WELCOME */
.welcome { padding: 5rem 3rem; max-width: 700px; margin: 0 auto; text-align: center; }
.welcome h1 { font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; font-weight: 300; margin-bottom: 1.5rem; letter-spacing: 2px; color: #1a1a1a; }
.welcome p { font-size: 1rem; line-height: 2; color: #666; margin-bottom: 1.2rem; font-weight: 300; letter-spacing: 0.5px; }
.welcome .btn { margin-top: 1.5rem; }

/* DIVIDER */
.gold-divider { width: 60px; height: 1px; background: #C9A84C; margin: 2rem auto; }

/* MAIN */
main { min-height: 80vh; padding: 3rem; max-width: 1200px; margin: 0 auto; }
.page-title { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 300; margin-bottom: 0.5rem; letter-spacing: 3px; text-transform: uppercase; }
.page-title-line { width: 50px; height: 1px; background: #C9A84C; margin-bottom: 2.5rem; }

/* PRODUCT GRID */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 2rem; margin-top: 1.5rem; }
.product-card { background: #ffffff; border: 1px solid #e8e0d0; overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; }
.product-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,0,0,0.1); }
.product-card img { width: 100%; height: 260px; object-fit: cover; filter: brightness(0.95); }
.product-card-body { padding: 1.5rem; }
.product-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 400; margin-bottom: 0.3rem; letter-spacing: 1px; }
.scent { color: #C9A84C; font-size: 0.75rem; font-weight: 500; margin-bottom: 0.8rem; text-transform: uppercase; letter-spacing: 2px; }
.price { font-size: 1.1rem; font-weight: 300; color: #1a1a1a; margin: 0.5rem 0 1.2rem; letter-spacing: 1px; }

/* PRODUCT DETAIL */
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; margin-top: 2rem; }
.product-detail img { width: 100%; }
.product-info h1 { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 300; margin-bottom: 0.5rem; letter-spacing: 2px; }
.product-info p { margin-bottom: 1rem; line-height: 1.9; color: #555; font-weight: 300; }
.product-info .price { font-size: 1.5rem; color: #C9A84C; margin: 1.2rem 0; letter-spacing: 2px; }
.product-info input[type=number] { width: 70px; padding: 0.6rem; margin-right: 1rem; border: 1px solid #ccc; font-size: 1rem; font-family: 'Jost', sans-serif; }

/* CART */
.cart { max-width: 750px; }
.cart-item { display: flex; align-items: center; gap: 1.5rem; padding: 1.5rem 0; border-bottom: 1px solid #e8e0d0; }
.cart-item img { width: 90px; height: 90px; object-fit: cover; }
.cart-item h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 400; margin-bottom: 0.3rem; }
.cart-item p { color: #888; font-size: 0.9rem; font-weight: 300; }
.cart-total { text-align: right; padding: 2rem 0; font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 300; letter-spacing: 1px; }
.cart-total .btn { margin-left: 1.5rem; }

/* CHECKOUT */
#payment-form { max-width: 520px; display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
#payment-form input { padding: 0.9rem 1rem; border: 1px solid #ddd; font-size: 0.95rem; font-family: 'Jost', sans-serif; background: #fff; transition: border-color 0.2s; letter-spacing: 0.5px; }
#payment-form input:focus { outline: none; border-color: #C9A84C; }
#card-element { padding: 0.9rem 1rem; border: 1px solid #ddd; background: white; }
#card-errors { color: #c0392b; font-size: 0.85rem; }
.total { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 300; color: #C9A84C; letter-spacing: 2px; }

/* SUCCESS */
.success { text-align: center; padding: 5rem 2rem; }
.success h1 { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 300; margin-bottom: 1rem; letter-spacing: 2px; }
.success p { margin-bottom: 0.8rem; font-size: 1rem; color: #666; font-weight: 300; }

/* ADMIN */
.admin-table { width: 100%; border-collapse: collapse; margin-bottom: 2rem; font-size: 0.9rem; }
.admin-table th { background: #0f0f0f; color: #C9A84C; padding: 0.9rem 1rem; text-align: left; font-weight: 400; letter-spacing: 2px; text-transform: uppercase; font-size: 0.8rem; }
.admin-table td { padding: 0.9rem 1rem; border-bottom: 1px solid #e8e0d0; font-weight: 300; }
.admin-table tr:hover td { background: #faf5ec; }

/* FOOTER */
footer { text-align: center; padding: 3rem 2rem; background: #0f0f0f; color: #555; font-size: 0.8rem; border-top: 1px solid #C9A84C; margin-top: 5rem; letter-spacing: 2px; text-transform: uppercase; }
footer span { color: #C9A84C; }

/* ERROR */
.error { color: #c0392b; background: #fdf5f5; padding: 0.8rem 1rem; border-left: 2px solid #c0392b; font-size: 0.9rem; }

/* ABOUT */
.about-content { display: grid; grid-template-columns: 1fr 2fr; gap: 4rem; margin-top: 2rem; }
.about-logo img { width: 100%; }
.about-text h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 300; margin: 2rem 0 0.8rem; letter-spacing: 2px; color: #1a1a1a; }
.about-text p { line-height: 1.9; color: #666; margin-bottom: 1rem; font-weight: 300; }
.about-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.about-list li { font-size: 0.95rem; color: #555; padding: 0.6rem 0; border-bottom: 1px solid #e8e0d0; font-weight: 300; }

/* COMING SOON */
.coming-soon { text-align: center; padding: 5rem 2rem; }
.coming-soon img { width: 120px; margin-bottom: 2rem; opacity: 0.5; }
.coming-soon h2 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 300; margin-bottom: 1rem; letter-spacing: 3px; }
.coming-soon p { color: #888; margin-bottom: 2rem; font-size: 1rem; font-weight: 300; letter-spacing: 0.5px; }

/* CONTACT */
.contact-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; margin-top: 2rem; }
.contact-info h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 300; margin-bottom: 1rem; letter-spacing: 2px; }
.contact-info p { line-height: 1.9; color: #666; margin-bottom: 0.8rem; font-weight: 300; }
.contact-details { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.8rem; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.contact-form input, .contact-form textarea { padding: 0.9rem 1rem; border: 1px solid #ddd; font-size: 0.95rem; font-family: 'Jost', sans-serif; background: #fff; transition: border-color 0.2s; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: #C9A84C; }
.contact-form textarea { resize: vertical; }
.success-msg { text-align: center; padding: 3rem; }
.success-msg h2 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 300; margin-bottom: 1rem; letter-spacing: 2px; }

/* MOBILE */
@media (max-width: 768px) {
    nav { padding: 1rem 1.2rem; }
    .brand-center { position: absolute; left: 50%; transform: translateX(-50%); display: flex; align-items: center; gap: 0.4rem; }
    .brand-name { font-size: 0.95rem; letter-spacing: 2px; }
    .flame { width: 22px; height: 30px; }
    .flame-inner { width: 14px; height: 22px; }
    .flame-core { width: 6px; height: 11px; }
    main { padding: 1.5rem; }
    .product-detail { grid-template-columns: 1fr; }
    .about-content { grid-template-columns: 1fr; }
    .contact-wrapper { grid-template-columns: 1fr; }
    .slideshow { height: 320px; }
    .welcome { padding: 3rem 1.5rem; }
    .welcome h1 { font-size: 2rem; }
}

/* HIDE FLAME WICK */
.flame-core { display: none; }

/* FLAME COLOR MATCH LOGO */
.flame-inner { background: linear-gradient(to top, #e8470a, #FF6B1A, #ffaa00) !important; filter: drop-shadow(0 0 6px #FF6B1A) !important; }
@keyframes flicker {
    0%   { transform: scaleX(1) scaleY(1) rotate(-2deg); filter: drop-shadow(0 0 5px #FF6B1A); }
    25%  { transform: scaleX(0.95) scaleY(1.05) rotate(1deg); }
    50%  { transform: scaleX(1.05) scaleY(0.97) rotate(-1deg); filter: drop-shadow(0 0 9px #ffaa00); }
    75%  { transform: scaleX(0.97) scaleY(1.03) rotate(2deg); }
    100% { transform: scaleX(1) scaleY(1) rotate(-1deg); filter: drop-shadow(0 0 6px #FF6B1A); }
}

/* CINZEL FONT OVERRIDE */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600&family=Jost:wght@300;400;500&display=swap');

body { font-family: 'Jost', sans-serif; }
h1, h2, h3, .brand-name, .sidebar-nav a, .page-title, .slide-caption, .welcome h1, .product-card h3, .product-info h1, .cart-total, .success h1, .about-text h2, .coming-soon h2, .contact-info h2, .success-msg h2 { font-family: 'Cinzel', serif !important; }
.brand-name { letter-spacing: 3px !important; font-size: 1rem !important; }
.sidebar-nav a { letter-spacing: 2px !important; font-size: 1.1rem !important; }

/* SCRIPT FONT OVERRIDE */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Upright:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

h1, h2, h3, .brand-name, .sidebar-nav a, .page-title, .slide-caption, .welcome h1, .product-card h3, .product-info h1, .cart-total, .success h1, .about-text h2, .coming-soon h2, .contact-info h2, .success-msg h2 { font-family: 'Cormorant Upright', serif !important; font-style: italic !important; }
.brand-name { letter-spacing: 2px !important; font-size: 1.1rem !important; }
.sidebar-nav a { letter-spacing: 1px !important; font-size: 1.2rem !important; }

/* GREAT VIBES FONT */
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Jost:wght@300;400;500&display=swap');

h1, h2, h3, .brand-name, .sidebar-nav a, .page-title, .slide-caption, .welcome h1, .product-card h3, .product-info h1, .cart-total, .success h1, .about-text h2, .coming-soon h2, .contact-info h2, .success-msg h2 { font-family: 'Great Vibes', cursive !important; font-style: normal !important; }
.brand-name { letter-spacing: 1px !important; font-size: 1.4rem !important; }
.sidebar-nav a { letter-spacing: 1px !important; font-size: 1.4rem !important; }
.welcome h1 { font-size: 3.5rem !important; }
.page-title { font-size: 3rem !important; }

/* SACRAMENTO FONT */
@import url('https://fonts.googleapis.com/css2?family=Sacramento&family=Jost:wght@300;400;500&display=swap');

h1, h2, h3, .brand-name, .sidebar-nav a, .page-title, .slide-caption, .welcome h1, .product-card h3, .product-info h1, .cart-total, .success h1, .about-text h2, .coming-soon h2, .contact-info h2, .success-msg h2 { font-family: 'Sacramento', cursive !important; font-style: normal !important; }
.brand-name { letter-spacing: 1px !important; font-size: 1.5rem !important; }
.sidebar-nav a { letter-spacing: 1px !important; font-size: 1.5rem !important; }
.welcome h1 { font-size: 3.8rem !important; }
.page-title { font-size: 3.2rem !important; }

/* SACRAMENTO FONT - SINGLE SOURCE */
h1, h2, h3, .brand-name, .sidebar-nav a, .page-title, .slide-caption, .welcome h1, .product-card h3, .product-info h1, .cart-total, .success h1, .about-text h2, .coming-soon h2, .contact-info h2, .success-msg h2 { font-family: 'Sacramento', cursive !important; font-style: normal !important; }
.brand-name { letter-spacing: 1px !important; font-size: 1.5rem !important; }
.sidebar-nav a { letter-spacing: 1px !important; font-size: 1.5rem !important; }
.welcome h1 { font-size: 3.8rem !important; }
.page-title { font-size: 3.2rem !important; }

/* CORMORANT GARAMOND - FINAL */
h1, h2, h3, .brand-name, .sidebar-nav a, .page-title, .slide-caption, .welcome h1, .product-card h3, .product-info h1, .cart-total, .success h1, .about-text h2, .coming-soon h2, .contact-info h2, .success-msg h2 { font-family: 'Cormorant Garamond', serif !important; font-style: italic !important; font-weight: 300 !important; }
.brand-name { letter-spacing: 3px !important; font-size: 1.2rem !important; font-style: normal !important; }
.sidebar-nav a { letter-spacing: 2px !important; font-size: 1.3rem !important; }
.welcome h1 { font-size: 3rem !important; }
.page-title { font-size: 2.5rem !important; }

/* SIDEBAR NAV LEFT ALIGN */
.sidebar-nav { align-items: flex-start; }
.sidebar-nav a { text-align: left; width: 100%; }

/* MOBILE NAV TRANSLUCENT */
@media (max-width: 768px) {
    nav { background: rgba(15, 15, 15, 0.75) !important; backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-bottom: 1px solid rgba(201,168,76,0.3) !important; }
}

/* MOBILE NAV REVERT TO BLACK */
@media (max-width: 768px) {
    nav { background: #0f0f0f !important; backdrop-filter: none !important; -webkit-backdrop-filter: none !important; border-bottom: 1px solid #C9A84C !important; }
}

/* SIDEBAR LOGO INVERT */
.sidebar-logo { filter: invert(1); }

/* SIDEBAR LOGO REVERT */
.sidebar-logo { filter: none !important; }

/* SIDEBAR WHITE THEME */
.sidebar { background: #ffffff !important; border-right: 1px solid #C9A84C !important; }
.sidebar-nav a { color: #1a1a1a !important; }
.sidebar-nav a:hover { color: #C9A84C !important; background: rgba(201,168,76,0.05) !important; }
.sidebar-close { color: #1a1a1a !important; }
.sidebar-footer { color: #999 !important; }

/* REMOVE BLACK BOX FROM SIDEBAR TABS */
.sidebar-nav a { background: transparent !important; border: none !important; outline: none !important; box-shadow: none !important; }
.sidebar-nav a:hover { background: rgba(201,168,76,0.05) !important; border-left: 1px solid #C9A84C !important; }

/* FIX SIDEBAR NAV BLACK BOX */
.sidebar-nav { background: transparent !important; }
.sidebar-nav a { background: transparent !important; color: #1a1a1a !important; border-left: 1px solid transparent !important; }
.sidebar-nav a:hover { background: rgba(201,168,76,0.08) !important; color: #C9A84C !important; border-left: 1px solid #C9A84C !important; }

/* MOBILE SIDEBAR FIX */
@media (max-width: 768px) {
    .sidebar { background: #ffffff !important; }
    .sidebar-nav { background: transparent !important; }
    .sidebar-nav a { background: transparent !important; color: #1a1a1a !important; border-left: 1px solid transparent !important; }
    .sidebar-nav a:hover { background: rgba(201,168,76,0.08) !important; color: #C9A84C !important; border-left: 1px solid #C9A84C !important; }
    .sidebar-close { color: #1a1a1a !important; }
    .sidebar-footer { color: #999 !important; }
}

/* SIDEBAR LOGO FULL WIDTH */
.sidebar-logo { width: 100% !important; max-width: 100% !important; margin: -2rem -1.5rem 1.5rem -1.5rem !important; display: block !important; object-fit: cover !important; border-bottom: 1px solid #C9A84C; }

/* SIDEBAR FULL CLEANUP */
.sidebar { padding: 0 !important; display: flex !important; flex-direction: column !important; }
.sidebar-logo { width: calc(100% + 0px) !important; margin: 0 !important; padding: 0 !important; display: block !important; object-fit: contain !important; border-bottom: 1px solid #C9A84C !important; max-height: 220px !important; }
.sidebar-close { position: absolute !important; top: 1rem !important; right: 1rem !important; z-index: 10 !important; background: none !important; border: none !important; color: #1a1a1a !important; font-size: 1.3rem !important; cursor: pointer !important; }
.sidebar-nav { padding: 1.5rem 2rem !important; display: flex !important; flex-direction: column !important; gap: 0 !important; background: transparent !important; }
.sidebar-nav a { background: transparent !important; border: none !important; border-left: 2px solid transparent !important; outline: none !important; box-shadow: none !important; color: #1a1a1a !important; padding: 1rem 1rem 1rem 1.5rem !important; font-size: 1.2rem !important; letter-spacing: 2px !important; text-align: left !important;  }
.sidebar-nav a:hover { color: #C9A84C !important; border-left: 2px solid #C9A84C !important; background: transparent !important;  }
.sidebar-nav a.tapped { color: #C9A84C !important; }
.sidebar-footer { padding: 1.5rem 2rem !important; margin-top: auto !important; color: #999 !important; font-size: 0.75rem !important; text-align: center !important; letter-spacing: 2px !important;  }

/* FIX FLAME POSITION */
.sidebar-nav a .nav-flame { left: 0.3rem !important; font-size: 0.9rem !important; }
.sidebar-nav a { padding-left: 2rem !important; }

/* REMOVE BOTTOM GOLD LINES ON PC */
@media (min-width: 769px) {
    .sidebar-footer { border-top: none !important; }
    .sidebar-nav a:last-child { border-bottom: none !important; }
}

/* PC ONLY - REMOVE GOLD LINES */
@media (min-width: 769px) {
    .sidebar-footer { border-top: none !important; border: none !important; }
    .sidebar-nav a { border-bottom: none !important; }
    .sidebar-nav a:hover { border-bottom: none !important; }
}

/* SIDEBAR RIGHT GOLD BORDER */
.sidebar { border-right: 1px solid #C9A84C !important; }

/* SIDEBAR INTENSE GOLD BORDER */
.sidebar { border-right: 2px solid #C9A84C !important; box-shadow: 4px 0 15px rgba(201,168,76,0.4) !important; }

/* WELCOME HEADER ABOVE SLIDESHOW */
.slideshow-header { text-align: center; padding: 2.5rem 1rem 1.5rem; background: #FAF7F2; }
.slideshow-header h2 { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 300; letter-spacing: 4px; color: #1a1a1a; }
.slideshow-header .gold-divider { margin: 0.8rem auto 0; }

/* PRODUCT SLIDESHOW */
.product-photos { position: relative; }
.product-slideshow { position: relative; width: 100%; height: 480px; overflow: hidden; border-radius: 4px; }
.product-slides { width: 100%; height: 100%; }
.product-slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; transition: opacity 0.8s ease; }
.product-slide.active { opacity: 1; }
.product-slide img { width: 100%; height: 100%; object-fit: cover; }
.product-slideshow .slide-btn { padding: 0.6rem 0.8rem; font-size: 0.9rem; }
.product-slideshow .slide-dots { bottom: 15px; }

@media (max-width: 768px) {
    .product-slideshow { height: 300px; }
}

/* LIDS BANNER FIX */
.lids-banner { position: relative; width: 100vw; margin-left: calc(-50vw + 50%); height: 500px; overflow: hidden; }
.lids-banner img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.lids-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 2rem; background: linear-gradient(to top, rgba(0,0,0,0.6), transparent); text-align: center; }
.lids-overlay p { color: #C9A84C; font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 300; letter-spacing: 4px; text-transform: uppercase; }

@media (max-width: 768px) {
    .lids-banner { height: 300px; }
    .lids-overlay p { font-size: 1.2rem; letter-spacing: 2px; }
}

/* SCROLL REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* LIDS BANNER GOLD BORDER */
.lids-banner { border-top: 2px solid #C9A84C; border-bottom: 2px solid #C9A84C; }

/* LIDS BANNER GLOWING GOLD BORDER */
.lids-banner { border-top: 2px solid #C9A84C !important; border-bottom: 2px solid #C9A84C !important; box-shadow: 0 -4px 15px rgba(201,168,76,0.4), 0 4px 15px rgba(201,168,76,0.4) !important; }

/* SLIDESHOW GLOWING GOLD BORDER */
.slideshow { border: 2px solid #C9A84C !important; box-shadow: 0 -4px 15px rgba(201,168,76,0.4), 0 4px 15px rgba(201,168,76,0.4), -4px 0 15px rgba(201,168,76,0.4), 4px 0 15px rgba(201,168,76,0.4) !important; }

/* FROSTED GLASS NAV */
nav { background: rgba(15, 15, 15, 0.65) !important; backdrop-filter: blur(16px) !important; -webkit-backdrop-filter: blur(16px) !important; border-bottom: 1px solid rgba(201,168,76,0.5) !important; }

/* REVERT TO SOLID BLACK NAV */
nav { background: #0f0f0f !important; backdrop-filter: none !important; -webkit-backdrop-filter: none !important; }

/* DEEP CHARCOAL GOLD GRAIN NAV */
nav { 
    background: 
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23noise)' opacity='0.08'/%3E%3C/svg%3E"),
        linear-gradient(135deg, #0f0f0f 0%, #1a1508 50%, #0f0f0f 100%) !important;
    border-bottom: 1px solid rgba(201,168,76,0.6) !important;
    box-shadow: 0 2px 20px rgba(201,168,76,0.15) !important;
}

/* WHITE NAV WITH GOLD ICONS */
nav { background: #ffffff !important; backdrop-filter: none !important; -webkit-backdrop-filter: none !important; box-shadow: 0 2px 15px rgba(201,168,76,0.2) !important; border-bottom: 1px solid rgba(201,168,76,0.4) !important; }
.hamburger span { background: #C9A84C !important; box-shadow: 0 0 6px rgba(201,168,76,0.6) !important; }
.hamburger:hover span { background: #f0c040 !important; box-shadow: 0 0 12px rgba(201,168,76,0.9) !important; }
.cart-icon { color: #C9A84C !important; filter: drop-shadow(0 0 4px rgba(201,168,76,0.6)) !important; }
.cart-icon:hover { color: #f0c040 !important; filter: drop-shadow(0 0 10px rgba(201,168,76,0.9)) !important; }
.cart-count { background: #C9A84C !important; color: #ffffff !important; }

/* NAV BACK TO BLACK */
nav { background: #0f0f0f !important; border-bottom: 1px solid #C9A84C !important; box-shadow: none !important; }

/* SOPHISTICATED SOFT GOLD THEME */
/* Replace orange with soft gold/ivory throughout */
:root {
    --accent: #D4AF6A;
    --accent-glow: rgba(212,175,106,0.3);
    --accent-hover: #e8c97a;
}

/* Nav */
nav { background: #0f0f0f !important; border-bottom: 1px solid var(--accent) !important; }

/* Flame */
.flame-inner { background: linear-gradient(to top, #b8860b, #D4AF6A, #fff8dc) !important; filter: drop-shadow(0 0 4px rgba(212,175,106,0.5)) !important; }

/* Brand name */
.brand-name { color: var(--accent) !important; text-shadow: none !important; }
.brand-name::after { color: var(--accent) !important; }

/* Buttons */
.btn { color: var(--accent) !important; border-color: var(--accent) !important; }
.btn:hover { background: var(--accent) !important; color: #0f0f0f !important; }

/* Gold divider */
.gold-divider { background: var(--accent) !important; }
.page-title-line { background: var(--accent) !important; }

/* Cart & hamburger */
.hamburger span { background: #ffffff !important; box-shadow: none !important; }
.cart-icon { color: #ffffff !important; filter: none !important; }
.cart-icon:hover { color: var(--accent) !important; }
.cart-count { background: var(--accent) !important; }

/* Sidebar */
.sidebar { border-right: 2px solid var(--accent) !important; box-shadow: 4px 0 15px var(--accent-glow) !important; }
.sidebar-nav a:hover { color: var(--accent) !important; border-left: 2px solid var(--accent) !important; }
.sidebar-nav a .nav-flame { filter: drop-shadow(0 0 3px rgba(212,175,106,0.5)) !important; }

/* Slideshow */
.slideshow { border: 2px solid var(--accent) !important; box-shadow: 0 0 15px var(--accent-glow) !important; }
.dot.active { background: var(--accent) !important; }
.slide-btn:hover { background: rgba(212,175,106,0.3) !important; border-color: var(--accent) !important; color: var(--accent) !important; }

/* Lids banner */
.lids-banner { border-top: 2px solid var(--accent) !important; border-bottom: 2px solid var(--accent) !important; box-shadow: 0 -4px 15px var(--accent-glow), 0 4px 15px var(--accent-glow) !important; }

/* Product cards */
.product-card:hover { box-shadow: 0 8px 24px var(--accent-glow) !important; }
.scent { color: var(--accent) !important; }
.product-info .price { color: var(--accent) !important; }

/* Admin table */
.admin-table th { background: #0f0f0f !important; color: var(--accent) !important; }

/* Footer */
footer { border-top: 1px solid var(--accent) !important; }
footer span { color: var(--accent) !important; }

/* Body - softer white airy feel */
body { background: #ffffff !important; }
.welcome p { color: #555 !important; font-weight: 300 !important; }
.welcome h1 { color: #1a1a1a !important; }

/* Sidebar nav flame sway */
@keyframes navFlameSway {
    0%   { transform: translateY(-50%) rotate(-10deg) scaleX(0.9); filter: drop-shadow(-2px 0 4px rgba(212,175,106,0.5)); }
    50%  { transform: translateY(-50%) rotate(3deg) scaleX(1.05); filter: drop-shadow(0 0 6px rgba(212,175,106,0.6)); }
    100% { transform: translateY(-50%) rotate(10deg) scaleX(0.9); filter: drop-shadow(2px 0 4px rgba(212,175,106,0.5)); }
}

/* HOMEPAGE GLASS BORDERS */
.slideshow { border: 2px solid rgba(255,255,255,0.25) !important; box-shadow: 0 0 20px rgba(255,255,255,0.1), inset 0 0 20px rgba(255,255,255,0.05) !important; }
.lids-banner { border-top: 2px solid rgba(255,255,255,0.25) !important; border-bottom: 2px solid rgba(255,255,255,0.25) !important; box-shadow: 0 -4px 15px rgba(255,255,255,0.08), 0 4px 15px rgba(255,255,255,0.08) !important; }

/* PICTURE FRAME BORDER */
.slideshow { 
    border: none !important;
    box-shadow: none !important;
    outline: 1px solid #C9A84C;
    outline-offset: -8px;
    padding: 8px;
    background: #0f0f0f;
}

.lids-banner {
    border: none !important;
    box-shadow: none !important;
    outline: 1px solid #C9A84C;
    outline-offset: -8px;
    padding: 8px;
    background: #0f0f0f;
}

/* REMOVE ALL HOMEPAGE BORDERS */
.slideshow { border: none !important; box-shadow: none !important; outline: none !important; padding: 0 !important; }
.lids-banner { border: none !important; box-shadow: none !important; outline: none !important; padding: 0 !important; }

/* FULL WIDTH BANNER SLIDESHOW */
.slideshow { 
    width: 100vw !important; 
    margin-left: calc(-50vw + 50%) !important;
    height: 600px !important;
}

@media (max-width: 768px) {
    .slideshow { height: 350px !important; }
}

/* FLUSH SLIDESHOW TO NAV */
main { padding-top: 0 !important; }
.slideshow { margin-top: 0 !important; }

/* FLUSH SLIDESHOW TO NAV */
main { padding-top: 0 !important; }
.slideshow { margin-top: 0 !important; }
