/* Sutyen Category Page - Light Touch Theme (#A4856D) */
.category-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #faf9f7 0%, #f5f3f0 50%, #f0ede8 100%);
    position: relative;
    overflow: hidden;
    min-height: 80vh;
}

.category-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(164, 133, 109, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(164, 133, 109, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.category-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

/* Ensure proper layout distribution */
.products-line.line-1 {
    justify-content: center;
}

.products-line.line-3 {
    justify-content: center;
}

/* Category Header */
.category-header {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px 0;
}

.category-title {
    font-size: 3.5rem;
    font-weight: 400;
    color: #3c2e26;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    line-height: 1.2;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #A4856D 0%, #b8a082 50%, #A4856D 100%);
    border-radius: 2px;
}

.category-subtitle {
    font-size: 1.3rem;
    color: #6b5b4f;
    font-weight: 300;
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto;
    margin-top: 20px;
}

/* Thumbnail Scroll Container */
.thumbnails-scroll-container {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.thumbnail-scroll-btn {
    background: rgba(164, 133, 109, 0.1);
    border: 2px solid rgba(164, 133, 109, 0.2);
    color: #A4856D;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 2;
}

.thumbnail-scroll-btn:hover {
    background: rgba(164, 133, 109, 0.2);
    border-color: #A4856D;
    transform: scale(1.1);
}

.thumbnail-scroll-btn.scroll-left {
    margin-right: 15px;
}

.thumbnail-scroll-btn.scroll-right {
    margin-left: 15px;
}

/* Category Thumbnails */
.category-thumbnails {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    flex: 1;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding: 0 10px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.category-thumbnails::-webkit-scrollbar {
    display: none;
}

.category-thumb {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    min-width: 120px;
}

.category-thumb.active {
    transform: scale(1.05);
}

.category-thumb.active::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, rgba(164, 133, 109, 0.3) 0%, transparent 50%, rgba(164, 133, 109, 0.3) 100%);
    border-radius: 12px;
    z-index: -1;
    filter: blur(8px);
}

.thumb-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.thumb-image {
    width: 120px;
    height: 140px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 10px;
    background: #faf9f7;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(164, 133, 109, 0.1);
}

.category-thumb.active .thumb-image {
    border-color: #A4856D;
    box-shadow: 0 6px 20px rgba(164, 133, 109, 0.25);
}

.category-thumb:hover .thumb-image {
    border-color: #b8a082;
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(164, 133, 109, 0.2);
}

.thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
    filter: grayscale(30%) brightness(0.9);
}

.category-thumb.active .thumb-img {
    filter: grayscale(0%) brightness(1.1);
}

.category-thumb:hover .thumb-img {
    filter: grayscale(0%) brightness(1.05);
}

.thumb-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: #6b5b4f;
    text-align: center;
    line-height: 1.2;
    max-width: 120px;
    transition: all 0.3s ease;
}

.category-thumb.active .thumb-name {
    color: #A4856D;
    font-weight: 600;
}

.category-thumb:hover .thumb-name {
    color: #4a3d33;
    transform: translateY(-2px);
}

/* Filtered Products Section */
.filtered-products-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #faf9f7 0%, #f5f3f0 50%, #f0ede8 100%);
    position: relative;
    overflow: hidden;
}

.filtered-products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(164, 133, 109, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 30% 70%, rgba(164, 133, 109, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.filtered-products-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.products-header {
    text-align: center;
    margin-bottom: 60px;
}

.products-title {
    font-size: 2.8rem;
    font-weight: 400;
    color: #3c2e26;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.products-subtitle {
    font-size: 1.1rem;
    color: #6b5b4f;
    font-weight: 300;
    line-height: 1.5;
}

/* Products Layout */
.products-layout {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.products-line {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}

.products-line.line-1,
.products-line.line-3 {
    flex-wrap: wrap;
}

.products-line.line-2 {
    flex-wrap: nowrap !important;
    justify-content: center;
    max-width: 100%;
}

/* Product Cards */
.product-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(164, 133, 109, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(164, 133, 109, 0.2);
}

.small-card {
    width: 220px !important;
    max-width: 220px !important;
    min-width: 220px !important;
    min-height: 380px;
    flex-shrink: 0;
    flex-grow: 0;
}

.big-card {
    width: 360px !important;
    max-width: 360px !important;
    min-width: 360px !important;
    min-height: 520px;
    flex-shrink: 0;
    flex-grow: 0;
}

.product-image {
    position: relative;
    overflow: hidden;
    flex-grow: 1;
}

.small-card .product-image {
    height: 300px;
}

.big-card .product-image {
    height: 400px;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

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

.product-image-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}

.image-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(164, 133, 109, 0.3);
}

.image-dot.active {
    background: #A4856D;
    border-color: #fff;
    transform: scale(1.2);
}

.image-dot:hover {
    background: rgba(164, 133, 109, 0.8);
    transform: scale(1.1);
}


.product-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-colors {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.colors-count {
    font-size: 0.8rem;
    color: #6b5b4f;
    font-weight: 500;
}

.colors-dots {
    display: flex;
    gap: 4px;
}

.color-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid rgba(164, 133, 109, 0.2);
    transition: all 0.3s ease;
}

.color-dot:hover {
    transform: scale(1.2);
    border-color: #A4856D;
}

.product-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #3c2e26;
    margin: 0;
    line-height: 1.3;
}

.big-card .product-name {
    font-size: 1.3rem;
}

.product-category {
    font-size: 0.9rem;
    color: #6b5b4f;
    font-weight: 400;
    margin: 0;
    line-height: 1.2;
}

.big-card .product-category {
    font-size: 1rem;
}

/* Light Theme Styles */
.light-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(164, 133, 109, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
}

.light-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(164, 133, 109, 0.2);
}

