/* =============================================
   APPAREL CATEGORY PAGE STYLES
   ============================================= */


/* Filter Section */
.filter-section {
	background: white;
	padding: 40px 0;
	border-bottom: 2px solid #e5e7eb;
}

.filter-container {
	max-width: 900px;
	margin: 0 auto;
}

.filter-tabs {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: 30px;
}

.filter-tab {
	padding: 12px 24px;
	background: white;
	border: 2px solid #e5e7eb;
	border-radius: 8px;
	color: #4b5563;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.filter-tab:hover {
	border-color: #5B47E0;
	color: #5B47E0;
}

.filter-tab.active {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	border-color: #667eea;
}

/* Search Section */
.search-section {
    background: white;
    padding: 50px 0;
    border-bottom: 2px solid #e5e7eb;
}

.search-container {
    max-width: 700px;
    margin: 0 auto;
}

.search-box {
    position: relative;
    width: 100%;
}

.search-box input {
    width: 100%;
    padding: 20px 60px 20px 60px;
    font-size: 18px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    outline: none;
    transition: all 0.3s ease;
}

.search-box input:focus {
    border-color: #5B47E0;
    box-shadow: 0 0 0 4px rgba(91, 71, 224, 0.1);
}

.search-box .search-icon {
    position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    color: #9ca3af;
}

.search-box input:focus ~ .search-icon {
    color: #5B47E0;
}

.search-results-count {
    text-align: center;
    margin-top: 15px;
    font-size: 15px;
    color: #6b7280;
}



/* Info Section */
.info-section {
    background: #f9fafb;
    padding: 3em 0;
}

.info-content {
    max-width: 900px;
    margin: 0 auto;
}

.info-section h2 {
    font-size: 36px;
    font-weight: 800;
    color: #111827;
    margin: 0 0 30px 0;
    text-align: center;
}

.info-section h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin: 30px 0 15px 0;
}

.info-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #4b5563;
    margin: 0 0 20px 0;
}

.info-section strong {
    color: #1f2937;
    font-weight: 700;
}

/* FAQ Section Custom */
.faq-section-custom {
    padding: 80px 0;
}

.faq-container-custom {
    max-width: 900px;
    margin: 0 auto;
}

.faq-container-custom h2 {
    font-size: 36px;
    font-weight: 800;
    color: #111827;
    margin: 0 0 40px 0;
    text-align: center;
}

.faq-item-custom {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question-custom {
    width: 100%;
    background: #f9fafb;
    border: none;
    padding: 20px 25px;
    text-align: left;
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question-custom:hover {
    background: #f3f4f6;
}

.faq-question-custom i {
    color: #5B47E0;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.faq-item-custom.active .faq-question-custom i {
    transform: rotate(180deg);
}

.faq-answer-custom {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item-custom.active .faq-answer-custom {
    max-height: 500px;
}

.faq-answer-custom p {
    padding: 0 25px 20px;
    font-size: 16px;
    line-height: 1.8;
    color: #4b5563;
    margin: 0;
}

/* Resources Section - MISSING STYLES ADDED */
.resources-section {
    background: #f9fafb;
    padding: 3em 0;
}

.resources-section h2 {
    font-size: 36px;
    font-weight: 800;
    color: #111827;
    text-align: center;
    margin: 0 0 50px 0;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.resource-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 35px 30px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.resource-card:hover {
    border-color: #5B47E0;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(91, 71, 224, 0.15);
}

.resource-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.resource-icon i {
    font-size: 32px;
    color: white;
}

.resource-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 15px 0;
}

.resource-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #6b7280;
    margin: 0 0 20px 0;
    flex: 1;
}

.resource-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #5B47E0;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.resource-link:hover {
    gap: 12px;
}

.resource-link i {
    transition: transform 0.3s ease;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .resources-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .category-hero h1 {
        font-size: 36px;
    }
    
    .category-hero .tagline {
        font-size: 18px;
    }
    
    .category-stats {
        gap: 25px;
    }
    
    .brands-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .search-box input {
        padding: 18px 50px 18px 50px;
        font-size: 16px;
    }
    
    .info-section h2 {
        font-size: 28px;
    }
    
    .info-section p {
        font-size: 16px;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .category-hero h1 {
        font-size: 28px;
    }
    
    .category-hero .tagline {
        font-size: 16px;
    }
    
    .brand-card {
        padding: 30px 20px;
    }
    
    .brand-icon {
        width: 70px;
        height: 70px;
    }
    
    .brand-icon i {
        font-size: 32px;
    }
    
    .brand-card h3 {
        font-size: 20px;
    }
    
    .resource-card {
        padding: 25px 20px;
    }
}