/* ============================================= */
/* GLOBAL STYLES & RESETS */
/* ============================================= */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary: #2a6b3c; /* Deep green */
    --secondary: #d4a017; /* Golden yellow */
    --accent: #c56e33; /* Terracotta */
    --light: #fef9e6; /* Light yellowish background */
    --dark: #1d2b38;
    --yellow: #bff104;
    --text: #ff9700;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --radius: 12px;
    --image-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--light);
    overflow-x: hidden;
    min-width: 320px;
}

/* ============================================= */
/* TYPOGRAPHY */
/* ============================================= */
h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
    color: var(--dark);
    font-weight: 700;
    line-height: 1.3;
}

h1 {
    font-size: 3.8rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.8rem;
    position: relative;
    display: inline-block;
    margin-bottom: 3rem;
}

h2:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}

.text-center h2:after {
    left: 50%;
    transform: translateX(-50%);
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* ============================================= */
/* LAYOUT & STRUCTURE */
/* ============================================= */
section {
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ============================================= */
/* BUTTONS */
/* ============================================= */
.btn {
    display: inline-block;
    padding: 14px 35px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: var(--shadow);
    min-height: 44px;
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--accent);
    transition: var(--transition);
    z-index: -1;
}

.btn:hover:before {
    width: 100%;
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    color: white;
}

.btn-secondary {
    background: var(--secondary);
}

.btn-secondary:before {
    background: var(--accent);
}

/* ============================================= */
/* LOADER */
/* ============================================= */
.loader {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at 20% 30%, #0c0c0c, #000);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    z-index: 9999;
    transition: opacity 0.8s ease;
}

.loader-spinner {
    position: relative;
    width: 160px;
    height: 160px;
    margin-bottom: 50px;
    animation: pulse 2s ease-in-out infinite;
}

.loader-circle {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 6px solid transparent;
    animation: spin 2s linear infinite;
}

.loader-circle-1 {
    border-top: 6px solid #ffb300;
    border-bottom: 6px solid #ff6f00;
    box-shadow: 0 0 25px #ff9100, 0 0 60px #ff6f00 inset;
}

.loader-circle-2 {
    border-left: 6px solid #ffd54f;
    border-right: 6px solid #ff9100;
    animation-duration: 1.4s;
    animation-direction: reverse;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 10px #ffb300); }
    50% { transform: scale(1.08); filter: drop-shadow(0 0 30px #ff6f00); }
}

.logo-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    z-index: 5;
    border: 2px solid #ffb30055;
    box-shadow: 0 0 20px #ffb30088;
}

.loader-logo {
    text-align: center;
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: #ffb300;
    position: relative;
}

.brand-name {
    font-size: 2.2rem;
    margin-bottom: 10px;
    height: 2.5rem;
}

.brand-name span {
    display: inline-block;
    opacity: 0;
    transform-origin: center;
    filter: blur(6px);
    animation: serpentWave 1.8s cubic-bezier(0.55, 0, 0.3, 1) forwards;
    text-shadow: 0 0 15px #ff9100, 0 0 35px #ff6f00;
}

.brand-name span:nth-child(1) { animation-delay: 0.3s; }
.brand-name span:nth-child(2) { animation-delay: 0.9s; }
.brand-name span:nth-child(3) { animation-delay: 1.5s; }

@keyframes serpentWave {
    0% {
        opacity: 0;
        transform: translateY(50px) rotateY(40deg) scale(0.6);
    }
    40% {
        opacity: 1;
        transform: translateY(-20px) rotateY(-20deg) scale(1.1);
    }
    70% {
        transform: translateY(10px) rotateY(10deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateY(0deg) scale(1);
        filter: blur(0);
    }
}

.brand-sub {
    font-size: 1.4rem;
    font-weight: 600;
    color: transparent;
    background: linear-gradient(90deg, #fff, #ffb300, #ff6f00, #fff);
    -webkit-background-clip: text;
    background-clip: text;
    background-size: 300%;
    opacity: 0;
    animation: revealText 2s ease-out forwards, shimmer 5s linear infinite;
    animation-delay: 2.4s, 3s;
}

@keyframes revealText {
    0% { opacity: 0; letter-spacing: 10px; filter: blur(6px); }
    50% { opacity: 1; letter-spacing: 4px; }
    100% { opacity: 1; letter-spacing: 3px; filter: blur(0); }
}

@keyframes shimmer {
    0% { background-position: 0%; }
    100% { background-position: 300%; }
}

.particle {
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: radial-gradient(circle, #ffb300, #ff6f00, transparent);
    pointer-events: none;
    animation: floatDot 1.4s ease-out forwards;
    z-index: 10;
}

@keyframes floatDot {
    0% { transform: translateY(10px) scale(0.6); opacity: 1; }
    100% { transform: translateY(-25px) scale(1.4); opacity: 0; }
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

body.loading {
    overflow: hidden;
}

body.loaded {
    overflow: auto;
}

/* ============================================= */
/* NAVBAR */
/* ============================================= */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 30px rgba(255, 179, 0, 0.2);
    animation: navbarEnter 1.5s ease-out forwards;
    transform: translateY(-100%);
    opacity: 0;
}

@keyframes navbarEnter {
    0% { transform: translateY(-100%); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #ffb300, #ff9100, #ff6f00, #ffb300);
    background-size: 200%;
    animation: goldFlow 4s linear infinite;
}

@keyframes goldFlow {
    0% { background-position: 0%; }
    100% { background-position: 200%; }
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.logo img {
    height: 58px;
    width: 58px;
    border: 2px solid rgba(255, 179, 0, 0.6);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(255, 179, 0, 0.3);
    animation: logoGlow 4s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% { box-shadow: 0 0 15px rgba(255, 179, 0, 0.3); }
    50% { box-shadow: 0 0 25px rgba(255, 145, 0, 0.5); }
}

.logo h1 {
    font-size: 1.7rem;
    margin: 0;
    font-weight: 800;
    letter-spacing: 2px;
    color: #ffb300;
    text-shadow: 0 0 10px #ffb30055, 0 0 20px #ff910055;
    position: relative;
}

.logo h1 span {
    color: #ff6f00;
    text-shadow: 0 0 15px #ff910055;
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 2rem;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    font-weight: 600;
    color: #fff;
    font-size: 1.05rem;
    position: relative;
    transition: color 0.3s ease, transform 0.3s ease;
    padding: 8px 0;
}

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, #ffb300, #ff6f00);
    transition: all 0.4s ease;
    transform: translateX(-50%);
    border-radius: 3px;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: #ffb300;
    transform: translateY(-3px);
}

.login-btn {
    background: linear-gradient(135deg, #ffb300, #ff6f00);
    color: #fff;
    font-weight: 700;
    padding: 10px 22px;
    border-radius: 50px;
    transition: 0.4s ease;
    border: none;
    box-shadow: 0 0 15px rgba(255, 145, 0, 0.3);
}

.login-btn:hover {
    background: #000;
    color: #ffb300;
    border: 1px solid #ffb300;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 0 25px rgba(255, 179, 0, 0.5);
}

.login-dropdown {
    position: absolute;
    top: calc(100% + 20px);
    right: 0;
    background: rgba(20, 20, 20, 0.95);
    border: 1px solid rgba(255, 179, 0, 0.3);
    backdrop-filter: blur(12px);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 179, 0, 0.1);
    padding: 15px;
    width: 230px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    display: none;
    z-index: 2000;
    animation: fadeUpGlow 0.4s ease forwards;
}

@keyframes fadeUpGlow {
    0% {
        opacity: 0;
        transform: translateY(30px);
        box-shadow: 0 0 0 rgba(255, 179, 0, 0);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 25px rgba(255, 179, 0, 0.25);
    }
}

.login-dropdown.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.login-dropdown h4 {
    margin-bottom: 15px;
    color: #ffb300;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 700;
    border-bottom: 1px solid rgba(255, 179, 0, 0.3);
    padding-bottom: 8px;
}

.login-option {
    display: block;
    padding: 12px 16px;
    border-radius: 6px;
    color: #ffb300;
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid transparent;
}

.login-option:hover {
    background: #000;
    border: 1px solid #ffb300;
    color: #ffb300;
    transform: translateX(5px);
    animation: goldPulse 1.6s ease-in-out infinite;
}

@keyframes goldPulse {
    0%, 100% { box-shadow: 0 0 10px rgba(255, 179, 0, 0.3); }
    50% { box-shadow: 0 0 25px rgba(255, 179, 0, 0.6); }
}

.login-option i {
    margin-right: 8px;
    color: #ffb300;
    transition: color 0.3s ease;
}

.login-option:hover i {
    color: #ffb300;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.8rem;
}

/* ============================================= */
/* HERO SECTION */
/* ============================================= */
.hero {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #000;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.05);
    filter: brightness(1) contrast(1.05) saturate(1.15);
    transition: opacity 1.5s ease-in-out, transform 6s ease-in-out;
}

.slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        rgba(0, 0, 0, 0.4) 5%,
        rgba(255, 179, 0, 0.08) 45%,
        rgba(0, 0, 0, 0.4) 95%
    );
    opacity: 0.9;
    z-index: 2;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(255, 179, 0, 0.12), transparent 70%),
                radial-gradient(circle at 80% 60%, rgba(255, 145, 0, 0.15), transparent 70%);
    animation: shimmerDust 12s infinite linear alternate;
    z-index: 1;
    pointer-events: none;
}

@keyframes shimmerDust {
    0% { opacity: 0.5; transform: translateX(0); }
    100% { opacity: 1; transform: translateX(25px); }
}

.hero-content {
    position: relative;
    z-index: 5;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUpHero 2s ease forwards;
}

@keyframes fadeUpHero {
    0% { opacity: 0; transform: translateY(60px); filter: blur(5px); }
    100% { opacity: 1; transform: translateY(0); filter: blur(0); }
}

.hero h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #1f1527;
    text-shadow: 0 0 30px rgba(255,179,0,0.5), 0 0 60px rgba(255,111,0,0.3);
    margin-bottom: 1rem;
    animation: glowTitle 4s ease-in-out infinite alternate;
}

@keyframes glowTitle {
    0% { text-shadow: 0 0 20px #ffb30055, 0 0 40px #ff6f0044; }
    100% { text-shadow: 0 0 40px #ffb300, 0 0 80px #ff6f00; }
}

.hero p {
    font-size: 1.2rem;
    color: rgb(255 255 255);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 1.8rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 1rem;
}

.hero-btns .btn {
    font-size: 1rem;
    font-weight: 700;
    padding: 12px 26px;
    border-radius: 50px;
    border: none;
    color: #fff;
    background: linear-gradient(135deg, #ffb300, #ff6f00);
    text-decoration: none;
    box-shadow: 0 0 20px rgba(255,111,0,0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-btns .btn:hover {
    transform: translateY(-3px) scale(1.03);
    background: #000;
    color: #ffb300;
    box-shadow: 0 0 30px rgba(255,179,0,0.6);
}

.hero-btns .btn.btn-secondary {
    background: transparent;
    border: 2px solid #ffb300;
    color: #ffb300;
}

.hero-btns .btn.btn-secondary:hover {
    background: #000;
    color: #ffb300;
    box-shadow: 0 0 25px rgba(255,179,0,0.4);
}

.slider-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.6);
    cursor: pointer;
    transition: 0.4s;
}

.dot.active {
    background: linear-gradient(135deg, #ffb300, #ff6f00);
    box-shadow: 0 0 15px rgba(255,179,0,0.7);
    transform: scale(1.3);
}

/* ============================================= */
/* NOTICE BOARD */
/* ============================================= */
.notice-board-container {
    position: absolute;
    top: 120px;
    right: 30px;
    width: 350px;
    z-index: 10;
    background: white;
    box-shadow: 0 5px 25px rgba(0,0,0,0.2);
    padding: 15px;
    border-radius: var(--radius);
    overflow: hidden;
    border-bottom: 2px solid var(--primary);
}

.notice-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.tab {
    padding: 10px 25px;
    background: transparent;
    border: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--dark);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    border-radius: 4px;
}

.tab.active {
    color: var(--primary);
}

.tab.active:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 10px;
    right: 10px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

.tab-pane {
    display: none;
    max-height: 200px;
    overflow-y: auto;
    padding: 10px;
}

.tab-pane.active {
    display: block;
}

.notice-item {
    padding: 15px;
    background: rgba(254, 249, 230, 0.5);
    border-radius: 8px;
    margin-bottom: 12px;
    position: relative;
    border-left: 4px solid var(--primary);
    transition: var(--transition);
    cursor: pointer;
    padding-right: 60px;
}

.notice-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.notice-item.new {
    background: rgba(197, 110, 51, 0.1);
    border-left: 4px solid var(--accent);
    animation: pulse 2s infinite;
}

.notice-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.notice-title {
    font-weight: 600;
    color: var(--primary);
    font-size: 1.1rem;
}

.new-badge {
    background: var(--accent);
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-left: 10px;
}

.notice-date {
    color: #777;
    font-size: 0.9rem;
}

.notice-item p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.attachment-icon {
    position: absolute;
    right: 15px;
    top: 15px;
    color: var(--primary);
    font-size: 1.2rem;
    background: rgba(255, 255, 255, 0.8);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 2;
}

.attachment-icon:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

/* ============================================= */
/* ABOUT SECTION */
/* ============================================= */
.about {
    background-color: white;
    position: relative;
}

.about-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23fef9e6"/><path d="M0,0 L100,100 M100,0 L0,100" stroke="%23c56e33" stroke-width="0.5" stroke-opacity="0.1"/></svg>');
    opacity: 0.2;
    z-index: 0;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.about-text {
    flex: 1;
}

.about-img {
    flex: 1;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--image-shadow);
    transform: rotate(-2deg);
    transition: var(--transition);
    border: 3px solid var(--light);
    position: relative;
}

.about-img:before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 2px solid rgba(197, 110, 51, 0.3);
    border-radius: var(--radius);
    z-index: 2;
    pointer-events: none;
}

.about-img:hover {
    transform: rotate(0deg);
}

.about-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.about-img:hover img {
    transform: scale(1.05);
}

/* ============================================= */
/* PRODUCTS SECTION */
/* ============================================= */
.products {
    background: linear-gradient(180deg, #faf9f4 0%, #f7f3e8 100%);
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.2rem;
    color: #d4a017;
    text-shadow: 0 0 20px rgba(255, 195, 0, 0.4);
}

.section-title p {
    color: #444;
    font-size: 1.1rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 40px;
    justify-content: center;
}

.product-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(255, 179, 0, 0.4);
}

.product-img {
    height: 250px;
    position: relative;
    overflow: hidden;
    cursor: zoom-in;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-img img {
    transform: scale(1.12);
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 10px;
}

.product-info p {
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.product-stock.in-stock {
    color: #4caf50;
    font-weight: 600;
}

.product-stock.out-of-stock {
    color: #e53935;
}

.discover-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    margin: 10px 0 15px;
}

.discover-tags span {
    background: #f2f2f2;
    border-radius: 30px;
    padding: 5px 10px;
    font-size: 0.8rem;
    color: #444;
    border: 1px solid #ddd;
    transition: 0.3s;
}

.discover-tags span:hover {
    background: #ffb300;
    color: white;
    border-color: #ffb300;
}

.product-actions .btn {
    background: linear-gradient(135deg, #ffb300, #ff6f00);
    color: #fff;
    border-radius: 50px;
    padding: 12px 25px;
    font-weight: 600;
    transition: 0.3s;
}

.product-actions .btn:hover {
    background: #000;
    color: #ffb300;
    box-shadow: 0 0 25px rgba(255, 179, 0, 0.6);
}

#show-all-products {
    display: block;
    margin: 60px auto 0;
    text-align: center;
    background: linear-gradient(135deg, #ffb300, #ff6f00);
    color: white;
    padding: 15px 40px;
    font-size: 1.1rem;
    border-radius: 50px;
    border: none;
    font-weight: 700;
    box-shadow: 0 0 25px rgba(255, 179, 0, 0.5);
    transition: all 0.3s ease;
}

#show-all-products:hover {
    background: #000;
    color: #ffb300;
    transform: translateY(-3px);
    box-shadow: 0 0 35px rgba(255, 179, 0, 0.7);
}

/* ============================================= */
/* ALL PRODUCTS MODAL */
/* ============================================= */
#all-products-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(8px);
    z-index: 9999;
    overflow: hidden;
}

#all-products-modal .modal-content {
    width: 90%;
    max-width: 1500px;
    max-height: 85vh;
    margin: 5vh auto;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(255, 179, 0, 0.3);
    padding: 40px;
    box-shadow: 0 0 50px rgba(255, 179, 0, 0.25);
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
    animation: slideInModal 0.5s ease;
}

@keyframes slideInModal {
    from {
        transform: translateY(40px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 2rem;
    color: #ffb300;
    cursor: pointer;
    transition: 0.3s;
}

.close-modal:hover {
    transform: rotate(90deg);
    color: white;
}

.modal-products-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 30px;
    justify-content: center;
}

.modal-product-card {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
}

.modal-product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 179, 0, 0.4);
}

.modal-product-img {
    height: 260px;
    overflow: hidden;
    cursor: zoom-in;
    position: relative;
}

.modal-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.modal-product-card:hover .modal-product-img img {
    transform: scale(1.1);
    filter: brightness(1.05);
}

.modal-product-info {
    padding: 20px;
    color: #fff;
    text-align: center;
}

.modal-product-info h3 {
    color: #ffb300;
    font-size: 1.2rem;
}

.modal-product-info p {
    color: rgba(255, 255, 255, 0.85);
    margin: 5px 0;
}

/* ============================================= */
/* LIGHTBOX */
/* ============================================= */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border: 3px solid #ffb300;
    box-shadow: 0 0 60px rgba(255, 179, 0, 0.7);
    border-radius: 10px;
    transition: transform 0.4s ease;
}

