/* Collection Page Styles */

/* Hero Section */
.coll-hero-section {
    position: relative;
    background-color: var(--secondary-color);
    color: var(--light-text);
    padding: 200px 0px 140px 0px;
    overflow: hidden;
    text-align: center;
}

.coll-hero-content {
    position: relative;
    z-index: 2;
}

.coll-subtitle {
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

.coll-rain-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2));
    z-index: 1;
}

/* Featured Products Section */
.coll-featured-section {
    background-color: var(--light-color);
    padding: 6rem 0;
}

.coll-section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.coll-featured-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.coll-product-card {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.coll-product-card.featured {
    border: 2px solid var(--primary-color);
}

.coll-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.coll-product-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.coll-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.coll-product-card:hover .coll-product-image img {
    transform: scale(1.05);
}

.coll-product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 600;
}

.coll-product-details {
    padding: 2rem;
}

.coll-product-category {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.coll-product-description {
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.coll-product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.coll-product-features span {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-weight: 500;
}

/* Collections Showcase Section */
.coll-showcase-section {
    background-color: var(--accent-color);
    padding: 6rem 0;
}

.coll-tabs {
    max-width: 1000px;
    margin: 0 auto;
}

.coll-tab-headers {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.coll-tab-btn {
    background: none;
    border: none;
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--text-color);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
}

.coll-tab-btn:hover {
    color: var(--primary-color);
}

.coll-tab-btn.active {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

.coll-tab-content {
    background-color: white;
    border-radius: 8px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.coll-tab-panel {
    display: none;
}

.coll-tab-panel.active {
    display: block;
}

.coll-panel-content {
    display: flex;
    flex-direction: column;
}

.coll-panel-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.coll-panel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.coll-panel-info {
    padding: 2rem;
}

.coll-panel-features {
    list-style: disc;
    margin-left: 1.5rem;
    margin-top: 1rem;
}

.coll-panel-features li {
    margin-bottom: 0.5rem;
}

/* Customization Section */
.coll-custom-section {
    background-color: var(--light-color);
    padding: 6rem 0;
}

.coll-custom-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.coll-custom-text {
    flex: 1;
}

.coll-custom-options {
    margin: 2rem 0;
}

.coll-custom-option {
    margin-bottom: 1.5rem;
}

.coll-custom-option h3 {
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.coll-custom-visual {
    flex: 1;
}

.coll-custom-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* Care Guide Section */
.coll-care-section {
    background-color: var(--accent-color);
    padding: 6rem 0;
}

.coll-care-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.coll-care-card {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.coll-care-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.coll-care-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.coll-care-icon svg {
    width: 30px;
    height: 30px;
    stroke: white;
}

.coll-care-tips {
    list-style: disc;
    margin-left: 1.5rem;
    margin-top: 1rem;
}

.coll-care-tips li {
    margin-bottom: 0.5rem;
}

/* Responsive Styles */
@media (min-width: 768px) {
    .coll-product-card {
        flex-direction: row;
    }
    
    .coll-product-image {
        width: 40%;
        height: auto;
    }
    
    .coll-product-details {
        width: 60%;
    }
    
    .coll-panel-content {
        flex-direction: row;
    }
    
    .coll-panel-image {
        width: 50%;
        height: auto;
    }
    
    .coll-panel-info {
        width: 50%;
    }
    
    .coll-custom-content {
        flex-direction: row;
    }
}

@media (max-width: 767px) {
    .coll-tab-headers {
        flex-direction: column;
        align-items: center;
    }
    
    .coll-tab-btn {
        width: 100%;
        text-align: center;
    }
    
    .coll-product-image, .coll-panel-image {
        height: 400px;
    }

    .coll-product-details, .coll-panel-info {
        width: 100%;
        padding:15px;
    }
    
    .coll-care-grid {
        grid-template-columns: 1fr;
    }

    .coll-care-card{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 20px;
    }
} 


@media (max-width: 480px) {
    .coll-product-image, .coll-panel-image {
        height: 220px;
    }
}