/* ===========================
   Hero Buttons (Export/Products/Email)
   =========================== */
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    justify-content: flex-start;
    align-items: center;
    z-index: 3;
}
.hero-buttons .btn {
    min-width: 210px;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 2px 12px rgba(30,60,114,0.08);
    border-radius: 2rem;
    padding: 0.75rem 1.5rem;
    transition: all 0.2s;
}
.hero-buttons .btn + .btn {
    margin-left: 0;
}
@media (max-width: 991px) {
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }
    .hero-buttons .btn {
        min-width: 100%;
        width: 100%;
        text-align: center;
    }
}

/* ===========================
   Stats Section Fix
   =========================== */
.stats-section .stat-item {
    background: rgba(255,255,255,0.85);
    border-radius: 1.5rem;
    box-shadow: 0 2px 16px rgba(30,60,114,0.07);
    padding: 2rem 1rem 1.5rem 1rem;
    margin-bottom: 1.5rem;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid #fbbf24;
}
.stats-section .stat-item:hover {
    transform: translateY(-6px) scale(1.04);
    box-shadow: 0 8px 32px rgba(30,60,114,0.13);
}
.stats-section .stat-icon {
    font-size: 2.5rem;
    color: #fbbf24;
    margin-bottom: 0.5rem;
}
.stats-section .stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1e3c72;
    margin-bottom: 0.25rem;
}
.stats-section .stat-label {
    font-size: 1.1rem;
    color: #2a5298;
    font-weight: 600;
    letter-spacing: 0.5px;
}
@media (max-width: 767px) {
    .stats-section .stat-item {
        padding: 1.2rem 0.5rem 1rem 0.5rem;
    }
    .stats-section .stat-number {
        font-size: 1.5rem;
    }
}
/* ===========================
   Export Banner (Homepage)
   =========================== */
