/* Base & Typography */
:root {
    --bg-color: #1a0d0a; /* Very dark chocolate */
    --bg-color-alt: #261410; /* Slightly lifted chocolate, for alternating sections */
    --text-color: #ffffff; /* Creamy white */
    --text-muted: #dcd0c0; /* Warm muted text on dark chocolate */
    --accent-color: #d4af37; /* Metallic gold */
    --accent-hover: #b5932a; /* Darker gold for hover */
    --accent-soft: rgba(212, 175, 55, 0.12);
    --leather-color: #a9622f; /* Saddle-tan accent, used sparingly for warmth */
    --glass-bg: rgba(38, 20, 16, 0.75);
    --glass-border: rgba(212, 175, 55, 0.28); /* Subtle gold border */
    --whatsapp-color: #25D366;
    --whatsapp-hover: #128C7E;
    --font-display: 'Fraunces', serif;
    --font-body: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4,
.logo span,
.footer-logo,
.category-block-header h2,
.timeline-item h3,
.journal-card h3,
.location-card h3 {
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: 0.2px;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-color);
}
::-webkit-scrollbar-thumb {
    background: var(--glass-border);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background: rgba(26, 13, 10, 0.9); box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.logo-img {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-color);
}

/* Nav links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 2.2rem;
    list-style: none;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
    display: inline-block;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-color);
}

.nav-links li.has-dropdown > a::after {
    content: '\edad';
    font-family: 'boxicons';
    font-size: 1rem;
    margin-left: 0.2rem;
    vertical-align: -2px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: -1rem;
    min-width: 220px;
    background: #241310;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 0.6rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s ease;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    z-index: 200;
}

.nav-links li.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    padding: 0.5rem 0.8rem;
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.dropdown-menu a:hover {
    background: var(--accent-soft);
    color: var(--accent-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-color);
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-icons {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.cart-icon {
    position: relative;
    font-size: 1.8rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.cart-icon:hover {
    transform: scale(1.1);
    color: var(--accent-color);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -8px;
    background: var(--accent-color);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    height: 20px;
    width: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

/* Hero Section — slideshow */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 5%;
    position: relative;
    overflow: hidden;
}

/* All slide layers stacked on top of each other */
.hero-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.4s ease-in-out;
    transform: scale(1);
}

.hero-slide.active {
    opacity: 1;
    animation: heroZoom 10s ease-in-out forwards;
}

@keyframes heroZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

/* ── Hero Slide Transition Effects ─────────────────────────────────────────── */
.hero-slide {
    transition: opacity 1s ease-in-out;
}

/* Fade transition */
.hero-trans-fade .hero-slide {
    opacity: 0;
}
.hero-trans-fade .hero-slide.active {
    opacity: 1;
    animation: none;
}

/* Slide Left transition */
.hero-trans-slide-left .hero-slide {
    opacity: 0;
    transform: translateX(100%);
}
.hero-trans-slide-left .hero-slide.active {
    opacity: 1;
    transform: translateX(0);
    animation: none;
}

/* Slide Right transition */
.hero-trans-slide-right .hero-slide {
    opacity: 0;
    transform: translateX(-100%);
}
.hero-trans-slide-right .hero-slide.active {
    opacity: 1;
    transform: translateX(0);
    animation: none;
}

/* Slide Up transition */
.hero-trans-slide-up .hero-slide {
    opacity: 0;
    transform: translateY(100%);
}
.hero-trans-slide-up .hero-slide.active {
    opacity: 1;
    transform: translateY(0);
    animation: none;
}

/* Zoom transition */
.hero-trans-zoom .hero-slide {
    opacity: 0;
    transform: scale(1.2);
}
.hero-trans-zoom .hero-slide.active {
    opacity: 1;
    transform: scale(1);
    animation: none;
}

/* Ken Burns (zoom + pan) transition */
.hero-trans-ken-burns .hero-slide {
    opacity: 0;
    transform: scale(1) translate(0, 0);
}
.hero-trans-ken-burns .hero-slide.active {
    opacity: 1;
    transform: scale(1.08) translate(-2%, -2%);
    animation: kenBurns 10s ease-in-out forwards;
}
@keyframes kenBurns {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.08) translate(-2%, -2%); }
}

/* Default: fade (also used as fallback) */
.hero-slide.active {
    opacity: 1;
    animation: none;
}

