﻿:root {
    --primary-color: #9b4d5a;
    --gold-text: #C5A059;
    --bg-light: #f9f9f9;
    --text-dark: #333;
    --border-soft: #eee;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    background-color: #fff;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    padding: 48px 20px;
    max-width: 1320px;
    margin: 0 auto;
}

.product-card {
    border: 1px solid var(--border-soft);
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    text-align: center;
    padding: 16px;
    transition: 0.25s ease;
    display: flex;
    flex-direction: column;
}

    .product-card:hover {
        box-shadow: 0 14px 28px rgba(0,0,0,0.09);
        transform: translateY(-4px);
    }

.product-link {
    text-decoration: none;
    color: inherit;
    display: block;
    flex: 1;
}

.product-image {
    background-color: var(--bg-light);
    border-radius: 14px;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    overflow: hidden;
}

    .product-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        transition: 0.25s ease;
    }

.product-card:hover .product-image img {
    transform: scale(1.04);
}

.product-info {
    padding: 18px 4px 8px;
}

.product-category {
    display: inline-block;
    color: var(--gold-text);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.product-info h3 {
    min-height: 46px;
    font-size: 17px;
    line-height: 1.35;
    font-weight: 700;
    margin: 0 0 10px;
    color: #222;
}

.price {
    font-size: 19px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.color-options {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 12px 0 4px;
}

.dot {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    display: inline-block;
    border: 1px solid #ddd;
}

    .dot.blue {
        background-color: #2d6cdf;
    }

    .dot.orange {
        background-color: #d98a32;
    }

    .dot.grey {
        background-color: #9b9b9b;
    }

.add-to-cart {
    width: 100%;
    padding: 12px 16px;
    background: transparent;
    border: 1px solid #333;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 700;
    margin-top: 14px;
    transition: 0.25s ease;
    color: #333;
}

    .add-to-cart:hover {
        background: #333;
        color: #fff;
    }

.more-div {
    width: 100%;
    text-align: center;
    margin: 20px 0 70px;
}

.more-btn {
    display: inline-block;
    background-color: #000;
    color: #fff;
    padding: 14px 38px;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 999px;
    transition: 0.25s ease;
}

    .more-btn:hover {
        background-color: var(--primary-color);
    }

/* Responsive */
@media only screen and (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media only screen and (max-width: 840px) {
    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: 34px 14px;
        gap: 16px;
    }

    .product-info h3 {
        font-size: 15px;
    }
}

@media only screen and (max-width: 520px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}
