@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

/* ===== Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-yellow: #f0d860;
    --dark-yellow: #FFA500;
    --light-yellow: #FFEB3B;
    --purple: #9333EA;
    --pink: #EC4899;
    --blue: #3B82F6;
    --dark-bg: #FFFFFF; /* Changed from #0A0A0A */
    --darker-bg: #F5F5F5; /* Changed from #050505 */
    --light-bg: #F0F0F0; /* Changed from #1A1A1A */
    --text-primary: #333333; /* Changed from #FFFFFF */
    --text-secondary: #757575; /* Changed from #A0A0A0 */
    --glass-bg: rgba(0, 0, 0, 0.03); /* Changed from rgba(255, 255, 255, 0.05) */
    --glass-border: rgba(0, 0, 0, 0.08); /* Changed from rgba(255, 255, 255, 0.1) */
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== Animated Background ===== */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at 50% 50%, var(--dark-bg) 0%, var(--darker-bg) 100%);
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    animation: float 20s infinite ease-in-out;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-yellow), var(--dark-yellow));
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--purple), var(--pink));
    bottom: -150px;
    right: -150px;
    animation-delay: 7s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--blue), var(--purple));
    top: 50%;
    left: 50%;
    animation-delay: 14s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(100px, 100px) scale(1.1); }
    50% { transform: translate(-50px, 150px) scale(0.9); }
    75% { transform: translate(-100px, -100px) scale(1.05); }
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #FFFFFF; /* Solid white background */
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--glass-border);
}

.navbar.scrolled {
    padding: 0.25rem 0;
    background: #FFFFFF; /* Solid white background when scrolled */
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text {
    font-family: 'Press Start 2P', sans-serif;
    font-size: 2rem;
    font-weight: normal;
    background: linear-gradient(135deg, var(--primary-yellow), var(--dark-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-tagline {
    font-family: 'Press Start 2P', sans-serif;
    font-size: 0.75rem;
    color: var(--text-secondary);
    letter-spacing: 2px;
}

.logo-img {
    height: 70px; /* Adjust as needed */
    width: auto; /* Maintain aspect ratio */
    display: block; /* Remove extra space below image */
}


.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-yellow);
    transition: width 0.3s ease;
}

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

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary); /* Changed from var(--primary-yellow) */
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;

    /* 🔧 FIX: agar konten hero tidak tembus ke section lain */
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1800px; /* Lebar maksimum ditingkatkan lebih jauh */
    width: 100%;
    align-items: center;
}

/* TEXT */
.hero-title {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.title-line {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--text-secondary);
    letter-spacing: 2px;
}

.title-main {
    font-family: 'Press Start 2P', sans-serif;
    font-size: 5rem;
    font-weight: normal;
    color: var(--primary-yellow);
    line-height: 1;
}

.title-subtitle {
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--text-secondary);
}

.hero-description {
    font-size: 1.2rem;
    margin-top: 2rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 3rem;

    /* 🔧 FIX: pastikan tombol hanya hidup di hero */
    position: relative;
}

/* BUTTON */
.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn-primary {
    background: var(--primary-yellow);
    color: #000;
}

.btn-primary:hover {
    transform: translateY(-4px);
}

.btn-secondary {
    border: 2px solid var(--glass-border);
    color: var(--text-primary);
}

/* Small button modifier */
.btn-sm {
    padding: 0.5rem 1.5rem; /* Smaller padding */
    font-size: 0.8rem; /* Smaller font size */
}

/* ===== HERO VISUAL (PHOTO GRID) ===== */
.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-grid {
    position: relative;
    width: 480px;
    height: 480px; /* Increased height */
}