.lightbox.active {
    display: flex;
}

/* ============================================= */
/* VIDEOS SECTION */
/* ============================================= */
.videos-section {
    margin-top: 4rem;
}

.videos-section h3 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: var(--primary);
    position: relative;
}

.videos-section h3:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.video-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--image-shadow);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.video-card:hover {
    transform: translateY(-10px);
}

.video-thumb {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.video-thumb video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background-color: #f3f3f3;
}

.video-thumb:after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    z-index: 1;
    pointer-events: none;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    transition: var(--transition);
    z-index: 2;
    cursor: pointer;
}

.video-card:hover .play-icon {
    background: var(--primary);
    color: white;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
    padding: 20px;
    background: white;
}

.video-info h4 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.video-info p {
    font-size: 1rem;
    color: var(--text);
}

/* ============================================= */
/* CONTACT SECTION */
/* ============================================= */
.contact {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    position: relative;
}

.contact:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23000" opacity="0.05"/><path d="M0,50 L100,50 M50,0 L50,100" stroke="%23fff" stroke-width="0.5" stroke-opacity="0.1"/></svg>');
}

.contact h2, .contact h3, .contact h4 {
    color: white;
}

.contact h2:after {
    background: var(--accent);
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    position: relative;
    z-index: 1;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-item:hover .contact-icon {
    background: var(--accent);
    color: white;
    transform: rotate(10deg);
}

.contact-details h4 {
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.contact-details p {
    color: rgba(255, 255, 255, 0.85);
}

.contact-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.contact-form h3 {
    color: var(--primary);
    margin-bottom: 25px;
    font-size: 1.8rem;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--dark);
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.8);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(197, 110, 51, 0.2);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* ============================================= */
/* MAP SECTION */
/* ============================================= */
.map-section {
    padding: 5rem 2rem;
    background: white;
}

.map-container {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--image-shadow);
    height: 500px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ============================================= */
/* FOOTER */
/* ============================================= */
footer {
    background: var(--dark);
    color: white;
    padding: 5rem 0 2rem;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.footer-column h3 {
    color: white;
    margin-bottom: 1.8rem;
    font-size: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer-column h3:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--accent);
}

.footer-column p, .footer-column a {
    color: #ddd;
    margin-bottom: 15px;
    display: block;
    text-decoration: none;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--accent);
    padding-left: 8px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 1.2rem;
}

