/* ═══════════════════════════════════════════
   Glamour — Complete Stylesheet
   Jewellery & Watches · Gibraltar
   ═══════════════════════════════════════════ */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

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;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, h5 { font-family: var(--shop-heading-font); font-weight: 700; line-height: 1.2; }

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

.section {
    padding: 5rem 0;
}

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

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

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--shop-text);
    margin-bottom: 0.75rem;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--shop-text-muted);
    max-width: 520px;
    margin: 0 auto;
}

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

/* ── Announcement Bar ── */
.announcement-bar {
    background: var(--shop-primary-dark);
    color: #fff;
    text-align: center;
    padding: 0.55rem 1rem;
    font-size: 0.82rem;
    letter-spacing: 0.3px;
    font-weight: 500;
}

.announcement-bar a {
    color: var(--shop-secondary-light);
    text-decoration: underline;
}

/* ═══════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════ */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: box-shadow var(--transition-base), border-color var(--transition-base);
    border-bottom: 1px solid transparent;
    height: var(--navbar-height);
}

.navbar.scrolled {
    border-bottom-color: var(--shop-border);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 2rem;
}

.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo-img { height: 48px; width: auto; }

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.25rem;
    margin: 0;
}

.nav-link {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--shop-text);
    position: relative;
    padding: 0.25rem 0;
    transition: color var(--transition-fast);
    letter-spacing: 0.2px;
}

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

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

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-action-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    transition: background var(--transition-fast), color var(--transition-fast);
    color: var(--shop-text);
}

.nav-action-link svg {
    width: 20px;
    height: 20px;
}

.nav-action-link:hover {
    background: var(--shop-primary-tint);
    color: var(--shop-primary);
}

/* ── Hamburger ── */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 38px;
    height: 38px;
    border: none;
    background: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--shop-text);
    border-radius: 2px;
    transition: transform var(--transition-base), opacity var(--transition-base);
}

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

/* ═══════════════════════════════════════════
   MOBILE SIDEBAR
   ═══════════════════════════════════════════ */
.sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-base), visibility var(--transition-base);
}

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

.mobile-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    max-width: 85vw;
    height: 100dvh;
    background: var(--shop-bg);
    z-index: 999;
    transform: translateX(-100%);
    transition: transform var(--transition-base);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.1);
}

.mobile-sidebar.active {
    transform: translateX(0);
}

.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--shop-border);
}

.sidebar-logo {
    height: 40px;
    width: auto;
}

.sidebar-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: none;
    background: none;
    cursor: pointer;
    border-radius: 50%;
    transition: background var(--transition-fast);
    color: var(--shop-text);
}

.sidebar-close:hover { background: var(--color-gray-lighter); }
.sidebar-close svg { width: 20px; height: 20px; }

.sidebar-nav {
    display: flex;
    flex-direction: column;
    padding: 1rem 0;
    flex: 1;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.9rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--shop-text);
    transition: background var(--transition-fast), color var(--transition-fast);
}

.sidebar-link svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    opacity: 0.6;
    transition: opacity var(--transition-fast);
}

.sidebar-link:hover,
.sidebar-link.active {
    background: var(--shop-primary-tint);
    color: var(--shop-primary);
}

.sidebar-link:hover svg,
.sidebar-link.active svg {
    opacity: 1;
    color: var(--shop-primary);
}

.sidebar-footer {
    padding: 1.25rem 1.5rem;
    border-top: 1px solid var(--shop-border);
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.sidebar-contact-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.82rem;
    color: var(--shop-text-muted);
}

.sidebar-contact-item svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    opacity: 0.5;
}

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero {
    min-height: 92vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--shop-surface) 0%, #fff 50%, var(--shop-surface) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--shop-primary-tint) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.hero-content { position: relative; z-index: 2; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--shop-primary-tint);
    color: var(--shop-primary);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.3px;
}

.hero-badge svg { flex-shrink: 0; }

.hero-title {
    font-size: clamp(2.5rem, 5.5vw, 3.75rem);
    color: var(--shop-text);
    margin-bottom: 1.25rem;
    line-height: 1.1;
}

.hero-title span {
    color: var(--shop-primary);
    position: relative;
}

.hero-title span::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(201, 168, 76, 0.3);
    border-radius: 4px;
    z-index: -1;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--shop-text-muted);
    max-width: 480px;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
}

.hero-stat-number {
    font-family: var(--shop-heading-font);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--shop-text);
}

.hero-stat-label {
    font-size: 0.82rem;
    color: var(--shop-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.15rem;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    z-index: 2;
}

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

.hero-image-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.hero-image-float {
    position: absolute;
    bottom: -30px;
    left: -40px;
    width: 200px;
    border-radius: var(--shop-radius);
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
    border: 4px solid #fff;
}

.hero-image-float img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.hero-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border: 3px solid var(--shop-secondary-light);
    border-radius: var(--shop-radius-lg);
    opacity: 0.4;
    pointer-events: 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-family: var(--shop-body-font);
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition-base);
    letter-spacing: 0.2px;
    text-decoration: none;
}