.category-card {
    position: absolute;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: all 0.5s ease;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-card:nth-child(1) {
    width: 240px;
    height: 200px; /* Increased height */
    top: 40px;
    left: 0;
    z-index: 1;
    animation: float-hero-1 8s infinite ease-in-out -2s;
}

.category-card:nth-child(2) {
    width: 280px;
    height: 240px; /* Increased height */
    top: 120px;
    left: 180px;
    z-index: 2;
    animation: float-hero-2 8s infinite ease-in-out 0s;
}

.category-card:nth-child(3) {
    width: 200px;
    height: 160px; /* Increased height */
    top: 280px; /* Adjusted top */
    left: 20px;
    z-index: 0;
    animation: float-hero-3 8s infinite ease-in-out -5s;
}

.category-card:nth-child(1):hover {
    animation-play-state: paused;
    transform: translateY(0px) rotate(-10deg);
}
.category-card:nth-child(2):hover {
    animation-play-state: paused;
    transform: translateY(0px) rotate(5deg);
}
.category-card:nth-child(3):hover {
    animation-play-state: paused;
    transform: translateY(0px) rotate(12deg);
}

@keyframes float-hero-1 {
    0%, 100% { transform: translateY(0px) rotate(-10deg); }
    50% { transform: translateY(-20px) rotate(-10deg); }
}
@keyframes float-hero-2 {
    0%, 100% { transform: translateY(0px) rotate(5deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}
@keyframes float-hero-3 {
    0%, 100% { transform: translateY(0px) rotate(12deg); }
    50% { transform: translateY(-20px) rotate(12deg); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .hero-visual {
        height: auto;
    }
}

/* ===== Scroll Indicator ===== */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
    animation: bounce 2s infinite;
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid var(--primary-yellow);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--primary-yellow);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0%, 100% { opacity: 0; top: 8px; }
    50% { opacity: 1; top: 16px; }
}

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

/* ===== Stats Section ===== */
.stats {
    padding: 4rem 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Press Start 2P', sans-serif;
    font-size: 3.5rem;
    font-weight: normal;
    color: var(--primary-yellow);
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}


/* ===== Section Styles (SUDAH DIBENARKAN) ===== */
section:not(.hero):not(.stats) {
    padding: 6rem 2rem;
}

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

.section-title {
    font-family: 'Press Start 2P', sans-serif;
    font-size: 3.5rem;
    font-weight: normal;
    color: var(--primary-yellow);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
}


/* ===== About Section ===== */
.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about-text {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

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

.about-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-yellow);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.2);
}

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

.icon-wrapper {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-bg);
    border-radius: 15px;
}

.icon-wrapper i {
    font-size: 2.5rem; /* Ukuran yang sesuai */
    color: var(--primary-yellow);
}

.icon-wrapper i {
    font-size: 2.5rem; /* For Feather icons converted to FA */
    color: var(--primary-yellow);
}


.about-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

.about-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ===== Products Section ===== */
.products {
    background: var(--glass-bg);
}

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

.product-card {
    background: var(--light-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-card:hover {
    background: linear-gradient(135deg, rgba(240, 216, 96, 0.1), rgba(147, 51, 234, 0.1));
}

.product-icon {
    margin-bottom: 1.5rem;
}

.product-icon i {
    font-size: 3rem; /* Reduced icon size */
    color: var(--primary-yellow); /* Simple color for diagnostic */
}

.product-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-yellow);
}

.product-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem; /* Space between description and button */
}

/* ============================================
   GALLERY SECTION
   ============================================ */

.gallery-grid {
    display: flex;
    overflow-x: auto;
    gap: 1.5rem;
    margin-bottom: 4rem;
    padding-bottom: 1rem; /* for scrollbar */
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.gallery-grid::-webkit-scrollbar {
    display: none; /* (Chrome, Safari and Opera) */
}

/* Card gallery */
.gallery-item {
    flex: 0 0 300px; /* Do not grow, do not shrink, basis of 300px */
    aspect-ratio: 1 / 1;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: #f5f5f5;
    transition: transform 0.3s ease;
}

/* Hover lebih halus (tidak berlebihan) */
.gallery-item:hover {
    transform: scale(1.02);
}

/* Gambar di dalam gallery */
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 🔥 INI YANG MEMPERBAIKI ZOOM */
    object-position: center;
    background-color: #f5f5f5;
    transition: transform 0.3s ease;
}

/* Optional: efek hover lembut pada gambar */
.gallery-item:hover img {
    transform: scale(1.03);
}

/* ============================================
   PLACEHOLDER (JIKA BELUM ADA FOTO)
   ============================================ */

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: var(--light-bg);
    border: 2px dashed var(--glass-border);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-placeholder {
    border-color: var(--primary-yellow);
    background: linear-gradient(
        135deg,
        rgba(240, 216, 96, 0.1),
        rgba(147, 51, 234, 0.1)
    );
}

.placeholder-text {
    font-weight: 600;
    color: var(--text-secondary);
}

/* ============================================
   SOCIAL FEED
   ============================================ */