.social-links a:hover {
    background: var(--accent);
    transform: translateY(-5px);
}

.copyright {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1rem;
    color: #aaa;
    position: relative;
    z-index: 1;
}

/* ============================================= */
/* BACK TO TOP BUTTON */
/* ============================================= */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--accent);
    transform: translateY(-5px);
}

/* ============================================= */
/* MODAL STYLES */
/* ============================================= */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    overflow: auto;
}

.modal.active {
    display: flex;
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 30px;
    border-radius: var(--radius);
    width: 90%;
    max-width: 1200px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    animation: modalFade 0.4s ease;
}

.close-modal {
    position: absolute;
    right: 25px;
    top: 15px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--accent);
    transform: rotate(90deg);
}

/* ============================================= */
/* CHATBOT */
/* ============================================= */
.chatbot-container {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 1000;
}

.chatbot-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #ff7f00;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: 0.3s ease;
}

.chatbot-btn:hover {
    background: #ffa940;
    transform: scale(1.1);
}

.chatbot-window {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 350px;
    height: 500px;
    background-color: black;
    background-image: url('../favicon.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 140px;
    border-radius: 20px 20px 0 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    display: none;
    flex-direction: column;
    overflow: hidden;
}

.chatbot-window.active {
    display: flex;
}

.chat-header {
    background: #ff7f00;
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header h3 {
    color: white;
    margin: 0;
    font-weight: bold;
}

.close-chat {
    background: none;
    border: none;
    color: white;
    font-size: 1.3rem;
    cursor: pointer;
}

.chat-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: orange;
}

.chat-message {
    display: flex;
    align-items: flex-end;
    max-width: 100%;
    gap: 10px;
}

.chat-avatar {
    width: 30px;
    height: 30px;
    background: #444;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.bot-container {
    flex-direction: row;
}

.user-container {
    flex-direction: row-reverse;
}

.bot-message {
    background: #1e1e1e;
    padding: 12px 15px;
    border-radius: 18px 18px 18px 0;
    color: orange;
    max-width: 100%;
    box-shadow: 0 2px 8px rgba(255, 165, 0, 0.2);
}

.user-message {
    background: #333;
    padding: 12px 15px;
    border-radius: 18px 18px 0 18px;
    color: orange;
    max-width: 80%;
    box-shadow: 0 2px 8px rgba(255, 165, 0, 0.2);
}

.typing-indicator {
    background: #1e1e1e;
    border-radius: 18px;
    padding: 8px 12px;
    display: flex;
    gap: 4px;
    align-items: center;
}

.typing-indicator span {
    width: 6px;
    height: 6px;
    background: orange;
    border-radius: 50%;
    animation: blink 1s infinite;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes blink {
    0%, 80%, 100% { opacity: 0; }
    40% { opacity: 1; }
}

.chat-input {
    display: flex;
    padding: 15px;
    background: #111;
    border-top: 1px solid #444;
}

.chat-input input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    background: #222;
    color: orange;
    border-radius: 50px;
    margin-right: 10px;
    outline: none;
}

.chat-input input::placeholder {
    color: #888;
}

.chat-input button {
    background: #ff7f00;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: 0.3s ease;
}

.chat-input button:hover {
    background: #ffa940;
}

/* ============================================= */
/* PASSWORD & OTP STYLES */
/* ============================================= */
.password-container {
    position: relative;
    width: 100%;
}

.password-input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.password-input-group input {
    padding: 12px 40px 12px 12px;
    font-size: 16px;
    flex: 1;
    width: 100%;
    box-sizing: border-box;
}

.toggle-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #777;
    cursor: pointer;
    font-size: 1.1rem;
    z-index: 10;
    background: none;
    border: none;
}

