/* ========================================
   Krish Diamonds — Main Stylesheet
   ======================================== */

/* ── 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.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--shop-heading-font);
    font-weight: 600;
    line-height: 1.2;
    color: var(--shop-text);
    letter-spacing: 1px;
}

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

/* ── Section / Header ── */
.section { padding: 6rem 0; }
.section-alt { background: var(--shop-surface); }

.section-header { text-align: center; margin-bottom: 3.75rem; }
.section-eyebrow {
    display: inline-block;
    color: var(--shop-primary);
    font-family: var(--shop-body-font);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 0.9rem;
}
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: 3px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}
.section-subtitle {
    font-family: var(--shop-body-font);
    color: var(--shop-muted);
    font-size: 1.05rem;
    max-width: 620px;
    margin: 0 auto;
    font-weight: 400;
}
.section-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--shop-primary), transparent);
    margin: 1.5rem auto 0;
    position: relative;
}
.section-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 8px;
    height: 8px;
    background: var(--shop-primary);
    border-radius: 1px;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.95rem 2.2rem;
    font-family: var(--shop-body-font);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 2px;
    transition: var(--shop-transition);
    white-space: nowrap;
    cursor: pointer;
    border: 2px solid transparent;
}
.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 12px 28px rgba(20,58,138,0.3);
}
.btn-outline {
    border-color: var(--shop-primary);
    color: var(--shop-primary);
    background: transparent;
}
.btn-outline:hover {
    background: var(--shop-primary);
    color: #fff;
    transform: translateY(-2px);
}
.btn-lg { padding: 1.1rem 2.8rem; font-size: 0.85rem; }
.btn-sm { padding: 0.6rem 1.4rem; font-size: 0.75rem; }
.btn-white { background: #fff; color: var(--shop-primary); border-color: #fff; }
.btn-white:hover { background: transparent; color: #fff; transform: translateY(-2px); }
.btn-ghost-light {
    color: #fff;
    border-color: rgba(255,255,255,0.55);
    background: transparent;
}
.btn-ghost-light:hover {
    background: #fff;
    color: var(--shop-primary);
    border-color: #fff;
    transform: translateY(-2px);
}

/* ========================================
   ANNOUNCEMENT BAR
   ======================================== */
.announcement-bar {
    background: linear-gradient(90deg, var(--shop-primary-dark) 0%, var(--shop-primary) 50%, var(--shop-primary-dark) 100%);
    color: #fff;
    text-align: center;
    padding: 0.6rem 1rem;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}
.announcement-bar .diamond {
    display: inline-block;
    color: var(--shop-secondary);
    margin: 0 0.7rem;
    font-size: 0.65rem;
    transform: rotate(45deg);
    vertical-align: middle;
}

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: var(--shop-transition);
}
.navbar.scrolled {
    border-bottom-color: var(--shop-border);
    box-shadow: 0 2px 22px rgba(11,26,58,0.06);
}
.nav-container {
    max-width: var(--shop-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 78px;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    z-index: 10;
}
.nav-logo img { height: 52px; width: auto; }
.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}
.nav-link {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--shop-text);
    position: relative;
    padding: 0.3rem 0;
    transition: var(--shop-transition);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--shop-primary);
    transition: width 0.35s ease;
}
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }
.nav-link:hover,
.nav-link.active { color: var(--shop-primary); }

.nav-actions { display: flex; align-items: center; gap: 1rem; }
.nav-action-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--shop-text);
    transition: var(--shop-transition);
}
.nav-action-link:hover {
    color: var(--shop-primary);
    background: var(--shop-primary-ultra-light);
}
.nav-action-link svg { width: 20px; height: 20px; }

/* ── Hamburger ── */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    cursor: pointer;
    z-index: 1001;
    background: transparent;
}
.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--shop-text);
    border-radius: 2px;
    transition: var(--shop-transition);
    transform-origin: center;
}
.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(11,26,58,0.55);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--shop-transition);
    backdrop-filter: blur(4px);
}
.sidebar-overlay.active { opacity: 1; visibility: visible; }

.mobile-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 88vw;
    height: 100vh;
    height: 100dvh;
    background: #fff;
    z-index: 1010;
    transform: translateX(100%);
    transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -6px 0 48px rgba(11,26,58,0.22);
}
.mobile-sidebar.active { transform: translateX(0); }