.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);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(27, 94, 59, 0.25);
}

.btn-outline {
    background: transparent;
    color: var(--shop-text);
    border-color: var(--shop-border);
}

.btn-outline:hover {
    border-color: var(--shop-primary);
    color: var(--shop-primary);
    transform: translateY(-2px);
}

.btn-white {
    background: #fff;
    color: var(--shop-primary);
    border-color: #fff;
}

.btn-white:hover {
    background: var(--shop-surface);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-gold {
    background: var(--shop-secondary);
    color: #fff;
    border-color: var(--shop-secondary);
}

.btn-gold:hover {
    background: var(--shop-secondary-dark);
    border-color: var(--shop-secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201, 168, 76, 0.3);
}

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

/* ═══════════════════════════════════════════
   ABOUT SECTION
   ═══════════════════════════════════════════ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--shop-radius-lg);
    overflow: hidden;
}

.about-image-wrapper img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--shop-radius-lg);
}

.about-image-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--shop-primary), var(--shop-secondary));
    border-radius: 0 0 var(--shop-radius-lg) var(--shop-radius-lg);
}

.about-content h2 {
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    margin-bottom: 1.25rem;
}

.about-text {
    color: var(--shop-text-muted);
    margin-bottom: 1rem;
    line-height: 1.75;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-top: 2rem;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--shop-text);
}

.about-feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--shop-primary-tint);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background var(--transition-fast);
}

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

.about-feature:hover .about-feature-icon {
    background: var(--shop-primary);
}

.about-feature:hover .about-feature-icon svg {
    color: #fff;
}

/* ═══════════════════════════════════════════
   CATEGORIES
   ═══════════════════════════════════════════ */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.category-card {
    position: relative;
    border-radius: var(--shop-radius);
    overflow: hidden;
    aspect-ratio: 3 / 4;
    display: block;
    cursor: pointer;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.category-card:hover img {
    transform: scale(1.08);
}

.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    transition: background var(--transition-base);
}

.category-card:hover .category-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
}

.category-name {
    color: #fff;
    font-size: 1.25rem;
    font-family: var(--shop-heading-font);
    margin-bottom: 0.25rem;
}

.category-count {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* ═══════════════════════════════════════════
   PRODUCT GRID (Featured)
   ═══════════════════════════════════════════ */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 1.5rem;
    min-height: 200px;
}

.products-cta {
    text-align: center;
    margin-top: 2.5rem;
}

/* ═══════════════════════════════════════════
   IMAGE SLIDESHOW
   ═══════════════════════════════════════════ */
.slideshow {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 400px;
    max-height: 600px;
    overflow: hidden;
    border-radius: var(--shop-radius-lg);
    box-shadow: var(--shop-shadow-lg);
}

.slideshow-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

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

.slideshow-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slideshow-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 50%);
}

.slideshow-controls {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 5;
}

.slideshow-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: background var(--transition-fast), transform var(--transition-fast);
}

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

.slideshow-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    pointer-events: none;
    z-index: 5;
}

.slideshow-arrow {
    pointer-events: all;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition-fast), transform var(--transition-fast);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.slideshow-arrow:hover {
    background: #fff;
    transform: scale(1.1);
}

.slideshow-arrow svg {
    width: 20px;
    height: 20px;
    color: var(--shop-text);
}

/* ═══════════════════════════════════════════
   FEATURES / WHY CHOOSE US
   ═══════════════════════════════════════════ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.feature-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--color-white);
    border-radius: var(--shop-radius);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    border: 1px solid transparent;
}

.section-alt .feature-card {
    background: var(--color-white);
}

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

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--shop-primary-tint);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    transition: background var(--transition-base);
}

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

.feature-card:hover .feature-icon {
    background: var(--shop-primary);
}

.feature-card:hover .feature-icon svg { color: #fff; }

.feature-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-family: var(--shop-heading-font);
}

.feature-desc {
    font-size: 0.88rem;
    color: var(--shop-text-muted);
    line-height: 1.6;
}

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

/* ═══════════════════════════════════════════
   CTA BANNER
   ═══════════════════════════════════════════ */
.cta-banner {
    background: linear-gradient(135deg, var(--shop-primary) 0%, var(--shop-primary-dark) 100%);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.cta-banner .container { position: relative; z-index: 2; }

.cta-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: #fff;
    margin-bottom: 0.75rem;
}

.cta-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    max-width: 480px;
    margin: 0 auto 2rem;
}

/* ═══════════════════════════════════════════
   VISIT US
   ═══════════════════════════════════════════ */
.visit-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2rem;
    align-items: start;
}

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

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

.visit-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.visit-card {
    padding: 1.5rem;
    background: var(--color-white);
    border-radius: var(--shop-radius);
    border: 1px solid var(--shop-border);
    transition: box-shadow var(--transition-base);
}

.visit-card:hover {
    box-shadow: var(--shop-shadow-md);
}