/* Dark gradient overlay so text stays readable */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to bottom,
        rgba(22, 13, 11, 0.35) 0%,
        rgba(22, 13, 11, 0.65) 100%
    );
}

/* Dot indicators */
.hero-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.6rem;
    z-index: 3;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.6);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s, border-color 0.3s, transform 0.3s;
}

.hero-dot.active {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: scale(1.25);
}

.hero-dot:hover {
    border-color: var(--accent-color);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    animation: fadeIn 1s ease-out;
}


@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(59, 130, 246, 0.4);
}

/* Shop Section */
.shop-section {
    padding: 6rem 5%;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.section-title p {
    color: #94a3b8;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
}

.product-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 1rem;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(43, 31, 29, 0.1);
}

.product-image-link {
    display: block;
}

.product-image {
    width: 100%;
    height: 190px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 0.8rem;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-info h3 {
    font-size: 1.05rem; font-weight: 600;
    margin-bottom: 0.5rem;
}

.product-price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.add-to-cart {
    width: 100%;
    padding: 0.6rem 0.8rem;
    background: transparent;
    border: 1px solid var(--accent-color);
    color: #ffffff;
    font-family: inherit;
    font-size: 0.88rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.add-to-cart:hover {
    background: var(--accent-color);
}

/* Footer */
footer {
    background: #261410;
    padding: 3rem 5%;
    text-align: center;
    border-top: 1px solid var(--glass-border);
}

.footer-logo {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

/* Cart Overlay (Drawer) */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background: #1a0d0a;
    border-left: 1px solid var(--glass-border);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transform: translateX(105%);
    transition: transform 0.3s cubic-bezier(0.32, 0.72, 0, 1);
    will-change: transform;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
}

.cart-overlay.active .cart-drawer {
    transform: translateX(0);
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--glass-border);
}

.close-cart {
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-cart:hover {
    color: var(--accent-color);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cart-item {
    display: flex;
    gap: 1rem;
    background: var(--glass-bg);
    padding: 1rem;
    border-radius: 12px;
}

.cart-item img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
}

.item-details {
    flex: 1;
}

.item-details h4 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.item-details p {
    color: var(--accent-color);
    font-weight: 600;
}

.item-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

.qty-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    cursor: pointer;
}

.remove-item {
    color: #ef4444;
    cursor: pointer;
    font-size: 1.2rem;
}

.cart-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--glass-border);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.btn-checkout {
    width: 100%;
    padding: 1rem;
    background: var(--whatsapp-color);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.btn-checkout:hover {
    background: var(--whatsapp-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

/* Stitch Divider — signature motif: gold dashed line evoking leather stitching */
.stitch-divider {
    width: 100%;
    max-width: 1100px;
    margin: 3.5rem auto;
    height: 1px;
    background-image: repeating-linear-gradient(
        90deg,
        var(--accent-color) 0,
        var(--accent-color) 8px,
        transparent 8px,
        transparent 16px
    );
    opacity: 0.5;
}

/* Page Hero — for inner pages (Shop, About, Locations, Journal, Contact) */
.page-hero {
    padding: 9rem 5% 4rem;
    text-align: center;
    background: linear-gradient(rgba(22, 13, 11, 0.4), rgba(22, 13, 11, 0.7)), var(--hero-image, none);
    background-size: cover;
    background-position: center;
}

.page-hero .eyebrow {
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    font-weight: 600;
}

.page-hero h1 {
    font-size: 3rem;
    margin: 0.6rem 0 0.8rem;
}

.page-hero p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Category Promo Banners (Home) */
.category-promos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 0 5% 6rem;
    max-width: 1400px;
    margin: 0 auto;
}

.category-promo {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 360px;
    display: flex;
    align-items: flex-end;
    text-decoration: none;
    border: 1px solid var(--glass-border);
}

.category-promo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.category-promo:hover img {
    transform: scale(1.06);
}

.category-promo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(43, 31, 29, 0.82), transparent 70%);
}

.category-promo-label {
    position: relative;
    z-index: 2;
    padding: 2rem;
    color: var(--text-color);
}

.category-promo-label span {
    display: block;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
    margin-bottom: 0.4rem;
}

.category-promo-label h3 {
    font-size: 1.6rem;
}

/* Category Block (Shop page) */
.category-block {
    scroll-margin-top: 100px;
    margin-bottom: 1rem;
}

