/* ========================================
   Dazzling Star — Main Styles
   ======================================== */

/* ── 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);
}

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

/* ── Utility ── */
.section {
    padding: 5rem 0;
}
.section-alt {
    background: var(--shop-surface);
}
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}
.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    letter-spacing: 2px;
    margin-bottom: 1rem;
}
.section-subtitle {
    font-family: var(--shop-body-font);
    color: var(--shop-muted);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}
.section-divider {
    width: 60px;
    height: 2px;
    background: var(--shop-primary);
    margin: 1.25rem auto 0;
    border-radius: 2px;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    font-family: var(--shop-body-font);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: var(--shop-radius-sm);
    transition: var(--shop-transition);
    white-space: nowrap;
}
.btn-primary {
    background: var(--shop-primary);
    color: #fff;
}
.btn-primary:hover {
    background: var(--shop-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(126,206,198,0.35);
}
.btn-outline {
    border: 2px solid var(--shop-primary);
    color: var(--shop-primary);
    background: transparent;
}
.btn-outline:hover {
    background: var(--shop-primary);
    color: #fff;
    transform: translateY(-2px);
}
.btn-secondary {
    background: var(--shop-secondary);
    color: #fff;
}
.btn-secondary:hover {
    background: #b8963f;
    transform: translateY(-2px);
}
.btn-lg {
    padding: 1.05rem 2.6rem;
    font-size: 0.9rem;
}
.btn-sm {
    padding: 0.6rem 1.4rem;
    font-size: 0.78rem;
}
.btn-white {
    background: #fff;
    color: var(--shop-text);
}
.btn-white:hover {
    background: var(--shop-primary-ultra-light);
    transform: translateY(-2px);
}

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

/* ========================================
   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 20px rgba(0,0,0,0.04);
}
.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: 70px;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    z-index: 10;
}
.nav-logo img {
    height: 50px;
    width: auto;
}
.nav-logo-text {
    font-family: var(--shop-heading-font);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--shop-text);
    letter-spacing: 2px;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}
.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--shop-text);
    position: relative;
    padding: 0.25rem 0;
    transition: var(--shop-transition);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    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: 1.2rem;
}
.nav-action-link {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--shop-text);
    transition: var(--shop-transition);
}
.nav-action-link:hover {
    color: var(--shop-primary);
}
.nav-action-link svg {
    width: 20px;
    height: 20px;
}

/* ── Hamburger ── */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    cursor: pointer;
    z-index: 1001;
}
.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(0,0,0,0.45);
    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;
    left: 0;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    height: 100dvh;
    background: #fff;
    z-index: 999;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 4px 0 30px rgba(0,0,0,0.15);
}
.mobile-sidebar.active {
    transform: translateX(0);
}
.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid var(--shop-border);
}
.sidebar-logo {
    height: 40px;
    width: auto;
}
.sidebar-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--shop-transition);
    color: var(--shop-text);
}
.sidebar-close:hover {
    background: var(--shop-primary-ultra-light);
    color: var(--shop-primary);
}
.sidebar-close svg {
    width: 20px;
    height: 20px;
}
.sidebar-nav {
    flex: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.sidebar-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--shop-text);
    border-radius: var(--shop-radius-sm);
    transition: var(--shop-transition);
}
.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);
}
.sidebar-link:hover svg,
.sidebar-link.active svg {
    color: var(--shop-primary);
}
.sidebar-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--shop-border);
}
.sidebar-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0;
    font-size: 0.85rem;
    color: var(--shop-muted);
}
.sidebar-contact-item svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--shop-primary);
}

/* ========================================
   HERO
   ======================================== */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--shop-primary-ultra-light) 0%, #fff 40%, var(--shop-surface) 100%);
}
.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 60%;
    height: 120%;
    background: radial-gradient(ellipse at center, rgba(126,206,198,0.12) 0%, transparent 70%);
    pointer-events: none;
}
.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-content {
    max-width: 540px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    color: var(--shop-primary-dark);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 2rem;
}
.hero-badge::before {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--shop-primary);
    margin-right: 1rem;
}
.hero-title {
    font-size: clamp(2.8rem, 5.5vw, 4rem);
    letter-spacing: 3px;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}
