.shop {
    padding: var(--space-xxl) var(--space-xl);
    background: var(--color-bg);
}

/* ===== LAYOUT ===== */
.shop__container {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: var(--space-xl);
}

/* ===== SIDEBAR ===== */
.shop__filters h3 {
    color: var(--color-primary);
    margin-bottom: var(--space-md);
    font-size: var(--fs-sm);
    letter-spacing: 1px;
}

.filter {
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--color-border);
}

.filter h4 {
    font-size: var(--fs-sm);
    margin-bottom: var(--space-sm);
}

/* CHECKBOX */
.filter label {
    display: block;
    font-size: var(--fs-sm);
    color: var(--color-text-muted);
    margin-bottom: 6px;
    cursor: pointer;
}

.filter input[type="checkbox"] {
    margin-right: 6px;
}

/* ===== TOP BAR ===== */
.shop__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-lg);
}

.shop__top select {
    background: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-text);
    padding: 6px 12px;
    font-size: var(--fs-sm);
}

/* ===== GRID ===== */
.products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

/* ===== PRODUCT ===== */
.product {
    border: 1px solid var(--color-border);
    padding: var(--space-sm);
    text-align: center;
    background: var(--color-bg-alt);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* HOVER CARD */
.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

/* IMAGE */
.product__img {
    position: relative;
    margin-bottom: var(--space-sm);
    overflow: hidden;
}

.product__img img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* IMAGE HOVER */
.product:hover img {
    transform: scale(1.08);
}

/* FAVORITE */
.product__fav {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #fff;
    font-size: 16px;
    opacity: 0.8;
}

/* TITLE */
.product h3 {
    font-size: var(--fs-sm);
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

/* PRICE */
.price {
    display: block;
    color: var(--color-primary);
    margin-bottom: var(--space-sm);
    font-weight: bold;
}

/* BUTTON */
.product button {
    border: 1px solid var(--color-primary);
    background: transparent;
    color: var(--color-primary);
    padding: 6px;
    font-size: var(--fs-sm);
    cursor: pointer;
    transition: all 0.3s ease;
}

/* BUTTON HOVER */
.product button:hover {
    background: var(--color-primary);
    color: #000;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {

    .products {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .shop__container {
        grid-template-columns: 1fr;
    }

    .products {
        grid-template-columns: 1fr;
    }
}
.shop__filters label { display:block; margin:0 0 18px; color:#f7d36a; font-size:13px; letter-spacing:.5px; }
.shop__filters select, .shop__filters input[type="range"] { width:100%; margin-top:8px; }
.shop__filters select { padding:11px; background:#0b0b0b; color:#eee; border:1px solid rgba(247,211,106,.3); }
#filter-reset { width:100%; padding:11px; border:1px solid #b97a10; background:transparent; color:#f7d36a; cursor:pointer; }
.product__image-button, .product__open { padding:0; border:0; background:transparent; color:inherit; cursor:pointer; font:inherit; }
.product__image-button { display:block; width:100%; }
.product__image-button img { width:100%; height:270px; object-fit:cover; }
.product h3 .product__open:hover { color:#f7d36a; }
.product__category { display:block; color:#bdb5a8; font-size:12px; text-transform:uppercase; letter-spacing:1px; }
.product__discover { margin-top:12px; padding:11px 18px; border:1px solid #b97a10; color:#f7d36a; }
.product-modal[hidden] { display:none; }
.product-modal { position:fixed; inset:0; z-index:100000; display:grid; place-items:center; padding:20px; }
.product-modal__backdrop { position:absolute; inset:0; background:rgba(0,0,0,.84); backdrop-filter:blur(8px); }
.product-modal__panel { position:relative; width:min(1050px,96vw); max-height:92vh; overflow:auto; display:grid; grid-template-columns:1.08fr .92fr; background:#080808; border:1px solid rgba(247,211,106,.42); box-shadow:0 30px 90px #000; }
.product-modal__close { position:absolute; top:13px; right:15px; z-index:3; width:42px; height:42px; border:1px solid rgba(247,211,106,.5); border-radius:50%; background:#090909; color:#f7d36a; font-size:28px; cursor:pointer; }
.product-modal__gallery { position:relative; min-height:560px; background:#030303; display:grid; place-items:center; overflow:hidden; }
.product-modal__gallery img { width:100%; height:100%; min-height:560px; object-fit:cover; }
.product-modal__prev,.product-modal__next { position:absolute; top:50%; z-index:2; width:44px; height:44px; border:1px solid #f7d36a; border-radius:50%; background:rgba(0,0,0,.7); color:#fff; font-size:28px; cursor:pointer; }
.product-modal__prev { left:18px; }.product-modal__next { right:18px; }
.product-modal__dots { position:absolute; left:0; right:0; bottom:18px; display:flex; justify-content:center; gap:8px; }
.product-modal__dots button { width:9px;height:9px;padding:0;border:1px solid #fff3c4;border-radius:50%;background:transparent; }.product-modal__dots button.active{background:#f7d36a;}
.product-modal__content { padding:60px 48px 42px; color:#ddd; }
#product-modal-category { color:#d9a62a; text-transform:uppercase; letter-spacing:1.5px; }
#product-modal-price { margin:16px 0; color:#fff3c4; font-size:25px; }
.product-modal__content p { line-height:1.8; color:#c9c2b7; }
.product-modal__content dl { margin:25px 0; border-top:1px solid rgba(247,211,106,.18); }
.product-modal__content dl div { display:grid; grid-template-columns:130px 1fr; gap:12px; padding:11px 0; border-bottom:1px solid rgba(247,211,106,.12); }
.product-modal__content dt { color:#d9a62a; }.product-modal__content dd { margin:0; }
@media(max-width:760px){.product-modal{padding:8px}.product-modal__panel{grid-template-columns:1fr}.product-modal__gallery,.product-modal__gallery img{min-height:310px;height:310px}.product-modal__content{padding:32px 24px}.product-modal__content dl div{grid-template-columns:1fr;gap:3px}}
