/*
Theme Name: Salt & Stone Rebuild
Theme URI: 
Text Domain: saltandstone-rebuild
*/

/* Reset & Basics handled by base.css import later */
* {
    box-sizing: border-box;
}

body {
    background: #fff;
    color: #000;
    font-family: 'Oracle', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    margin: 0;
    padding: 0;
}

/* ===== PAGE WIDTH CONTAINER ===== */
.page-width {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (min-width: 992px) {
    .page-width {
        padding: 0 4rem;
    }
}

@media (min-width: 1600px) {
    .page-width {
        max-width: 1600px;
        padding: 0 5rem;
    }
}

/* ===== SALT & STONE PRODUCT CARDS ===== */

/* Products Grid */
.woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

@media (min-width: 768px) {
    .woocommerce ul.products {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 1200px) {
    .woocommerce ul.products {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* Product Card */
.ss-product-card {
    position: relative;
    list-style: none;
    margin: 0;
    padding: 0;
}

.ss-product-card__link {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* Badges */
.ss-product-card__badges {
    position: absolute;
    top: 1rem;
    left: 1rem;
    right: 1rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
    z-index: 2;
}

.ss-badge {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    padding: 0;
    background: transparent;
    color: #000;
}

.ss-badge--save {
    margin-left: auto;
    color: #000;
}

.ss-badge--holiday {
    background: #f5f5f0;
    padding: 0.4rem 0.8rem;
    border-radius: 2px;
}

.ss-badge--bestseller,
.ss-badge--new {
    color: #000;
}

/* Product Image */
.ss-product-card__image {
    position: relative;
    aspect-ratio: 1;
    background: #f8f8f8;
    overflow: hidden;
    margin-bottom: 1.2rem;
}

.ss-product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.ss-product-card:hover .ss-product-card__image img {
    transform: scale(1.03);
}

/* Product Info */
.ss-product-card__info {
    text-align: left;
}

.ss-product-card__title {
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin: 0 0 0.4rem;
    line-height: 1.3;
    color: #000;
}

@media (min-width: 768px) {
    .ss-product-card__title {
        font-size: 1.3rem;
    }
}

.ss-product-card__scent {
    font-size: 1.1rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin: 0 0 0.3rem;
}

.ss-product-card__stock {
    font-size: 1.1rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin: 0;
}

/* Hide default WooCommerce elements */
.woocommerce ul.products li.product .price,
.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product .add_to_cart_button,
.woocommerce ul.products li.product .added_to_cart,
.woocommerce ul.products li.product .star-rating,
.woocommerce ul.products li.product .onsale {
    display: none !important;
}

/* Section Header (Best Sellers) */
.ss-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
}

.ss-section-title {
    font-size: 2.8rem;
    font-weight: 400;
    margin: 0;
    letter-spacing: -0.01em;
}

.ss-section-link {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #000;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.ss-section-link:hover {
    opacity: 0.7;
}