/* ========================================
   PROFESSIONAL GOKUL VET CARE STYLES
   Complete Enhanced CSS with Hero Section
   ======================================== */

/* Reset and Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #f9fafb;
    color: #1f2937;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* ========================================
   HEADER - Professional Navigation
   ======================================== */
.header {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: translateY(-2px);
}

.logo-icon {
    height: 70px;
    width: 70px;
    object-fit: cover;     
    border-radius: 50%;
   
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
    transition: all 0.3s ease;
}

.logo:hover .logo-icon {
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.3);
}

.logo-title {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #C8A64B 0%, #FFC000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Lucida Handwriting', 'Brush Script MT', cursive;
}

.logo-subtitle {
    font-family: 'Playfair Display', Georgia, serif;
    color: #10b981;
    font-size: 0.9rem;
    font-style: italic;
    font-weight: 500;
}

.desktop-nav {
    display: none;
    gap: 1.5rem;
    align-items: center;
}

.nav-link {
    background: none;
    border: none;
    font-weight: 600;
    color: #4b5563;
    cursor: pointer;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    border-radius: 0.5rem;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #10b981;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 80%;
}

.nav-link:hover, .nav-link.active {
    color: #10b981;
    background: rgba(16, 185, 129, 0.05);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-admin {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.btn-admin:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #4b5563;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav button, .mobile-nav a {
    background: none;
    border: none;
    padding: 0.75rem 1rem;
    text-align: left;
    cursor: pointer;
    border-radius: 0.5rem;
    transition: all 0.3s;
    color: #4b5563;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mobile-nav button:hover, .mobile-nav a:hover {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.whatsapp-btn-mobile {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
    color: white !important;
    margin-top: 0.5rem;
}

.btn-admin-mobile {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
    color: white !important;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 6px 32px rgba(37, 211, 102, 0.6);
    }
}

/* ========================================
   HERO SECTION - Enhanced Premium Design
   ======================================== */
.hero {
    background: linear-gradient(135deg, #fbbf24 0%, #fcd34d 50%, #fde68a 100%);
    min-height: 85vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 4rem 1rem;
    overflow: hidden;
}

/* Animated Background Pattern */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(251,191,36,0.4) 0%, transparent 50%),
        radial-gradient(circle at 60% 20%, rgba(252,211,77,0.3) 0%, transparent 50%);
    animation: heroGlow 15s ease-in-out infinite;
}

@keyframes heroGlow {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="dots" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="rgba(255,255,255,0.15)"/><circle cx="45" cy="45" r="2" fill="rgba(255,255,255,0.15)"/></pattern></defs><rect width="60" height="60" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
    animation: patternMove 30s linear infinite;
}

@keyframes patternMove {
    0% { background-position: 0 0; }
    100% { background-position: 60px 60px; }
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-text {
    flex: 1;
    text-align: center;
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.6rem 1.75rem;
    border-radius: 30px;
    font-weight: 700;
    color: #10b981;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    margin-bottom: 2rem;
    animation: fadeInDown 1s ease, float 3s ease-in-out infinite;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.hero-badge i {
    font-size: 1.1rem;
    animation: spin 20s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hindi-text {
    display: block;
    font-size: 2.25rem;
    font-weight: 900;
    background: linear-gradient(135deg, #1f2937 0%, #374151 50%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.05);
    letter-spacing: -0.5px;
}

.hero-title {
    margin-bottom: 1.75rem;
    animation: fadeInUp 1s ease 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.35rem;
    color: #1f2937;
    font-weight: 700;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    animation: fadeInUp 1s ease 0.4s both;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
}

.hero-subtitle i {
    color: #10b981;
    font-size: 1.5rem;
    animation: leafPulse 2s ease-in-out infinite;
}

@keyframes leafPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.15); opacity: 0.8; }
}

.hero-description {
    font-size: 1.1rem;
    color: #374151;
    max-width: 650px;
    margin: 0 auto 2.5rem;
    line-height: 1.9;
    animation: fadeInUp 1s ease 0.6s both;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeInUp 1s ease 0.8s both;
}

.btn-hero {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 800;
    border-radius: 35px;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.btn-hero:hover::before {
    transform: translateX(100%);
}

.btn-primary-hero {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4);
}

.btn-primary-hero:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 32px rgba(16, 185, 129, 0.5);
}