.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, var(--shop-primary-dark), var(--shop-primary));
    color: #fff;
}
.sidebar-logo { height: 42px; width: auto; filter: drop-shadow(0 2px 6px rgba(0,0,0,0.25)); }
.sidebar-close {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--shop-transition);
    color: #fff;
    background: rgba(255,255,255,0.12);
}
.sidebar-close:hover { background: rgba(255,255,255,0.22); transform: rotate(90deg); }
.sidebar-close svg { width: 20px; height: 20px; }

.sidebar-nav {
    flex: 1;
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    overflow-y: auto;
}
.sidebar-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.95rem 1.1rem;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--shop-text);
    border-radius: var(--shop-radius-sm);
    transition: var(--shop-transition);
    border-right: 3px solid transparent;
}
.sidebar-link svg {
    width: 20px;
    height: 20px;
    color: var(--shop-muted);
    transition: var(--shop-transition);
}
.sidebar-link:hover,
.sidebar-link.active {
    background: var(--shop-primary-ultra-light);
    color: var(--shop-primary);
    border-right-color: var(--shop-primary);
}
.sidebar-link:hover svg,
.sidebar-link.active svg { color: var(--shop-primary); }

.sidebar-footer {
    padding: 1.25rem 1.5rem;
    border-top: 1px solid var(--shop-border);
    background: var(--shop-surface);
}
.sidebar-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.45rem 0;
    font-size: 0.85rem;
    color: var(--shop-text);
}
.sidebar-contact-item svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--shop-primary);
}
.sidebar-social {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.75rem;
}
.sidebar-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    color: var(--shop-primary);
    border: 1px solid var(--shop-border);
    transition: var(--shop-transition);
}
.sidebar-social a:hover {
    background: var(--shop-primary);
    color: #fff;
    border-color: var(--shop-primary);
}
.sidebar-social svg { width: 16px; height: 16px; }

/* ========================================
   HERO
   ======================================== */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 10% 20%, rgba(20,58,138,0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 90% 80%, rgba(201,164,73,0.06) 0%, transparent 60%),
        linear-gradient(180deg, #fff 0%, var(--shop-surface) 100%);
    padding: 4rem 0;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23143a8a' fill-opacity='0.025'%3E%3Cpath d='M60 30 L80 60 L60 90 L40 60 Z'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}
.hero-container {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-content { max-width: 560px; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    color: var(--shop-primary);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 1.75rem;
}
.hero-badge::before {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--shop-primary);
    margin-right: 1rem;
}
.hero-title {
    font-size: clamp(2.6rem, 5.2vw, 4.2rem);
    letter-spacing: 4px;
    line-height: 1.05;
    margin-bottom: 1.4rem;
    text-transform: uppercase;
}
.hero-title .accent {
    display: block;
    color: var(--shop-primary);
    font-style: italic;
    font-size: 0.7em;
    letter-spacing: 6px;
    font-weight: 400;
    margin-top: 0.3em;
}
.hero-desc {
    font-size: 1.08rem;
    color: var(--shop-muted);
    line-height: 1.85;
    margin-bottom: 2.5rem;
    max-width: 500px;
}
.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}
.hero-stats {
    display: flex;
    gap: 2.5rem;
    border-top: 1px solid var(--shop-border);
    padding-top: 1.75rem;
}
.hero-stat { text-align: left; }
.hero-stat-number {
    font-family: var(--shop-heading-font);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--shop-primary);
    line-height: 1;
    letter-spacing: 2px;
}
.hero-stat-label {
    font-size: 0.72rem;
    color: var(--shop-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0.4rem;
}

/* ── Hero Slideshow ── */
.hero-visual {
    position: relative;
    aspect-ratio: 4/5;
    max-height: 640px;
}
.hero-slideshow {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: var(--shop-radius-lg);
    overflow: hidden;
    box-shadow: var(--shop-shadow-lg);
}
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 1.1s ease, transform 6s ease;
}
.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}
.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11,26,58,0) 60%, rgba(11,26,58,0.45) 100%);
}
.hero-slide-caption {
    position: absolute;
    left: 1.75rem;
    bottom: 1.5rem;
    color: #fff;
    z-index: 2;
    max-width: 80%;
}
.hero-slide-caption-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--shop-secondary);
}
.hero-slide-caption-title {
    font-family: var(--shop-heading-font);
    font-size: 1.3rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 0.25rem;
}
.hero-slideshow-dots {
    position: absolute;
    bottom: 1.25rem;
    right: 1.25rem;
    display: flex;
    gap: 0.5rem;
    z-index: 3;
}
.hero-slideshow-dot {
    width: 28px;
    height: 3px;
    background: rgba(255,255,255,0.45);
    cursor: pointer;
    transition: var(--shop-transition);
    border: none;
    padding: 0;
    border-radius: 2px;
}
.hero-slideshow-dot.active { background: #fff; width: 40px; }
.hero-decoration {
    position: absolute;
    top: -24px;
    right: -24px;
    width: 110px;
    height: 110px;
    border: 2px solid var(--shop-primary);
    border-radius: var(--shop-radius-lg);
    opacity: 0.25;
    z-index: 0;
}
.hero-decoration-2 {
    position: absolute;
    bottom: -32px;
    left: -32px;
    width: 90px;
    height: 90px;
    background: var(--shop-primary-ultra-light);
    border-radius: var(--shop-radius);
    z-index: 0;
}
.hero-badge-floating {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    background: #fff;
    padding: 0.6rem 1rem;
    border-radius: 40px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--shop-primary);
    box-shadow: var(--shop-shadow-md);
    display: flex;
    align-items: center;
    gap: 0.45rem;
    z-index: 3;
}
.hero-badge-floating::before {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    background: var(--shop-primary);
    border-radius: 50%;
    animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
    0%,100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.45; transform: scale(1.4); }
}

