/* Brand Colors - Turquoise Green Theme */
:root {
    --saree-primary: #1A7F7A;    /* Deep turquoise green */
    --saree-accent: #E6B422;     /* Rich gold */
    --saree-light: #E0F2F1;      /* Light turquoise tint */
    --saree-soft: #F0F7F7;       /* Soft mint background */
    --saree-dark: #0E5E5A;       /* Darker shade for depth */
}

/* Brand Colors */
.text_brown {color: #1A7F7A !important;}
.border_bottom_white {border-bottom: 1px solid #fff;}
.bg_brown {background: linear-gradient(135deg, var(--saree-primary) 0%, var(--saree-dark) 100%);}

.text_primary {color: var(--saree-primary) !important;}
.text_accent {color: var(--saree-accent) !important;}
.border_bottom_white {border-bottom: 1px solid #fff;}
.bg_primary {background-color: var(--saree-primary) !important;}
.bg_accent {background-color: var(--saree-accent) !important;}

/* Header Navigation - Updated for turquoise theme */
.topbar-toolbar a { color: #fff !important; }
.nav-link { color: #fff !important; }

/* Hero Section - Turquoise Theme */
.journey-hero {
    position: relative;
    max-height: 30vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hridaya_pattern {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem 1rem;
    background: linear-gradient(135deg, var(--saree-primary) 0%, var(--saree-dark) 100%);
    background-image: radial-gradient(rgba(255, 255, 255, 0.15) 1.5px, transparent 1.5px);
    background-size: 20px 20px;
    width: 100%;
    position: relative;
    min-height: 30vh;
}
.hridaya_pattern_sub {
    width: 100%;
    position: relative;
}

/* Logo Container - keeping same */
.logo-container {
    margin-bottom: 20px;
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    max-width: 200px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0px 2px 4px rgba(0,0,0,0.3));
    animation: logoGlow 3s ease-in-out infinite alternate;
}

@keyframes logoGlow {
    0% {
        filter: drop-shadow(0px 0px 5px rgba(230, 180, 34, 0.3)) 
                drop-shadow(0px 2px 4px rgba(0,0,0,0.3));
    }
    100% {
        filter: drop-shadow(0px 0px 15px rgba(230, 180, 34, 0.7)) 
                drop-shadow(0px 2px 4px rgba(0,0,0,0.3));
    }
}

/* Loader Content - Updated colors */
.loader-content {
    text-align: center;
    width: 90%;
    max-width: 500px;
    position: relative;
    margin: 0 auto;
}

.thari {
    position: relative;
    width: 100%;
    height: 120px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="400" height="120" viewBox="0 0 400 120"><rect x="50" y="15" width="300" height="8" fill="%23E6B422" rx="2"/><rect x="50" y="97" width="300" height="8" fill="%23E6B422" rx="2"/><line x1="50" y1="23" x2="50" y2="97" stroke="%23ffffff" stroke-width="2.5"/><line x1="350" y1="23" x2="350" y2="97" stroke="%23ffffff" stroke-width="2.5"/><line x1="60" y1="35" x2="340" y2="35" stroke="%23ffffff55" stroke-width="1" stroke-dasharray="2,3"/><line x1="60" y1="55" x2="340" y2="55" stroke="%23ffffff55" stroke-width="1" stroke-dasharray="2,3"/><line x1="60" y1="75" x2="340" y2="75" stroke="%23ffffff55" stroke-width="1" stroke-dasharray="2,3"/></svg>');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    margin: 30px auto;
    filter: drop-shadow(0px 2px 3px rgba(0, 0, 0, 0.3));
}

.naadaa {
    position: absolute;
    width: 35px;
    height: 18px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="35" height="18" viewBox="0 0 35 18"><rect x="0" y="4" width="35" height="10" rx="5" fill="%23E6B422"/><rect x="13" y="0" width="9" height="18" fill="%23E6B422"/></svg>');
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    filter: drop-shadow(0px 1px 2px rgba(0,0,0,0.3));
    z-index: 10;
}

.loading-text {
    color: #ffffff;
    font-family: 'Marcellus', serif;
    font-size: 22px;
    margin-top: 25px;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    text-shadow: 0px 1px 2px rgba(0,0,0,0.3);
}

.loading-text:after {
    content: '';
    position: absolute;
    width: 45px;
    height: 2px;
    background: var(--saree-accent);
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
}

.tagline {
    color: #FFFFFF;
    font-family: 'Petit Formal Script', cursive;
    font-size: 20px;
    margin-top: 20px;
    line-height: 1.4;
    text-shadow: 0px 1px 1px rgba(0,0,0,0.3);
}

.loading-dots {
    display: inline-block;
    margin-top: 15px;
}

.loading-dots span {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--saree-accent);
    margin: 0 3px;
    opacity: 0;
    animation: pulse 1.5s infinite ease-in-out;
}

.loading-dots span:nth-child(1) { animation-delay: 0s; }
.loading-dots span:nth-child(2) { animation-delay: 0.3s; }
.loading-dots span:nth-child(3) { animation-delay: 0.6s; }

@keyframes pulse {
    0%, 100% { transform: scale(0.8); opacity: 0.3; }
    50% { transform: scale(1.2); opacity: 1; }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    font-family: 'Marcellus', serif;
    font-size: 14px;
    letter-spacing: 2px;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-left: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(-45deg);
    margin: 10px auto 0;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateX(-50%) translateY(0);}
    40% {transform: translateX(-50%) translateY(-20px);}
    60% {transform: translateX(-50%) translateY(-10px);}
}

/* Woven Timeline Container - Turquoise Theme */
.woven-timeline-container {
    background: linear-gradient(135deg, #F5FCFC 0%, var(--saree-soft) 100%);
    position: relative;
    overflow: hidden;
}

.woven-timeline-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-image: repeating-linear-gradient(45deg, rgba(26, 127, 122, 0.03) 0px, rgba(26, 127, 122, 0.03) 20px, transparent 20px, transparent 40px);
    pointer-events: none;
}

/* Section Header with Saree Divider - Updated colors */
.saree-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.saree-pallu-left, .saree-pallu-right {
    width: 80px;
    height: 30px;
    background: linear-gradient(145deg, var(--saree-accent), #F4C542);
    clip-path: polygon(0 0, 100% 0, 85% 100%, 15% 100%);
    opacity: 0.6;
}

.section-title {
    font-size: 42px;
    font-weight: 600;
    margin: 0;
    color: #333;
}

.section-subtitle {
    font-size: 18px;
    margin-top: -10px;
    color: var(--saree-primary) !important;
}

/* Category Filter Container - Turquoise Theme */
.category-filter-container {
    position: relative;
    padding: 30px 20px;
    background: linear-gradient(145deg, #fff, var(--saree-soft));
    border-radius: 60px;
    margin: 20px 0;
    box-shadow: 0 10px 30px rgba(26, 127, 122, 0.08);
    border: 1px solid rgba(230, 180, 34, 0.15);
}

.category-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.label-thread {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--saree-accent), transparent);
}

.label-text {
    font-family: 'Petit Formal Script', cursive;
    color: var(--saree-primary);
    font-size: 16px;
    letter-spacing: 1px;
}

.category-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.category-btn {
    position: relative;
    padding: 12px 25px 12px 35px;
    background: white;
    border: 1px solid rgba(230, 180, 34, 0.3);
    border-radius: 40px;
    font-family: 'Marcellus', serif;
    font-size: 16px;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    min-width: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.02);
}

.category-btn .btn-thread {
    position: absolute;
    left: 15px;
    width: 12px;
    height: 2px;
    background: var(--saree-accent);
    transition: all 0.3s ease;
}

.category-btn:hover {
    border-color: var(--saree-primary);
    color: var(--saree-primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(26, 127, 122, 0.12);
}

.category-btn:hover .btn-thread {
    width: 20px;
    background: var(--saree-primary);
}

.category-btn.active {
    background: var(--saree-primary);
    color: white;
    border-color: var(--saree-primary);
    box-shadow: 0 10px 20px rgba(26, 127, 122, 0.25);
}

.category-btn.active .btn-thread {
    background: var(--saree-accent);
    width: 20px;
}

.btn-count {
    display: inline-block;
    padding: 2px 8px;
    background: rgba(230, 180, 34, 0.1);
    border-radius: 20px;
    font-size: 12px;
    color: var(--saree-accent);
    transition: all 0.3s ease;
}

.category-btn.active .btn-count {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.category-thread-decoration {
    position: absolute;
    bottom: -10px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--saree-accent) 0px, var(--saree-accent) 10px, transparent 10px, transparent 20px);
    opacity: 0.3;
}

/* Filter Info Bar - Turquoise Theme */
.filter-info-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: white;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(26, 127, 122, 0.05);
    border: 1px solid rgba(230, 180, 34, 0.15);
}

.filter-info-left, .filter-info-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-label {
    font-family: 'Marcellus', serif;
    color: #999;
    font-size: 14px;
}

.filter-value {
    font-family: 'Marcellus', serif;
    color: var(--saree-primary);
    font-size: 16px;
    font-weight: 600;
    padding: 5px 15px;
    background: rgba(26, 127, 122, 0.05);
    border-radius: 30px;
}

.filter-select {
    padding: 8px 30px 8px 15px;
    border: 1px solid rgba(230, 180, 34, 0.2);
    border-radius: 30px;
    font-family: 'Marcellus', serif;
    color: #666;
    background: white;
    cursor: pointer;
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12"><path d="M6 9L1 4h10L6 9z" fill="%231A7F7A"/></svg>');
    background-repeat: no-repeat;
    background-position: right 12px center;
}

.filter-select:focus {
    outline: none;
    border-color: var(--saree-accent);
}

/* Category Badges on Products - Turquoise Theme */
.category-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 5;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.silk-badge {
    background: linear-gradient(135deg, var(--saree-accent), #F4C542);
    color: var(--saree-primary);
}

.cotton-badge {
    background: linear-gradient(135deg, #1A7F7A, #2A9F9A);
    color: white;
}

.semisilk-badge {
    background: linear-gradient(135deg, #5F9EA0, #7FBFBF);
    color: #333;
}

.party-badge {
    background: linear-gradient(135deg, var(--saree-primary), var(--saree-dark));
    color: var(--saree-accent);
    border: 1px solid var(--saree-accent);
}

/* Empty State - Turquoise Theme */
.empty-state {
    padding: 60px 20px;
    position: relative;
}

.empty-thread {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--saree-accent), var(--saree-primary), var(--saree-accent), transparent);
    margin: 0 auto 20px;
    animation: emptyThread 3s infinite;
}

@keyframes emptyThread {
    0%, 100% { width: 100px; opacity: 0.3; }
    50% { width: 200px; opacity: 1; }
}

.reset-btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--saree-primary);
    color: white;
    border: none;
    border-radius: 40px;
    font-family: 'Marcellus', serif;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid var(--saree-accent);
}