.otp-group {
    margin-top: 20px;
    width: 100%;
}

.otp-input-group {
    display: flex;
    gap: 10px;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
}

.btn-otp {
    white-space: nowrap;
    padding: 10px 16px;
    font-size: 14px;
}

.google-signup {
    background-color: #db4a39;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px;
    border: none;
    border-radius: 6px;
    width: 100%;
}

.social-signup {
    margin: 20px 0;
    text-align: center;
}

.social-signup p {
    margin-bottom: 10px;
}

.social-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 20px 0;
}

.social-divider::before,
.social-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #ddd;
}

.social-divider span {
    padding: 0 15px;
    color: #777;
    font-size: 0.9rem;
}

.google-btn-container {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.signupForm button[type="submit"] {
    display: block;
    margin: 25px auto 15px;
    width: 80%;
    max-width: 250px;
}

/* ============================================= */
/* ANIMATIONS */
/* ============================================= */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes slideIn {
    0% { transform: translateX(-100%); }
    70% { transform: translateX(100%); }
    100% { transform: translateX(100%); }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(197, 110, 51, 0.3); }
    70% { box-shadow: 0 0 0 8px rgba(197, 110, 51, 0); }
    100% { box-shadow: 0 0 0 0 rgba(197, 110, 51, 0); }
}