/* ========================================
   ABOUT
   ======================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
    align-items: center;
}
.about-image-wrapper {
    position: relative;
}
.about-image {
    border-radius: var(--shop-radius-lg);
    overflow: hidden;
    box-shadow: var(--shop-shadow-lg);
    position: relative;
}
.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 4/5;
}
.about-image-accent {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 160px;
    padding: 1.5rem;
    background: var(--shop-primary);
    color: #fff;
    border-radius: var(--shop-radius);
    box-shadow: var(--shop-shadow-lg);
    text-align: center;
    z-index: 2;
}
.about-image-accent-number {
    font-family: var(--shop-heading-font);
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1;
    color: #fff;
}
.about-image-accent-label {
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 0.5rem;
    color: rgba(255,255,255,0.8);
}
.about-content .section-eyebrow { margin-bottom: 0.9rem; }
.about-content h2 {
    font-size: clamp(1.9rem, 3.2vw, 2.6rem);
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}
.about-text {
    color: var(--shop-muted);
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 1.3rem;
}
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.1rem;
    margin-top: 2.25rem;
}
.about-feature {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.6rem 0;
}
.about-feature-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--shop-primary-ultra-light);
    color: var(--shop-primary);
    border-radius: 50%;
    flex-shrink: 0;
}
.about-feature-icon svg { width: 20px; height: 20px; }

/* ========================================
   CATEGORIES / COLLECTIONS
   ======================================== */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}
.category-card {
    position: relative;
    aspect-ratio: 3/4;
    border-radius: var(--shop-radius);
    overflow: hidden;
    cursor: pointer;
    display: block;
}
.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2,0,0.2,1);
}
.category-card:hover img { transform: scale(1.09); }
.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11,26,58,0) 35%, rgba(11,26,58,0.75) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    transition: var(--shop-transition);
}
.category-card:hover .category-overlay {
    background: linear-gradient(180deg, rgba(11,26,58,0.15) 0%, rgba(11,26,58,0.85) 100%);
}
.category-name {
    font-family: var(--shop-heading-font);
    font-size: 1.35rem;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
}
.category-count {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.9);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.category-count::after {
    content: '→';
    transition: var(--shop-transition);
}
.category-card:hover .category-count::after { transform: translateX(4px); }

/* ========================================
   FEATURED PRODUCTS
   ======================================== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.75rem;
}
.products-cta { text-align: center; margin-top: 3.5rem; }
.loading-spinner {
    width: 40px;
    height: 40px;
    margin: 3rem auto;
    border: 3px solid var(--shop-border);
    border-top-color: var(--shop-primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    grid-column: 1 / -1;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ========================================
   GALLERY SLIDESHOW
   ======================================== */