.social-feed {
    text-align: center;
    margin-top: 4rem;
}

.social-feed h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-link {
    padding: 1rem 2rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-yellow);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

/* ============================================
   RESPONSIVE
   ============================================ */



/* ===== Location Section ===== */
.location {
    background: var(--glass-bg);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Changed from 1fr 1.5fr */
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-top: 2rem; /* Added to lower the content */
}

.info-card {
    background: var(--light-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: var(--primary-yellow);
    transform: translateX(10px);
}

.info-icon {
    min-width: 60px;
}

.info-icon i {
    font-size: 2.5rem; /* Ukuran yang sesuai */
    color: var(--primary-yellow); /* Warna solid untuk konsistensi */
}

.info-details h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-yellow);
}

.info-details p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.map-container iframe {
}

/* ===== Contact Section ===== */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-yellow);
    background: linear-gradient(135deg, rgba(240, 216, 96, 0.1), rgba(147, 51, 234, 0.1));
}

.contact-icon {
    margin-bottom: 1.5rem;
}

.contact-icon i {
    font-size: 4rem; /* Increased icon size */
    color: var(--primary-yellow);
    text-shadow: 2px 2px 10px rgba(240, 216, 96, 0.3); /* Subtle glow effect */
}

.contact-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.contact-card p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}


/* ===== Floating Icons Background ===== */
.floating-icons-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none; /* Make sure it doesn't interfere with clicks */
    overflow: hidden;
}

.floating-icon {
    position: absolute;
    top: -50px; /* Start above the viewport */
    color: var(--glass-border);
    font-size: 2rem;
    animation: moveAndFade 15s linear infinite;
    opacity: 0;
}

@keyframes moveAndFade {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

/* ===== Preloader ===== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader-logo-img {
    height: 120px; /* Adjust as needed */
    width: auto;
    animation: pulse 1.5s infinite ease-in-out;
}

.spinner {
    position: absolute;
    width: 160px; /* Must be larger than the logo */
    height: 160px;
    border-radius: 50%;
    border: 5px solid transparent;
    border-top-color: var(--primary-yellow);
    animation: spin 1s linear infinite;
}

.preloader.preloader-hidden {
    opacity: 0;
    visibility: hidden;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

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

/* ===== Footer ===== */
.footer {
    background: var(--darker-bg);
    border-top: 1px solid var(--glass-border);
    padding: 2rem 2rem 1rem; /* Reduced top and bottom padding */
}

/* Reduce footer height on collection pages */
.collection-page .footer {
    padding: 1rem 2rem 0.5rem; /* Reduced padding */
}



.footer-content {



    display: flex; /* Use flexbox for centering */



    flex-direction: column; /* Stack children vertically */



    align-items: center; /* Center horizontally */



    gap: 1rem; /* Adjust gap as needed */



    margin-bottom: 3rem;



    text-align: center; /* Center text within brand */



}







.footer-brand {



    text-align: center;



}



.footer-brand h3 {
    font-family: 'Press Start 2P', sans-serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-yellow);
}



.footer-brand p {



    color: var(--text-secondary);



    line-height: 1.8;



}







.footer-brand .logo-img {







    height: 100px; /* Make footer logo larger */







    margin: 0 auto 1rem auto; /* Center it with auto margins and maintain bottom space */







    display: block; /* Ensure it behaves as a block element */







}



.footer-links {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 2rem;

}



.footer-column h4 {

    font-size: 1.2rem;

    margin-bottom: 1.5rem;

    color: var(--primary-yellow);

}



.footer-column ul {

    list-style: none;

}



.footer-column ul li {

    margin-bottom: 0.8rem;

}



.footer-column ul li a {

    color: var(--text-secondary);

    text-decoration: none;

    transition: all 0.3s ease;

}



.footer-column ul li a:hover {

    color: var(--primary-yellow);

    padding-left: 5px;

}



.footer-bottom {

    text-align: center;

    padding-top: 2rem;

    border-top: 1px solid var(--glass-border);

    color: var(--text-secondary);

}



/* ===== Responsive Design ===== */

@media (max-width: 1200px) {

    .hero-content {

        grid-template-columns: 1fr;

        text-align: center;

    }



    .hero-visual {

        display: none;

    }



    .hero-buttons {

        justify-content: center;

    }



    .title-main {

        font-size: 4rem;

    }

}



