body {

    margin: 0;
    font-family: system-ui;

    background: #0f172a;

    color: white;

}

/* HERO */

.hero {

    height: 420px;

    background-image:
        linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)),
        url("banner.png");

    background-size: cover;
    background-position: center;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

}

.hero-content {

    max-width: 800px;

}

.hero h1 {

    font-size: 48px;

    margin-bottom: 10px;

}

.hero p {

    font-size: 20px;

    opacity: 0.9;

    margin-bottom: 25px;

}

.hero-btn {

    background: #3b82f6;

    border: none;

    padding: 14px 28px;

    border-radius: 30px;

    font-size: 16px;

    color: white;

    cursor: pointer;

    transition: 0.2s;

}

.hero-btn:hover {

    background: #2563eb;

    transform: translateY(-2px);

}

/* CATEGORY */

.categories {

    display: flex;

    justify-content: center;

    gap: 15px;

    padding: 30px;

    flex-wrap: wrap;

}

.categories button {

    background: #1e293b;

    border: none;

    color: white;

    padding: 12px 25px;

    border-radius: 30px;

    font-size: 16px;

    cursor: pointer;

    transition: 0.2s;

}

.categories button:hover {

    background: #3b82f6;

    transform: translateY(-2px);

}

/* GALLERY */

.gallery {

    width: 90%;

    max-width: 1100px;

    margin: auto;

    padding-bottom: 60px;

}

.swiper-slide {

    display: flex;

    justify-content: center;

    align-items: center;

}
.product-box {

width:260px;
height:260px;

display:flex;
align-items:center;
justify-content:center;

background:white;

border-radius:16px;

box-shadow:0 10px 30px rgba(0,0,0,0.5);

overflow:hidden;

}

.product-box {

    width:260px;
    height:260px;
    
    display:flex;
    align-items:center;
    justify-content:center;
    
    background:white;
    
    border-radius:16px;
    
    box-shadow:0 10px 30px rgba(0,0,0,0.5);
    
    overflow:hidden;
    
    }
    
    .product-img {
    
    max-width:90%;
    max-height:90%;
    
    object-fit:contain;
    
    cursor:pointer;
    
    transition:0.2s;
    
    }
    
    .product-box:hover{
    
    transform:scale(1.05);
    
    transition:0.2s;
    
    }

.product-box:hover{

transform:scale(1.05);

transition:0.2s;

}
/* MODAL */

.modal {

    position: fixed;

    inset: 0;

    background: rgba(0, 0, 0, 0.9);

    display: none;

    justify-content: center;

    align-items: center;

}

.modal img {

    max-width: 90%;

    max-height: 90%;

    border-radius: 12px;

}

.hero-text {

    max-width: 900px;
    margin: auto;
    text-align: center;

}

.headline {

    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;

    margin-bottom: 15px;

}

.subtext {

    font-size: 20px;
    opacity: 0.9;

}

/* CONTACT SECTION */

.contact {

    background: #020617;

    text-align: center;

    padding: 60px 20px;

}

.contact h2 {

    font-size: 32px;

    margin-bottom: 10px;

}

.contact p {

    font-size: 18px;

    opacity: 0.9;

    margin-bottom: 25px;

}

.qr-box {

    display: flex;

    justify-content: center;

}

.qr-box img {

    width: 200px;

    height: 200px;

    background: white;

    padding: 10px;

    border-radius: 12px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);

}

.category-info{

    text-align:center;
    padding:20px;
    max-width:800px;
    margin:auto;
    
    }
    
    .category-info h2{
    
    font-size:32px;
    margin-bottom:10px;
    
    }
    
    .category-info p{
    
    font-size:18px;
    opacity:0.85;
    
    }