.gallery-section {
    background: linear-gradient(180deg, var(--shop-surface) 0%, #fff 100%);
}
.gallery-slideshow {
    position: relative;
    border-radius: var(--shop-radius-lg);
    overflow: hidden;
    box-shadow: var(--shop-shadow-lg);
    aspect-ratio: 16/9;
    max-height: 580px;
    margin: 0 auto;
}
.gallery-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
}
.gallery-slide.active { opacity: 1; }
.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--shop-primary);
    cursor: pointer;
    transition: var(--shop-transition);
    z-index: 2;
    box-shadow: var(--shop-shadow-md);
    border: none;
}
.gallery-arrow:hover {
    background: #fff;
    color: var(--shop-primary-dark);
    transform: translateY(-50%) scale(1.08);
}
.gallery-arrow.prev { left: 1.25rem; }
.gallery-arrow.next { right: 1.25rem; }
.gallery-arrow svg { width: 20px; height: 20px; }
.gallery-dots {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 2;
}
.gallery-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: var(--shop-transition);
    border: none;
    padding: 0;
}
.gallery-dot.active { background: #fff; transform: scale(1.2); }

/* ========================================
   WHY US (features)
   ======================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.feature-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    border-radius: var(--shop-radius);
    background: #fff;
    border: 1px solid var(--shop-border);
    transition: var(--shop-transition);
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--shop-primary), var(--shop-secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}
.feature-card:hover {
    border-color: transparent;
    box-shadow: var(--shop-shadow-md);
    transform: translateY(-6px);
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
    width: 66px;
    height: 66px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--shop-primary-ultra-light);
    color: var(--shop-primary);
    border-radius: 50%;
    transition: var(--shop-transition);
}
.feature-card:hover .feature-icon {
    background: var(--shop-primary);
    color: #fff;
    transform: rotate(-8deg);
}
.feature-icon svg { width: 28px; height: 28px; }
.feature-title {
    font-family: var(--shop-heading-font);
    font-size: 1.2rem;
    letter-spacing: 1.5px;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}
.feature-desc {
    font-size: 0.9rem;
    color: var(--shop-muted);
    line-height: 1.7;
}

/* ========================================
   TEAM
   ======================================== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 2rem;
    justify-content: center;
    max-width: 1080px;
    margin: 0 auto;
}

/* ========================================
   BESPOKE CTA BANNER
   ======================================== */
.cta-banner {
    background:
        linear-gradient(135deg, rgba(10,37,101,0.96) 0%, rgba(20,58,138,0.9) 100%),
        url('../assets/store_front.png') center/cover no-repeat;
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: #fff;
}
.cta-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='0.04' stroke-width='1'%3E%3Cpath d='M40 15 L55 40 L40 65 L25 40 Z'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-eyebrow {
    color: var(--shop-secondary);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: inline-block;
}
.cta-title {
    font-size: clamp(2rem, 4.2vw, 3rem);
    color: #fff;
    letter-spacing: 3px;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
}
.cta-text {
    color: rgba(255,255,255,0.88);
    font-size: 1.1rem;
    margin-bottom: 2.25rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}
.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   VISIT US / CONTACT
   ======================================== */
.visit-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 3rem;
    align-items: stretch;
}
.map-wrapper {
    border-radius: var(--shop-radius-lg);
    overflow: hidden;
    box-shadow: var(--shop-shadow-md);
    border: 1px solid var(--shop-border);
    position: relative;
    height: 100%;
}
.map-wrapper iframe {
    width: 100%;
    height: 100%;
    min-height: 440px;
    display: block;
    border: 0;
}
.visit-panel {
    background: #fff;
    border-radius: var(--shop-radius);
    border: 1px solid var(--shop-border);
    padding: 2rem;
    display: flex;
    flex-direction: column;
}
.visit-panel-contact {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}
.visit-contact-row {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.65rem 0.6rem;
    border-radius: var(--shop-radius-sm);
    color: var(--shop-text);
    font-size: 0.93rem;
    font-weight: 500;
    transition: var(--shop-transition);
    text-decoration: none;
}
.visit-contact-row:hover {
    background: var(--shop-primary-ultra-light);
    color: var(--shop-primary);
}
.visit-contact-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--shop-primary);
    color: #fff;
    border-radius: 10px;
    flex-shrink: 0;
}
.visit-contact-icon svg { width: 18px; height: 18px; }
.visit-panel-divider {
    height: 1px;
    background: var(--shop-border);
    margin: 1.25rem 0 1rem;
}
.visit-hours-label {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--shop-heading-font);
    font-size: 0.78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--shop-text);
    margin-bottom: 0.85rem;
}
.visit-hours-label svg {
    width: 15px;
    height: 15px;
    color: var(--shop-primary);
    flex-shrink: 0;
}
.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
}
.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.88rem;
    padding: 0.48rem 0.5rem;
    border-bottom: 1px solid var(--shop-border);
}
.hours-row:last-child { border-bottom: none; }
.hours-day { font-weight: 500; }
.hours-time { color: var(--shop-muted); font-feature-settings: "tnum"; }
.hours-row.today {
    color: var(--shop-primary);
    font-weight: 700;
    background: var(--shop-primary-ultra-light);
    border-left: 3px solid var(--shop-primary);
    padding-left: calc(0.5rem - 3px);
    border-radius: var(--shop-radius-sm);
    border-bottom-color: transparent;
}
.hours-row.today .hours-time { color: var(--shop-primary); }
.hours-row.closed .hours-time { color: #c43f4f; }
.visit-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
    flex-wrap: wrap;
}
.visit-actions .btn { flex: 1; min-width: 140px; }

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: linear-gradient(180deg, #081f52 0%, #050f2d 100%);
    color: rgba(255,255,255,0.68);
    padding: 5rem 0 0;
    position: relative;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--shop-secondary), transparent);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand-logo {
    height: 56px;
    margin-bottom: 1.25rem;
    border-radius: 4px;
}
.footer-brand-text {
    font-size: 0.92rem;
    line-height: 1.75;
    max-width: 320px;
    color: rgba(255,255,255,0.65);
}
.footer-social {
    display: flex;
    gap: 0.65rem;
    margin-top: 1.5rem;
}
.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.7);
    transition: var(--shop-transition);
}
.footer-social a:hover {
    background: var(--shop-primary);
    border-color: var(--shop-primary);
    color: #fff;
    transform: translateY(-2px);
}
.footer-social svg { width: 18px; height: 18px; }
.footer-column h4 {
    color: #fff;
    font-family: var(--shop-body-font);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 1.5rem;
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.footer-links a {
    font-size: 0.9rem;
    transition: var(--shop-transition);
    color: rgba(255,255,255,0.65);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}
.footer-links a:hover {
    color: #fff;
    transform: translateX(4px);
}
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.75rem 0;
    font-size: 0.82rem;
    gap: 1rem;
    flex-wrap: wrap;
}
.footer-copy { color: rgba(255,255,255,0.4); }
.footer-credit { color: rgba(255,255,255,0.5); }
.footer-credit a {
    color: #fff;
    font-weight: 600;
    transition: var(--shop-transition);
    border-bottom: 1px solid rgba(255,255,255,0.3);
    padding-bottom: 1px;
}
.footer-credit a:hover {
    color: var(--shop-secondary);
    border-bottom-color: var(--shop-secondary);
}