@keyframes modalFade {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================= */
/* FESTIVAL MODAL */
/* ============================================= */
.festival-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(4px);
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease-in-out;
}

.festival-modal .modal-content {
    background: white;
    padding: 0;
    border-radius: 16px;
    text-align: center;
    max-width: 500px;
    width: 92%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    animation: slideUp 0.35s ease-out;
}

#festivalImage {
    display: block;
    width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: contain;
    margin: 0 auto;
}

#festivalMessage {
    padding: 20px;
    color: #1d1d1f;
    font-weight: 600;
    font-size: 1.4rem;
    line-height: 1.4;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.close-btn {
    position: absolute;
    top: 12px;
    right: 15px;
    background: #ff5a5a;
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    cursor: pointer;
    line-height: 28px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    transition: background 0.2s ease, transform 0.2s ease;
    z-index: 10;
}

.close-btn:hover {
    background: #e04848;
    transform: scale(1.1);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* ============================================= */
/* CATEGORY FILTER */
/* ============================================= */
#categoryFilter {
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    background-color: #fff;
    color: #333;
    cursor: pointer;
    transition: 0.3s ease;
    min-width: 180px;
}

#categoryFilter:hover {
    border-color: #888;
}

#categoryFilter:focus {
    outline: none;
    border-color: #555;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}