.category-block-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.category-block-header h2 {
    font-size: 2rem;
}

.category-count {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.product-category {
    display: inline-block;
    color: var(--accent-color);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.4rem;
}

.product-blurb {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* Shop category jump nav */
.shop-jumpnav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
    padding: 0 5% 3rem;
}

.shop-jumpnav a {
    color: var(--text-color);
    background: rgba(38, 20, 16, 0.6);
    text-decoration: none;
    border: 1px solid var(--glass-border);
    padding: 0.65rem 1.4rem;
    box-shadow: 0 2px 8px rgba(43, 31, 29, 0.04);
    border-radius: 30px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.shop-jumpnav a:hover {
    border-color: var(--accent-color);
    background: var(--accent-color);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(184, 134, 11, 0.25);
}

/* Heritage Timeline (About page) */
.timeline {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 5%;
}

.timeline-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 2rem;
    padding-bottom: 3rem;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 49px;
    top: 8px;
    bottom: -12px;
    width: 1px;
    background: var(--glass-border);
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-year {
    font-family: var(--font-display);
    color: var(--accent-color);
    font-size: 1.3rem;
    font-weight: 700;
}

.timeline-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.timeline-item p {
    color: var(--text-muted);
}

.story-intro {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.story-intro-lead {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.story-intro-body {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.team-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-color);
    margin-bottom: 1.2rem;
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    color: var(--bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-display);
    margin: 0 auto 1.2rem;
}

.team-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.4rem;
    color: var(--text-color);
}

.team-role {
    color: var(--accent-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.team-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Founder Section */
.founder-section {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.founder-quote {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--accent-color);
    line-height: 1.6;
    margin-bottom: 1rem;
    position: relative;
    padding: 1.5rem 2rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
}

.founder-quote::before {
    content: '\201C';
    position: absolute;
    top: -0.5rem;
    left: 1rem;
    font-size: 4rem;
    color: var(--accent-color);
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 1;
}

.founder-name {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.founder-name strong {
    color: var(--text-color);
}

.founder-body {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    text-align: left;
}

/* Workshop Grid */
.workshop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.workshop-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.workshop-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.workshop-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: var(--accent-soft);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-bottom: 1.2rem;
}

.workshop-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--text-color);
}

.workshop-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
}

.value-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.value-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    opacity: 0.3;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    line-height: 1;
}

.value-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--text-color);
}

.value-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Materials Grid */
.materials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 2rem auto 0;
}

.material-item {
    text-align: center;
    padding: 1.5rem;
}

.material-item i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    display: block;
}

.material-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.material-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Careers Section */
.careers-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.career-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.career-card:hover {
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.career-header {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}

.career-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: var(--accent-soft);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-color);
    flex-shrink: 0;
}

.career-meta h3 {
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
    color: var(--text-color);
}

.career-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.career-tag {
    background: var(--accent-soft);
    color: var(--accent-color);
    border: 1px solid var(--glass-border);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.career-body {
    margin-bottom: 1.5rem;
}

.career-body p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.career-requirements {
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 1rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.career-requirements strong {
    color: var(--accent-color);
}

.career-footer {
    display: flex;
    justify-content: flex-end;
}

/* Responsive for new sections */
@media (max-width: 768px) {
    .founder-quote {
        font-size: 1.1rem;
        padding: 1.5rem;
    }
    .workshop-grid {
        grid-template-columns: 1fr;
    }
    .values-grid {
        grid-template-columns: 1fr;
    }
    .materials-grid {
        grid-template-columns: 1fr;
    }
    .team-grid {
        grid-template-columns: 1fr;
    }
    .team-photo, .team-avatar {
        width: 100px;
        height: 100px;
        font-size: 2rem;
    }
}

/* Locations */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 0 5% 6rem;
    max-width: 1200px;
    margin: 0 auto;
}

.location-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
}

.location-card .location-tag {
    color: var(--accent-color);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 2px;
    margin-bottom: 0.6rem;
    display: block;
}

.location-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.location-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-bottom: 0.5rem;
}

.location-card a {
    color: var(--accent-color);
    text-decoration: none;
}

.location-card a:hover {
    text-decoration: underline;
}

/* Journal */
.journal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    padding: 0 5% 6rem;
    max-width: 1300px;
    margin: 0 auto;
}

.journal-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    text-decoration: none;
    color: var(--text-color);
    display: block;
}