/* ========================================
   PAGE HEADER (products, detail)
   ======================================== */
.page-header {
    padding: 4rem 0 2.5rem;
    background: linear-gradient(180deg, var(--shop-primary-ultra-light) 0%, #fff 100%);
    border-bottom: 1px solid var(--shop-border);
    text-align: center;
    position: relative;
}
.page-header h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}
.page-header p {
    color: var(--shop-muted);
    max-width: 600px;
    margin: 0.5rem auto 0;
    font-size: 1rem;
}
.page-header-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 1rem;
    font-size: 0.78rem;
    color: var(--shop-muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.page-header-breadcrumb a {
    color: var(--shop-primary);
    transition: var(--shop-transition);
    font-weight: 600;
}
.page-header-breadcrumb a:hover { color: var(--shop-primary-dark); }
.page-header-breadcrumb span { color: var(--shop-muted); }

/* ── Shared element container ── */
.shared-element-container { min-height: 400px; }

/* ── Detail page tweaks ── */
.section-detail-top { padding-top: 2rem; }
.breadcrumb-left { justify-content: flex-start; margin-bottom: 1.5rem; }

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .hero-content { max-width: 100%; margin: 0 auto; }
    .hero-badge { justify-content: center; }
    .hero-desc { max-width: 100%; margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-visual { max-width: 520px; margin: 0 auto; aspect-ratio: 16/11; }

    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .about-image-accent { right: 0; bottom: -24px; }
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .visit-grid { grid-template-columns: 1fr; }
    .map-wrapper iframe { height: 420px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
    .hide-mobile { display: none !important; }
    .section { padding: 4rem 0; }
    .section-header { margin-bottom: 2.5rem; }

    .nav-links { display: none; }
    .hamburger { display: flex; }
    .nav-container { height: 66px; }

    .hero {
        min-height: auto;
        padding: 2.5rem 0 4rem;
    }
    .hero-container { gap: 2.25rem; }
    .hero-visual {
        order: -1;
        max-width: 100%;
        aspect-ratio: 16/9;
        margin: 0;
    }
    .hero-badge::before { display: none; }
    .hero-title { letter-spacing: 2.5px; }
    .hero-badge-floating { font-size: 0.62rem; padding: 0.5rem 0.85rem; }
    .hero-decoration, .hero-decoration-2 { display: none; }
    .hero-stats {
        gap: 0;
        flex-wrap: nowrap;
        justify-content: center;
        padding-top: 1.5rem;
    }
    .hero-stat {
        flex: 1;
        text-align: center;
    }
    .hero-stat + .hero-stat { border-left: 1px solid var(--shop-border); }
    .hero-stat-number { font-size: 1.5rem; }
    .hero-stat-label { font-size: 0.65rem; }

    .about-image-accent {
        position: static;
        margin: 1.5rem auto 0;
        width: fit-content;
        min-width: 180px;
    }
    .about-features { grid-template-columns: 1fr 1fr; }

    .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 0.85rem; }
    .category-name { font-size: 1.15rem; letter-spacing: 1.5px; }

    .features-grid { grid-template-columns: 1fr 1fr; gap: 0.85rem; }
    .feature-card { padding: 1.8rem 1.1rem; }
    .feature-title { font-size: 1.05rem; }
    .feature-desc { font-size: 0.85rem; }

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

    .gallery-slideshow { aspect-ratio: 4/3; }
    .gallery-arrow { width: 40px; height: 40px; }

    .map-wrapper iframe { height: 340px; }
    .visit-panel { padding: 1.25rem; }

    .cta-banner { padding: 4rem 0; }
    .cta-title { letter-spacing: 2px; }

    .footer { padding-top: 3.5rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .container { padding: 0 1rem; }
    .announcement-bar {
        font-size: 0.68rem;
        padding: 0.5rem 0.75rem;
        letter-spacing: 1.5px;
    }
    .announcement-bar .diamond { margin: 0 0.4rem; }
    .nav-logo img { height: 44px; }

    .hero-title { font-size: 1.95rem; letter-spacing: 2px; }
    .hero-desc { font-size: 0.93rem; }
    .hero-actions { flex-direction: row; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }
    .btn-lg { width: auto; min-width: 44%; justify-content: center; }
    .hero-stat-number { font-size: 1.35rem; }

    .section-title { letter-spacing: 2px; }

    .categories-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
    .features-grid { grid-template-columns: 1fr; }
    .about-features { grid-template-columns: 1fr; }
    .product-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }

    .visit-actions { flex-direction: column; }
    .visit-actions .btn { width: 100%; }
}

/* ========================================
   FOCUS VISIBLE
   ======================================== */
:focus-visible {
    outline: 2px solid var(--shop-primary);
    outline-offset: 3px;
    border-radius: 3px;
}

/* ========================================
   SIDEBAR BRAND NAME
   ======================================== */
.sidebar-brand-name {
    display: block;
    font-family: var(--shop-font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--shop-primary);
    text-transform: uppercase;
    padding: 0.25rem 0 0.75rem;
}

/* ========================================
   PRINT
   ======================================== */
@media print {
    .navbar, .mobile-sidebar, .sidebar-overlay, .announcement-bar,
    .hero-slideshow-dots, .gallery-arrow, .gallery-dots, .cta-banner { display: none !important; }
    body { color: #000; background: #fff; }
}