.export-banner {
    background: linear-gradient(90deg, #2563eb 0%, #1e40af 50%, #38bdf8 100%);
    color: #fff;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    padding: 1rem 0.5rem 1rem 0.5rem;
    border-bottom: 4px solid #fbbf24;
    border-top: 4px solid #fbbf24;
    box-shadow: 0 6px 32px rgba(30,60,114,0.18);
    margin-bottom: 0;
    z-index: 1200;
    position: relative;
    width: 100%;
    text-shadow: 0 3px 12px rgba(30,60,114,0.18), 0 1px 0 #000;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    border-radius: 0 0 1.5rem 1.5rem;
    transition: background 0.3s, color 0.3s;
}
.export-banner img {
    vertical-align: middle;
    border-radius: 3px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    margin: 0 1px;
    height: 28px;
    width: 28px;
    object-fit: cover;
}
@media (max-width: 767px) {
    .export-banner {
        font-size: 1rem;
        padding: 0.6rem 0.2rem;
        flex-direction: column;
        gap: 0.25rem;
    }
    .export-banner img {
        height: 22px;
        width: 22px;
    }
}
/* ===========================
   General Styles
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===========================
   Preloader
   =========================== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #fef3e2 0%, #fed7aa 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
    position: relative;
}

.loader-spinner {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    border: 4px solid rgba(255, 123, 61, 0.2);
    border-top: 4px solid #ff7b3d;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    position: relative;
}

.loader-spinner::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 154, 86, 0.2);
    border-bottom: 4px solid #ff9a56;
    border-radius: 50%;
    animation: spin 1.5s linear infinite reverse;
}

.loader-spinner::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 3px solid rgba(251, 191, 36, 0.2);
    border-right: 3px solid #fbbf24;
    border-radius: 50%;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loader-text {
    animation: fadeInOut 2s ease-in-out infinite;
}

.loader-text i {
    font-size: 2.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    margin-bottom: 1rem;
    animation: pulse-icon 2s ease-in-out infinite;
}

.loader-text h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.loader-text p {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 500;
}

@keyframes fadeInOut {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

:root {
    /* Warm Aesthetic Color Palette for Agarbatti */
    --primary-color: #ff7b3d;
    --secondary-color: #ff9a56;
    --tertiary-color: #d97706;
    --accent-color: #fbbf24;
    --success-color: #10b981;
    --info-color: #f59e0b;
    --warning-color: #f59e0b;
    --danger-color: #dc2626;
    --dark-color: #78350f;
    --light-color: #fef3c7;
    --text-color: #78350f;
    --text-light: #92400e;
    --cream: #fef3e2;
    --warm-cream: #fef1e1;
    --soft-orange: #fed7aa;
    
    /* Warm Aesthetic Gradients */
    --gradient: linear-gradient(135deg, #ff7b3d 0%, #ff9a56 100%);
    --gradient-2: linear-gradient(135deg, #fbbf24 0%, #ff7b3d 100%);
    --gradient-3: linear-gradient(135deg, #ff7b3d 0%, #ff9a56 50%, #fbbf24 100%);
    --gradient-warm: linear-gradient(135deg, #f59e0b 0%, #dc2626 100%);
    --gradient-cool: linear-gradient(135deg, #ff9a56 0%, #d97706 100%);
    --gradient-success: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --gradient-cream: linear-gradient(135deg, #fef3e2 0%, #fed7aa 100%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-color);
    overflow-x: hidden;
    line-height: 1.7;
    font-weight: 500;
    letter-spacing: -0.01em;
}

html {
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 3rem;
    font-weight: 900;
}

h2 {
    font-size: 2.5rem;
    font-weight: 800;
}

h3 {
    font-size: 1.75rem;
    font-weight: 700;
}

/* ===========================
   Navigation
   =========================== */
.navbar {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 1.25rem 0;
    backdrop-filter: blur(20px);
    background: rgba(254, 243, 226, 0.95);
    box-shadow: 0 4px 24px rgba(255, 123, 61, 0.1);
    border-bottom: 1px solid rgba(255, 123, 61, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    animation: slideDown 0.5s ease-out;
}

.navbar.scrolled {
    padding: 0.75rem 0;
    background: rgba(254, 243, 226, 0.98);
    box-shadow: 0 8px 32px rgba(255, 123, 61, 0.15);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.navbar-brand {
    font-size: 1.75rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.navbar-logo {
    height: 45px;
    width: auto;
    transition: transform 0.3s ease;
}

.navbar-logo:hover {
    transform: scale(1.1) rotate(5deg);
}

.navbar-brand i {
    font-size: 2rem;
    animation: pulse-icon 2s ease-in-out infinite;
}

.navbar-brand .brand-icon {
    color: #3b82f6;
}

@keyframes pulse-icon {
    0%, 100% { 
        transform: scale(1);
    }
    50% { 
        transform: scale(1.1);
    }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.brand-name {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Sora', sans-serif;
    letter-spacing: -0.02em;
}

.nav-link {
    font-weight: 600;
    margin: 0 0.5rem;
    padding: 0.75rem 1.25rem !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 12px;
    color: var(--dark-color) !important;
}

.nav-link i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.nav-link::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0.25rem;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 3px;
    background: var(--gradient);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.nav-link:hover::before {
    opacity: 0.1;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-link:hover {
    color: var(--primary-color) !important;
    transform: translateY(-2px);
}

.nav-link:hover i {
    transform: scale(1.2) rotate(5deg);
}

.nav-link.active {
    background: linear-gradient(135deg, rgba(255, 123, 61, 0.15) 0%, rgba(255, 154, 86, 0.15) 100%);
    color: var(--primary-color) !important;
    font-weight: 600;
}

/* ===========================
   Hero Section
   =========================== */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, #ff7b3d 0%, #ff9a56 100%);
    background-image: url('https://images.unsplash.com/photo-1609220136736-443b28dc0e9f?w=1920&h=1080&fit=crop'),
                      linear-gradient(135deg, rgba(255, 123, 61, 0.9) 0%, rgba(255, 154, 86, 0.9) 100%);
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    color: white;
    padding-top: 80px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-3);
    opacity: 0.9;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
}

.shape {
    position: absolute;
    opacity: 0.1;
    animation: float 20s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: white;
    border-radius: 50%;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: white;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    bottom: 20%;
    left: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: white;
    border-radius: 50%;
    top: 50%;
    right: 30%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-30px) rotate(5deg);
    }
    50% {
        transform: translateY(-60px) rotate(-5deg);
    }
    75% {
        transform: translateY(-30px) rotate(5deg);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(254, 243, 226, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    margin-bottom: 1.5rem;
    margin-top: 1.2rem;
    border: 1px solid rgba(255, 123, 61, 0.3);
    color: var(--dark-color);
    box-shadow: 0 4px 15px rgba(255, 123, 61, 0.2);
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-badge i {
    color: #ffd93d;
    margin-right: 0.5rem;
}

.hero-section h1 {
    font-family: 'Playfair Display', serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.gradient-text {
    background: linear-gradient(45deg, #fff, #ffd93d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.hero-section .text-primary {
    color: #fff !important;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary-color) !important;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

.animate-fade-in-delay {
    animation: fadeIn 1s ease-out 0.3s both;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 1s ease-out 0.6s both;
}

/* Export Info Styling */
.export-info {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 1rem;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item i {
    font-size: 1.5rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.info-item span {
    color: white;
    font-size: 0.95rem;
    line-height: 1.6;
}

.info-item strong {
    display: block;
    margin-bottom: 0.2rem;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    flex-wrap: nowrap;
    gap: 1rem;
    align-items: center;
}

.hero-buttons .btn {
    flex: 1 1 auto;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 576px) {
    .hero-buttons {
        gap: 0.5rem;
    }
    
    .hero-buttons .btn {
        font-size: 0.875rem;
        padding: 0.75rem 1rem !important;
    }
    
    .hero-buttons .btn i {
        font-size: 0.9rem;
    }
}

/* Hero Image Container */
.hero-image-container {
    position: relative;
    z-index: 2;
    padding: 2rem;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: visible;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: float-gentle 6s ease-in-out infinite;
    min-height: 600px;
}

.hero-product-image {
    width: 120%;
    height: 600px;
    display: block;
    border-radius: 20px;
    transition: transform 0.5s ease;
    object-fit: cover;
    object-position: center;
}

.hero-image-wrapper:hover .hero-product-image {
    transform: scale(1.05);
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    background: white;
    color: var(--dark-color);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    font-weight: 600;
    font-size: 0.9rem;
    animation: bounce-gentle 3s ease-in-out infinite;
}

.floating-badge i {
    font-size: 1.2rem;
}

.badge-1 {
    top: 10%;
    right: 5%;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    animation-delay: 0s;
}

.badge-2 {
    bottom: 20%;
    left: 5%;
    background: linear-gradient(135deg, #fbbf24 0%, #ff9a56 100%);
    color: var(--dark-color);
    animation-delay: 1s;
}

.badge-3 {
    top: 50%;
    right: 5%;
    background: linear-gradient(135deg, #ff7b3d 0%, #d97706 100%);
    color: white;
    animation-delay: 2s;
}

@keyframes float-gentle {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes bounce-gentle {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive Hero Section */
@media (max-width: 991px) {
    .hero-content {
        margin-bottom: 3rem;
    }
    
    .hero-image-container {
        padding: 1rem;
    }
    
    .floating-badge {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .badge-1, .badge-2, .badge-3 {
        position: relative;
        top: auto;
        right: auto;
        left: auto;
        bottom: auto;
        margin: 0.5rem;
    }
    
    .export-info {
        padding: 1rem;
    }
    
    .info-item i {
        font-size: 1.2rem;
    }
}

@media (max-width: 767px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .info-item span {
        font-size: 0.85rem;
    }
}

/* ===========================
   Section Badges
   =========================== */
.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(247, 147, 30, 0.1) 100%);
    color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    border: 2px solid rgba(255, 107, 53, 0.2);
}

/* ===========================
   Section Title
   =========================== */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title .text-primary {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===========================
   About Section
   =========================== */
.about-image-wrapper {
    position: relative;
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    border-radius: 1.5rem;
    z-index: -1;
}

.about-stat h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

/* ===========================
   Modern Products Section
   =========================== */
.products-section {
    background: linear-gradient(135deg, #fef3e2 0%, #ffffff 50%, #fef3e2 100%);
    position: relative;
}

.product-category-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
    position: relative;
    border: 2px solid transparent;
}

.product-category-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(255, 123, 61, 0.25);
    border-color: rgba(255, 123, 61, 0.3);
}

.product-category-card.featured {
    border: 2px solid #fbbf24;
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #000;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(251, 191, 36, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

.category-image-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.category-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.5s ease;
    padding: 1rem;
}

.product-category-card:hover .category-image-wrapper img {
    transform: scale(1.1) rotate(-2deg);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 123, 61, 0.95) 0%, rgba(247, 147, 30, 0.95) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-category-card:hover .category-overlay {
    opacity: 1;
}

.category-info {
    text-align: center;
    color: white;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s;
}

.product-category-card:hover .category-info {
    transform: translateY(0);
}

.category-info h4 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.category-info p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.btn-category-view {
    width: 60px;
    height: 60px;
    background: white;
    color: var(--primary-color);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-category-view:hover {
    transform: scale(1.15);
    background: #fbbf24;
    color: #000;
}

.category-details {
    padding: 2rem 1.5rem;
    text-align: center;
}

.category-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff7b3d 0%, #ff9a56 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.75rem;
    color: white;
    box-shadow: 0 8px 20px rgba(255, 123, 61, 0.3);
    transition: all 0.3s ease;
}

.product-category-card:hover .category-icon {
    transform: rotate(360deg) scale(1.1);
}

.category-details h5 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.btn-explore {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-explore:hover {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.4);
}

/* Special Products Cards */
.special-product-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border: 2px solid #f1f5f9;
    transition: all 0.3s ease;
    height: 100%;
}

.special-product-card:hover {
    transform: translateY(-8px);
    border-color: #fbbf24;
    box-shadow: 0 15px 35px rgba(251, 191, 36, 0.2);
}

.special-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #fef3e2 0%, #fed7aa 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.special-product-card:hover .special-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #ff7b3d 0%, #ff9a56 100%);
    color: white;
}

.special-product-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--dark-color);
}

.special-product-card p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

/* Custom Order CTA */
.custom-order-cta {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    padding: 2.5rem;
    border-radius: 20px;
    color: white;
    position: relative;
    overflow: hidden;
}

.custom-order-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite;
}

.custom-order-cta h3 {
    color: white;
    font-weight: 800;
}

.custom-order-cta .text-muted {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Responsive Design */
@media (max-width: 991px) {
    .category-image-wrapper {
        height: 250px;
    }
    
    .category-details {
        padding: 1.5rem;
    }
}

@media (max-width: 767px) {
    .category-image-wrapper {
        height: 220px;
    }
    
    .product-category-card {
        margin-bottom: 1rem;
    }
    
    .custom-order-cta {
        padding: 2rem 1.5rem;
        text-align: center;
    }
    
    .custom-order-cta h3 {
        font-size: 1.25rem;
    }
}

/* ===========================
   Products Section (Existing)
   =========================== */
.product-card {
    background: white;
    border-radius: 1.25rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 24px rgba(255, 123, 61, 0.08);
    position: relative;
    border: 1px solid rgba(255, 123, 61, 0.1);
}

.product-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 123, 61, 0.25);
    border-color: rgba(255, 123, 61, 0.3);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 10;
    box-shadow: 0 8px 20px rgba(255, 123, 61, 0.4);
    animation: pulse-badge 2s ease-in-out infinite;
    letter-spacing: 0.05em;
}

.product-badge.popular {
    background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.4);
}

.product-badge.new {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

@keyframes pulse-badge {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 300px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.product-card:hover .product-image img {
    transform: scale(1.15) rotate(2deg);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
    pointer-events: none;
}

.product-card:hover .product-overlay {
    opacity: 1;
    pointer-events: auto;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-overlay .btn {
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s;
}

.product-card:hover .product-overlay .btn {
    transform: translateY(0);
}

.product-body {
    padding: 1.5rem;
    text-align: center;
}

.product-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.product-title {
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--dark-color);
}

.product-description {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 0;
}

/* ===========================
   Features Section
   =========================== */
.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    transition: all 0.4s ease;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.feature-card:hover .feature-icon {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.5);
}

.feature-title {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.feature-description {
    font-size: 0.95rem;
    color: #6c757d;
    margin-bottom: 0;
}

/* ===========================
   Customer Reviews Section
   =========================== */
#reviews {
    background: linear-gradient(135deg, #fef3e2 0%, #ffffff 100%);
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 123, 61, 0.1);
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 123, 61, 0.2);
    border-color: var(--primary-color);
}

.review-stars {
    color: #fbbf24;
    font-size: 1.1rem;
}

.review-stars i {
    margin-right: 0.2rem;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
}

.review-text::before {
    content: '"';
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: Georgia, serif;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 123, 61, 0.1);
}

.review-avatar {
    font-size: 3rem;
    color: var(--primary-color);
    line-height: 1;
}

.review-name {
    font-weight: 600;
    color: var(--dark-color);
    font-size: 1rem;
}

.review-summary-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 2.5rem;
    border-radius: 1rem;
    height: 100%;
    box-shadow: 0 10px 30px rgba(255, 123, 61, 0.3);
    text-align: center;
}

.review-summary-rating {
    margin-bottom: 1rem;
}

.review-summary-rating h1 {
    color: white;
    font-weight: 900;
}

.review-summary-card .review-stars {
    color: #fef3e2;
    font-size: 1.5rem;
    justify-content: center;
    display: flex;
}

.review-summary-card hr {
    border-color: rgba(255, 255, 255, 0.3);
}

.review-summary-stats {
    text-align: left;
}

.stat-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.stat-row span:first-child {
    min-width: 80px;
    font-weight: 500;
    font-size: 0.9rem;
}

.stat-row span:last-child {
    min-width: 45px;
    text-align: right;
    font-weight: 600;
}

.stat-bar {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    overflow: hidden;
}

.stat-fill {
    height: 100%;
    background: white;
    border-radius: 10px;
    transition: width 1s ease;
}

/* ===========================
   Contact Section
   =========================== */
.contact-info-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.8rem;
}

.contact-info-card h5 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

/* ===========================
   Modern Inquiry Form Design
   =========================== */
.inquiry-form-wrapper {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.inquiry-form-wrapper:hover {
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

/* Left Panel - Form Info */
.form-info-panel {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #7e22ce 100%);
    padding: 3rem 2.5rem;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.form-info-panel::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.form-info-panel::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -20%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite reverse;
}

.form-info-content {
    position: relative;
    z-index: 1;
}

.form-icon-badge {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    color: #fbbf24;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: pulse-icon 3s ease-in-out infinite;
}

@keyframes pulse-icon {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.form-info-panel h3 {
    font-size: 1.75rem;
    font-weight: 800;
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Benefits List */
.form-benefits {
    margin: 2rem 0;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.benefit-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.25rem;
    color: #000;
    box-shadow: 0 5px 15px rgba(251, 191, 36, 0.3);
}

.benefit-item h6 {
    font-size: 1rem;
    font-weight: 700;
}

.benefit-item p {
    font-size: 0.875rem;
}

/* Contact Methods */
.form-contact-methods {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.method-link {
    display: block;
    color: #fbbf24;
    text-decoration: none;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
    font-weight: 600;
}

.method-link:hover {
    color: #fff;
    transform: translateX(5px);
}

.method-link i {
    margin-right: 0.5rem;
}

/* Right Panel - Form */
.inquiry-form-card {
    padding: 3rem 2.5rem;
    background: #fff;
}

/* Custom Form Floating Fields */
.form-floating-custom {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-field-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 1.1rem;
    z-index: 2;
    transition: all 0.3s ease;
    pointer-events: none;
}

.form-floating-custom:has(textarea) .form-field-icon {
    top: 1.5rem;
    transform: none;
}

.form-control-modern {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8fafc;
    font-family: inherit;
}

.form-control-modern:focus {
    outline: none;
    border-color: #fbbf24;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.1);
}

.form-control-modern:focus + label,
.form-control-modern:not(:placeholder-shown) + label {
    transform: translateY(-2.5rem) scale(0.85);
    color: #1e3c72;
    font-weight: 600;
}

.form-floating-custom:has(.form-control-modern:focus) .form-field-icon {
    color: #fbbf24;
    transform: translateY(-50%) scale(1.1);
}

.form-floating-custom label {
    position: absolute;
    left: 3rem;
    top: 1rem;
    color: #64748b;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    pointer-events: none;
    transform-origin: left center;
}

.form-control-modern::placeholder {
    color: transparent;
}

textarea.form-control-modern {
    resize: none;
    min-height: 120px;
    padding-top: 1.25rem;
}

select.form-control-modern {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2394a3b8' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
}

select.form-control-modern:focus {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23fbbf24' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
}

/* Submit Button */
.btn-inquiry-submit {
    width: 100%;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 10px 30px rgba(30, 60, 114, 0.3);
}

.btn-inquiry-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    transition: left 0.4s ease;
}

.btn-inquiry-submit:hover::before {
    left: 0;
}

.btn-inquiry-submit .btn-text,
.btn-inquiry-submit .btn-icon {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.btn-inquiry-submit .btn-icon {
    opacity: 0;
    transform: translateX(-10px);
}

.btn-inquiry-submit:hover .btn-icon {
    opacity: 1;
    transform: translateX(0);
}

.btn-inquiry-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(251, 191, 36, 0.4);
}

.btn-inquiry-submit:active {
    transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 991px) {
    .form-info-panel {
        padding: 2.5rem 2rem;
        text-align: center;
    }
    
    .form-icon-badge {
        margin-left: auto;
        margin-right: auto;
    }
    
    .benefit-item {
        justify-content: center;
        text-align: left;
    }
    
    .inquiry-form-card {
        padding: 2.5rem 2rem;
    }
}

@media (max-width: 767px) {
    .form-info-panel {
        padding: 2rem 1.5rem;
    }
    
    .form-icon-badge {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .form-info-panel h3 {
        font-size: 1.5rem;
    }
    
    .inquiry-form-card {
        padding: 2rem 1.5rem;
    }
    
    .form-control-modern {
        padding: 0.875rem 0.875rem 0.875rem 2.75rem;
        font-size: 0.95rem;
    }
    
    .form-floating-custom label {
        left: 2.75rem;
        font-size: 0.9rem;
    }
    
    .btn-inquiry-submit {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}

.contact-form-card {
    background: white;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form-card .form-control,
.contact-form-card .form-select {
    padding: 0.75rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.15);
}

/* ===========================
   WhatsApp Elements
   =========================== */
.whatsapp-cta-card {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    padding: 3rem;
    border-radius: 1.5rem;
    text-align: center;
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.3);
    position: relative;
    overflow: hidden;
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 15px 40px rgba(37, 211, 102, 0.3);
    }
    50% {
        box-shadow: 0 20px 50px rgba(37, 211, 102, 0.5);
    }
}

.whatsapp-cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: ripple 4s linear infinite;
}

@keyframes ripple {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.whatsapp-icon-large {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 3rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.whatsapp-cta-card h3,
.whatsapp-cta-card p {
    position: relative;
    z-index: 1;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: float-whatsapp 3s ease-in-out infinite;
    text-decoration: none;
}

@keyframes float-whatsapp {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
    color: white;
}

.whatsapp-tooltip {
    position: absolute;
    left: 75px;
    background: white;
    color: #25d366;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    pointer-events: none;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

.contact-link {
    color: #6c757d;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: var(--primary-color);
}

.whatsapp-link:hover {
    color: #25d366 !important;
}

/* ===========================
   Buttons
   =========================== */
.btn-primary {
    background: var(--gradient);
    border: none;
    padding: 0.875rem 2.5rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(255, 123, 61, 0.3);
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    letter-spacing: 0.02em;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 123, 61, 0.5);
    background: linear-gradient(135deg, #ff9a56 0%, #d97706 100%);
}

.btn-success {
    background: var(--gradient-success);
    border: none;
    padding: 0.875rem 2.5rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
    border-radius: 12px;
    letter-spacing: 0.02em;
}

.btn-success:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.5);
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
}

.btn-hover-effect {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-hover-effect::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
    z-index: -1;
}

.btn-hover-effect:hover::after {
    width: 300px;
    height: 300px;
}

/* ===========================
   Stats Counter Section
   =========================== */
.stats-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    opacity: 0.5;
}

.stat-item {
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.stat-icon {
    font-size: 3rem;
    color: #ff7b3d;
    animation: pulse 2s ease-in-out infinite;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    margin: 1rem 0;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* ===========================
   Trust Badges Section
   =========================== */
.trust-section {
    background: #fff;
}

.trust-badge {
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.trust-badge:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.trust-icon {
    font-size: 4rem;
    color: #ff7b3d;
    margin-bottom: 1rem;
}

.trust-badge h5 {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

/* ===========================
   Bulk Order Section
   =========================== */
/* ===========================
   Bulk Order Section - Redesigned
   =========================== */
.bulk-order-section {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #7e22ce 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.bulk-order-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(251, 191, 36, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(168, 85, 247, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(96, 165, 250, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.bulk-order-background::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.bulk-order-background::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.section-badge-bulk {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: pulse 2s ease-in-out infinite;
}

.section-badge-bulk i {
    margin-right: 0.5rem;
}

.text-white-75 {
    color: rgba(255, 255, 255, 0.85) !important;
}

.gradient-text-light {
    background: linear-gradient(135deg, #fbbf24 0%, #fcd34d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Bulk Feature Cards */
.bulk-feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.bulk-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.bulk-feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(251, 191, 36, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.bulk-feature-card:hover::before {
    opacity: 1;
}

.bulk-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
    transition: all 0.4s ease;
}

.bulk-feature-card:hover .bulk-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(251, 191, 36, 0.5);
}

.bulk-icon i {
    font-size: 2rem;
    color: #fff;
}

.bulk-feature-card h5 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.bulk-feature-card p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Pricing Tier Cards - Redesigned */
.pricing-tier-card-new {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.3);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-tier-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #94a3b8 0%, #64748b 100%);
}

.pricing-tier-card-new:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    border-color: rgba(251, 191, 36, 0.5);
}

.pricing-tier-card-new.featured-tier {
    transform: scale(1.05);
    border: 3px solid #fbbf24;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 20px 60px rgba(251, 191, 36, 0.3);
}

.pricing-tier-card-new.featured-tier::before {
    background: linear-gradient(90deg, #fbbf24 0%, #f59e0b 100%);
    height: 6px;
}

.pricing-tier-card-new.featured-tier:hover {
    transform: translateY(-15px) scale(1.07);
    box-shadow: 0 30px 70px rgba(251, 191, 36, 0.4);
}

.popular-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #000;
    padding: 0.4rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(251, 191, 36, 0.4);
    z-index: 1;
    animation: pulse 2s ease-in-out infinite;
}

.popular-tag i {
    margin-right: 0.3rem;
}

.tier-badge {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.pricing-tier-card-new:hover .tier-badge {
    transform: scale(1.1) rotate(10deg);
}

.tier-badge-silver {
    background: linear-gradient(135deg, #94a3b8 0%, #64748b 100%);
}

.tier-badge-gold {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
}

.tier-badge-platinum {
    background: linear-gradient(135deg, #a855f7 0%, #7e22ce 100%);
}

.tier-badge i {
    font-size: 2.5rem;
    color: #fff;
}

.tier-title {
    color: #1e293b;
    font-weight: 800;
    margin-bottom: 0.5rem;
    font-size: 1.75rem;
}

.tier-range {
    color: #64748b;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.tier-discount-new {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: #fff;
    padding: 1.5rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    box-shadow: 0 8px 24px rgba(30, 60, 114, 0.2);
}

.discount-number {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
}

.discount-text {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 0.5rem;
    opacity: 0.9;
}

.tier-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    text-align: left;
    flex-grow: 1;
}

.tier-benefits li {
    padding: 0.75rem 0;
    color: #475569;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e2e8f0;
}

.tier-benefits li:last-child {
    border-bottom: none;
}

.tier-benefits i {
    color: #10b981;
    margin-right: 0.75rem;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.btn-tier-silver,
.btn-tier-gold,
.btn-tier-platinum {
    padding: 0.875rem 2rem;
    font-weight: 700;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: none;
    width: 100%;
    font-size: 1.05rem;
}

.btn-tier-silver {
    background: linear-gradient(135deg, #94a3b8 0%, #64748b 100%);
    color: #fff;
}

.btn-tier-silver:hover {
    background: linear-gradient(135deg, #64748b 0%, #475569 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(100, 116, 139, 0.3);
}

.btn-tier-gold {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #000;
}

.btn-tier-gold:hover {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.4);
}

.btn-tier-platinum {
    background: linear-gradient(135deg, #a855f7 0%, #7e22ce 100%);
    color: #fff;
}

.btn-tier-platinum:hover {
    background: linear-gradient(135deg, #9333ea 0%, #6b21a8 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(168, 85, 247, 0.4);
}

/* CTA Card */
.bulk-cta-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.bulk-cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
}

.bulk-cta-card h3 {
    color: #fff;
    font-weight: 800;
    font-size: 1.75rem;
    position: relative;
    z-index: 1;
}

.bulk-cta-card h3 i {
    color: #fbbf24;
    margin-right: 0.5rem;
}

.bulk-cta-card p {
    position: relative;
    z-index: 1;
}

.btn-bulk-cta {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #000;
    padding: 1rem 2.5rem;
    font-weight: 700;
    border-radius: 12px;
    border: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.btn-bulk-cta:hover {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(251, 191, 36, 0.4);
}

.btn-bulk-cta-outline {
    background: transparent;
    color: #fff;
    padding: 1rem 2.5rem;
    font-weight: 700;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.btn-bulk-cta-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.2);
}

/* Responsive Design for Bulk Orders */
@media (max-width: 991px) {
    .bulk-order-section {
        min-height: auto;
    }
    
    .pricing-tier-card-new.featured-tier {
        transform: scale(1);
    }
    
    .pricing-tier-card-new.featured-tier:hover {
        transform: translateY(-10px) scale(1.02);
    }
    
    .bulk-cta-card h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 767px) {
    .section-title {
        font-size: 2rem;
    }
    
    .bulk-feature-card {
        padding: 1.5rem;
    }
    
    .bulk-icon {
        width: 60px;
        height: 60px;
    }
    
    .bulk-icon i {
        font-size: 1.75rem;
    }
    
    .pricing-tier-card-new {
        padding: 2rem 1.5rem;
    }
    
    .tier-title {
        font-size: 1.5rem;
    }
    
    .discount-number {
        font-size: 2.5rem;
    }
    
    .bulk-cta-card {
        padding: 2rem 1.5rem;
    }
    
    .bulk-cta-card h3 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .btn-bulk-cta,
    .btn-bulk-cta-outline {
        padding: 0.875rem 2rem;
        font-size: 1rem;
        width: 100%;
        margin-bottom: 0.75rem;
    }
}

@media (max-width: 575px) {
    .bulk-order-background::before,
    .bulk-order-background::after {
        display: none;
    }
    
    .section-badge-bulk {
        font-size: 0.85rem;
        padding: 0.4rem 1rem;
    }
    
    .tier-benefits {
        font-size: 0.9rem;
    }
    
    .popular-tag {
        font-size: 0.75rem;
        padding: 0.3rem 1rem;
    }
}

/* ===========================
   Export Map Section
   =========================== */
.export-map-section {
    background: #f8f9fa;
}

.country-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid #ff7b3d;
}

.country-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-left-color: #667eea;
}

.country-card i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.country-card h6 {
    color: #2c3e50;
    font-weight: 600;
    margin: 0;
}

/* ===========================
   FAQ Section
   =========================== */
.faq-section {
    background: #f8f9fa;
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 12px !important;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.accordion-button {
    background: #fff;
    color: #2c3e50;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1.5rem;
    border: none;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.accordion-button:not(.collapsed) i {
    color: #fff !important;
}

.accordion-button::after {
    background-size: 1.2rem;
    filter: brightness(0) saturate(100%);
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) saturate(100%) invert(1);
}

.accordion-body {
    padding: 1.5rem;
    background: #fff;
    color: #555;
    line-height: 1.8;
}

/* ===========================
   Footer
   =========================== */
.footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

.footer h5 {
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #adb5bd;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-links a:hover {
    background: var(--gradient);
    transform: translateY(-3px);
}

/* ===========================
   Scroll to Top Button
   =========================== */
.scroll-top-btn {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
    animation: bounce-in 0.5s ease;
}

@keyframes bounce-in {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.scroll-top-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.6);
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 991px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-image-wrapper::before {
        display: none;
    }
    
    .whatsapp-float {
        left: 20px;
        bottom: 90px;
    }
}

@media (max-width: 767px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section .lead {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .contact-form-card {
        padding: 2rem 1.5rem;
    }
    
    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .product-image {
        height: 200px;
    }
    
    .whatsapp-cta-card {
        padding: 2rem 1.5rem;
    }
    
    .whatsapp-icon-large {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
}

@media (max-width: 575px) {
    .hero-section {
        padding-top: 70px;
    }
    
    .hero-section h1 {
        font-size: 1.75rem;
    }
    
    .feature-card,
    .contact-info-card {
        margin-bottom: 1rem;
    }
    
    .scroll-top-btn {
        width: 45px;
        height: 45px;
        bottom: 80px;
        right: 20px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.7rem;
        left: 15px;
        bottom: 20px;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}

/* ===========================
   Loading Animation
   =========================== */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.product-icon {
    animation: pulse 2s ease-in-out infinite;
}

.product-card:hover .product-icon {
    animation: none;
    transform: rotate(360deg);
}

/* ===========================
   Gallery Section - Modern Masonry
   =========================== */
.gallery-filter-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    padding: 0 1rem;
}

.filter-tab {
    background: white;
    border: 2px solid rgba(255, 123, 61, 0.2);
    color: var(--text-color);
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.filter-tab i {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.filter-tab:hover {
    background: linear-gradient(135deg, rgba(255, 123, 61, 0.1) 0%, rgba(255, 154, 86, 0.1) 100%);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 123, 61, 0.2);
}

.filter-tab:hover i {
    transform: scale(1.2) rotate(5deg);
}

.filter-tab.active {
    background: var(--gradient);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(255, 123, 61, 0.4);
    transform: translateY(-3px);
}

.filter-tab.active i {
    animation: pulse-icon 2s ease-in-out infinite;
}

/* Masonry Grid */
.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    padding: 1rem 0;
}

.gallery-masonry-item {
    opacity: 1;
    transform: scale(1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-masonry-item.hide {
    opacity: 0;
    transform: scale(0.8);
    position: absolute;
    pointer-events: none;
}

.gallery-modern-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.gallery-modern-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 123, 61, 0.25);
}

.gallery-modern-card img {
    width: 100%;
    height: 350px;
    object-fit: contain;
    display: block;
    transition: transform 0.5s ease;
    background: linear-gradient(135deg, #fef3e2 0%, #fed7aa 50%, #fef3e2 100%);
    padding: 1.5rem;
}

.gallery-modern-card:hover img {
    transform: scale(1.05);
}

.gallery-modern-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(255, 123, 61, 0.95) 0%, rgba(255, 154, 86, 0.85) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 2rem;
}

.gallery-modern-card:hover .gallery-modern-overlay {
    opacity: 1;
}

.gallery-modern-content {
    width: 100%;
    transform: translateY(30px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-modern-card:hover .gallery-modern-content {
    transform: translateY(0);
}

.gallery-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.gallery-modern-content h4 {
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.gallery-modern-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: var(--primary-color);
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.gallery-modern-btn:hover {
    background: var(--success-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.4);
}

.gallery-modern-btn i {
    font-size: 1.25rem;
}

/* Responsive Gallery */
@media (max-width: 768px) {
    .gallery-masonry {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 1.5rem;
    }
    
    .gallery-modern-card img {
        height: 300px;
    }
    
    .filter-tab {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .filter-tab span {
        display: none;
    }
    
    .filter-tab.active span {
        display: inline;
    }
}

@media (max-width: 576px) {
    .gallery-masonry {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gallery-modern-card img {
        height: 350px;
    }
}
.gallery-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.gallery-tab {
    background: white;
    border: 2px solid rgba(255, 107, 53, 0.2);
    color: var(--text-color);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.gallery-tab:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.gallery-tab.active {
    background: var(--gradient);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.gallery-tab i {
    font-size: 1.2rem;
}

/* Gallery Category Header */
.gallery-category {
    opacity: 0;
    animation: slideInUp 0.8s ease forwards;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gallery-category-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.category-icon-wrapper {
    width: 100px;
    height: 100px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 3rem;
    color: white;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    animation: float-icon 3s ease-in-out infinite;
    position: relative;
}

@keyframes float-icon {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.category-icon-wrapper::before {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    border: 2px dashed rgba(255, 107, 53, 0.3);
    border-radius: 50%;
    animation: rotate-dashed 20s linear infinite;
}

@keyframes rotate-dashed {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.category-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.category-description {
    color: #6c757d;
    font-size: 1.1rem;
}

/* Gallery Grid */
.gallery-grid {
    position: relative;
}

.gallery-item {
    opacity: 0;
    transform: scale(0.8);
    animation: zoomIn 0.6s ease forwards;
}

.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-item:nth-child(4) { animation-delay: 0.4s; }
.gallery-item:nth-child(5) { animation-delay: 0.5s; }
.gallery-item:nth-child(6) { animation-delay: 0.6s; }
.gallery-item:nth-child(7) { animation-delay: 0.7s; }
.gallery-item:nth-child(8) { animation-delay: 0.8s; }

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Gallery Card */
.gallery-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.gallery-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.25);
}

.gallery-image {
    position: relative;
    overflow: hidden;
    height: 280px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.gallery-card:hover .gallery-image img {
    transform: scale(1.2) rotate(3deg);
    filter: brightness(0.9);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.95) 0%, rgba(247, 147, 30, 0.95) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info {
    text-align: center;
    color: white;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s;
}

.gallery-card:hover .gallery-info {
    transform: translateY(0);
}

.gallery-info h5 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.gallery-info p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.gallery-btn {
    width: 50px;
    height: 50px;
    background: white;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    transform: scale(0);
    transition: all 0.4s ease 0.2s;
    margin-top: 1rem;
}

.gallery-card:hover .gallery-btn {
    transform: scale(1);
}

.gallery-btn:hover {
    background: #25d366;
    color: white;
    transform: scale(1.15);
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
}

.gallery-label {
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    color: var(--dark-color);
    background: linear-gradient(to bottom, white, #f8f9fa);
    position: relative;
}

.gallery-label::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--gradient);
    transition: width 0.4s ease;
}

.gallery-card:hover .gallery-label::before {
    width: 80%;
}

/* Gallery Item Hidden */
.gallery-item.hidden {
    display: none;
}

/* Smoke/Incense Animation Effect */
.gallery-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 0;
    background: linear-gradient(to top, rgba(255, 107, 53, 0.3), transparent);
    transition: height 0.6s ease;
    z-index: 1;
}

.gallery-card:hover::before {
    height: 100%;
    animation: smoke 2s ease-in-out infinite;
}

@keyframes smoke {
    0%, 100% {
        opacity: 0.3;
        transform: translateX(-50%) translateY(0);
    }
    50% {
        opacity: 0.6;
        transform: translateX(-50%) translateY(-10px);
    }
}

/* Responsive Gallery */
@media (max-width: 991px) {
    .gallery-image {
        height: 240px;
    }
    
    .category-icon-wrapper {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
    
    .category-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 767px) {
    .gallery-tabs {
        flex-direction: column;
        align-items: stretch;
    }
    
    .gallery-tab {
        justify-content: center;
    }
    
    .gallery-image {
        height: 220px;
    }
    
    .category-icon-wrapper {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .category-title {
        font-size: 1.5rem;
    }
    
    .category-description {
        font-size: 1rem;
    }
}

@media (max-width: 575px) {
    .gallery-image {
        height: 200px;
    }
    
    .gallery-info h5 {
        font-size: 1.1rem;
    }
    
    .gallery-btn {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

/* ===========================
   100 gm Agarbatti Pouch Section
   =========================== */
.bg-gradient-light {
    background: linear-gradient(135deg, #fff5f0 0%, #ffe8dc 100%);
}

.pouch-card {
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.pouch-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.25);
}

.pouch-card .product-icon {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
}

.pouch-card .product-badge {
    background: linear-gradient(135deg, #25d366 0%, #20b858 100%);
    font-weight: 600;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
}

.pouch-card .product-badge.popular {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
}

.pouch-card .product-badge.new {
    background: linear-gradient(135deg, #ffd93d 0%, #ff9a56 100%);
    color: var(--dark-color);
}

.feature-icon-box {
    padding: 2rem 1rem;
    background: white;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.feature-icon-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.feature-icon-box h5 {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.feature-icon-box p {
    margin: 0;
    font-size: 0.9rem;
}

/* Pouch Section Animation */
@keyframes pouches-float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.pouch-card:nth-child(odd) {
    animation: pouches-float 3s ease-in-out infinite;
}

.pouch-card:nth-child(even) {
    animation: pouches-float 3s ease-in-out infinite 0.5s;
}

/* Custom Fragrance Card */
.custom-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px dashed #667eea;
}

.custom-card:hover {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-color: #764ba2;
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
}

.custom-card .product-title {
    color: #667eea;
    font-weight: 700;
}

.custom-card .product-icon i {
    animation: palette-rotate 3s ease-in-out infinite;
}

@keyframes palette-rotate {
    0%, 100% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(10deg);
    }
}

/* Responsive Pouch Section */
@media (max-width: 991px) {
    .pouch-card {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 767px) {
    .feature-icon-box {
        margin-bottom: 1rem;
    }
    
    .feature-icon-box h5 {
        font-size: 1rem;
    }
    
    .feature-icon-box p {
        font-size: 0.85rem;
    }
}

/* ===========================
   100 gm Agarbatti Bottles Section
   =========================== */
.bottle-100gm-card {
    transition: all 0.4s ease;
    border: 2px solid transparent;
    background: linear-gradient(135deg, #ffffff 0%, #f8f0ff 100%);
}

.bottle-100gm-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #6f42c1;
    box-shadow: 0 18px 45px rgba(111, 66, 193, 0.3);
}

.bottle-100gm-icon {
    background: linear-gradient(135deg, #6f42c1 0%, #d63384 100%) !important;
}

.bottle-100gm-card .product-badge {
    font-weight: 700;
    padding: 0.4rem 0.9rem;
    border-radius: 25px;
    font-size: 0.85rem;
}

/* 100gm Bottle Animation */
@keyframes bottle-100gm-bounce {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-6px);
    }
}

.bottle-100gm-card:nth-child(odd) {
    animation: bottle-100gm-bounce 3.5s ease-in-out infinite;
}

.bottle-100gm-card:nth-child(even) {
    animation: bottle-100gm-bounce 3.5s ease-in-out infinite 0.5s;
}

/* Responsive 100gm Bottle Section */
@media (max-width: 991px) {
    .bottle-100gm-card {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 767px) {
    .bottle-100gm-card .product-title {
        font-size: 1rem;
    }
    
    .bottle-100gm-card .product-description {
        font-size: 0.85rem;
    }
}

/* ===========================
   200 gm Agarbatti Bottles Section
   =========================== */
.bottle-card {
    transition: all 0.4s ease;
    border: 2px solid transparent;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
}

.bottle-card:hover {
    transform: translateY(-12px) scale(1.03);
    border-color: #28a745;
    box-shadow: 0 20px 50px rgba(40, 167, 69, 0.3);
}

.bottle-icon {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%) !important;
}

.bottle-card .product-badge {
    font-weight: 700;
    padding: 0.4rem 0.9rem;
    border-radius: 25px;
    font-size: 0.85rem;
}

/* Bottle Animation */
@keyframes bottle-sway {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-8px) rotate(1deg);
    }
}

.bottle-card:nth-child(odd) {
    animation: bottle-sway 4s ease-in-out infinite;
}

.bottle-card:nth-child(even) {
    animation: bottle-sway 4s ease-in-out infinite 0.7s;
}

/* Responsive Bottle Section */
@media (max-width: 991px) {
    .bottle-card {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 767px) {
    .bottle-card .product-title {
        font-size: 1rem;
    }
    
    .bottle-card .product-description {
        font-size: 0.85rem;
    }
}

/* ===========================
   250 gm Agarbatti Bottles Section
   =========================== */
.bottle-250gm-card {
    transition: all 0.4s ease;
    border: 2px solid transparent;
    background: linear-gradient(135deg, #ffffff 0%, #fff5f0 100%);
}

.bottle-250gm-card:hover {
    transform: translateY(-15px) scale(1.05);
    border-color: #dc3545;
    box-shadow: 0 25px 60px rgba(220, 53, 69, 0.35);
}

.bottle-250gm-icon {
    background: linear-gradient(135deg, #dc3545 0%, #fd7e14 100%) !important;
}

.bottle-250gm-card .product-badge {
    font-weight: 800;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.9rem;
}

.bottle-250gm-card .product-title {
    font-size: 1.5rem;
    font-weight: 700;
}

.bottle-250gm-card .product-description {
    font-size: 1rem;
}

/* 250gm Bottle Animation */
@keyframes bottle-250gm-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.03);
    }
}

.bottle-250gm-card {
    animation: bottle-250gm-pulse 5s ease-in-out infinite;
}

.bottle-250gm-card:hover {
    animation: none;
}

/* Responsive 250gm Bottle Section */
@media (max-width: 991px) {
    .bottle-250gm-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 767px) {
    .bottle-250gm-card .product-title {
        font-size: 1.2rem;
    }
    
    .bottle-250gm-card .product-description {
        font-size: 0.9rem;
    }
}

/* ===========================
   400 gm Agarbatti Bottles Section
   =========================== */
.bottle-400gm-card {
    transition: all 0.4s ease;
    border: 3px solid transparent;
    background: linear-gradient(135deg, #ffffff 0%, #e7f3ff 100%);
}

.bottle-400gm-card:hover {
    transform: translateY(-15px) scale(1.04);
    border-color: #0d6efd;
    box-shadow: 0 30px 70px rgba(13, 110, 253, 0.4);
}

.bottle-400gm-icon {
    background: linear-gradient(135deg, #0d6efd 0%, #0dcaf0 100%) !important;
}

.bottle-400gm-card .product-badge {
    font-weight: 800;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
}

.bottle-400gm-card .product-icon {
    font-size: 2rem;
}

/* 400gm Bottle Animation */
@keyframes bottle-400gm-glow {
    0%, 100% {
        box-shadow: 0 5px 20px rgba(13, 110, 253, 0.1);
    }
    50% {
        box-shadow: 0 10px 40px rgba(13, 110, 253, 0.3);
    }
}

/* ===========================
   100gm Dhoop Sticks Card Styles
   =========================== */
.dhoop-stick-card {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 2px solid rgba(34, 197, 94, 0.1);
    position: relative;
    overflow: hidden;
}

.dhoop-stick-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.1) 0%, transparent 70%);
    animation: dhoop-stick-float 8s ease-in-out infinite;
}

@keyframes dhoop-stick-float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(-10%, -10%) rotate(180deg);
    }
}

.dhoop-stick-card:hover {
    border-color: rgba(34, 197, 94, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #dcfce7 100%);
}

.dhoop-stick-card .product-image {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    position: relative;
    overflow: hidden;
}

.dhoop-stick-card .product-badge {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    box-shadow: 0 5px 15px rgba(34, 197, 94, 0.4);
}

.dhoop-stick-card .product-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(34, 197, 94, 0.3);
}

@keyframes dhoop-stick-glow {
    0%, 100% {
        box-shadow: 0 5px 20px rgba(34, 197, 94, 0.1);
    }
    50% {
        box-shadow: 0 10px 40px rgba(34, 197, 94, 0.3);
    }
}

.dhoop-stick-card {
    animation: dhoop-stick-glow 4s ease-in-out infinite;
}

.dhoop-stick-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(34, 197, 94, 0.25);
}

/* ===========================
   100gm Dhoop Cones Card Styles
   =========================== */
.dhoop-cone-card {
    background: linear-gradient(135deg, #fff5f5 0%, #ffeeee 100%);
    border: 2px solid rgba(220, 38, 38, 0.1);
    position: relative;
    overflow: hidden;
}

.dhoop-cone-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.1) 0%, transparent 70%);
    animation: dhoop-cone-float 8s ease-in-out infinite;
}

@keyframes dhoop-cone-float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(-10%, -10%) rotate(180deg);
    }
}

.dhoop-cone-card:hover {
    border-color: rgba(220, 38, 38, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #ffeeee 100%);
}

.dhoop-cone-card .product-image {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    position: relative;
    overflow: hidden;
}

.dhoop-cone-card .product-badge {
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    color: white;
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.4);
}

.dhoop-cone-card .product-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.3);
}

@keyframes dhoop-cone-glow {
    0%, 100% {
        box-shadow: 0 5px 20px rgba(220, 38, 38, 0.1);
    }
    50% {
        box-shadow: 0 10px 40px rgba(220, 38, 38, 0.3);
    }
}

.dhoop-cone-card {
    animation: dhoop-cone-glow 4s ease-in-out infinite;
}

.dhoop-cone-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(220, 38, 38, 0.25);
}

.bottle-400gm-card {
    animation: bottle-400gm-glow 4s ease-in-out infinite;
}

.bottle-400gm-card:hover {
    animation: none;
}

/* Responsive 400gm Bottle Section */
@media (max-width: 991px) {
    .bottle-400gm-card {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 767px) {
    .bottle-400gm-card .product-title {
        font-size: 1rem;
    }
    
    .bottle-400gm-card .product-description {
        font-size: 0.85rem;
    }
}

/* ===========================
   Image Lightbox Modal
   =========================== */
.image-dialog-overlay {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    animation: fadeIn 0.3s ease;
    align-items: center;
    justify-content: center;
}

.image-dialog-overlay.active {
    display: flex;
}

.image-dialog {
    background: white;
    border-radius: 15px;
    max-width: 90%;
    max-height: 90vh;
    width: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: slideDown 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.dialog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.dialog-title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.dialog-close-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 28px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0;
}

.dialog-close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.dialog-body {
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    max-height: calc(90vh - 180px);
    overflow: auto;
}

.dialog-body img {
    max-width: 100%;
    max-height: calc(90vh - 200px);
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.dialog-footer {
    padding: 1.25rem 1.5rem;
    background: white;
    border-top: 1px solid #dee2e6;
    display: flex;
    justify-content: flex-end;
}

.btn-cancel {
    background: linear-gradient(135deg, #6c757d 0%, #5a6268 100%);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
}

.btn-cancel:hover {
    background: linear-gradient(135deg, #5a6268 0%, #545b62 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(108, 117, 125, 0.4);
}

.btn-cancel:active {
    transform: translateY(0);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .image-dialog {
        max-width: 95%;
        max-height: 85vh;
    }
    
    .dialog-header {
        padding: 1rem;
    }
    
    .dialog-title {
        font-size: 1rem;
    }
    
    .dialog-close-btn {
        width: 35px;
        height: 35px;
        font-size: 24px;
    }
    
    .dialog-body {
        padding: 1rem;
        max-height: calc(85vh - 150px);
    }
    
    .dialog-body img {
        max-height: calc(85vh - 170px);
    }
    
    .dialog-footer {
        padding: 1rem;
    }
    
    .btn-cancel {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
}
