/* ========================================
   Don Lal Jewellers — Main Styles
   ======================================== */

@import 'variables.css';

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--shop-body-font);
    color: var(--shop-text);
    background: var(--shop-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.menu-open { overflow: hidden; }

.container {
    max-width: var(--shop-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

h1, h2, h3, h4 { font-family: var(--shop-heading-font); font-weight: 700; line-height: 1.2; }
a { color: var(--shop-primary); text-decoration: none; transition: color var(--shop-transition); }
a:hover { color: var(--shop-secondary); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border-radius: var(--shop-radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    font-family: var(--shop-body-font);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--shop-transition);
    text-decoration: none;
    letter-spacing: 0.02em;
}

.btn-primary {
    background: var(--shop-primary);
    color: #fff;
    border-color: var(--shop-primary);
}
.btn-primary:hover {
    background: var(--shop-primary-dark);
    border-color: var(--shop-primary-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(123, 35, 50, 0.25);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: #fff;
    color: #fff;
    transform: translateY(-2px);
}

.btn-gold {
    background: var(--shop-secondary);
    color: var(--shop-text);
    border-color: var(--shop-secondary);
}
.btn-gold:hover {
    background: #d4b85e;
    border-color: #d4b85e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200, 169, 81, 0.3);
}

.btn-lg { padding: 1rem 2.5rem; font-size: 1.05rem; }

/* ── Announcement Bar ── */
.announcement-bar {
    background: var(--shop-primary);
    color: #fff;
    text-align: center;
    padding: 0.55rem 1rem;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
    z-index: 1002;
}

.announcement-bar a { color: var(--shop-secondary); font-weight: 700; }

/* ── Navbar ── */
.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    padding: 1.2rem 0;
    transition: background var(--shop-transition), box-shadow var(--shop-transition), padding var(--shop-transition);
}

.navbar.scrolled {
    background: rgba(253, 251, 248, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 12px rgba(26, 18, 16, 0.06);
    padding: 0.7rem 0;
}

.nav-container {
    max-width: var(--shop-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--shop-text);
    font-weight: 500;
    font-size: 0.92rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: color var(--shop-transition);
    position: relative;
    padding-bottom: 2px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--shop-secondary);
    transition: width var(--shop-transition);
}

.nav-link:hover::after,
.nav-link.active::after { width: 100%; }
.nav-link:hover { color: var(--shop-primary); }
.nav-link.active { color: var(--shop-primary); }

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    text-decoration: none;
}

.nav-logo-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
}

.nav-logo-name {
    font-family: var(--shop-script-font);
    font-size: 1.6rem;
    color: var(--shop-primary);
    font-weight: 400;
    white-space: nowrap;
}

.nav-logo-sub {
    font-family: var(--shop-body-font);
    font-size: 0.55rem;
    color: var(--shop-secondary);
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-weight: 600;
    margin-top: 1px;
}

.nav-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.25rem;
}

.icon-link {
    color: var(--shop-text);
    display: flex;
    align-items: center;
    transition: color var(--shop-transition), transform var(--shop-transition);
}
.icon-link:hover { color: var(--shop-primary); transform: translateY(-2px); }

.cart-icon { position: relative; }
.cart-badge {
    position: absolute;
    top: -6px; right: -8px;
    background: var(--shop-secondary);
    color: var(--shop-text);
    font-size: 0.65rem;
    font-weight: 700;
    width: 18px; height: 18px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
}

/* ── Sidebar-only items (hidden on desktop) ── */
.sidebar-brand-item,
.sidebar-footer-item { display: none !important; }

/* ── Mobile Menu Toggle ── */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    gap: 5px;
    z-index: 1002;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--shop-text);
    transition: all var(--shop-transition);
    border-radius: 2px;
}

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

.menu-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(26, 18, 16, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.menu-backdrop.open { display: block; opacity: 1; }

/* ── Hero Section ── */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #1a1210;
}

.hero-slideshow {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    will-change: opacity;
}

.hero-slide.active { opacity: 1; }

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: kenBurns 20s ease-in-out infinite alternate;
}

.hero-slide:nth-child(2) img { animation-delay: -10s; animation-direction: alternate-reverse; }

@keyframes kenBurns {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(26, 18, 16, 0.85) 0%,
        rgba(26, 18, 16, 0.5) 40%,
        rgba(26, 18, 16, 0.3) 70%,
        rgba(26, 18, 16, 0.4) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    padding: 2rem 1.5rem;
}

.hero-badge {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    border: 1px solid rgba(200, 169, 81, 0.5);
    border-radius: 2rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--shop-secondary);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 2rem;
    backdrop-filter: blur(6px);
    background: rgba(200, 169, 81, 0.08);
}