.btn-primary-hero:active {
    transform: translateY(-2px) scale(1.02);
}

.btn-secondary-hero {
    background: white;
    color: #25D366;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border: 2px solid transparent;
}

.btn-secondary-hero:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.3);
    border-color: #25D366;
}

.btn-secondary-hero:active {
    transform: translateY(-2px) scale(1.02);
}

.hero-features {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.5rem;
    animation: fadeInUp 1s ease 1s both;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: #1f2937;
    font-weight: 700;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.7);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    webkit-backdrop-filter: blur(10px);
}

.hero-feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.25);
    background: rgba(255, 255, 255, 0.9);
}

.hero-feature-item i {
    color: #10b981;
    font-size: 1.4rem;
}

.hero-image {
    flex: 1;
    max-width: 550px;
    animation: fadeInRight 1.2s ease 0.5s both;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-image-wrapper {
    position: relative;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.15));
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 5px solid white;
}

.hero-image-wrapper:hover img {
    transform: scale(1.05) rotate(-2deg);
}

.hero-image-badge {
    position: absolute;
    top: -15px;
    right: -20px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    padding: 1rem 1.75rem;
    border-radius: 30px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.5);
    animation: bounceIn 1.5s ease 1s both, rotate 3s ease-in-out infinite;
    font-size: 1.05rem;
}

@keyframes bounceIn {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes rotate {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

.hero-image-badge i {
    font-size: 1.3rem;
    animation: starPulse 2s ease-in-out infinite;
}

@keyframes starPulse {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(180deg); }
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 1;
}

.hero-wave svg {
    width: 100%;
    height: auto;
    display: block;
    animation: waveMove 8s ease-in-out infinite;
}

@keyframes waveMove {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-20px); }
}

/* ========================================
   PRODUCTS SECTION
   ======================================== */
.products-section {
    padding: 4rem 1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #1f2937 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6b7280;
    font-weight: 500;
}

/* Empty State */
.empty-state {
    grid-column: 1/-1;
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    border-radius: 1rem;
    border: 2px dashed #d1d5db;
}

.empty-state i {
    font-size: 4rem;
    color: #d1d5db;
    margin-bottom: 1rem;
}

.empty-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4b5563;
    margin-bottom: 0.5rem;
}

.empty-subtitle {
    font-size: 1rem;
    color: #9ca3af;
}

/* Admin Form */
.admin-form {
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    padding: 2rem;
    border-radius: 1rem;
    border: 2px solid rgba(16, 185, 129, 0.2);
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #1f2937;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.form-grid input:not(.file-input), .form-grid textarea {
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 0.875rem 1.25rem;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-grid input:focus, .form-grid textarea:focus {
    outline: none;
    border-color: #10b981;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
    transform: translateY(-2px);
}

.file-upload-label {
    display: block;
    font-weight: 700;
    color: #374151;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.file-input {
    display: block;
    width: 100%;
    padding: 1rem;
    border: 2px dashed #d1d5db;
    border-radius: 0.75rem;
    background: white;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.file-input:hover {
    border-color: #10b981;
    background: rgba(16, 185, 129, 0.02);
}

.image-preview, .images-preview-grid {
    margin-top: 1rem;
}

.preview-image-container {
    position: relative;
    display: inline-block;
}

.preview-image {
    max-width: 200px;
    max-height: 200px;
    border-radius: 0.75rem;
    border: 3px solid #e5e7eb;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.remove-image-btn {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: #ef4444;
    color: white;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 1;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
}

.remove-image-btn:hover {
    background: #dc2626;
    transform: scale(1.1);
}

.images-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1rem;
}

.images-preview-grid .preview-image {
    width: 140px;
    height: 140px;
    max-width: 100%;
}

.nutrition-section {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 2px solid #bbf7d0;
}

.nutrition-section h4 {
    margin-bottom: 1rem;
    color: #065f46;
    font-size: 1.15rem;
    font-weight: 800;
}

.nutrition-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: #374151;
}

.checkbox-label input {
    width: 1.25rem;
    height: 1.25rem;
    cursor: pointer;
}

.form-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(16, 185, 129, 0.4);
}

.btn-primary:disabled {
    background: #9ca3af;
    cursor: not-allowed;
    transform: none;
}

.btn-secondary {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    color: white;
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(107, 114, 128, 0.3);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(107, 114, 128, 0.4);
}