.hero-title span {
    color: var(--shop-primary);
}
.hero-desc {
    font-size: 1.1rem;
    color: var(--shop-muted);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 480px;
}
.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}
.hero-stats {
    display: flex;
    gap: 3rem;
}
.hero-stat {
    text-align: left;
}
.hero-stat-number {
    font-family: var(--shop-heading-font);
    font-size: 2rem;
    font-weight: 700;
    color: var(--shop-text);
    line-height: 1;
}
.hero-stat-label {
    font-size: 0.8rem;
    color: var(--shop-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.25rem;
}
.hero-visual {
    position: relative;
}
.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: auto;
    display: block;
}
.hero-image-float {
    position: absolute;
    bottom: -30px;
    left: -40px;
    width: 180px;
    border-radius: var(--shop-radius);
    overflow: hidden;
    box-shadow: var(--shop-shadow-lg);
    border: 4px solid #fff;
}
.hero-image-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    border: 2px solid var(--shop-primary-light);
    border-radius: var(--shop-radius-lg);
    opacity: 0.5;
}

/* ========================================
   ABOUT
   ======================================== */
.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;
    box-shadow: var(--shop-shadow-lg);
}
.about-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}
.about-image-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--shop-primary), var(--shop-secondary));
}
.about-content h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}
.about-text {
    color: var(--shop-muted);
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}
.about-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    font-weight: 500;
}
.about-feature-icon {
    width: 36px;
    height: 36px;
    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: 18px;
    height: 18px;
}

/* ========================================
   CATEGORIES
   ======================================== */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.category-card {
    position: relative;
    aspect-ratio: 3/4;
    border-radius: var(--shop-radius-lg);
    overflow: hidden;
    cursor: pointer;
    group: true;
}
.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.category-card:hover img {
    transform: scale(1.08);
}
.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.05) 50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    transition: var(--shop-transition);
}
.category-card:hover .category-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.1) 50%);
}
.category-name {
    font-family: var(--shop-heading-font);
    font-size: 1.5rem;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 0.25rem;
}
.category-count {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================
   FEATURED PRODUCTS
   ======================================== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 1.75rem;
}
.products-cta {
    text-align: center;
    margin-top: 3rem;
}
.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;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ========================================
   WHY CHOOSE US
   ======================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.feature-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    border-radius: var(--shop-radius-lg);
    background: #fff;
    border: 1px solid var(--shop-border);
    transition: var(--shop-transition);
}
.feature-card:hover {
    border-color: var(--shop-primary-light);
    box-shadow: var(--shop-shadow-md);
    transform: translateY(-4px);
}
.feature-icon {
    width: 64px;
    height: 64px;
    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;
}
.feature-icon svg {
    width: 28px;
    height: 28px;
}
.feature-title {
    font-family: var(--shop-heading-font);
    font-size: 1.2rem;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}
.feature-desc {
    font-size: 0.9rem;
    color: var(--shop-muted);
    line-height: 1.6;
}

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

/* ========================================
   VISIT US / CONTACT
   ======================================== */
