    :root {
        --dark-bhagwa: #8B4513;
        --bright-bhagwa: #FF4500;
        --gold: #FFD700;
        --dark-bg: #120a00;
        --glass: rgba(255, 255, 255, 0.08);
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Poppins', sans-serif;
        text-decoration: none !important;
    }

    body {
        background: linear-gradient(180deg, var(--dark-bg) 0%, #2e1500 100%);
        color: #fff;
        overflow-x: hidden;
    }

    /* --- Product Grid --- */
    .container {
        max-width: 1200px;
        margin: auto;
        padding: 40px 15px;
    }

    .section-header {
        font-family: 'Cinzel', serif;
        text-align: center;
        font-size: 2.2rem;
        margin-bottom: 40px;
        color: var(--gold);
        letter-spacing: 2px;
    }

    .product-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }

    /* Product Card Animation */
    .product-card {
        background: var(--glass);
        backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 215, 0, 0.2);
        border-radius: 25px;
        padding: 20px;
        text-align: center;
        transition: all 0.5s ease;
        opacity: 0;
        transform: translateY(50px);
    }

    .product-card.reveal {
        opacity: 1;
        transform: translateY(0);
    }

    .product-card:hover {
        border-color: var(--gold);
        background: rgba(255, 69, 0, 0.15);
        box-shadow: 0 10px 30px rgba(255, 69, 0, 0.3);
    }

    .product-img {
        width: 100%;
        height: 230px;
        object-fit: cover;
        border-radius: 20px;
        margin-bottom: 15px;
        border: 2px solid rgba(255, 255, 255, 0.1);
    }

    .product-name {
        font-size: 1.4rem;
        color: var(--gold);
        margin-bottom: 5px;
    }

    .product-tag {
        color: #bbb;
        font-size: 0.85rem;
        margin-bottom: 20px;
        display: block;
        height: 40px;
    }

    /* Buttons Styling */
    .btn-stack {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .copy-btn-full {
        grid-column: span 2;
    }

    .action-btn {
        padding: 10px;
        border-radius: 12px;
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        transition: 0.3s;
        font-size: 0.8rem;
        border: none;
        cursor: pointer;
        color: white;
    }

    .amz {
        background: #FF9900;
        color: #000;
    }

    .fk {
        background: #2874f0;
    }

    .copy {
        background: rgba(255, 255, 255, 0.15);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .action-btn:hover {
        transform: scale(1.05);
        filter: brightness(1.2);
    }

    /* --- Social Icons Animated --- */
    .social-box {
        display: flex;
        justify-content: center;
        gap: 25px;
        margin: 40px 0;
    }

    .s-icon {
        width: 55px;
        height: 55px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.6rem;
        color: #fff;
        background: var(--glass);
        border: 1.5px solid var(--gold);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        box-shadow: 0 0 0 rgba(255, 215, 0, 0);
    }

    .s-icon:hover {
        background: var(--gold);
        color: #000;
        transform: translateY(-10px) scale(1.2);
        box-shadow: 0 10px 20px rgba(255, 215, 0, 0.4);
    }

    /* --- Pulse CTA --- */
    .cta-container {
        text-align: center;
        padding: 40px 0;
    }

    .main-cta {
        background: linear-gradient(to right, #FF4500, #FFD700);
        padding: 15px 40px;
        border-radius: 50px;
        font-size: 1.1rem;
        font-weight: 800;
        color: #000;
        border: none;
        cursor: pointer;
        animation: pulse 2s infinite;
        display: inline-flex;
        align-items: center;
        gap: 10px;
    }

    @keyframes pulse {
        0% {
            box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
        }

        70% {
            box-shadow: 0 0 0 15px rgba(255, 215, 0, 0);
        }

        100% {
            box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
        }
    }

    footer {
        padding: 50px 20px;
        text-align: center;
        background: #000;
        border-top: 1px solid #332200;
    }

    /* Mobile specific bari-bari cards animation */
    @media (max-width: 768px) {
        .typewriter {
            font-size: 1.8rem;
        }

        .product-grid {
            grid-template-columns: 1fr;
        }

        .product-card {
            margin-bottom: 20px;
        }
    }

    .testimonial-section {
        padding: 60px 20px;
        text-align: center;
        background: rgba(0, 0, 0, 0.2);
    }

    .testimonial-container {
        position: relative;
        max-width: 500px;
        margin: auto;
        height: 220px;
        /* Fixed height for stability */
    }

    .t-card {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 215, 0, 0.1);
        padding: 25px;
        border-radius: 20px;
        opacity: 0;
        transform: scale(0.9);
        transition: all 0.5s ease-in-out;
        pointer-events: none;
    }

    .t-card.active {
        opacity: 1;
        transform: scale(1);
        pointer-events: auto;
    }

    .t-stars {
        color: #FFD700;
        margin-bottom: 15px;
        font-size: 0.9rem;
    }

    .t-content p {
        font-style: italic;
        color: #eee;
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .t-user {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        text-align: left;
    }

    .t-user img {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        border: 2px solid var(--gold);
    }

    .t-user h4 {
        font-size: 1rem;
        color: var(--gold);
        margin: 0;
    }

    .t-user span {
        font-size: 0.75rem;
        color: #aaa;
    }

    /* Navigation Dots */
    .t-dots {
        margin-top: 20px;
        display: flex;
        justify-content: center;
        gap: 8px;
    }

    .dot {
        width: 10px;
        height: 10px;
        background: rgba(255, 215, 0, 0.2);
        border-radius: 50%;
        cursor: pointer;
        transition: 0.3s;
    }

    .dot.active {
        background: var(--gold);
        width: 25px;
        border-radius: 10px;
    }

    .brand-identity {
        padding: 40px 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        background: radial-gradient(circle at center, #3e1a00 0%, #120a00 100%);
        overflow: hidden;
    }

    .logo-wrapper {
        position: relative;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Background Glow Effect */
    .logo-glow {
        position: absolute;
        top: -20px;
        width: 120px;
        height: 120px;
        background: var(--bright-bhagwa);
        filter: blur(50px);
        opacity: 0.4;
        border-radius: 50%;
        animation: pulseGlow 3s infinite alternate;
    }

    /* Icon Animation */
    .brand-logo-icon {
        font-size: 3.5rem;
        color: var(--gold);
        margin-bottom: 10px;
        position: relative;
        z-index: 2;
        filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
        animation: floatIcon 4s ease-in-out infinite;
    }

    /* Text Styling */
    .main-title {
        font-family: 'Cinzel', serif;
        font-size: 3rem;
        letter-spacing: 6px;
        margin: 0;
        background: linear-gradient(to bottom, #FFD700 20%, #FF8C00 80%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-weight: 900;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }

    .main-title .highlight {
        color: var(--bright-bhagwa);
        -webkit-text-fill-color: var(--bright-bhagwa);
    }

    /* Slogan with lines */
    .sub-title-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
        margin-top: -5px;
    }

    .brand-slogan {
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 3px;
        color: #d1b894;
        font-weight: 400;
    }

    .line {
        width: 40px;
        height: 1px;
        background: linear-gradient(to right, transparent, var(--gold), transparent);
    }

    /* Animations */
    @keyframes pulseGlow {
        from {
            transform: scale(1);
            opacity: 0.3;
        }

        to {
            transform: scale(1.5);
            opacity: 0.5;
        }
    }

    /* Mobile Responsive */
    @media (max-width: 600px) {
        .main-title {
            font-size: 2rem;
            letter-spacing: 3px;
        }

        .brand-logo-icon {
            font-size: 2.5rem;
        }

        .brand-slogan {
            font-size: 0.6rem;
        }

        .line {
            width: 20px;
        }
    }

    .photo-slider-section {
        padding: 60px 20px;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(255, 69, 0, 0.1) 100%);
        border-top: 1px solid rgba(255, 215, 0, 0.1);
        border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    }

    .slider-wrapper {
        position: relative;
        max-width: 90%;
        margin: auto;
        overflow: hidden;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        border: 1px solid rgba(255, 215, 0, 0.2);
        height: 300px;
        /* Fixed height for consistency */
    }

    .photo-slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 1.5s ease-in-out;
        display: flex;
        align-items: flex-end;
        /* Caption at bottom */
        justify-content: center;
    }

    .photo-slide.active {
        opacity: 1;
    }

    .photo-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(0.7);
    }

    .slide-caption {
        position: absolute;
        bottom: 20px;
        background: rgba(0, 0, 0, 0.5);
        color: #fff;
        padding: 10px 20px;
        border-radius: 10px;
        font-size: 0.9rem;
        font-weight: 600;
        letter-spacing: 1px;
        max-width: 80%;
        text-align: center;
    }

    @media (max-width: 600px) {
        .slider-wrapper {
            height: 200px;
        }

        .slide-caption {
            font-size: 0.8rem;
            padding: 8px 15px;
        }
    }

    .brand-logo-container {
        width: 120px;
        /* Logo thoda bada dikhega */
        height: auto;
        margin-bottom: 10px;
        position: relative;
        z-index: 2;
        /* No Background, No Border for PNG */
        filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.6));
        /* Logo ke edges chamkenge */
        animation: floatIcon 4s ease-in-out infinite;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .profile-logo {
        width: 100%;
        height: auto;
        display: block;
        object-fit: contain;
    }

    @keyframes floatIcon {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-12px);
        }
    }

    .admin-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.9);
        backdrop-filter: blur(10px);
        display: none;
        justify-content: center;
        align-items: center;
        z-index: 9999;
    }

    .login-card {
        background: #1a1a1a;
        padding: 40px;
        border-radius: 25px;
        border: 1px solid var(--gold);
        text-align: center;
        width: 320px;
    }

    .shadow-icon {
        font-size: 3rem;
        color: var(--gold);
        margin-bottom: 20px;
    }

    #adminPass {
        width: 100%;
        padding: 12px;
        margin: 20px 0;
        border-radius: 10px;
        border: 1px solid #333;
        background: #000;
        color: white;
        text-align: center;
    }

    .login-btn {
        background: var(--gold);
        color: #000;
        border: none;
        padding: 10px 20px;
        border-radius: 10px;
        font-weight: bold;
        cursor: pointer;
        width: 100%;
    }

    .close-btn {
        background: none;
        color: #666;
        border: none;
        margin-top: 15px;
        cursor: pointer;
    }

    .dashboard-card {
        background: rgba(20, 20, 20, 0.95);
        backdrop-filter: blur(20px);
        width: 90%;
        max-width: 600px;
        padding: 30px;
        border-radius: 30px;
        border: 1px solid rgba(255, 215, 0, 0.3);
        max-height: 80vh;
        overflow-y: auto;
    }

    .dash-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 25px;
        border-bottom: 1px solid #333;
        padding-bottom: 15px;
    }

    .dash-header h3 {
        color: var(--gold);
        font-family: 'Cinzel', serif;
    }

    .stats-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .stat-box {
        background: rgba(255, 255, 255, 0.05);
        padding: 20px;
        border-radius: 20px;
        text-align: center;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .stat-box h4 {
        font-size: 0.8rem;
        color: #aaa;
        text-transform: uppercase;
        margin-bottom: 10px;
    }

    .stat-box span {
        font-size: 2rem;
        font-weight: 800;
        color: var(--gold);
    }

    .logout-btn {
        background: #ff4444;
        color: white;
        border: none;
        padding: 5px 15px;
        border-radius: 8px;
        cursor: pointer;
    }

    .dash-footer {
        margin-top: 30px;
        text-align: center;
    }

    .reset-btn {
        background: none;
        color: #666;
        border: 1px solid #444;
        padding: 8px 15px;
        border-radius: 10px;
        cursor: pointer;
        font-size: 0.8rem;
        margin-bottom: 10px;
    }

    .reset-btn:hover {
        color: #ff4444;
        border-color: #ff4444;
    }

    @media (max-width: 500px) {
        .stats-grid {
            grid-template-columns: 1fr;
        }
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
        margin-top: 20px;
    }

    .stat-box {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 215, 0, 0.1);
        padding: 20px;
        border-radius: 20px;
        display: flex;
        align-items: center;
        transition: 0.3s;
    }

    .stat-box:hover {
        background: rgba(255, 215, 0, 0.05);
        transform: translateY(-5px);
        border-color: var(--gold);
    }

    .stat-icon {
        font-size: 2rem;
        color: var(--gold);
        margin-right: 15px;
        width: 50px;
        text-align: center;
    }

    .stat-info h4 {
        font-size: 0.75rem;
        color: #888;
        margin: 0;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .stat-info span {
        font-size: 1.8rem;
        font-weight: bold;
        color: #fff;
    }

    .stat-info small {
        font-size: 0.8rem;
        color: var(--gold);
    }

    .stat-icon {
        filter: drop-shadow(0 0 5px currentColor);
    }

    .copy-toast {
        position: fixed;
        bottom: -100px;
        /* Shuruat mein screen ke niche rahega */
        left: 50%;
        transform: translateX(-50%);
        background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);
        /* Cute Pinkish Gradient */
        color: #3e1a00;
        padding: 12px 25px;
        border-radius: 50px;
        /* Pill shape */
        font-weight: bold;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        z-index: 9999;
        transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        /* Bouncy effect */
        display: flex;
        align-items: center;
        gap: 10px;
        border: 2px solid #fff;
    }

    .copy-toast.show {
        bottom: 30px;
        /* Upar aa jayega */
    }