.journal-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.journal-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* Journal filters */
.journal-filters {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
    padding: 0 1.5rem;
}

.journal-filter-btn {
    background: transparent;
    color: var(--muted);
    border: 1px solid var(--gold-border);
    border-radius: 30px;
    padding: 0.5rem 1.5rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.journal-filter-btn:hover {
    color: var(--gold);
    border-color: var(--gold);
}

.journal-filter-btn.active {
    background: var(--gold);
    color: var(--bg-dark);
    border-color: var(--gold);
}

/* Journal category tag */
.journal-category-tag {
    display: inline-block;
    background: var(--gold-soft);
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.journal-card-body {
    padding: 1.6rem;
}

.journal-date {
    color: var(--accent-color);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.journal-card h3 {
    font-size: 1.3rem;
    margin: 0.6rem 0 0.8rem;
}

.journal-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
}

.journal-article {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 5% 6rem;
}

.journal-article img {
    width: 100%;
    border-radius: 16px;
    margin-bottom: 2.5rem;
}

.journal-article h2 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
}

.journal-article p {
    color: var(--text-muted);
    margin-bottom: 1.2rem;
}

/* Contact */
.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 0 5% 6rem;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}

.contact-info-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
}

.contact-info-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.contact-line {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-line i {
    color: var(--accent-color);
    font-size: 1.4rem;
}

.contact-line h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.contact-line p, .contact-line a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.92rem;
}

.social-row {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.social-row a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-row a:hover {
    background: var(--accent-color);
    color: var(--bg-color);
    border-color: var(--accent-color);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-form label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
    display: block;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: var(--text-color);
    font-family: inherit;
    font-size: 0.95rem;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.contact-form button {
    width: 100%;
}

/* ── Testimonials Section ─────────────────────────────────────────────── */
.testimonials-section {
    padding: 6rem 5%;
    background: linear-gradient(135deg, #1a0d0a 0%, #261410 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-color);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.1);
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 4rem;
    font-family: Georgia, serif;
    color: var(--accent-color);
    opacity: 0.2;
    line-height: 1;
}

.testimonial-stars {
    color: var(--accent-color);
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--glass-border);
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--bg-color);
}

.testimonial-info strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-color);
    margin-bottom: 0.2rem;
}

.testimonial-info span {
    font-size: 0.8rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .testimonial-card {
        padding: 1.5rem;
    }
}

/* Newsletter band */
.newsletter-band {
    background: var(--bg-color-alt);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    padding: 4rem 5%;
    text-align: center;
}

.newsletter-band h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.newsletter-band p {
    color: var(--text-muted);
    margin-bottom: 1.8rem;
}

.newsletter-form {
    display: flex;
    flex-wrap: wrap;
    max-width: 420px;
    margin: 0 auto;
    gap: 0.6rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.9rem 1.2rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    color: var(--text-color);
    font-family: inherit;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent-color);
}

.newsletter-form button {
    padding: 0.9rem 1.8rem;
    background: var(--accent-color);
    color: var(--bg-color);
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: var(--accent-hover);
}

/* Inline form success message (contact + newsletter) — replaces alert() popups */
.form-success {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    margin-top: 1rem;
    padding: 0.8rem 1rem;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 10px;
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    animation: formSuccessIn 0.4s ease;
}

.form-success i {
    font-size: 1.15rem;
}

@keyframes formSuccessIn {
    from { opacity: 0; transform: translateY(4px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Expanded Footer */
.footer-columns {
    display: grid;
    grid-template-columns: 1.5fr repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto 3rem;
    text-align: left;
}

.footer-col h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-color);
    margin-bottom: 1.2rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.7rem;
}

.footer-col a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.92rem;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--accent-color);
}

.footer-col p {
    color: var(--text-muted);
    font-size: 0.92rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-wrap { grid-template-columns: 1fr; }
    .footer-columns { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .footer-columns { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
    .nav-toggle { display: flex; }

    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        width: 100%;
        background: #140b09;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
        border-bottom: 1px solid var(--glass-border);
    }

    .nav-links.active {
        max-height: 80vh;
        overflow-y: auto;
        padding: 1rem 0;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        width: 100%;
        padding: 0.9rem 6%;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        border: none;
        border-radius: 0;
        background: rgba(255, 255, 255, 0.03);
        display: flex;
        box-shadow: none;
        padding-left: 1rem;
    }

    .nav-links li.has-dropdown > a::after {
        display: none;
    }

    .category-promos { grid-template-columns: 1fr; }
}

/* ── Tablet (768px-1024px) ─────────────────────────────────────────────── */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero {
        min-height: 80vh;
    }
    .hero h1 { font-size: 3.2rem; }
    .hero p { font-size: 1.05rem; }
    .hero-dots { bottom: 1.5rem; }
    .hero-dot { width: 12px; height: 12px; }
}

