        /* ========================================
           FONT CONFIGURATION - CHANGE FONTS HERE
           ========================================
           
           To change fonts throughout the website:
           1. Update the Google Fonts import link above (line 8)
           2. Change the font families below
           3. All text will update automatically
           
           Current Setup:
           - Body Text: Nunito (Helvetica-like rounded, friendly)
           - Headings: Montserrat (geometric, modern, pairs well)
           
           Popular Font Combinations:
           ┌─────────────────┬─────────────────────┬──────────────────────┐
           │ BODY FONT       │ HEADING FONT        │ STYLE                │
           ├─────────────────┼─────────────────────┼──────────────────────┤
           │ Nunito          │ Montserrat          │ Modern, Friendly     │
           │ Poppins         │ Playfair Display    │ Elegant, Premium     │
           │ Quicksand       │ Merriweather        │ Classic, Readable    │
           │ Comfortaa       │ Oswald              │ Playful, Bold        │
           │ Source Sans Pro │ Crimson Text        │ Professional         │
           └─────────────────┴─────────────────────┴──────────────────────┘
           
           Google Fonts Import Examples:
           • Nunito + Montserrat: family=Nunito:wght@300;400;500;600;700&family=Montserrat:wght@400;500;600;700
           • Poppins + Playfair: family=Poppins:wght@300;400;500;600&family=Playfair+Display:wght@400;600;700
        */
        :root {
            /* Body text font - Used for paragraphs, descriptions, UI text */
            --body-font: 'Nunito', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, Arial, sans-serif;
            
            /* Heading font - Used for titles, headings, emphasis */
            --heading-font: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, Arial, sans-serif;
            
            /* Colors remain the same */
            --cream: #FCF7EF;
            --royal-purple: #502B78;
            --golden: #F6B020;
            --warm-orange: #F47928;
            --charcoal: #333333;
            --slate: #777777;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
html {
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
}
        
        body {
            font-family: var(--body-font);
            background: var(--cream);
            overflow-x: hidden;
        }
        
        /* ========================================
           LOGO CONFIGURATION - CHANGE LOGO HERE
           ========================================
           
           To replace the logo with your own image:
           1. Upload your logo image to your server
           2. Replace the URL in --logo-image below
           3. Recommended: PNG with transparent background
           4. Size: 200x200px minimum for best quality
           
           Example:
           --logo-image: url('images/traditional-bee-logo.png');
        */
        :root {
            /* Replace this URL with your actual logo image */
            --logo-image: url('logo.png');
                /* 'data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTAiIGhlaWdodD0iNTAiIHZpZXdCb3g9IjAgMCA1MCA1MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGNpcmNsZSBjeD0iMjUiIGN5PSIyNSIgcj0iMjUiIGZpbGw9InVybCgjZ3JhZGllbnQwKSIvPgo8ZGVmcz4KPGxpbmVhckdyYWRpZW50IGlkPSJncmFkaWVudDAiIHgxPSIwIiB5MT0iMCIgeDI9IjUwIiB5Mj0iNTAiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzUwMkI3OCIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiNGNkIwMjAiLz4KPC9saW5lYXJHcmFkaWVudD4KPC9kZWZzPgo8dGV4dCB4PSI1MCUiIHk9IjUwJSIgZG9taW5hbnQtYmFzZWxpbmU9Im1pZGRsZSIgdGV4dC1hbmNob3I9Im1pZGRsZSIgZmlsbD0id2hpdGUiIGZvbnQtZmFtaWx5PSJBcmlhbCIgZm9udC1zaXplPSIxOCIgZm9udC13ZWlnaHQ9ImJvbGQiPlRCPC90ZXh0Pgo8L3N2Zz4K'); */
        }
        
        /* Logo Placeholder - Centralized */
        .logo-placeholder {
            width: 50px;
            height: 50px;
            background-image: var(--logo-image);
            background-size: cover;
            background-position: center;
            border-radius: 50%;
            margin-right: 1rem;
            position: relative;
            overflow: hidden;
            /* Fallback gradient if no image is set */
            /* background-color: var(--royal-purple);
            background-image: var(--logo-image), linear-gradient(135deg, var(--royal-purple), var(--golden)); */
        }
        .footer-logo-placeholder {
            width: 50px;
            height: 50px;
            background-image: var(--logo-image);
            background-size: cover;
            background-position: center;
            border-radius: 50%;
            margin-right: 1rem;
            position: relative;
            overflow: hidden;
            /* Fallback gradient if no image is set */
            background-color: white;
            /* background-image: var(--logo-image), ; */
        }
        
        /* Remove the old pseudo-elements since we're using actual images now */
        .logo-placeholder::before,
        .logo-placeholder::after {
            display: none;
        }
        
        /* Navigation */
        .navbar {
            transition: all 0.3s ease;
        }
        
        .navbar.transparent {
            background: transparent;
            border-bottom: none;
        }
        
        .navbar.sticky {
            background: rgba(252, 247, 239, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(80, 43, 120, 0.1);
        }
        
        /* Hero Section */
        .hero-section {
            min-height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background: linear-gradient(135deg, var(--cream) 0%, rgba(246, 176, 32, 0.1) 50%, rgba(80, 43, 120, 0.1) 100%);
            padding-top: 6rem; /* Prevent overlap with fixed navbar */
        }
        
        .hero-animation {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }
        
        .floating-thread {
            position: absolute;
            width: 2px;
            height: 100px;
            background: linear-gradient(180deg, transparent, var(--golden), transparent);
            animation: float-thread 6s ease-in-out infinite;
        }
        
        @keyframes float-thread {
            0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.3; }
            50% { transform: translateY(-20px) rotate(5deg); opacity: 0.8; }
        }
        
        .hero-mandala {
            position: absolute;
            width: 300px;
            height: 300px;
            border: 2px solid rgba(80, 43, 120, 0.1);
            border-radius: 50%;
            animation: rotate-mandala 20s linear infinite;
        }
        
        @keyframes rotate-mandala {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        .hero-content {
            text-align: center;
            max-width: 800px;
            position: relative;
            z-index: 10;
        }
        
        .hero-logo {
            width: 120px;
            height: 120px;
            margin: 0 auto 2rem;
            background-image: var(--logo-image);
            background-size: cover;
            background-position: center;
            border-radius: 50%;
            position: relative;
            overflow: hidden;
            animation: pulse-glow 3s ease-in-out infinite;
            /* Fallback gradient if no image is set */
            /* background-color: var(--royal-purple);
            background-image: var(--logo-image), linear-gradient(135deg, var(--royal-purple), var(--golden)); */
        }
        
        /* Remove the old pseudo-elements for hero logo */
        .hero-logo::before,
        .hero-logo::after {
            display: none;
        }
        
        @keyframes pulse-glow {
            0%, 100% { 
                box-shadow: 0 0 30px rgba(246, 176, 32, 0.3);
                transform: scale(1);
            }
            50% { 
                box-shadow: 0 0 50px rgba(246, 176, 32, 0.6);
                transform: scale(1.05);
            }
        }
        
        .typewriter {
            border-right: 3px solid var(--golden);
            animation: typewriter-blink 1s infinite;
        }
        
        @keyframes typewriter-blink {
            0%, 50% { border-color: transparent; }
            51%, 100% { border-color: var(--golden); }
        }
        
        /* Story Section */
        .story-section {
            position: relative;
            background: var(--cream);
        }
        
        .story-header {
            padding: 6rem 0 4rem 0;
            text-align: center;
            background: linear-gradient(180deg, rgba(80, 43, 120, 0.05) 0%, transparent 100%);
        }
        
        /* Story Chapter Containers */
        .story-chapter {
            min-height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 100px 0 50px 0;
            overflow: hidden;
        }
        
        /* Initial visibility - show first chapter immediately */
        .story-chapter:first-child .scroll-element {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Silk Thread Progress Line - Only for Story Section */
        .thread-progress-container {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            top: 0;
            height: 100%;
            width: 6px;
            z-index: 5;
            pointer-events: none;
        }
        
        .thread-progress-line {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 0%;
            background: linear-gradient(180deg, var(--golden), var(--royal-purple), var(--warm-orange));
            border-radius: 2px;
            box-shadow: 0 0 15px rgba(246, 176, 32, 0.5);
            transition: height 0.3s ease;
        }
        
        .thread-node {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 14px;
            height: 14px;
            background: var(--golden);
            border: 3px solid var(--cream);
            border-radius: 50%;
            box-shadow: 0 0 20px rgba(246, 176, 32, 0.6);
            opacity: 0;
            transition: all 0.5s ease;
            z-index: 10;
        }
        
        .thread-node.active {
            opacity: 1;
            transform: translateX(-50%) scale(1.2);
        }
        
        /* Chapter Animations - Scroll Controlled */
        .scroll-element {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        
        .scroll-element.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Chapter 1: Cocoon Scene */
        .cocoon-scene {
            position: relative;
            width: 280px;
            height: 280px;
            margin: 0 auto;
        }
        
        .silkworm {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 40px;
            height: 12px;
            background: linear-gradient(90deg, #90EE90, #7CFC00);
            border-radius: 15px;
            z-index: 10;
            transition: all 0.8s ease;
        }
        
        .silkworm.spinning {
            animation: worm-spin 4s ease-in-out infinite;
        }
        
        @keyframes worm-spin {
            0% { transform: translate(-50%, -50%) rotate(0deg); }
            100% { transform: translate(-50%, -50%) rotate(360deg); }
        }
        
        .cocoon-shell {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 100px;
            border: 0px solid var(--golden);
            border-radius: 50%;
            transition: border-width 2s ease-out;
            overflow: hidden;
        }
        
        .cocoon-shell.forming {
            border-width: 8px;
            background: radial-gradient(ellipse at center, 
                rgba(246, 176, 32, 0.3), 
                rgba(80, 43, 120, 0.2),
                rgba(244, 121, 40, 0.1));
        }
        
        .silk-threads-container {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 200px;
            height: 200px;
        }
        
        .silk-thread {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 2px;
            height: 60px;
            background: var(--golden);
            border-radius: 2px;
            transform-origin: bottom center;
            opacity: 0;
            transition: opacity 0.5s ease;
        }
        
        .silk-thread.spinning {
            opacity: 0.6;
            animation: thread-wrap 3s linear infinite;
        }
        
        @keyframes thread-wrap {
            0% { transform: translate(-50%, -100%) rotate(0deg); }
            100% { transform: translate(-50%, -100%) rotate(360deg); }
        }
        
        /* Chapter 2: Weaving Loom */
        .loom-scene {
            position: relative;
            width: 400px;
            height: 280px;
            background: linear-gradient(135deg, #8B4513, #CD853F);
            border-radius: 15px;
            overflow: hidden;
            margin: 0 auto;
        }
        
        .loom-frame {
            position: absolute;
            inset: 15px;
            border: 3px solid #654321;
            border-radius: 8px;
        }
        
        .loom-threads {
            position: absolute;
            top: 25px;
            left: 25px;
            right: 25px;
            bottom: 25px;
        }
        
        .warp-thread {
            position: absolute;
            width: 2px;
            height: 100%;
            background: rgba(255, 255, 255, 0.7);
            transform: scaleY(0);
            transform-origin: top;
            transition: transform 0.5s ease;
        }
        
        .warp-thread.active {
            transform: scaleY(1);
        }
        
        .shuttle {
            position: absolute;
            top: 50%;
            left: 0;
            width: 50px;
            height: 6px;
            background: var(--warm-orange);
            border-radius: 8px;
            transform: translateY(-50%) translateX(-100px);
            transition: transform 1.5s ease-in-out;
        }
        
        .shuttle.weaving {
            transform: translateY(-50%) translateX(320px);
        }
        
        .weft-thread {
            position: absolute;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--golden), transparent);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 1s ease;
        }
        
        .weft-thread.woven {
            transform: scaleX(1);
        }
        
        /* Chapter 3: Saree Draping */
        .saree-scene {
            position: relative;
            width: 260px;
            height: 340px;
            margin: 0 auto;
        }
        
        .woman-figure {
            position: absolute;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 240px;
            background: linear-gradient(180deg, var(--charcoal), var(--slate));
            border-radius: 40px 40px 10px 10px;
        }
        
        .saree-base {
            position: absolute;
            bottom: 60px;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 80px;
            background: linear-gradient(180deg, var(--royal-purple), var(--royal-purple));
            border-radius: 0 0 60px 60px;
            opacity: 0;
            transition: opacity 0.8s ease;
        }
        
        .saree-base.visible {
            opacity: 0.8;
        }
        
        .saree-pleats {
            position: absolute;
            bottom: 60px;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 60px;
            background: repeating-linear-gradient(
                90deg,
                var(--royal-purple) 0px,
                var(--royal-purple) 2px,
                var(--golden) 2px,
                var(--golden) 4px
            );
            clip-path: polygon(30% 0, 70% 0, 100% 100%, 0 100%);
            transform: translateX(-50%) scaleY(0);
            transform-origin: bottom;
            transition: transform 1s ease;
        }
        
        .saree-pleats.formed {
            transform: translateX(-50%) scaleY(1);
        }
        
        .saree-waist {
            position: absolute;
            top: 140px;
            left: 30px;
            width: 120px;
            height: 30px;
            background: linear-gradient(90deg, var(--royal-purple), var(--golden));
            border-radius: 15px;
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 1.2s ease;
        }
        
        .saree-waist.wrapped {
            transform: scaleX(1);
        }
        
        .saree-body {
            position: absolute;
            top: 100px;
            left: 40px;
            width: 100px;
            height: 140px;
            background: linear-gradient(135deg, 
                var(--royal-purple) 0%, 
                var(--golden) 50%, 
                var(--warm-orange) 100%);
            clip-path: polygon(0 20%, 80% 0, 100% 100%, 0 100%);
            transform: scaleX(0);
            transform-origin: left;
            transition: all 1.5s ease;
        }
        
        .saree-body.draped {
            transform: scaleX(1);
            clip-path: polygon(0 20%, 80% 0, 90% 100%, 10% 100%);
        }
        
        .saree-pallu {
            position: absolute;
            top: 80px;
            left: 60px;
            width: 80px;
            height: 120px;
            background: linear-gradient(145deg, 
                rgba(80, 43, 120, 0.9), 
                rgba(246, 176, 32, 0.8),
                rgba(244, 121, 40, 0.7));
            clip-path: polygon(0 0, 0 0, 0 0);
            transition: clip-path 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        
        .saree-pallu.flowing {
            clip-path: polygon(0 0, 100% 15%, 85% 100%, 0 85%);
            animation: pallu-sway 4s ease-in-out infinite;
        }
        
        @keyframes pallu-sway {
            0%, 100% { transform: rotate(-2deg); }
            50% { transform: rotate(2deg); }
        }
        
        /* Chapter 4: Celebration */
        .celebration-scene {
            position: relative;
            width: 350px;
            height: 250px;
            margin: 0 auto;
        }
        
        .celebration-light {
            position: absolute;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            opacity: 0;
            transition: all 0.5s ease;
        }
        
        .celebration-light.glowing {
            opacity: 1;
            animation: gentle-glow 2s ease-in-out infinite;
        }
        
        @keyframes gentle-glow {
            0%, 100% { transform: scale(1); box-shadow: 0 0 10px currentColor; }
            50% { transform: scale(1.2); box-shadow: 0 0 20px currentColor; }
        }
        
        .celebration-center {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0);
            text-align: center;
            transition: transform 1s ease;
        }
        
        .celebration-center.revealed {
            transform: translate(-50%, -50%) scale(1);
        }
        
        /* Story Completion Section */
        .story-completion {
            background: linear-gradient(135deg, var(--royal-purple) 0%, var(--warm-orange) 100%);
            padding: 6rem 0;
            text-align: center;
        }
        
        .completion-animation {
            position: relative;
            margin: 2rem auto;
            width: 200px;
            height: 200px;
        }
        
        .thread-circle {
            position: absolute;
            inset: 0;
            border: 3px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            border-top-color: var(--golden);
            animation: spin-thread-circle 3s linear infinite;
        }
        
        @keyframes spin-thread-circle {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        .completion-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 100%;
            font-size: 4rem;
            color: var(--golden);
            animation: pulse-completion 2s ease-in-out infinite;
        }
        
        @keyframes pulse-completion {
            0%, 100% { transform: translate(-50%, -50%) scale(1); }
            50% { transform: translate(-50%, -50%) scale(1.1); }
        }
        
        /* Responsive Design */
@media (max-width: 768px) {
            .story-chapter {
                padding: 100px 0 30px 0;
                min-height: auto;
            }
            
            .container {
                padding-left: 1rem;
                padding-right: 1rem;
            }
            
            .grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .cocoon-scene,
            .loom-scene,
            .saree-scene,
            .celebration-scene {
                transform: scale(0.7);
                margin: 1rem auto;
            }
            
            .thread-progress-container {
                left: 10px;
                transform: none;
                width: 4px;
            }
            
            .thread-progress-line {
                width: 2px;
            }
            
            .thread-node {
                width: 10px;
                height: 10px;
                left: 50%;
                transform: translateX(-50%);
            }
            
            h1, h2 {
                font-size: 2.5rem;
                line-height: 1.2;
                margin-bottom: 1rem;
            }
            
            .text-xl {
                font-size: 1.1rem;
                line-height: 1.6;
            }
            
            .text-5xl, .text-6xl {
                font-size: 2.5rem;
            }
            
            .story-chapter .grid {
                text-align: center;
            }
            
            .space-y-4 > * + * {
                margin-top: 1rem;
            }
            
            .celebration-scene {
                width: 280px;
                height: 200px;
            }
            
            .logo-placeholder {
                width: 40px;
                height: 40px;
            }
            
            .hero-logo {
                width: 80px;
                height: 80px;
            }
            
            .floating-thread {
                height: 60px;
            }
            
            .hero-mandala {
                width: 200px;
                height: 200px;
            }

            .hero-section {
                padding-bottom: 4rem;
            }
        }
        
@media (max-width: 480px) {
            .story-chapter {
                padding: 90px 0 20px 0;
            }
            
            .cocoon-scene {
                width: 220px;
                height: 220px;
            }
            
            .loom-scene {
                width: 280px;
                height: 200px;
            }
            
            .saree-scene {
                width: 200px;
                height: 280px;
            }
            
            .celebration-scene {
                width: 240px;
                height: 180px;
            }
            
            h1, h2 {
                font-size: 2rem;
                margin-bottom: 0.75rem;
            }
            
            .text-xl {
                font-size: 1rem;
                margin-bottom: 1.5rem;
            }
            
            .px-12 {
                padding-left: 2rem;
                padding-right: 2rem;
            }
            
            .py-4 {
                padding-top: 0.75rem;
                padding-bottom: 0.75rem;
            }
            
            .logo-placeholder {
                width: 35px;
                height: 35px;
            }
            
            .hero-logo {
                width: 60px;
                height: 60px;
            }

            .hero-section {
                padding-bottom: 4rem;
            }
        }
        
        /* Font Utility Classes */
        .font-serif, .font-heading { font-family: var(--heading-font); }
        .font-sans, .font-body { font-family: var(--body-font); }
        
        /* Automatic heading font application */
        h1, h2, h3, h4, h5, h6 {
            font-family: var(--heading-font);
            font-weight: 600;
        }
        
        /* Color Utility Classes */
        .text-royal-purple { color: var(--royal-purple); }
        .text-golden { color: var(--golden); }
        .text-warm-orange { color: var(--warm-orange); }
        .text-charcoal { color: var(--charcoal); }
        .text-slate { color: var(--slate); }
        .bg-cream { background-color: var(--cream); }
        .bg-royal-purple { background-color: var(--royal-purple); }
        .bg-golden { background-color: var(--golden); }
        .bg-warm-orange { background-color: var(--warm-orange); }
        .z-60 { z-index: 60; }
        
        /* Background Patterns */
        .mandala-overlay {
            position: absolute;
            inset: 0;
            background-image: 
                radial-gradient(circle at 20% 80%, rgba(246, 176, 32, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(80, 43, 120, 0.05) 0%, transparent 50%);
        }
        
        .paisley-overlay {
            position: absolute;
            inset: 0;
            background-image: 
                radial-gradient(ellipse at 25% 25%, rgba(244, 121, 40, 0.08) 0%, transparent 60%),
                radial-gradient(ellipse at 75% 75%, rgba(246, 176, 32, 0.08) 0%, transparent 60%);
        }

        /* Guide Card Styling */
        .guide-card {
            background: white;
            border-radius: 1rem;
            padding: 1.5rem;
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }
        .guide-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
.guide-icon {
            width: 3rem;
            height: 3rem;
            border-radius: 9999px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            color: white;
            background: linear-gradient(135deg, var(--royal-purple), var(--golden));
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        /* Responsive table styling for the Pattu guide */
        @media (max-width: 640px) {
            table.responsive-table thead {
                display: none;
            }
            table.responsive-table tr {
                display: block;
                margin-bottom: 0.75rem;
                border-bottom: 1px solid #e5e7eb;
                padding-bottom: 0.75rem;
            }
            table.responsive-table td {
                display: block;
                width: 100%;
                padding-left: 50%;
                position: relative;
                text-align: left;
            }
            table.responsive-table td:nth-child(1)::before {
                content: "Saree Type";
            }
            table.responsive-table td:nth-child(2)::before {
                content: "Region of Origin";
            }
            table.responsive-table td:nth-child(3)::before {
                content: "Key Identifying Feature";
            }
table.responsive-table td::before {
                position: absolute;
                left: 1rem;
                top: 0;
                font-weight: 600;
                width: 45%;
                white-space: nowrap;
            }
}

/* Hide links to the Collection page */
a[href*="collection.html"] {
    display: none !important;
}

