.shopWrapper {
    padding: 30px 0;
    background: #fff;
}

.shopSidebar {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.filterSection {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.filterSection:last-child {
    border-bottom: none;
}

.filterSection h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.filterOption {
    margin-bottom: 10px;
}

.filterOption input[type="checkbox"],
.filterOption input[type="radio"] {
    margin-right: 10px;
}

.filterOption label {
    cursor: pointer;
    color: #666;
    transition: color 0.3s;
}

.filterOption label:hover {
    color: #cd9340;
}

.priceRange {
    margin-top: 15px;
}

.priceRange input[type="range"] {
    width: 100%;
    height: 5px;
    background: #ddd;
    outline: none;
    border-radius: 5px;
}

.priceRange input[type="range"]::-webkit-slider-thumb {
    width: 20px;
    height: 20px;
    background: #cd9340;
    cursor: pointer;
    border-radius: 50%;
}

.priceValues {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 14px;
    color: #666;
}

.shopHeader {
    background: #fff;
    /* padding: 20px 30px; */
    border-radius: 15px;
    margin-bottom: 30px;
    /* box-shadow: 0 5px 20px rgba(0,0,0,0.1); */
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.shopResults {
    font-size: 16px;
    color: #666;
}

.shopResults strong {
    color: #cd9340;
}

.shopControls {
    display: flex;
    gap: 15px;
    align-items: center;
}

.viewToggle {
    display: flex;
    gap: 5px;
}

.viewToggle button {
    width: 40px;
    height: 40px;
    border: 2px solid #ddd;
    background: #fff;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.viewToggle button.active,
.viewToggle button:hover {
    border-color: #cd9340;
    background: #cd9340;
    color: #fff;
}

.sortSelect {
    padding: 10px 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.3s;
    min-width: 200px;
}

.sortSelect:focus {
    outline: none;
    border-color: #cd9340;
}

.productGrid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.productCard {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s;
    position: relative;
}

.productCard:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.productImage {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    background: #f8f9fa;
}

.productImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.productCard:hover .productImage img {
    transform: scale(1.1);
}

.productBadge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff4757;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 12px;
    z-index: 1;
}

.productBadge.sale {
    background: #ff4757;
    color: #fff;
}

.productBadge.new {
    background: #ffa502;
    color: #fff;
}

.quickActions {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.3s;
}

.productCard:hover .quickActions {
    opacity: 1;
    transform: translateX(0);
}

.quickActions button {
    width: 40px;
    height: 40px;
    border: none;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.quickActions button:hover {
    background: #cd9340;
    color: #fff;
}

.productInfo {
    padding: 20px;
}

.productCategory {
    color: #868686;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.productInfo h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1a1a2e;
}

.productInfo h4 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.productInfo h4 a:hover {
    color: #cd9340;
}

.productRating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
    display: none;
}

.productRating .stars {
    color: #ffa502;
}

.productRating .count {
    font-size: 12px;
    color: #999;
}

.productPrice {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.productPrice .current {
    font-size: 24px;
    font-weight: 700;
    color: #cd9340;
}

.productPrice .original {
    font-size: 18px;
    color: #999;
    text-decoration: line-through;
}

.productSpecs {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.spec {
    font-size: 12px;
    color: #666;
}

.spec i {
    color: #cd9340;
    margin-right: 5px;
}

.addToCartBtn {
    width: 100%;
    padding: 12px;
    background: #cd9340;
    color: #000;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.addToCartBtn:hover {
    background: #06d9ac;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(8, 250, 194, 0.3);
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 50px;
}

.pagination a,
.pagination span {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    text-decoration: none;
    color: #666;
    background: #fff;
    border: 2px solid #ddd;
    transition: all 0.3s;
}

.pagination a:hover,
.pagination span.active {
    background: #cd9340;
    color: #000;
    border-color: #cd9340;
}

.noProducts {
    text-align: center;
    padding: 60px 20px;
    background: #fff;
    border-radius: 15px;
}

.noProducts i {
    font-size: 64px;
    color: #ddd;
    margin-bottom: 20px;
}

.noProducts h3 {
    color: #666;
    margin-bottom: 10px;
}

.stockStatus {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}

.stockStatus.in-stock {
    background: #d4edda;
    color: #155724;
}

.stockStatus.low-stock {
    background: #fff3cd;
    color: #856404;
}

.stockStatus.out-of-stock {
    background: #f8d7da;
    color: #721c24;
}