.hero-title {
    font-family: var(--shop-script-font);
    font-size: clamp(3.5rem, 8vw, 6rem);
    color: #fff;
    font-weight: 400;
    margin-bottom: 0.5rem;
    line-height: 1.1;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-family: var(--shop-heading-font);
    font-size: clamp(0.8rem, 1.5vw, 1rem);
    color: var(--shop-secondary);
    text-transform: uppercase;
    letter-spacing: 0.35em;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.hero-tagline {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.5);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: scrollBounce 2s infinite;
}

.hero-scroll-indicator svg { width: 20px; height: 20px; stroke: rgba(255,255,255,0.5); }

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

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

.hero-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.6);
    background: transparent;
    cursor: pointer;
    transition: all var(--shop-transition);
    padding: 0;
}

.hero-dot.active {
    background: var(--shop-secondary);
    border-color: var(--shop-secondary);
    transform: scale(1.2);
}

/* ── Section Shared ── */
.section {
    padding: 6rem 1.5rem;
}

.section-alt { background: var(--shop-surface); }

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 600;
    color: var(--shop-text);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--shop-muted);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-divider {
    width: 60px;
    height: 2px;
    background: var(--shop-secondary);
    margin: 1.2rem auto 0;
    border-radius: 2px;
}

/* ── Welcome Section ── */
.welcome {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.welcome-image {
    position: relative;
    border-radius: var(--shop-radius);
    overflow: hidden;
    box-shadow: var(--shop-shadow-lg);
}

.welcome-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/5;
    transition: transform 0.6s ease;
}

.welcome-image:hover img { transform: scale(1.03); }

.welcome-image-accent {
    position: absolute;
    bottom: -12px;
    right: -12px;
    width: 100px;
    height: 100px;
    border: 3px solid var(--shop-secondary);
    border-radius: var(--shop-radius);
    z-index: -1;
}

.welcome-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.welcome-text .gold-line {
    display: block;
    width: 50px;
    height: 2px;
    background: var(--shop-secondary);
    margin-bottom: 1.5rem;
}

.welcome-text p {
    color: var(--shop-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.welcome-text blockquote {
    font-family: var(--shop-heading-font);
    font-style: italic;
    font-size: 1.25rem;
    color: var(--shop-primary);
    border-left: 3px solid var(--shop-secondary);
    padding-left: 1.2rem;
    margin: 1.8rem 0;
    line-height: 1.6;
}

/* ── Collections Grid ── */
.collections-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.collection-card {
    position: relative;
    background: #fff;
    border-radius: var(--shop-radius);
    padding: 2.5rem 1.5rem;
    text-align: center;
    border: 1px solid var(--shop-border);
    transition: all var(--shop-transition);
    cursor: pointer;
    text-decoration: none;
    display: block;
    overflow: hidden;
}

.collection-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--shop-secondary);
    transform: scaleX(0);
    transition: transform var(--shop-transition);
}

.collection-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shop-shadow-lg);
    border-color: var(--shop-secondary);
}

.collection-card:hover::before { transform: scaleX(1); }

.collection-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--shop-primary-light);
    border-radius: 50%;
    color: var(--shop-primary);
    transition: all var(--shop-transition);
}

.collection-card:hover .collection-icon {
    background: var(--shop-secondary);
    color: #fff;
}

.collection-icon svg { width: 28px; height: 28px; }

.collection-card h3 {
    font-size: 1.15rem;
    color: var(--shop-text);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.collection-card p {
    font-size: 0.88rem;
    color: var(--shop-muted);
    line-height: 1.6;
}

/* ── Featured Products ── */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

/* ── Why Choose Us ── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: #fff;
    border-radius: var(--shop-radius);
    border: 1px solid var(--shop-border);
    transition: all var(--shop-transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shop-shadow-lg);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--shop-primary-light), var(--shop-secondary-light));
}

.feature-icon svg { width: 30px; height: 30px; color: var(--shop-primary); }

.feature-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.6rem;
    color: var(--shop-text);
}

.feature-card p {
    color: var(--shop-muted);
    font-size: 0.92rem;
    line-height: 1.6;
}

/* ── Team ── */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

/* ── Visit Section ── */
.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: start;
}

.hours-card {
    background: #fff;
    border-radius: var(--shop-radius);
    padding: 2.5rem;
    border: 1px solid var(--shop-border);
    box-shadow: var(--shop-shadow);
}

.hours-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--shop-text);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.hours-card h3 svg { width: 24px; height: 24px; color: var(--shop-secondary); }

.hours-table {
    width: 100%;
    border-collapse: collapse;
}

.hours-table tr {
    border-bottom: 1px solid var(--shop-border);
}

.hours-table tr:last-child { border-bottom: none; }

.hours-table td {
    padding: 0.85rem 0;
    font-size: 0.95rem;
}

