        :root {
            --bg-paper: #fcf9f2;
            --card-paper: #ffffff;
            --text-main: #2b2825;
            --text-muted: #6e675f;
            --accent-gold: #c5a059;
            --accent-gold-hover: #a38140;
            --border-paper: #eae3d2;
            --shadow-subtle: 0 10px 30px rgba(43, 40, 37, 0.05);
            --font-calligraphy: 'Alex Brush', cursive;
            --font-serif: 'Cinzel', serif;
            --font-sans: 'Plus Jakarta Sans', sans-serif;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--bg-paper);
            background-image: radial-gradient(#e5dec9 0.75px, transparent 0.75px);
            background-size: 24px 24px;
            color: var(--text-main);
            font-family: var(--font-sans);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        .paper-container {
            max-width: 1000px;
            margin: 20px auto;
            background: var(--bg-paper);
            padding: 40px 20px;
            box-shadow: inset 0 0 100px rgba(0,0,0,0.02);
        }

        /* Calligraphy Branding Header */
        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
            border-bottom: 1px solid var(--border-paper);
            margin-bottom: 40px;
            flex-wrap: wrap;
            gap: 15px;
        }

        .brand-logo {
            font-family: var(--font-serif);
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--text-main);
            text-decoration: none;
            letter-spacing: 1px;
        }

        .brand-logo span {
            font-family: var(--font-calligraphy);
            color: var(--accent-gold);
            font-size: 2.3rem;
            text-transform: none;
            margin-left: 2px;
        }

        nav a {
            font-family: var(--font-serif);
            text-decoration: none;
            color: var(--text-main);
            margin-left: 25px;
            font-size: 0.95rem;
            font-weight: 500;
            letter-spacing: 1px;
            transition: color 0.3s ease;
        }

        nav a:hover {
            color: var(--accent-gold);
        }

        /* Hero Calligraphy Subtitle */
        .hero-title {
            text-align: center;
            margin: 30px 0 50px;
        }

        .hero-title .script {
            font-family: var(--font-calligraphy);
            font-size: 3.2rem;
            color: var(--accent-gold);
            display: block;
            margin-bottom: -10px;
        }

        .hero-title h1 {
            font-family: var(--font-serif);
            font-size: 2rem;
            letter-spacing: 2px;
            color: var(--text-main);
        }

        .hero-title p {
            color: var(--text-muted);
            margin-top: 10px;
            font-size: 0.95rem;
        }

        /* Common Card Design (Paper Aesthetic) */
        .aesthetic-card {
            background: var(--card-paper);
            border: 1px solid var(--border-paper);
            border-radius: 4px;
            box-shadow: var(--shadow-subtle);
            padding: 30px;
            margin-bottom: 60px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .aesthetic-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(43, 40, 37, 0.08);
        }

        .section-tag {
            font-family: var(--font-calligraphy);
            font-size: 2rem;
            color: var(--accent-gold);
            display: block;
        }

        /* Product Section */
        .product-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .product-img-wrapper {
            position: relative;
            border-radius: 4px;
            overflow: hidden;
            border: 8px solid var(--bg-paper);
        }

        .product-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .badge-flipkart {
            display: inline-block;
            background: rgba(197, 160, 89, 0.15);
            color: var(--accent-gold-hover);
            font-size: 0.75rem;
            font-weight: 600;
            padding: 4px 12px;
            border-radius: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }

        .product-details h2 {
            font-family: var(--font-serif);
            font-size: 1.6rem;
            margin-bottom: 10px;
        }

        .product-price {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--text-main);
            margin-bottom: 15px;
        }

        .product-price span {
            font-size: 1rem;
            color: var(--text-muted);
            text-decoration: line-through;
            margin-left: 8px;
            font-weight: 400;
        }

        .product-desc {
            color: var(--text-muted);
            font-size: 0.95rem;
            margin-bottom: 25px;
        }

        /* Button Group Container */
        .btn-group {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 20px;
        }

        /* Base Button Styling */
        .btn-flipkart, .btn-secondary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 24px;
            text-decoration: none;
            font-family: var(--font-serif);
            font-size: 0.85rem;
            letter-spacing: 1px;
            border-radius: 2px;
            transition: all 0.3s ease;
            text-align: center;
            cursor: pointer;
        }

        /* Primary Flipkart Button */
        .btn-flipkart {
            background: var(--accent-gold);
            color: #ffffff;
            border: 1px solid var(--accent-gold);
        }

        .btn-flipkart:hover {
            background: var(--accent-gold-hover);
            border-color: var(--accent-gold-hover);
        }

        /* Secondary Review Button */
        .btn-secondary {
            background: transparent;
            color: var(--text-main);
            border: 1px solid var(--border-paper);
        }

        .btn-secondary:hover {
            background: var(--bg-paper);
            border-color: var(--accent-gold);
            color: var(--accent-gold-hover);
        }

        /* Blog Article Section */
        .article-header {
            border-bottom: 1px solid var(--border-paper);
            padding-bottom: 15px;
            margin-bottom: 20px;
        }

        .article-header h2 {
            font-family: var(--font-serif);
            font-size: 1.6rem;
            margin-top: -5px;
        }

        .article-meta {
            font-size: 0.8rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .article-content p {
            color: var(--text-main);
            margin-bottom: 15px;
            font-size: 0.98rem;
        }

        .article-content blockquote {
            border-left: 2px solid var(--accent-gold);
            padding-left: 20px;
            margin: 20px 0;
            font-style: italic;
            color: var(--text-muted);
        }

        /* Aesthetic Footer */
        footer {
            border-top: 1px solid var(--border-paper);
            padding: 40px 0 20px;
            text-align: center;
        }

        .footer-logo {
            font-family: var(--font-serif);
            font-size: 1.4rem;
            margin-bottom: 10px;
        }

        .footer-logo span {
            font-family: var(--font-calligraphy);
            color: var(--accent-gold);
        }

        .footer-tagline {
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-bottom: 20px;
        }

        .footer-copy {
            font-size: 0.75rem;
            color: var(--text-muted);
            letter-spacing: 0.5px;
        }

        /* Responsive Layout Breakpoints */
        @media (max-width: 768px) {
            .paper-container {
                padding: 20px 15px;
                margin: 0 auto;
            }

            .product-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .hero-title {
                margin: 20px 0 35px;
            }

            .hero-title .script {
                font-size: 2.5rem;
            }

            .hero-title h1 {
                font-size: 1.5rem;
            }

            .aesthetic-card {
                padding: 20px;
                margin-bottom: 40px;
            }
        }

        @media (max-width: 480px) {
            header {
                flex-direction: column;
                text-align: center;
            }

            nav a {
                margin: 0 10px;
            }

            .btn-group {
                flex-direction: column;
                width: 100%;
            }

            .btn-flipkart, .btn-secondary {
                width: 100%;
            }
        }