.shop-page {
    padding: 60px 20px;
}

.shop-page-container {
    max-width: 1200px;
    margin: 0 auto;
}

.shop-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-weight: 700;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-box {
    display: flex;
    flex-direction: column;
    padding: 0;
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

.product-image-link {
    display: block;
    overflow: hidden;
    background: white;
}

.product-image-link img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.product-image-link:hover img {
    transform: scale(1.05);
}

.product-content {
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-title {
    font-size: 1.75rem;
    margin: 0 0 15px 0;
    font-weight: 400;
    text-align: center;
    color: #9C7B98;
}

.product-title a {
    color: #9C7B98;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-short-description {
    font-size: 1rem;
    color: #323232;
    line-height: 1.6;
    margin-bottom: 25px;
    text-align: center;
    flex-grow: 1;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-top: auto;
    flex-direction: row-reverse;
}

.add-to-cart-button {
    padding: 14px 28px;
    background-color: #9C7B98;
    color: #fefefe;
    border: none;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.product-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

.price-label {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 2px;
}

.price-amount {
    font-size: 1.35rem;
    font-weight: 700;
    color: #323232;
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 5px;
    }

    .shop-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .product-content {
        padding: 15px;
    }

    .product-title {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .product-short-description {
        display: none;
    }

    .product-footer {
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
    }

    .product-price {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 5px;
        width: 100%;
    }

    .price-label {
        font-size: 0.9rem;
        margin-bottom: 0;
    }

    .price-amount {
        font-size: 1.1rem;
    }

    .add-to-cart-button {
        padding: 12px 10px;
        font-size: 0.7rem;
        width: 100%;
        text-align: center;
        line-height: 1.2;
        min-height: 44px;
    }

    .shop-page {
        padding: 30px 5px;
    }
}

/* Tablet breakpoint */
@media (min-width: 769px) and (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}