.hours-table td:first-child {
    font-weight: 600;
    color: var(--shop-text);
}

.hours-table td:last-child {
    text-align: right;
    color: var(--shop-muted);
}

.hours-table tr.today td {
    color: var(--shop-primary);
}

.hours-table tr.today td:last-child {
    color: var(--shop-primary);
    font-weight: 600;
}

.hours-table .closed {
    color: var(--shop-primary) !important;
    font-style: italic;
}

.map-container {
    border-radius: var(--shop-radius);
    overflow: hidden;
    box-shadow: var(--shop-shadow-lg);
    border: 1px solid var(--shop-border);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 420px;
    display: block;
}

/* Contact info under hours */
.contact-info-list {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--shop-border);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--shop-muted);
}

.contact-info-item svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--shop-secondary);
}

.contact-info-item a {
    color: var(--shop-text);
    font-weight: 500;
}

.contact-info-item a:hover { color: var(--shop-primary); }

/* ── Footer ── */
.footer {
    background:
        radial-gradient(circle at 12% 18%, rgba(123, 35, 50, 0.06) 0%, transparent 42%),
        radial-gradient(circle at 88% 82%, rgba(200, 169, 81, 0.04) 0%, transparent 45%),
        linear-gradient(180deg, var(--shop-surface) 0%, #ede7e0 100%);
    border-top: 1px solid var(--shop-border);
    padding: 3.5rem 1.5rem 1.25rem;
    color: var(--shop-muted);
    font-size: 0.9rem;
}

.footer a {
    color: var(--shop-text);
    transition: color var(--shop-transition);
}
.footer a:hover { color: var(--shop-primary); }

.footer-content {
    max-width: var(--shop-max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: minmax(280px, 1.3fr) repeat(2, minmax(160px, 0.8fr));
    gap: 2rem;
}

.footer-brand { display: flex; flex-direction: column; gap: 0.8rem; max-width: 36ch; }

.footer-brand-name {
    font-family: var(--shop-script-font);
    font-size: 1.8rem;
    color: var(--shop-primary);
}

.footer-brand-text {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--shop-muted);
}

.footer-column h4 {
    font-family: var(--shop-heading-font);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--shop-text);
    margin-bottom: 0.9rem;
}

.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { font-weight: 500; color: var(--shop-muted); }
.footer-links a:hover { color: var(--shop-primary); transform: translateX(2px); }

.footer-bottom {
    border-top: 1px solid var(--shop-border);
    padding-top: 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-copy { font-size: 0.85rem; color: var(--shop-muted); }

.footer-credit { font-size: 0.82rem; color: var(--shop-muted); }
.footer-credit a { font-weight: 700; color: var(--shop-primary); }
.footer-credit a:hover { color: var(--shop-secondary); }

.footer-legal-links { display: flex; gap: 1rem; }
.footer-legal-links a { font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }

/* ── Page Header (products / detail) ── */
.page-header {
    padding: 1rem 1.5rem;
    text-align: center;
    background: var(--shop-surface);
}

.page-header h1 { font-size: 2.4rem; }

/* ── Shared Element Container ── */
.shared-element-container {
    --color-primary: var(--shop-primary);
    --color-black: var(--shop-text);
    --color-white: var(--shop-bg);
    --color-gray: var(--shop-muted);
    --color-gray-lighter: var(--shop-border);
    --color-off-white: var(--shop-surface);
    --font-family-base: var(--shop-body-font);
    --font-family-heading: var(--shop-heading-font);
    max-width: var(--shop-max-width);
    margin: 0 auto;
    padding: 1rem 0 4rem;
}

section.section-products { padding-top: 0; padding-bottom: 5rem; }
section.section-detail { padding-top: 2rem; }

.shared-element-container .section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    margin-bottom: 1.75rem;
}

.shared-element-container .section-title::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 2px;
    background: var(--shop-secondary);
}

/* ── Loading Spinner ── */
.loading-spinner {
    display: flex;
    justify-content: center;
    padding: 4rem;
}