/* ── Large Phones (641px-768px) ──────────────────────────────────────────── */
@media (max-width: 768px) {
    .hero {
        min-height: 70vh;
        height: auto;
        padding: 2rem 5%;
    }
    .hero-slide {
        background-size: cover;
        background-position: center 30%;
    }
    .hero h1 { font-size: 2.8rem; }
    .hero p { font-size: 1rem; margin-bottom: 1.5rem; }
    .hero-dots { bottom: 1.5rem; gap: 0.5rem; }
    .hero-dot { width: 11px; height: 11px; }
    .hero-content { padding: 0 1rem; }
    .btn-primary { padding: 0.9rem 2rem; font-size: 0.95rem; }
    .cart-drawer { width: 100%; max-width: 100%; }
    .page-hero h1 { font-size: 2.2rem; }
    .timeline-item { grid-template-columns: 70px 1fr; gap: 1rem; }
    .newsletter-form { flex-direction: column; }
}

/* ── Medium Phones (481px-640px) ──────────────────────────────────────────── */
@media (max-width: 640px) {
    .hero {
        min-height: 65vh;
    }
    .hero-slide {
        background-size: cover;
        background-position: center 35%;
    }
    .hero h1 { font-size: 2.2rem; }
    .hero p { font-size: 0.95rem; margin-bottom: 1.2rem; }
    .hero-content { max-width: 100%; padding: 0 0.5rem; }
    .hero-dots { bottom: 1.2rem; }
    .hero-dot { width: 10px; height: 10px; }
    .btn-primary { padding: 0.8rem 1.8rem; font-size: 0.9rem; }
    .section-title h2 { font-size: 2rem; }
    .product-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 1rem; }
}

/* ── Small Phones (375px-480px) - iPhone SE, iPhone Mini ────────────────────── */
@media (max-width: 480px) {
    .hero {
        min-height: 60vh;
    }
    .hero-slide {
        background-size: cover;
        background-position: center 40%;
    }
    .hero h1 { font-size: 1.9rem; line-height: 1.2; }
    .hero p { font-size: 0.9rem; margin-bottom: 1rem; }
    .hero-content { padding: 0 0.25rem; }
    .hero-dots { bottom: 1rem; gap: 0.4rem; }
    .hero-dot { width: 9px; height: 9px; border-width: 1.5px; }
    .btn-primary { padding: 0.75rem 1.5rem; font-size: 0.85rem; border-radius: 25px; }
    .section-title { margin-bottom: 2.5rem; }
    .section-title h2 { font-size: 1.7rem; }
    .section-title p { font-size: 0.9rem; }
    .shop-section { padding: 4rem 5%; }
    .product-grid { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
    .product-card { padding: 0.8rem; }
    .product-image { height: 140px; }
    .category-promos { gap: 1rem; padding: 0 5% 4rem; }
    .category-promo { height: 280px; }
    .category-promo-label { padding: 1.2rem; }
    .category-promo-label h3 { font-size: 1.3rem; }
}

/* ── Extra Small Phones (<375px) - Very small screens ──────────────────────── */
@media (max-width: 374px) {
    .hero {
        min-height: 55vh;
    }
    .hero-slide {
        background-size: cover;
        background-position: center 45%;
    }
    .hero-overlay {
        background: linear-gradient(
            to bottom,
            rgba(22, 13, 11, 0.45) 0%,
            rgba(22, 13, 11, 0.75) 100%
        );
    }
    .hero h1 { font-size: 1.6rem; }
    .hero p { font-size: 0.85rem; }
    .hero-dots { bottom: 0.8rem; }
    .hero-dot { width: 8px; height: 8px; }
    .btn-primary { padding: 0.7rem 1.2rem; font-size: 0.8rem; }
    .product-grid { grid-template-columns: 1fr; }
    .category-promo { height: 220px; }
    .category-promo-label { padding: 1rem; }
    .category-promo-label span { font-size: 0.65rem; }
    .category-promo-label h3 { font-size: 1.1rem; }
}

/* ── Hero overlay adjustments for all mobile ──────────────────────────────── */
@media (max-width: 768px) {
    .hero-overlay {
        background: linear-gradient(
            to bottom,
            rgba(22, 13, 11, 0.4) 0%,
            rgba(22, 13, 11, 0.7) 100%
        );
    }
    .hero-content {
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    }
    .hero h1 {
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    }
}

/* ── Landscape mode on phones ────────────────────────────────────────────── */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding: 1rem 5%;
    }
    .hero h1 { font-size: 2rem; }
    .hero p { font-size: 0.9rem; margin-bottom: 1rem; }
    .hero-dots { bottom: 0.5rem; }
}