.reset-btn:hover {
    background: var(--saree-accent);
    color: var(--saree-primary);
    transform: translateY(-2px);
}

/* Filters Sidebar - Turquoise Theme */
.filters-sidebar {
    background: white;
    border-radius: 30px;
    padding: 25px 20px;
    box-shadow: 0 15px 40px rgba(26, 127, 122, 0.15);
    border: 2px solid var(--saree-accent);
    position: sticky;
    top: 100px;
}

.filter-section {
    margin-bottom: 25px;
}

.filter-heading {
    font-family: 'Marcellus', serif;
    font-size: 18px;
    color: var(--saree-primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-thread {
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--saree-accent), transparent);
}

/* Category Filter Buttons - Vertical Layout */
.category-filter {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.category-btn {
    position: relative;
    padding: 12px 15px 12px 40px;
    background: white;
    border: 1px solid rgba(230, 180, 34, 0.2);
    border-radius: 50px;
    font-family: 'Marcellus', serif;
    font-size: 15px;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

.btn-bullet {
    position: absolute;
    left: 15px;
    width: 8px;
    height: 8px;
    background: var(--saree-accent);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.category-btn:hover {
    border-color: var(--saree-primary);
    color: var(--saree-primary);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(26, 127, 122, 0.1);
}

.category-btn:hover .btn-bullet {
    background: var(--saree-primary);
    transform: scale(1.3);
}

.category-btn.active {
    background: var(--saree-primary);
    color: white;
    border-color: var(--saree-primary);
    box-shadow: 0 5px 15px rgba(26, 127, 122, 0.25);
}

.category-btn.active .btn-bullet {
    background: var(--saree-accent);
    transform: scale(1.3);
}

.btn-count {
    margin-left: auto;
    display: inline-block;
    padding: 2px 8px;
    background: rgba(230, 180, 34, 0.1);
    border-radius: 20px;
    font-size: 12px;
    color: var(--saree-accent);
    transition: all 0.3s ease;
}

.category-btn.active .btn-count {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Sort Options - Radio Buttons */
.sort-filter {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sort-option {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 40px;
    transition: all 0.3s ease;
}

.sort-option:hover {
    background: rgba(26, 127, 122, 0.05);
}

.sort-radio {
    display: none;
}

.sort-radio-custom {
    width: 18px;
    height: 18px;
    border: 2px solid var(--saree-accent);
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
}

.sort-radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 10px;
    height: 10px;
    background: var(--saree-primary);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.sort-radio:checked + .sort-radio-custom {
    border-color: var(--saree-primary);
}

.sort-radio:checked + .sort-radio-custom::after {
    transform: translate(-50%, -50%) scale(1);
}

.sort-label {
    font-family: 'Marcellus', serif;
    font-size: 15px;
    color: #666;
    flex: 1;
}

.sort-option:hover .sort-label {
    color: var(--saree-primary);
}

/* Filter Info - Turquoise Theme */
.filter-info {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: var(--saree-primary);
    border-radius: 50px;
    border: 2px solid var(--saree-accent);
}

.info-thread {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--saree-accent), white, var(--saree-accent), transparent);
}

.info-text {
    font-family: 'Marcellus', serif;
    font-size: 15px;
    color: white;
    white-space: nowrap;
    font-weight: 500;
}

.info-label {
    color: var(--saree-accent);
    margin-right: 5px;
}

.info-value {
    color: white;
    font-weight: 700;
    background: rgba(230, 180, 34, 0.2);
    padding: 3px 10px;
    border-radius: 30px;
    margin-left: 5px;
}

/* Reset Button - Turquoise Theme */
.reset-filter-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(145deg, var(--saree-accent), #F4C542);
    border: none;
    border-radius: 50px;
    font-family: 'Marcellus', serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--saree-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(230, 180, 34, 0.3);
    border: 2px solid white;
}

.reset-filter-btn:hover {
    background: var(--saree-primary);
    color: var(--saree-accent);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(26, 127, 122, 0.3);
    border-color: var(--saree-accent);
}

.reset-filter-btn i {
    font-size: 14px;
    transition: all 0.3s ease;
}

.reset-filter-btn:hover i {
    transform: rotate(180deg);
    color: var(--saree-accent);
}

.reset-inline {
    width: auto;
    padding: 10px 25px;
    margin: 0 auto;
}

/* Products Count Bar - Turquoise Theme */
.products-count-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background: white;
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(26, 127, 122, 0.05);
    border: 1px solid rgba(230, 180, 34, 0.2);
}

.count-label {
    font-family: 'Marcellus', serif;
    font-size: 14px;
    color: #999;
}

.count-number {
    font-family: 'Marcellus', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--saree-primary);
    background: rgba(26, 127, 122, 0.08);
    padding: 2px 12px;
    border-radius: 30px;
}

.count-decoration {
    flex: 1;
    height: 1px;
    background: repeating-linear-gradient(90deg, var(--saree-accent) 0px, var(--saree-accent) 5px, transparent 5px, transparent 10px);
}

/* Responsive */
@media (max-width: 991px) {
    .filters-sidebar {
        position: static;
        margin-bottom: 30px;
    }
    
    .products-count-bar {
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .filter-heading {
        font-size: 16px;
    }
    
    .category-btn {
        font-size: 14px;
    }
    
    .sort-label {
        font-size: 14px;
    }
    
    .saree-pallu-left, .saree-pallu-right {
        width: 40px;
        height: 20px;
    }
    
    .section-title {
        font-size: 28px;
    }
}