.loading-spinner::after {
    content: '';
    width: 40px; height: 40px;
    border: 3px solid var(--shop-border);
    border-top-color: var(--shop-primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ── Scroll Animations ── */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Responsive — Tablet ── */
@media (max-width: 992px) {
    .welcome { grid-template-columns: 1fr; gap: 2.5rem; }
    .welcome-image { max-width: 500px; margin: 0 auto; }
    .welcome-image-accent { display: none; }

    .collections-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .visit-grid { grid-template-columns: 1fr; }

    .hero-content { max-width: 520px; }
    .hero { min-height: 85vh; }
}

/* ── Responsive — Mobile ── */
@media (max-width: 768px) {
    .section { padding: 4rem 1.25rem; }

    .mobile-menu-toggle {
        display: flex;
        justify-self: start;
        position: relative;
    }

    .hide-mobile { display: none !important; }

    .sidebar-brand-item,
    .sidebar-footer-item { display: list-item !important; }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 320px;
        max-width: 85vw;
        height: 100dvh;
        background: var(--shop-bg);
        flex-direction: column;
        align-items: flex-start;
        padding: 0;
        gap: 0;
        transform: translateX(-100%);
        transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
        z-index: 1001;
        box-shadow: none;
        overflow-y: auto;
    }

    .nav-menu.open {
        transform: translateX(0);
        box-shadow: 15px 0 50px rgba(26, 18, 16, 0.12);
    }

    /* Sidebar brand header */
    .sidebar-brand {
        display: flex;
        align-items: center;
        gap: 0.8rem;
        padding: 2rem 2rem 1.5rem;
        border-bottom: 1px solid var(--shop-border);
        width: 100%;
    }

    .sidebar-brand .nav-logo-name {
        font-family: var(--shop-script-font);
        font-size: 1.8rem;
        color: var(--shop-primary);
    }

    .sidebar-brand .nav-logo-sub {
        font-size: 0.5rem;
        color: var(--shop-secondary);
        letter-spacing: 0.2em;
        text-transform: uppercase;
        font-weight: 600;
        font-family: var(--shop-body-font);
        display: block;
        margin-top: 2px;
    }

    .sidebar-close {
        position: absolute;
        top: 1.5rem;
        right: 1.2rem;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
        color: var(--shop-muted);
        transition: color var(--shop-transition);
        z-index: 5;
    }

    .sidebar-close:hover { color: var(--shop-text); }
    .sidebar-close svg { width: 22px; height: 22px; }

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

    .nav-link {
        font-family: var(--shop-heading-font);
        font-size: 1.4rem;
        font-weight: 600;
        text-transform: none;
        letter-spacing: 0;
        padding: 1rem 2rem;
        display: block;
        width: 100%;
        color: var(--shop-text);
        border-bottom: 1px solid var(--shop-border);
        transition: all 0.2s ease;
    }

    .nav-link::after { display: none !important; }

    .nav-link:hover,
    .nav-link.active {
        color: var(--shop-primary);
        background: var(--shop-primary-light);
        padding-left: 2.4rem;
    }

    .sidebar-footer {
        margin-top: auto;
        padding: 1.5rem 2rem;
        border-top: 1px solid var(--shop-border);
        width: 100%;
    }

    .sidebar-footer-phone {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.9rem;
        color: var(--shop-muted);
        margin-bottom: 0.6rem;
    }

    .sidebar-footer-phone svg { width: 16px; height: 16px; color: var(--shop-secondary); }
    .sidebar-footer-phone a { color: var(--shop-text); font-weight: 500; }

    .sidebar-footer-hours {
        font-size: 0.82rem;
        color: var(--shop-muted);
    }

    .nav-logo-name { font-size: 1.3rem; }
    .nav-logo-sub { font-size: 0.48rem; }

    .hero { min-height: 100svh; }
    .hero-title { font-size: clamp(3rem, 10vw, 4.5rem); }

    .hero-actions { flex-direction: column; width: 100%; max-width: 320px; gap: 0.8rem; }
    .hero-actions .btn { width: 100%; justify-content: center; }

    .welcome-text h2 { font-size: 1.8rem; }
    .collections-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .collection-card { padding: 1.8rem 1rem; }
    .features-grid { grid-template-columns: 1fr; }

    .footer-top { grid-template-columns: 1fr; text-align: center; }
    .footer-brand { align-items: center; max-width: 100%; }
    .footer-links { align-items: center; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .section { padding: 3rem 1rem; }
    .hero-title { font-size: clamp(2.5rem, 12vw, 3.5rem); }
    .hero-subtitle { font-size: 0.7rem; letter-spacing: 0.25em; }
    .hero-tagline { font-size: 0.95rem; }
    .hero-dots { bottom: 4rem; }
    .hero-scroll-indicator { bottom: 1.2rem; }

    .collections-grid { grid-template-columns: 1fr 1fr; gap: 0.8rem; }
    .collection-card { padding: 1.5rem 0.8rem; }
    .collection-icon { width: 48px; height: 48px; }
    .collection-icon svg { width: 22px; height: 22px; }
    .collection-card h3 { font-size: 1rem; }
    .collection-card p { font-size: 0.8rem; }

    .page-header h1 { font-size: 1.8rem; }

    .hours-card { padding: 1.5rem; }
}

/* Gold accent underline for section headers */
.section-header h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: var(--shop-secondary);
}

/* Page header gold accent */
.page-header h1 {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.page-header h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: var(--shop-secondary);
}