/* Checkout Form Inputs */
/* ── Checkout form — refined layout ─────────────────────────────────────── */
.checkout-head {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.1rem;
}
.checkout-back {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--glass-border);
    color: var(--text-color);
    border-radius: 10px;
    width: 38px;
    height: 38px;
    cursor: pointer;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    font-size: 1.15rem;
    transition: all 0.2s ease;
}
.checkout-back:hover { background: rgba(255, 255, 255, 0.12); }
.checkout-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin: 0 0 0.2rem;
    color: var(--text-color);
}
.checkout-sub {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.45;
}
.checkout-summary {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 0.9rem 1rem;
    margin-bottom: 1.15rem;
}
.checkout-summary-head {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent-color);
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}
.checkout-summary-item {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    padding: 0.3rem 0;
    font-size: 0.88rem;
    color: var(--text-muted);
}
.checkout-summary-item .csq { color: var(--accent-color); font-weight: 600; flex-shrink: 0; }
.checkout-summary-item .csname {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.checkout-summary-item .csprice { flex-shrink: 0; color: var(--text-color); }
.checkout-summary-total {
    display: flex;
    justify-content: space-between;
    border-top: 1px dashed var(--glass-border);
    margin-top: 0.5rem;
    padding-top: 0.65rem;
    font-size: 1.02rem;
    color: var(--text-color);
}
#checkout-form { display: flex; flex-direction: column; gap: 0.9rem; }
.checkout-field { display: flex; flex-direction: column; gap: 0.35rem; }
.checkout-field label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-color);
}
.checkout-hint { font-size: 0.75rem; color: var(--text-muted); line-height: 1.4; }
.checkout-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: var(--text-color);
    padding: 0.8rem 1rem;
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}
.checkout-input:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}
.checkout-input.invalid { border-color: #e74c3c; }
.checkout-error {
    display: none;
    background: rgba(231, 76, 60, 0.12);
    border: 1px solid rgba(231, 76, 60, 0.4);
    color: #ffb4ab;
    font-size: 0.85rem;
    padding: 0.7rem 0.9rem;
    border-radius: 10px;
    line-height: 1.45;
}
.checkout-pay-note {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    color: var(--text-muted);
    background: rgba(212, 175, 55, 0.06);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 0.6rem 0.8rem;
    line-height: 1.4;
}
.checkout-pay-note i { color: var(--accent-color); font-size: 1rem; flex-shrink: 0; }
#checkout-form-container { animation: checkoutIn 0.22s ease; }
@keyframes checkoutIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Product Detail Page */
.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.product-gallery {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.product-main-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--glass-border);
}

.product-detail-info {
    display: flex;
    flex-direction: column;
}

.add-to-cart-large:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(212, 175, 55, 0.2);
}

@media (max-width: 768px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-gallery {
        position: static;
    }
}

/* ── Shop Toolbar (Filter & Sort) ──────────────────────────────────────── */
.shop-toolbar {
    max-width: 1200px;
    margin: 2.5rem auto 1.5rem;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-group,
.sort-group {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* ── Custom Dropdown (kw-select) ───────────────────────────────────────── */
.kw-select {
    position: relative;
    min-width: 160px;
}

.kw-select-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.6rem 1rem;
    background: var(--bg-color-alt);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--text-color);
    font-family: var(--font-body);
    font-size: 0.9rem;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
    white-space: nowrap;
}