.light-image {
    position: relative;
    overflow: hidden;
    flex-grow: 1;
}

.light-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}

.light-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(164, 133, 109, 0.3);
}

.light-dot.active {
    background: #A4856D;
    border-color: #fff;
    transform: scale(1.2);
}

.light-dot:hover {
    background: rgba(164, 133, 109, 0.8);
    transform: scale(1.1);
}


.light-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.light-colors {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.light-count {
    font-size: 0.8rem;
    color: #6b5b4f;
    font-weight: 500;
}

.light-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #3c2e26;
    margin: 0;
    line-height: 1.3;
}

.light-category {
    font-size: 0.9rem;
    color: #6b5b4f;
    font-weight: 400;
    margin: 0;
    line-height: 1.2;
}

/* Breadcrumb Styling */
.breadcrumb-section {
    background: #faf9f7;
    border-bottom: 1px solid rgba(164, 133, 109, 0.1);
    padding: 20px 0;
}

.breadcrumb-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
}

.breadcrumb-item {
    color: #6b5b4f;
    font-weight: 400;
    transition: color 0.3s ease;
}

.breadcrumb-item:last-child {
    color: #A4856D;
    font-weight: 500;
}

.breadcrumb-separator {
    color: #b8a082;
    font-weight: 300;
}

/* Section Separator */
.section-separator {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(164, 133, 109, 0.3) 50%, transparent 100%);
    margin: 0 auto;
    max-width: 800px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .category-container,
    .filtered-products-container {
        padding: 0 30px;
    }
    
    .thumbnails-scroll-container {
        padding: 20px;
    }
    
    .category-title {
        font-size: 3rem;
    }
    
    .products-title {
        font-size: 2.4rem;
    }
    
    .thumb-image {
        width: 100px;
        height: 120px;
    }
    
    .thumb-name {
        font-size: 0.85rem;
    }
    
         .small-card {
         width: 250px;
         min-height: 380px;
     }
     
     .big-card {
         width: 420px;
         min-height: 480px;
     }
    
    .products-line {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .category-section,
    .filtered-products-section {
        padding: 60px 0;
    }
    
    .category-container,
    .filtered-products-container {
        padding: 0 20px;
    }
    
    .category-header {
        margin-bottom: 40px;
        padding: 20px 0;
    }
    
    .category-title {
        font-size: 2.5rem;
    }
    
    .products-title {
        font-size: 2rem;
    }
    
    .products-header {
        margin-bottom: 40px;
    }
    
    .thumbnails-scroll-container {
        padding: 15px;
    }
    
    .thumbnail-scroll-btn {
        width: 35px;
        height: 35px;
    }
    
    .thumb-image {
        width: 80px;
        height: 100px;
    }
    
    .thumb-name {
        font-size: 0.8rem;
        max-width: 80px;
    }
    
         .small-card {
         width: 220px;
         min-height: 350px;
     }
     
     .big-card {
         width: 340px;
         min-height: 420px;
     }
    
    .small-card .product-image {
        height: 250px;
    }
    
    .big-card .product-image {
        height: 320px;
    }
    
    .products-line {
        gap: 15px;
    }
    
    .products-layout {
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .category-section,
    .filtered-products-section {
        padding: 40px 0;
    }
    
    .category-container,
    .filtered-products-container {
        padding: 0 15px;
    }
    
    .category-header {
        margin-bottom: 30px;
        padding: 15px 0;
    }
    
    .category-title {
        font-size: 2rem;
    }
    
    .products-title {
        font-size: 1.8rem;
    }
    
    .products-header {
        margin-bottom: 30px;
    }
    
    .thumbnails-scroll-container {
        padding: 10px;
    }
    
    .thumbnail-scroll-btn {
        width: 30px;
        height: 30px;
    }
    
    .thumb-image {
        width: 60px;
        height: 80px;
        border-width: 2px;
    }
    
    .thumb-name {
        font-size: 0.75rem;
        max-width: 60px;
    }
    
    .breadcrumb-container {
        padding: 0 15px;
    }
    
    .products-line {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .small-card,
    .big-card {
        width: 100%;
        max-width: 280px;
        min-height: 350px;
    }
    
    .small-card .product-image,
    .big-card .product-image {
        height: 250px;
    }
    
    .products-layout {
        gap: 25px;
    }
} 