/* ============================================= */
/* DYNAMIC MEDIA QUERIES - RESPONSIVE DESIGN */
/* ============================================= */

/* Base Mobile First Styles (applies to all devices) */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

section {
    padding: 4rem 1rem;
}

/* Extra Small Devices (Phones, 320px to 575px) */
@media (max-width: 575.98px) {
    section {
        padding: 3rem 1rem;
    }
    
    h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    h2 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    
    h2:after {
        width: 50px;
        bottom: -8px;
    }
    
    p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    /* Loader */
    .loader-spinner {
        width: 70px;
        height: 70px;
    }
    
    .logo-icon {
        width: 50px;
        height: 50px;
    }

    .loader-logo {
        font-size: 1.2rem;
    }
    
    .brand-name {
        font-size: 1.8rem;
    }
    
    .brand-sub {
        font-size: 1rem;
    }
    
    /* Navigation */
    .navbar {
        padding: 12px 1rem;
    }
    
    .logo h1 {
        font-size: 1.2rem;
    }
    
    .logo img {
        width: 45px;
        height: 45px;
    }
    
    .hamburger {
        display: block;
        font-size: 1.5rem;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--light);
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        transition: var(--transition);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 1rem 0;
    }
    
    .nav-links a {
        font-size: 1.1rem;
        color: var(--dark);
    }
    
    .login-btn {
        padding: 8px 12px;
        font-size: 0.85rem;
        min-width: 80px;
    }
    
    .login-dropdown {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 90%;
        max-width: 280px;
        max-height: 80vh;
        overflow-y: auto;
        z-index: 1001;
    }
    
    /* Hero Section */
    .hero {
        height: 60vh;
        padding: 80px 1rem 1rem;
    }
    
    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .hero p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-btns {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .hero-btns .btn {
        width: 100%;
        max-width: 250px;
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    /* Notice Board */
    .notice-board-container {
        position: static;
        width: 100%;
        margin: 1rem auto;
        padding: 1rem;
    }
    
    /* About Section */
    .about-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .about-img {
        max-width: 100%;
        margin: 0 auto;
    }
    
    /* Products Section */
    .products {
        padding: 3rem 1rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-card {
        max-width: 100%;
        margin: 0 auto;
    }
    
    /* Videos Section */
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .video-card {
        max-width: 100%;
    }
    
    /* Contact Section */
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .form-control {
        padding: 10px;
        font-size: 0.9rem;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    /* Chatbot */
    .chatbot-window {
        width: 280px;
        height: 350px;
        right: -10px;
        bottom: 60px;
    }
    
    .chat-body {
        padding: 1rem;
    }
    
    /* Modals */
    .modal-content {
        padding: 1.5rem;
        margin: 10% auto;
        width: 95%;
    }
    
    .modal-products-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Festival Modal */
    .festival-modal .modal-content {
        width: 95%;
        border-radius: 12px;
    }
    
    #festivalImage {
        max-height: 180px;
    }
    
    #festivalMessage {
        font-size: 1rem;
        padding: 1rem;
    }
    
    .close-btn {
        width: 24px;
        height: 24px;
        font-size: 0.9rem;
        line-height: 24px;
    }
    
    /* Back to Top */
    .back-to-top {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        bottom: 15px;
        right: 15px;
    }
    
    /* Buttons */
    .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    #categoryFilter {
        width: 100%;
        font-size: 14px;
    }
}