@media (max-width: 968px) {

    .hamburger {

        display: flex;

    }



    .nav-menu {

        position: fixed;

        left: -100%;

        top: 70px;

        flex-direction: column;

        background: var(--light-bg);

        backdrop-filter: blur(20px);

        width: 100%;

        text-align: center;

        padding: 2rem;

        border-top: 1px solid var(--glass-border);

        transition: left 0.3s ease;

    }



    .nav-menu.active {

        left: 0;

    }



    .stats-grid {

        grid-template-columns: repeat(2, 1fr);

        gap: 2rem;

    }



    .about-text {

        grid-template-columns: 1fr;

    }



    .products-grid {

        grid-template-columns: repeat(2, 1fr);

    }



    



    .location-content {

        grid-template-columns: 1fr;

    }



    .contact-grid {
        grid-template-columns: repeat(2, 1fr); /* MODIFIED HERE */
    }



    .footer-content {

        grid-template-columns: 1fr;

    }



    .footer-links {

        grid-template-columns: 1fr;

    }

}



@media (max-width: 640px) {

    .title-main {

        font-size: 3rem;

    }



    .title-line {

        font-size: 1.2rem;

    }



    .title-subtitle {

        font-size: 1.3rem;

    }



    .hero-description {

        font-size: 1rem;

    }



    .hero-buttons {

        flex-direction: column;

        width: 100%;

    }



    .btn {

        width: 100%;

        justify-content: center;

    }



    .stats-grid {

        grid-template-columns: 1fr;

    }



    .products-grid {

        grid-template-columns: 1fr;

    }



    

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


    .social-links {

        flex-direction: column;

    }



    .section-title {

        font-size: 2.5rem;

    }

}

/* ===== Collection Pages (New Styles) ===== */
.collection-page {
    padding-top: var(--navbar-height, 100px); /* Adjust for fixed navbar */
}

.hero-collection {
    padding: 3rem 2rem 1.5rem;
    text-align: center;
    background: var(--darker-bg); /* Lighter background for collection hero */
    border-bottom: 1px solid var(--glass-border);
}

.collection-title {
    font-family: 'Press Start 2P', sans-serif;
    font-size: 2.5rem; /* Changed from 3.5rem */
    font-weight: normal;
    margin-bottom: 1rem;
    color: var(--primary-yellow);
}

.collection-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.products-collection {
    padding: 2rem 2rem;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns on desktop */
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.product-item {
    position: relative;
    background-color: transparent; /* No background for the card itself, image and info will have their own */
    border: 1px solid var(--glass-border);
    border-radius: 15px; /* Overall card radius */
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.product-item img {
    width: 100%;
    height: 250px; /* Fixed height for image */
    object-fit: cover; /* Cover to maintain aspect ratio, crop if necessary */
    border-radius: 15px 15px 0 0;
}

.product-info {
    background: #FFFFFF; /* Solid white background */
    padding: 1.5rem; /* Adjusted padding */
    border-radius: 0 0 15px 15px; /* Rounded bottom corners */
    text-align: left;
    margin-top: -1px; /* Overlap with image border */
}

.product-info .product-name {
    display: block;
    font-size: 1.1rem;
    font-weight: 700; /* Bold from example */
    color: var(--text-primary); /* Dark gray/black */
    margin-bottom: 0.25rem; /* Reduced spacing */
}

.product-info .product-description {
    font-size: 0.9rem; /* Slightly larger than before */
    color: var(--text-secondary); /* Lighter gray */
    line-height: 1.5;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Limit description to 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-info .product-price {
    font-size: 1.1rem; /* Same as name */
    font-weight: 700; /* Bold from example */
    color: var(--primary-yellow); /* Primary yellow from example */
}



/* Responsive for collection grid */
@media (max-width: 1024px) {
    .collection-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .collection-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-collection {
        padding: 4rem 2rem 2rem;
    }
    .collection-title {
        font-size: 2rem; /* Changed from 2.5rem */
    }
    .collection-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .collection-grid {
        grid-template-columns: 1fr;
    }
    .collection-title {
        font-size: 1.5rem; /* Changed from 2rem */
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--primary-yellow);
    color: #000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border: none; /* Remove default button border */
}

.scroll-to-top:hover {
    background: var(--dark-yellow);
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}