/* ================= SHOP ================= */
.shop-top-categories {
    padding: 50px 0;
}

.cat-icons {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.cat-icon {
    text-align: center;
}

.cat-icon img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
}

.cat-icon span {
    display: block;
    margin-top: 8px;
    font-size: 14px;
}

.cat-icon small {
    font-size: 12px;
    color: var(--muted);
}

/* SIDEBAR */
.shop-sidebar {
    background: #fff;
    padding: 20px;
    border: 1px solid var(--border);
}

.search-box {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
}

.shop-sidebar h4 {
    font-size: 14px;
    margin: 20px 0 10px;
}

.shop-sidebar ul {
    padding: 0;
    list-style: none;
}

.shop-sidebar li {
    font-size: 13px;
    margin-bottom: 6px;
}

.filter-btn {
    margin-top: 10px;
    padding: 6px 14px;
    background: #111;
    color: #fff;
    border: none;
}

.color-filter span {
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #ccc;
    margin-right: 6px;
}

.best-seller {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
}

.best-seller img {
    width: 50px;
}

/* PRODUCTS */
.shop-sort {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.product-card {
    background: #fff;
    padding: 16px;
    text-align: center;
    position: relative;
}

.product-card img {
    width: 100%;
}

.product-card h5 {
    font-size: 14px;
    margin-top: 10px;
}

.product-card p {
    font-size: 13px;
    color: var(--muted);
}

.badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--accent);
    color: #fff;
    font-size: 11px;
    padding: 4px 6px;
}

/* PAGINATION */
.shop-pagination {
    text-align: center;
    margin: 40px 0;
}

.shop-pagination span {
    display: inline-block;
    border: 1px solid var(--border);
    padding: 6px 10px;
    margin: 0 4px;
}

.shop-pagination .active {
    background: #111;
    color: #fff;
}

/* productdetails */
/* ================= PRODUCT DETAILS ================= */
.product-details {
    padding: 90px 0;
}

.product-gallery .main-img {
    width: 100%;
    border: 1px solid var(--border);
}

.thumbs {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.thumbs img {
    width: 70px;
    cursor: pointer;
    border: 1px solid var(--border);
}

.product-info h1 {
    font-family: var(--font-head);
    font-size: 26px;
    margin-bottom: 10px;
}

.rating {
    font-size: 14px;
    color: #f5a623;
}

.stock {
    color: green;
    margin-left: 10px;
}

.price {
    font-size: 22px;
    margin: 14px 0;
}

.short-desc {
    font-size: 14px;
    color: var(--muted);
}

.option {
    margin: 14px 0;
}

.color {
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    margin-right: 6px;
}

.c1 {
    background: #c69c6d;
}

.c2 {
    background: #333;
}

.c3 {
    background: #ddd;
}

.size {
    border: 1px solid var(--border);
    padding: 4px 10px;
    font-size: 13px;
    margin-right: 6px;
}

.size.active {
    background: #111;
    color: #fff;
}

.qty-box {
    display: flex;
    gap: 8px;
    margin: 20px 0;
}

.qty-box input {
    width: 50px;
    text-align: center;
}

.add-cart {
    background: #111;
    color: #fff;
    padding: 8px 18px;
    border: none;
}

.product-tabs {
    margin-top: 60px;
}

/* RELATED */
.related-products {
    margin-top: 60px;
}

.tab-content {
    background-color: #ffffff;
    padding: 8px 16px;
}

.main-img {
    height: 400px;
    object-fit: cover;
}

.thumbs img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.thumbs img.active {
    border-color: var(--bs-orange);
}