/* Small Devices (Phones, 576px to 767px) */
@media (min-width: 576px) and (max-width: 767.98px) {
    section {
        padding: 4rem 1.5rem;
    }
    
    h1 {
        font-size: 2.4rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero {
        height: 65vh;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .videos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .modal-products-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Medium Devices (Tablets, 768px to 991px) */
@media (min-width: 768px) and (max-width: 991.98px) {
    section {
        padding: 5rem 2rem;
    }
    
    h1 {
        font-size: 2.8rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .container {
        padding: 0 2rem;
    }
    
    .hero {
        height: 70vh;
        padding-right: 320px;
    }
    
    .hero h1 {
        font-size: 2.6rem;
    }
    
    .notice-board-container {
        width: 300px;
    }
    
    .about-content {
        flex-direction: column;
        gap: 3rem;
    }
    
    .about-img {
        max-width: 80%;
        margin: 0 auto;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .videos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .contact-container {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .modal-products-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .chatbot-window {
        width: 320px;
        height: 420px;
    }
}

/* Large Devices (Desktops, 992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    section {
        padding: 6rem 2rem;
    }
    
    .hero {
        padding-right: 350px;
    }
    
    .notice-board-container {
        width: 320px;
    }
    
    .about-content {
        gap: 4rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .videos-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .modal-products-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

/* Extra Large Devices (Large Desktops, 1200px and up) */
@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
    
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2.5rem;
    }
    
    .videos-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2.5rem;
    }
    
    .modal-products-container {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}
/* ========================================= */
/* FIXED & CLEAN MOBILE NAVIGATION SYSTEM    */
/* ========================================= */

/* ========================================= */
/* PERFECT MOBILE MENU + LOGIN FIXES         */
/* ========================================= */

@media (max-width: 991.98px) {

    /* Side Menu */
    .nav-links {
        position: fixed !important;
        top: 0;
        right: -100%;
        width: 260px;
        height: 100vh;
        background: #111;
        flex-direction: column;
        padding-top: 90px;
        gap: 0;
        overflow-y: auto;
        transition: all 0.35s ease;
        z-index: 9999;
    }

    .nav-links.active {
        right: 0 !important;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        display: block;
        width: 100%;
        padding: 14px;
        font-size: 1.1rem;
        color: white !important;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .nav-links a:hover {
        background: rgba(255,179,0,0.10);
        color: #ffb300 !important;
    }

    /* LOGIN BUTTON */
    .login-btn {
        width: 180px !important;
        margin: 20px auto 10px auto !important; /* less gap below */
        padding: 12px 0 !important;
        display: block;
        text-align: center;
    }

    /* LOGIN DROPDOWN WRAPPER */
    .login-dropdown {
        margin-top: 5px !important; /* reduce spacing */
        padding: 0 !important;
        width: 100% !important;
        text-align: center;
    }

    /* LOGIN OPTIONS TITLE */
    .login-dropdown h4 {
        margin: 8px auto 10px auto !important;
        font-size: 1.1rem;
        color: #ffb300;
        text-align: center;
    }

    /* LOGIN OPTION ITEMS */
    .login-option {
        width: 85%;
        margin: 6px auto !important;  /* center items */
        padding: 12px 0 !important;
        text-align: center;
        border-bottom: 1px solid rgba(255,255,255,0.15);
        font-size: 1rem !important;
        color: #ffb300 !important;
    }

    /* Reduce big gap area under the login button */
    .nav-links li:last-child {
        margin-bottom: 5px !important;
    }

    /* Close Button */
    .mobile-close {
        position: absolute;
        top: 25px;
        right: 25px;
        color: #ffb300;
        font-size: 1.5rem;
        display: block !important;
        cursor: pointer;
        background: transparent;
        border: none;
        z-index: 10001;
    }

    /* Hamburger */
    .hamburger {
        display: flex !important;
        width: 42px;
        height: 42px;
        border: 2px solid #ffb300;
        border-radius: 8px;
        color: #ffb300;
        font-size: 1.3rem;
        align-items: center;
        justify-content: center;
        z-index: 10000;
    }
}



/* Close button for mobile menu */
.mobile-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #ffb300;
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
}

@media (max-width: 991.98px) {
    .mobile-close {
        display: block;
    }
}
/* Mobile-specific improvements */
@media (max-width: 767px) {
    .navbar {
        padding: 12px 5%;
    }

    .logo img {
        width: 45px;
        height: 45px;
    }

    .logo h1 {
        font-size: 1.3rem;
    }

    .nav-links {
        width: 85%;
    }

    /* Ensure notice board doesn't interfere */
    .notice-board-container {
        position: static;
        width: 100%;
        margin: 1rem auto;
        max-width: 400px;
    }

    /* Adjust hero section for mobile */
    .hero {
        padding-top: 80px;
    }

    .hero-content {
        padding: 0 15px;
    }
}



/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}
/* Landscape Orientation for Mobile Devices */
@media (max-height: 600px) and (orientation: landscape) {
    .hero {
        height: 80vh;
        min-height: 400px;
    }
    
    
    .modal-content {
        margin: 5% auto;
        max-height: 90vh;
    }
    
    .festival-modal .modal-content {
        max-height: 90vh;
    }
}

/* Ultra Small Devices (Very small phones) */
@media (max-width: 360px) {
    .hero h1 {
        font-size: 1.6rem;
    }
    
    .hero p {
        font-size: 0.85rem;
    }
    
    #festivalImage {
        max-height: 150px;
    }
    
    #festivalMessage {
        font-size: 0.9rem;
        padding: 0.75rem;
    }
    
    .chatbot-window {
        width: 260px;
        height: 320px;
    }
}

/* High Resolution Displays */
@media (min-resolution: 192dpi) and (max-width: 767px) {
    .hero h1 {
        font-weight: 700;
    }
    
    .btn {
        font-weight: 600;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .btn, .login-btn, .nav-links a, .login-option {
        min-height: 44px;
        padding: 12px 20px;
    }
    
    .product-card, .video-card {
        cursor: default;
    }
    
    .product-card:hover, .video-card:hover {
        transform: none;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .modal-content {
        background: var(--dark);
        color: var(--light);
    }
    
    .contact-form {
        background: rgba(30, 30, 30, 0.95);
    }
}

/* Print Styles */
@media print {
    .navbar,
    .hero-btns,
    .chatbot-container,
    .back-to-top,
    .notice-board-container {
        display: none !important;
    }
    
    section {
        padding: 2rem 0 !important;
    }
    
    .container {
        max-width: 100% !important;
    }
}

/* Container Query Support (Future-Proofing) */
@container (max-width: 400px) {
    .product-card {
        padding: 1rem;
    }
    
    .product-info h3 {
        font-size: 1.1rem;
    }
}

/* Dynamic Grid Adjustments */
@media (max-width: 767px) {
    .discover-tags {
        justify-content: center;
        gap: 4px;
    }
    
    .discover-tags span {
        font-size: 0.75rem;
        padding: 4px 8px;
    }
    
    .social-links {
        gap: 10px;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Form Element Optimizations */
@media (max-width: 575px) {
    .form-group {
        margin-bottom: 1rem;
    }
    
    .password-input-group input,
    .chat-input input {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .otp-input-group {
        justify-content: center;
    }
}



/* Hero Section Height Adjustments */
@media (max-width: 767px) and (orientation: portrait) {
    .hero {
        height: 70vh;
    }
}

@media (max-width: 767px) and (orientation: landscape) {
    .hero {
        height: 85vh;
    }
}

/* Loading Optimizations for Mobile */
@media (max-width: 767px) {
    .loader-spinner {
        width: 80px;
        height: 80px;
    }
    
    .particle {
        width: 3px;
        height: 3px;
    }
}

/* Accessibility Enhancements */
@media (prefers-reduced-data: reduce) {
    .hero-slider .slide {
        background-image: none !important;
    }
    
    .about-img img {
        loading: lazy;
    }
}

/* JavaScript Enhancement Fallbacks */
.no-js .login-container:hover .login-dropdown,
.no-js .login-container:focus-within .login-dropdown {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.no-js .nav-links {
    display: flex;
    position: static;
    height: auto;
}

.no-js .hamburger {
    display: none;
}