.full-width {
    grid-column: 1 / -1 !important;
    width: 100%;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.product-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(16, 185, 129, 0.2);
    border-color: rgba(16, 185, 129, 0.3);
}

.product-image-container {
    position: relative;
    overflow: hidden;
}

.product-discount {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    z-index: 10;
    text-align: center;
}

.discount-percent {
    font-size: 1.1rem;
    font-weight: 900;
    display: block;
}

.discount-text {
    font-size: 0.75rem;
    font-weight: 600;
}

.product-tag {
    position: absolute;
    top: 1rem;
    left: 0;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1f2937;
    font-size: 0.875rem;
    font-weight: 700;
    padding: 0.5rem 1.25rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 0 25px 25px 0;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.product-image {
    width: 100%;
    height: 16rem;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image {
    transform: scale(1.1);
}

.product-details {
    padding: 1.5rem;
}

.product-name {
    font-weight: 800;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.product-volume {
    color: #6b7280;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-pricing {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.product-price {
    font-size: 1.75rem;
    font-weight: 900;
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-original-price {
    color: #9ca3af;
    text-decoration: line-through;
    font-size: 1rem;
    font-weight: 600;
}

.product-stock {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.in-stock {
    color: #10b981;
}

.out-of-stock {
    color: #ef4444;
}

.btn-view {
    width: 100%;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    padding: 0.875rem;
    border-radius: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-view:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.product-admin-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.btn-edit {
    flex: 1;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    border: none;
    padding: 0.75rem;
    border-radius: 0.75rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.btn-edit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.btn-delete {
    flex: 1;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    border: none;
    padding: 0.75rem;
    border-radius: 0.75rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.btn-delete:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4);
}

.product-features {
    padding: 1.5rem;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    font-size: 0.85rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #374151;
    font-weight: 600;
}

.feature-check {
    color: #10b981;
    font-size: 1.1rem;
}

/* ========================================
   FEATURES SECTION
   ======================================== */
.features-section {
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    padding: 4rem 1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    text-align: center;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.3);
}

.feature-icon {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
    color: #059669;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.2);
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 12px 32px rgba(16, 185, 129, 0.3);
}

.feature-card h3 {
    font-weight: 800;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    color: #1f2937;
}

.feature-card p {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.6;
}

/* ========================================
   PRODUCT DETAIL PAGE
   ======================================== */
.page {
    display: none;
}

.page.active {
    display: block;
}

.product-detail-container {
    padding: 2.5rem 1rem;
}

.back-btn {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    border: 2px solid #d1d5db;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    cursor: pointer;
    margin-bottom: 2rem;
    transition: all 0.3s;
    font-weight: 700;
    color: #4b5563;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.back-btn:hover {
    background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
    transform: translateX(-4px);
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.product-images-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.main-image-container {
    width: 100%;
    height: 450px;
    border-radius: 1rem;
    overflow: hidden;
    border: 3px solid #e5e7eb;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.main-image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: white;
}

.thumbnail-images {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 0.5rem 0;
}

.thumbnail-image {
    width: 90px;
    height: 90px;
    border-radius: 0.75rem;
    border: 3px solid #e5e7eb;
    cursor: pointer;
    flex-shrink: 0;
    overflow: hidden;
    transition: all 0.3s;
}

.thumbnail-image:hover, .thumbnail-image.active {
    border-color: #10b981;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.thumbnail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.detail-product-name {
    font-size: 2.5rem;
    font-weight: 900;
    color: #1f2937;
    line-height: 1.2;
}

.detail-description {
    color: #4b5563;
    line-height: 1.9;
    font-size: 1.05rem;
}

.detail-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-radius: 1rem;
}

.detail-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #374151;
    font-weight: 600;
}

.detail-feature-icon {
    color: #10b981;
    font-size: 1.5rem;
}

.detail-pricing {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    padding: 1.5rem;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 1rem;
}

.detail-price {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.detail-original-price {
    font-size: 1.5rem;
    color: #9ca3af;
    text-decoration: line-through;
    font-weight: 600;
}

.detail-volume {
    font-size: 1.25rem;
    color: #059669;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-inquiry {
    width: 100%;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border: none;
    padding: 1.25rem;
    border-radius: 1rem;
    font-weight: 800;
    font-size: 1.15rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.btn-inquiry:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
}

/* Tabs */
.product-tabs {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.tab-buttons {
    display: flex;
    border-bottom: 2px solid #e5e7eb;
    overflow-x: auto;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
}

.tab-btn {
    background: none;
    border: none;
    padding: 1.25rem 2rem;
    cursor: pointer;
    color: #6b7280;
    font-weight: 700;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tab-btn:hover {
    color: #10b981;
    background: rgba(16, 185, 129, 0.05);
}

.tab-btn.active {
    color: #10b981;
    border-bottom-color: #10b981;
    background: white;
}

.tab-content {
    padding: 2.5rem;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.nutrition-table {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.1);
}

.nutrition-title {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    padding: 1.5rem;
    font-size: 1.5rem;
    font-weight: 900;
    color: #065f46;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nutrition-table table {
    width: 100%;
    border-collapse: collapse;
}

.nutrition-table tr {
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
    transition: background 0.3s;
}

.nutrition-table tr:hover {
    background: rgba(16, 185, 129, 0.05);
}

.nutrition-table tr:last-child {
    border-bottom: none;
}

.nutrition-table td {
    padding: 1.25rem;
}

.nutrition-table td:first-child {
    font-weight: 700;
    color: #374151;
    background: rgba(255, 255, 255, 0.5);
}

.nutrition-table td:last-child {
    text-align: right;
    color: #1f2937;
    font-weight: 600;
}

.tab-content-text {
    max-width: 900px;
}

.tab-content-text h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: #1f2937;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.tab-content-text p {
    color: #4b5563;
    margin-bottom: 1.25rem;
    line-height: 1.9;
    font-size: 1.05rem;
}

.tab-content-text ul {
    list-style: none;
    padding-left: 0;
}

.tab-content-text li {
    padding: 0.875rem 0;
    color: #4b5563;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.05rem;
    line-height: 1.6;
}

.tab-content-text li:before {
    content: "✓";
    color: #10b981;
    font-weight: 900;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.label-display {
    text-align: center;
    margin-top: 2rem;
}

.label-display img {
    max-width: 100%;
    max-height: 600px;
    border-radius: 1rem;
    border: 3px solid #e5e7eb;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* ========================================
   ABOUT & CONTACT PAGES
   ======================================== */
.content-page-container {
    padding: 3rem 1rem;
}

.page-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 2rem;
    text-align: center;
    background: linear-gradient(135deg, #1f2937 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.page-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.content-text {
    width: 100%;
    max-width: 800px;
}

.lead-text {
    font-size: 1.25rem;
    color: #374151;
    margin-bottom: 2rem;
    line-height: 1.8;
    font-weight: 500;
}

.content-text h2 {
    font-size: 1.75rem;
    font-weight: 900;
    margin: 2rem 0 1rem;
    color: #1f2937;
}

.content-text p {
    color: #4b5563;
    margin-bottom: 1.25rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.content-text ul {
    list-style: none;
    padding-left: 0;
}

.content-text li {
    padding: 0.75rem 0;
    color: #4b5563;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.05rem;
}

.content-text li:before {
    content: "✓";
    color: #10b981;
    font-weight: 900;
    font-size: 1.5rem;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.contact-info h2, .contact-form-container h2 {
    font-size: 1.75rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    border-radius: 1rem;
    transition: all 0.3s;
}

.contact-item:hover {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    transform: translateX(5px);
}

.contact-icon {
    font-size: 2rem;
    color: #10b981;
    flex-shrink: 0;
}

.contact-item h3 {
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.contact-item p {
    color: #4b5563;
    line-height: 1.6;
}

.contact-link {
    color: #10b981;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: block;
    margin: 0.25rem 0;
}

.contact-link:hover {
    color: #059669;
    text-decoration: underline;
}

.whatsapp-link {
    color: #25D366;
}

.whatsapp-link:hover {
    color: #128C7E;
}

.insta-link {
    color: #E1306C;
}

.insta-link:hover {
    color: #C13584;
}

.business-hours {
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 1rem;
}

.business-hours h3 {
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: #1f2937;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.business-hours p {
    color: #4b5563;
    font-weight: 600;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-form input, .contact-form textarea {
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
}

.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: #10b981;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
    transform: translateY(-2px);
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

/* ========================================
   MODAL
   ======================================== */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    webkit-backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 1rem;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 1.5rem;
    padding: 2.5rem;
    max-width: 450px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-content h2 {
    font-size: 1.75rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: #1f2937;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.modal-content input {
    width: 100%;
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 1rem 1.25rem;
    margin-bottom: 1.25rem;
    font-size: 1rem;
    transition: all 0.3s;
}

.modal-content input:focus {
    outline: none;
    border-color: #10b981;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

.modal-actions {
    display: flex;
    gap: 1rem;
}

.modal-actions button {
    flex: 1;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: white;
    padding: 3rem 1rem 2rem;
    margin-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 1.25rem;
}

.footer-section p {
    color: #d1d5db;
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.75rem;
}

.footer-section button, .footer-section a {
    background: none;
    border: none;
    color: #d1d5db;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    text-decoration: none;
}

.footer-section button:hover, .footer-section a:hover {
    color: #10b981;
    transform: translateX(4px);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    background: rgba(255, 255, 255, 0.1);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    transition: all 0.3s;
}

.social-link:hover {
    background: #10b981;
    transform: translateY(-4px);
}

.footer-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    text-decoration: none;
    margin-top: 1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.footer-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
    color: #9ca3af;
}

.footer-bottom p {
    margin: 0.5rem 0;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
    }

    .mobile-menu-btn {
        display: none;
    }

    .hero {
        min-height: 90vh;
        padding: 5rem 1rem;
    }

    .hero-content {
        flex-direction: row;
        text-align: left;
        align-items: center;
        gap: 4rem;
    }

    .hero-text {
        text-align: left;
        max-width: 600px;
    }

    .hero-subtitle {
        justify-content: flex-start;
    }

    .hero-buttons {
        justify-content: flex-start;
    }

    .hero-features {
        justify-content: flex-start;
    }

    .hindi-text {
        font-size: 2.75rem;
    }

    .hero-description {
        margin: 0 0 2.5rem;
    }

    .form-grid {
        grid-template-columns: 1fr 1fr;
    }

    .nutrition-grid {
        grid-template-columns: 1fr 1fr;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template:repeat(3,1fr);
    }
    .product-detail-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-content {
        flex-direction: row;
        align-items: flex-start;
    }

    .page-image {
        width: 45%;
    }

    .content-text {
        width: 50%;
    }
}

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .nutrition-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hindi-text {
        font-size: 2.5rem;
    }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* ========================================
   LOADING SCREEN STYLES

   ======================================== */

/* Loading Screen Container */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #fbbf24 0%, #fcd34d 50%, #fde68a 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

/* Logo in top-left corner */
.loading-logo-container {
    position: absolute;
    top: 24px;
    left: 24px;
    z-index: 10000;
    animation: fadeInDown 0.8s ease;
}

.loading-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    animation: logoPulse 2s ease-in-out infinite;
}

@keyframes logoPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading spinner container */
.loading-spinner-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Spinner */
.spinner {
    width: 60px;
    height: 60px;
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-top: 5px solid #10b981;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { 
        transform: rotate(0deg); 
    }
    100% { 
        transform: rotate(360deg); 
    }
}

/* Loading text */
.loading-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    text-align: center;
    animation: textPulse 1.5s ease-in-out infinite;
    font-family: 'Lucida Handwriting', 'Brush Script MT', cursive;
}

@keyframes textPulse {
    0%, 100% { 
        opacity: 1; 
    }
    50% { 
        opacity: 0.6; 
    }
}

/* Loading subtitle */
.loading-subtitle {
    font-size: 1rem;
    color: #374151;
    text-align: center;
    font-weight: 500;
}

/* Main content - hidden during loading */
#main-content {
    opacity: 0;
    transition: opacity 0.6s ease;
}

#main-content.visible {
    opacity: 1;
}

/* Responsive Design */
@media (min-width: 768px) {
    .loading-logo {
        width: 100px;
        height: 100px;
    }

    .loading-text {
        font-size: 1.75rem;
    }

    .loading-subtitle {
        font-size: 1.125rem;
    }

    .spinner {
        width: 70px;
        height: 70px;
    }
}

@media (min-width: 1024px) {
    .loading-logo-container {
        top: 32px;
        left: 32px;
    }

    .loading-logo {
        width: 110px;
        height: 110px;
    }
}