/* Bags Category Specific Styles */

.category-bags {
}

/* Container max-width */
.category-bags .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section - Bags */
.category-bags .category-hero {
    height: 400px;
    max-width: 100%;
    overflow: hidden;
}

/* Bags Grid Layout - 3 columns */
.bags-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 2rem auto;
}

/* Product Cards */
.category-bags .product-card {
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;



background:radial-gradient(circle at -58% -69%, #fff 59%, transparent 102.05%) padding-box, 
radial-gradient(circle at 48% 54%, #bfbfbf2c 50%, transparent 87.05%) padding-box, 
radial-gradient(circle at 3% 7%, #bfbfbf2a 56%, transparent 77.05%) padding-box, 
linear-gradient(51deg, #ffffff2f 56%, transparent 86.05%) padding-box, 
linear-gradient(51deg, #fff 100%, #fff 100%) padding-box, 
linear-gradient(45deg, #352f36 0%, #ccc 25%, #ccc 75%, #352f36 100% ) border-box;


}
.category-bags .product-card:first-child {
border-radius: 5em 0 0 0;
}
/* Gradient background for all bags */
.category-bags .product-card.gradient-bg .product-image {
}

/* Last card gets bottom-right radius */
.category-bags .product-card.last-card {
    border-radius: 0 0 5em 0;
}

/* Product Image Section */
.category-bags .product-image {
    position: relative;
    padding: 30px;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-bags .product-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 220px;
}

/* Product Info */
.category-bags .product-info {
    padding: 25px;
}

.category-bags .product-title {
    line-height: 1.3;
}

.category-bags .product-price {
    font-size: 18px;
    margin-bottom: 20px;
    color: #333;
    font-weight: 500;
}

.category-bags .product-price .currency-code {
    font-size: 14px;
    color: #666;
    font-weight: 400;
    text-transform: uppercase;
}

/* Meta Row - 50/50 Layout for bags */
.category-bags .meta-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 20px;
}

.category-bags .product-meta {
    font-size: 15px;
    line-height: 1.4;
}

.category-bags .meta-label {
    font-weight: 600;
    color: #333;
    display: block;
    margin-bottom: 4px;
}

.category-bags .meta-value {
    color: #666;
    display: block;
}

/* Action Buttons */
.category-bags .product-actions {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.category-bags .btn {
    display: block;
    text-align: center;
    padding: 14px 24px;
    border-radius: .5em;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-bags .btn-select {
    background: white;
    color: #333;
    border: 2px solid #333;
}

.category-bags .btn-select:hover {
    background: #333;
    color: white;
}

.category-bags .btn-customize {
    background: #333;
    color: white;
    border: 2px solid #333;
}

.category-bags .btn-customize:hover {
    background: #555;
    border-color: #555;
}



/* Responsive */
@media (max-width: 992px) {
    /* 2 columns on tablet */
    .bags-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Reduce border radius on mobile */
    .category-bags .category-hero {
        border-radius: 2em 0 0 0;
    }
    
    .category-bags .product-card.last-card {
        border-radius: 0 0 2em 0;
    }
    
    /* Stack grid on mobile */
    .bags-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 15px;
    }
    
    /* Stack meta row on very small screens */
    .category-bags .meta-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    /* Stack Made in Canada section */
    .category-bags .made-in-canada-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .category-bags .video-wrapper {
        max-width: 300px;
        margin: 0 auto;
    }
}

/* Currency update loading state */
body.updating-currency .bags-grid {
    opacity: 0.5;
    pointer-events: none;
}