.kw-select-btn:hover,
.kw-select.open .kw-select-btn {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.kw-select-btn svg {
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.kw-select.open .kw-select-btn svg {
    transform: rotate(180deg);
}

.kw-select-list {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    min-width: 100%;
    background: var(--bg-color-alt);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    list-style: none;
    padding: 0.4rem;
    z-index: 200;
    display: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.kw-select.open .kw-select-list {
    display: block;
    animation: dropdownIn 0.15s ease;
}

@keyframes dropdownIn {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

.kw-select-option {
    padding: 0.55rem 0.9rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-muted);
    white-space: nowrap;
    transition: background 0.15s, color 0.15s;
}

.kw-select-option:hover {
    background: var(--accent-color);
    color: #1a0d0a;
}

.kw-select-option.active {
    background: rgba(212, 175, 55, 0.15);
    color: var(--accent-color);
    font-weight: 600;
}

.kw-select-option.active:hover {
    background: var(--accent-color);
    color: #1a0d0a;
}


.result-count {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.sort-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    white-space: nowrap;
}

@media (max-width: 640px) {
    .shop-toolbar {
        flex-direction: column;
        align-items: stretch;
    }
    .filter-group,
    .sort-group {
        justify-content: space-between;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   POLICY PAGES (Terms, Privacy, Shipping)
   ═══════════════════════════════════════════════════════════════════════════════ */

.policy-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 5% 4rem;
}

.policy-updated {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--glass-border);
}

.policy-section {
    margin-bottom: 2.5rem;
}

.policy-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.policy-section h3 {
    font-size: 1.15rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-color);
}

.policy-section p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.policy-section ul,
.policy-section ol {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.policy-section li {
    margin-bottom: 0.5rem;
}

.policy-section a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

.policy-section a:hover {
    color: var(--accent-hover);
    text-decoration: underline;
}

.policy-section code {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    padding: 0.15rem 0.4rem;
    font-size: 0.9rem;
    color: var(--accent-color);
}

.policy-section strong {
    color: var(--text-color);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   CHECKOUT POLICY CHECKBOX
   ═══════════════════════════════════════════════════════════════════════════════ */

.checkout-policy-check {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.8rem;
    background: rgba(212, 175, 55, 0.06);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    margin-top: 0.5rem;
}

.checkout-policy-check input[type="checkbox"] {
    flex-shrink: 0;
    margin-top: 0.25rem;
    accent-color: var(--accent-color);
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.checkout-policy-check label {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
    cursor: pointer;
}

.checkout-policy-check label a {
    color: var(--accent-color);
    text-decoration: underline;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   POLICIES LANDING PAGE
   ═══════════════════════════════════════════════════════════════════════════════ */

.policies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5% 4rem;
}

.policy-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.policy-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.policy-card-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background: var(--accent-soft);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.policy-card:hover .policy-card-icon {
    background: var(--accent-color);
    color: var(--bg-color);
    border-color: var(--accent-color);
}

.policy-card h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.policy-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex: 1;
}

.policy-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.95rem;
    transition: gap 0.3s ease;
}

.policy-card:hover .policy-card-link {
    gap: 0.8rem;
}

.policies-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 2rem auto 0;
    padding: 0 5%;
}

.policies-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
}

.policies-info-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-top: 0.25rem;
}

.policies-info-item h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.policies-info-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.policies-info-item a {
    color: var(--accent-color);
    text-decoration: none;
}

.policies-info-item a:hover {
    text-decoration: underline;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   FOOTER POLICY LINKS
   ═══════════════════════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════════════════════
   BUSINESS HOURS STATUS INDICATOR
   ═══════════════════════════════════════════════════════════════════════════════ */

.business-status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    margin-top: 0.8rem;
    font-size: 0.9rem;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.status-dot.open {
    background: #22c55e;
    animation: pulse-green 2s infinite;
}

.status-dot.closed {
    background: #ef4444;
    animation: pulse-red 2s infinite;
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

@keyframes pulse-red {
    0% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(239, 68, 68, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
    }
}

.status-text {
    font-weight: 600;
    letter-spacing: 0.3px;
}

.status-text.open {
    color: #22c55e;
}

.status-text.closed {
    color: #ef4444;
}

.status-message {
    color: var(--text-muted);
    font-size: 0.82rem;
    margin-left: 0.3rem;
}

/* Responsive adjustments for status indicator */
@media (max-width: 480px) {
    .business-status-indicator {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
        padding: 0.5rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .status-message {
        width: 100%;
        margin-left: 0;
        margin-top: 0.3rem;
        font-size: 0.78rem;
    }
}