.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}
.map-wrapper {
    border-radius: var(--shop-radius-lg);
    overflow: hidden;
    box-shadow: var(--shop-shadow-md);
    border: 1px solid var(--shop-border);
}
.map-wrapper iframe {
    width: 100%;
    height: 420px;
    display: block;
}
.visit-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.visit-card {
    padding: 2rem;
    background: #fff;
    border-radius: var(--shop-radius);
    border: 1px solid var(--shop-border);
    transition: var(--shop-transition);
}
.visit-card:hover {
    box-shadow: var(--shop-shadow);
}
.visit-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}
.visit-card-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--shop-primary-ultra-light);
    color: var(--shop-primary);
    border-radius: 50%;
    flex-shrink: 0;
}
.visit-card-icon svg {
    width: 20px;
    height: 20px;
}
.visit-card-title {
    font-family: var(--shop-heading-font);
    font-size: 1.2rem;
    letter-spacing: 1px;
}
.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.hours-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    padding: 0.4rem 0;
    border-bottom: 1px solid var(--shop-surface);
}
.hours-row:last-child {
    border-bottom: none;
}
.hours-day {
    font-weight: 500;
}
.hours-time {
    color: var(--shop-muted);
}
.hours-row.today {
    color: var(--shop-primary);
    font-weight: 600;
}
.hours-row.today .hours-time {
    color: var(--shop-primary);
}
.hours-row.closed .hours-time {
    color: #e25555;
}
.contact-detail {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--shop-text);
    padding: 0.4rem 0;
}
.contact-detail svg {
    width: 18px;
    height: 18px;
    color: var(--shop-primary);
    flex-shrink: 0;
}
.contact-detail a {
    color: var(--shop-primary);
    font-weight: 500;
    transition: var(--shop-transition);
}
.contact-detail a:hover {
    color: var(--shop-primary-dark);
}

/* ========================================
   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;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 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.05'%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.3;
}
.cta-banner .container {
    position: relative;
    z-index: 1;
}
.cta-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: #fff;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}
.cta-text {
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--shop-text);
    color: rgba(255,255,255,0.7);
    padding: 4.5rem 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand-logo {
    height: 45px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}
.footer-brand-text {
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 300px;
}
.footer-social {
    display: flex;
    gap: 0.75rem;
    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.6);
    transition: var(--shop-transition);
}
.footer-social a:hover {
    background: var(--shop-primary);
    border-color: var(--shop-primary);
    color: #fff;
}
.footer-social svg {
    width: 18px;
    height: 18px;
}
.footer-column h4 {
    color: #fff;
    font-family: var(--shop-body-font);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.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);
}
.footer-links a:hover {
    color: var(--shop-primary);
    padding-left: 4px;
}
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.75rem 0;
    font-size: 0.82rem;
}
.footer-copy {
    color: rgba(255,255,255,0.4);
}
.footer-credit a {
    color: var(--shop-primary);
    font-weight: 500;
    transition: var(--shop-transition);
}
.footer-credit a:hover {
    color: var(--shop-primary-light);
}

/* ========================================
   PAGE HEADER (products, detail)
   ======================================== */
.page-header {
    padding: 3rem 0 2rem;
    background: var(--shop-surface);
    border-bottom: 1px solid var(--shop-border);
}
.page-header h1 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    letter-spacing: 3px;
    text-align: center;
}
.page-header-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: var(--shop-muted);
}
.page-header-breadcrumb a {
    color: var(--shop-primary);
    transition: var(--shop-transition);
}
.page-header-breadcrumb a:hover {
    color: var(--shop-primary-dark);
}

/* ── 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.7s ease, transform 0.7s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    .hero-content {
        max-width: 100%;
    }
    .hero-desc {
        max-width: 100%;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-stats {
        justify-content: center;
    }
    .hero-visual {
        max-width: 500px;
        margin: 0 auto;
    }
    .hero-image-float {
        width: 140px;
        left: -20px;
        bottom: -20px;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .visit-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

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

    /* Hide desktop nav, show hamburger */
    .nav-links {
        display: none;
    }
    .hamburger {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding: 3rem 0;
    }
    .hero-image-float {
        width: 110px;
        left: -10px;
        bottom: -15px;
    }
    .hero-decoration {
        display: none;
    }
    .hero-badge {
        font-size: 0.72rem;
    }

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

    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    .feature-card {
        padding: 1.5rem 1rem;
    }

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

    .map-wrapper iframe {
        height: 300px;
    }

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

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-desc {
        font-size: 0.95rem;
    }
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    .hero-stats {
        gap: 2rem;
    }
    .btn-lg {
        width: 100%;
        justify-content: center;
    }
    .categories-grid {
        grid-template-columns: 1fr 1fr;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .about-features {
        grid-template-columns: 1fr;
    }
    .product-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }
    .nav-container {
        height: 60px;
    }
    .announcement-bar {
        font-size: 0.72rem;
        padding: 0.5rem 0.75rem;
    }
}