.visit-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.visit-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--shop-primary-tint);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.visit-card-icon svg {
    width: 20px;
    height: 20px;
    color: var(--shop-primary);
}

.visit-card-title {
    font-size: 1.05rem;
    font-family: var(--shop-heading-font);
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.45rem 0.75rem;
    border-radius: 6px;
    font-size: 0.88rem;
    transition: background var(--transition-fast);
}

.hours-row:hover { background: var(--shop-surface); }

.hours-row.today {
    background: var(--shop-primary-tint);
    font-weight: 600;
}

.hours-row.today .hours-day { color: var(--shop-primary); }

.hours-day { font-weight: 500; }

.hours-time { color: var(--shop-text-muted); }

.hours-row.closed .hours-time { color: #c0392b; font-weight: 600; }

.contact-detail {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--shop-text-muted);
}

.contact-detail svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--shop-primary);
    opacity: 0.7;
}

.contact-detail a {
    color: var(--shop-text);
    transition: color var(--transition-fast);
}

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

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer {
    background: var(--shop-text);
    color: rgba(255, 255, 255, 0.75);
    padding: 4rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2.5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand-logo {
    height: 50px;
    width: auto;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-brand-text {
    font-size: 0.88rem;
    line-height: 1.7;
    max-width: 300px;
    margin-bottom: 1.25rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition-fast);
}

.footer-social a svg {
    width: 18px;
    height: 18px;
}

.footer-social a:hover {
    background: var(--shop-primary);
    color: #fff;
}

.footer-column h4 {
    color: #fff;
    font-size: 0.92rem;
    font-family: var(--shop-body-font);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.25rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links a {
    font-size: 0.88rem;
    transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.footer-links a:hover {
    color: #fff;
    padding-left: 4px;
}

.footer-bottom {
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
}

.footer-bottom a {
    color: var(--shop-secondary-light);
    transition: color var(--transition-fast);
}

.footer-bottom a:hover { color: var(--shop-secondary); }

/* ═══════════════════════════════════════════
   PAGE HEADER (products, detail pages)
   ═══════════════════════════════════════════ */
.page-header {
    padding: 2rem 0 1.5rem;
    background: var(--shop-surface);
    border-bottom: 1px solid var(--shop-border);
}

.page-header-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--shop-text-muted);
    margin-bottom: 0.75rem;
}

.page-header-breadcrumb a {
    transition: color var(--transition-fast);
}

.page-header-breadcrumb a:hover {
    color: var(--shop-primary);
}

.breadcrumb-separator { opacity: 0.4; }

.page-header h1 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.page-header p {
    color: var(--shop-text-muted);
    margin-top: 0.5rem;
}

.breadcrumb-left { justify-content: flex-start; }

.section-detail-top {
    padding-top: 2rem;
}

/* ═══════════════════════════════════════════
   LOADING
   ═══════════════════════════════════════════ */
.loading-spinner {
    width: 36px;
    height: 36px;
    border: 3px solid var(--shop-border);
    border-top-color: var(--shop-primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 3rem auto;
    grid-column: 1 / -1;
}

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

.loading-section {
    text-align: center;
    padding: 3rem 0;
}

/* ═══════════════════════════════════════════
   FADE UP ANIMATION
   ═══════════════════════════════════════════ */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* ═══════════════════════════════════════════
   RESPONSIVE — 1024px
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }

    .hero-content { order: 1; }
    .hero-visual { order: 2; }
    .hero-desc { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }

    .hero-image-float { left: 10%; bottom: -20px; }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .visit-grid {
        grid-template-columns: 1fr;
    }

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

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

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — 768px
   ═══════════════════════════════════════════ */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .hide-mobile { display: none !important; }

    .section { padding: 3.5rem 0; }
    .container { padding: 0 1.25rem; }

    .hero { min-height: auto; padding: 3rem 0; }
    .hero-image-main img { height: 350px; }
    .hero-image-float { width: 150px; left: 5%; }
    .hero-image-float img { height: 120px; }

    .about-image-wrapper img { height: 320px; }
    .about-features { grid-template-columns: 1fr 1fr; gap: 1rem; }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .slideshow { height: 50vh; min-height: 280px; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — 480px
   ═══════════════════════════════════════════ */
@media (max-width: 480px) {
    .container { padding: 0 1rem; }
    .section { padding: 2.5rem 0; }

    .announcement-bar { font-size: 0.75rem; padding: 0.45rem 0.75rem; }

    .hero-title { font-size: 2rem; }
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-actions .btn { width: 100%; }
    .hero-stats { flex-direction: column; gap: 1rem; align-items: center; }
    .hero-image-float { display: none; }

    .categories-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
    .category-card { aspect-ratio: 1 / 1; }

    .features-grid { grid-template-columns: 1fr; }

    .product-grid { grid-template-columns: 1fr; }

    .about-features { grid-template-columns: 1fr; }

    .cta-banner { padding: 3rem 0; }
}
