/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700;900&display=swap');

/* Root Variables */
:root {
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    --primary-color: #ff0000;
    --primary-hover: #ff0000;
    --primary-light: #ef4444;
    --secondary-color: #1f2937;
    --secondary-light: #374151;
    --accent-color: #fef2f2;
    --accent-dark: #fee2e2;
    --text-primary: #191919;
    --text-secondary: #191919;
    --text-muted: #9ca3af;
    --border-light: #e5e7eb;
    --border-medium: #d1d5db;
    --shadow-soft: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-large: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --border-radius-sm: 0.5rem;
    --border-radius-md: 0.75rem;
    --border-radius-lg: 1rem;
    --border-radius-xl: 1.5rem;
}

/* Base Text Styles */
body {
    font-family: var(--font-primary);
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6, p, span, button, a {
    font-family: var(--font-primary);
}

h2 {
    font-weight: 700;
}

h3 {
    font-weight: 600;
}

.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.text-gradient {
    background: linear-gradient(45deg, var(--primary-color), var(--primary-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes scaleIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-18px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes pulse-slow {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

@keyframes fade-in-up {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes dot-glow {
    0%, 100% { box-shadow: 0 0 0 0 var(--primary-color)aa; }
    50% { box-shadow: 0 0 12px 4px var(--primary-color)cc; }
}

@keyframes borderGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

@keyframes slideInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes heroPulseGlow {
    0%, 100% { box-shadow: 0 0 20px var(--primary-color)0.3; }
    50% { box-shadow: 0 0 40px var(--primary-color)0.6; }
}

@keyframes blob {
    0% { transform: translate(0px, 0px) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
    100% { transform: translate(0px, 0px) scale(1); }
}

@keyframes blob-animation {
    0%, 100% { transform: scale(1) translate(0, 0); }
    50% { transform: scale(1.1) translate(20px, 20px); }
}

@keyframes pulse-button {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.fade-in { animation: fadeIn 0.5s ease-in; }
.slide-up { animation: slideUp 0.5s ease-out; }
.scale-in { animation: scaleIn 0.3s ease-out; }
.animate-pulse-slow { animation: pulse-slow 4s infinite; }
.animate-float { animation: float 6s ease-in-out infinite; }
.animate-fade-in-up { animation: fade-in-up 1s cubic-bezier(.4, 0, .2, 1) both; }
.animate-dot-glow { animation: dot-glow 2s infinite; }
.animate-slide-up { animation: slideInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) both; }
.animate-slide-left { animation: slideInLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) both; }
.animate-slide-right { animation: slideInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) both; }
.hero-floating { animation: heroFloat 6s ease-in-out infinite; }
.hero-pulse-glow { animation: heroPulseGlow 3s ease-in-out infinite; }
.animate-blob { animation: blob 7s infinite; }

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.animation-delay-2000 { animation-delay: 2s; }
.animation-delay-4000 { animation-delay: 4s; }

/* Scrollbar Styles */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-hover);
    cursor: pointer;
}

/* Header Styles */
.nav-link-modern {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--text-secondary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.nav-link-modern::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 9999px;
}

.nav-link-modern:hover::before {
    opacity: 0.1;
}

.nav-link-modern:hover {
    color: var(--primary-color);
    transform: translateY(-1px);
}

.nav-link-modern.active {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    box-shadow: var(--shadow-medium);
}

.nav-link-modern.active::before {
    opacity: 0;
}

/* Mobile Header Styles */
.mobile-nav-link {
    display: flex;
    align-items: center;
    padding: 0.875rem 1rem;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.mobile-nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary-color);
    transform: scaleY(0);
    transition: transform 0.2s ease;
}

.mobile-nav-link:hover::before {
    transform: scaleY(1);
}

.mobile-nav-link:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    border-bottom-color: var(--border-light);
}

.mobile-nav-link:hover .material-icons:first-child {
    color: var(--primary-color) !important;
    transform: scale(1.1);
}

.mobile-nav-link:hover .material-icons:last-child {
    opacity: 1 !important;
    transform: translateX(4px);
}

.mobile-nav-link.active {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
    color: var(--primary-color);
    font-weight: 600;
}

.mobile-nav-link.active::before {
    transform: scaleY(1);
}

.mobile-nav-link .material-icons {
    font-size: 1.125rem;
    transition: all 0.2s ease;
}

.mobile-nav-link .material-icons:first-child {
    margin-right: 0.75rem;
    width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav-link .material-icons:last-child {
    margin-left: auto;
    font-size: 0.875rem;
}

#mobile-menu {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

#mobile-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#menu-icon {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#menu-icon.rotate {
    transform: rotate(90deg);
}

.mobile-menu-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 40;
}

.mobile-menu-backdrop.show {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 640px) {
    #mobile-menu {
        width: 280px;
        max-width: calc(100vw - 2rem);
        right: -0.5rem;
    }

    .mobile-nav-link {
        padding: 0.75rem 1rem;
        font-size: 0.8rem;
    }

    .mobile-nav-link .material-icons:first-child {
        margin-right: 0.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    #mobile- menu {
        width: 260px;
        right: -0.25rem;
    }
}

/* Footer Styles */
.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #9ca3af;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.footer-social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--primary-color)0.4;
}

.footer-link {
    color: #9ca3af;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    padding: 0.25rem 0;
}

.footer-link:hover {
    color: var(--primary-color);
    transform: translateX(4px);
}

.footer-link::before {
    content: '';
    width: 0;
    height: 2px;
    background: var(--primary-color);
    margin-right: 0;
    transition: all 0.3s ease;
    border-radius: 1px;
}

.footer-link:hover::before {
    width: 16px;
    margin-right: 8px;
}

/* Button Styles */
.btn-primary {
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-lg);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: scale(1.05);
    box-shadow: var(--shadow-medium);
}

.btn-primary:focus {
    outline: none;
    box-shadow: 0 0 0 3px var(--primary-color)0.3;
}

.btn-primary .material-icons {
    font-size: 1rem;
    transition: transform 0.2s ease;
}

.btn-primary:hover .material-icons {
    transform: translateX(3px);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    transition: all 0.3s;
    transform: scale(1);
}

.btn-secondary:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-medium);
}

.btn-primary-modern {
    display: inline-flex;
    align-items: center;
    padding: 0.625rem 1.25rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: var(--border-radius-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-soft);
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.btn-primary-modern:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-large);
    background: linear-gradient(135deg, var(--primary-hover), var(--primary-color));
}

.btn-secondary-modern {
    display: inline-flex;
    align-items: center;
    padding: 0.625rem 1.25rem;
    background: white;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: var(--border-radius-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-light);
    cursor: pointer;
}

.btn-secondary-modern:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.enquiry-btn {
    width: 100%;
    padding: 0.6rem 1rem;
    background-color: var(--primary-color);
    color: white;
    font-weight: 500;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
}

.enquiry-btn:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.enquiry-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px var(--primary-color)0.3;
}

.enquiry-btn .material-icons {
    font-size: 1rem;
    margin-left: 0.5rem;
    color: white;
    transition: transform 0.2s ease;
}

.enquiry-btn:hover .material-icons {
    transform: translateX(3px);
}

/* Card Styles */
.card {
    background-color: white;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: all 0.3s;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.card-hover {
    transform: translateZ(0);
    transition: all 0.3s;
    transform-style: preserve-3d;
}

.card-hover:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-large);
}

.card-hover .btn-primary {
    background-color: var(--primary-color);
    color: white;
    width: 100%;
    padding: 0.75rem 1rem;
    font-weight: 600;
    font-size: 0.875rem;
}

.card-hover .btn-primary:hover {
    background-color: var(--primary-hover);
    box-shadow: var(--shadow-medium);
}

.product-card {
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.product-card .overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0);
    transition: all 0.3s;
    backdrop-filter: blur(2px);
}

.product-card:hover .overlay {
    background-color: rgba(0, 0, 0, 0.1);
}

.product-card .actions {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    opacity: 0;
    transition: all 0.3s;
    transform: translateY(20px);
}

.product-card:hover .actions {
    opacity: 1;
    transform: translateY(0);
}

.product-card-modern {
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-light);
    position: relative;
}

.product-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-large);
    border-color: var(--primary-color);
}

.product-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.product-card-modern:hover::before {
    transform: scaleX(1);
}

/* Category Styles */
.category-btn-modern {
    display: flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: var(--border-radius-lg);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-soft);
    border: none;
    cursor: pointer;
}

.category-btn-modern:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-large);
    background: linear-gradient(135deg, var(--primary-hover), var(--primary-color));
}

.category-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 320px;
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-large);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 50;
    border: 1px solid var(--border-light);
    margin-top: 0.5rem;
}

.category-dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 2rem;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid white;
}

.group:hover .category-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.category-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius-md);
    transition: all 0.3s ease;
    color: var(--text-primary);
    text-decoration: none;
    margin: 0.125rem;
}

.category-item:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: translateX(4px);
}

.category-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card:hover {
    transform: translateY(-2px);
}

.category-card img {
    transition: transform 0.3s ease, filter 0.3s ease;
}

.category-card:hover img {
    transform: scale(1.1);
    filter: brightness(1.1);
}

.category-card img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-card img[loading="lazy"].loaded {
    opacity: 1;
}

#categoriesContainer {
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    padding-bottom: 5px;
}

#categoriesContainer:after {
    content: '';
    flex: 0 0 1px;
}

#mobileCategories {
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

#mobileCategories .category-card {
    scroll-snap-align: start;
}

.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Hero Section */
.hero-gradient-text {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color) 50%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-backdrop-blur {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 640px) {
    .hero-section {
        padding: 3rem 0;
    }

    .hero-heading {
        font-size: 2.25rem;
        line-height: 1.2;
    }

    .hero-subheading {
        font-size: 1.125rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .hero-cta-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero-features {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .hero-product-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
}

@media (min-width: 641px) and (max-width: 1024px) {
    .hero-heading {
        font-size: 3rem;
    }

    .hero-subheading {
        font-size: 1.375rem;
    }

    .hero-product-grid {
        grid-template-columns: 2fr 2fr;
        gap: 1rem;
    }
}

/* Section Styles */
.section-transition {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-transition.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 2px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Fixed Action Buttons */
.fixed-action-buttons {
    position: fixed;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 9999;
    pointer-events: none;
    max-width: 100%;
}

.action-button {
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: auto;
    box-shadow: var(--shadow-soft);
}

.action-button.whatsapp {
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    padding: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-left: 20px;
}

.action-button.whatsapp i {
    font-size: 32px;
    margin: 0;
}

.action-button.enquiry {
    background: var(--primary-color);
    color: white;
    margin-right: 20px;
    white-space: nowrap;
}

.action-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
    animation: pulse-button 1s infinite;
}

.action-button .material-icons {
    font-size: 20px;
}

@media (max-width: 640px) {
    .fixed-action-buttons {
        bottom: 15px;
        padding: 0 15px;
    }

    .action-button.whatsapp {
        width: 55px;
        height: 55px;
        margin-left: 10px;
    }

    .action-button.whatsapp i {
        font-size: 28px;
    }

    .action-button.enquiry {
        padding: 10px 20px;
        margin-right: 10px;
        font-size: 14px;
    }

    .action-button.enquiry .material-icons {
        font-size: 18px;
    }
}

/* Decorative Elements */
.clip-hexagon {
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.hexagon-container::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-color));
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    z-index: -1;
    animation: borderGlow 3s ease-in-out infinite;
}

.absolute.top-0.left-0.w-64.h-64.bg-red-100.rounded-full.mix-blend-multiply.filter.blur-xl.opacity-70.animate-blob {
    position: absolute;
    top: 0;
    left: 0;
    width: 64px;
    height: 64px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.5) 0%, rgba(255, 0, 0, 0) 70%);
    mix-blend-mode: multiply;
    filter: blur(100px);
    opacity: 0.7;
    animation: blob-animation 10s linear infinite;
}

.absolute.top-0.right-0.w-64.h-64.bg-yellow-100.rounded-full.mix-blend-multiply.filter.blur-xl.opacity-70.animate-blob.animation-delay-2000 {
    position: absolute;
    top: 0;
    right: 0;
    width: 64px;
    height: 64px;
    background: radial-gradient(circle, rgba(255, 255, 0, 0.5) 0%, rgba(255, 255, 0, 0) 70%);
    mix-blend-mode: multiply;
    filter: blur(100px);
    opacity: 0.7;
    animation: blob-animation 10s linear infinite;
    animation-delay: 2s;
}

.absolute.-bottom-8.left-20.w-64.h-64.bg-pink-100.rounded-full.mix-blend-multiply.filter.blur-xl.opacity-70.animate-blob.animation-delay-4000 {
    position: absolute;
    bottom: -8px;
    left: 20px;
    width: 64px;
    height: 64px;
    background: radial-gradient(circle, rgba(255, 0, 255, 0.5) 0%, rgba(255, 0, 255, 0) 70%);
    mix-blend-mode: multiply;
    filter: blur(100px);
    opacity: 0.7;
    animation: blob-animation 10s linear infinite;
    animation-delay: 4s;
}

/* Responsive Adjustments */
@media (max-width: 640px) {
    .btn-primary {
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
    }

    .category-card {
        min-width: 120px;
    }
}

@media (min-width: 641px) and (max-width: 768px) {
    .category-card {
        min-width: 140px;
    }
}





/* aboutus.html */
.stats-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}
.stats-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-large);
}
.bg-pattern {
    background-color: #ffffff;
    background-image: radial-gradient(var(--primary-color) 0.5px, transparent 0.5px), radial-gradient(var(--primary-color) 0.5px, #ffffff 0.5px);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
    opacity: 0.1;
}
.counter {
    transition: all 0.3s ease;
}
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(to right, #ffffff, #f8f8f8);
    z-index: 9999;
    transition: width 0.3s ease;
}
.material-icons {
    font-family: 'Material Icons' !important;
    font-weight: normal !important;
    font-style: normal !important;
    display: inline-block !important;
    line-height: 1 !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    word-wrap: normal !important;
    white-space: nowrap !important;
    direction: ltr !important;
    -webkit-font-smoothing: antialiased !important;
    text-rendering: optimizeLegibility !important;
    -moz-osx-font-smoothing: grayscale !important;
    font-feature-settings: 'liga' !important;
}
.material-icons.text-sm {
    font-size: 16px !important;
}
.material-icons + span, span + .material-icons {
    margin-left: 4px !important;
}

.text-primary {
    color: var(--primary-color) !important;
}
.bg-primary {
    background-color: var(--primary-color) !important;
}





/* blog.html */
.blog-card {
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: var(--shadow-large);
}

.blog-card img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover img {
    transform: scale(1.08);
}


.category-tag {
    background: rgba(220, 38, 38, 0.1);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.category-tag:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.reading-time {
    display: flex;
    align-items: center;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.reading-time .material-icons {
    font-size: 1rem;
    margin-right: 0.25rem;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}
.blog-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.blog-modal.active {
    opacity: 1;
    visibility: visible;
}

.blog-modal-content {
    background: white;
    border-radius: var(--border-radius-md);
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(20px);
    transition: all 0.3s ease;
    position: relative;
}

.blog-modal.active .blog-modal-content {
    transform: translateY(0);
}

.blog-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: white;
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.blog-modal-close:hover {
    background: var(--primary-color);
    color: white;
    transform: rotate(90deg);
}

.blog-modal-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--border-radius-md) var(--border-radius-md) 0 0;
}
@media (min-width: 768px) {
    .blog-modal-image {
        height: 400px;
    }
}






/* brands.html */
.category-btn {
    transition: all 0.3s ease;
    border: 2px solid var(--border-light);
    border-radius: var(--border-radius-md);
    padding: 0.5rem 1rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.category-btn:hover,
.category-btn.active {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: var(--accent-color);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1.5rem;
}

@media (max-width: 1536px) {
    .product-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

@media (max-width: 1280px) {
    .product-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.product-card {
    background: white;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-large);
}

.product-card .image-container {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.product-card .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .image-container img {
    transform: scale(1.05);
}

.product-card .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(220, 38, 38, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .overlay {
    opacity: 1;
}

.product-info {
    padding: 0.75rem;
    background: white;
}

.product-title {
    color: var(--secondary-color);
    font-weight: 800;
    font-size: 1rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    height: 2rem;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}



/* contact.html */
.contact-card {
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--primary-color);
    padding: 2rem 1.5rem;
    margin-bottom: 1.25rem;
    text-align: left;
}

@media (max-width: 640px) {
    .contact-card {
        text-align: center;
        padding: 1.5rem 1rem;
    }
}

.contact-icon {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.contact-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.25rem;
}

.contact-detail {
    color: var(--text-secondary);
    font-size: 1rem;
}

.map-container {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--primary-color);
    overflow: hidden;
}

.contact-form-card {
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-soft);
    padding: 2rem;
}

.form-input,
.form-textarea {
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-md);
    padding: 0.75rem 1rem;
    background: #f8fafc;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
    background: white;
}

.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
}

.error-message,
.success-message {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.error-message {
    color: var(--primary-color);
}

.success-message {
    color: #10b981;
}

.form-input.error,
.form-textarea.error {
    border-color: var(--primary-color);
}

.form-input.success,
.form-textarea.success {
    border-color: #10b981;
}

.form-input.shake,
.form-textarea.shake {
    animation: shake 0.5s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

@keyframes shake {

    10%,
    90% {
        transform: translateX(-1px);
    }

    20%,
    80% {
        transform: translateX(2px);
    }

    30%,
    50%,
    70% {
        transform: translateX(-4px);
    }

    40%,
    60% {
        transform: translateX(4px);
    }
}

.notification {
    position: fixed;
    top: 1rem;
    right: 1rem;
    padding: 1rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-soft);
    transform: translateX(100%);
    transition: transform 0.5s ease;
}

.notification.show {
    transform: translateX(0);
}



/* privacy-policy.html */

        .content-section {
            background: white;
            border-radius: var(--border-radius-lg);
            padding: 2rem;
            margin-bottom: 2rem;
            box-shadow: var(--shadow-soft);
        }

        .section-title {
            color: var(--primary-color);
            font-weight: 700;
            font-size: 1.5rem;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
        }

        .highlight-box {
            background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
            border-left: 4px solid var(--primary-color);
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: var(--border-radius-md);
        }

        .info-card {
            background: #f8fafc;
            border-radius: var(--border-radius-md);
            padding: 1.5rem;
            margin: 1rem 0;
            border: 1px solid var(--border-light);
        }



/* productdetails.html */

.product-gallery {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.product-gallery:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-large);
}

.product-gallery img {
    border-radius: var(--border-radius-md);
    transition: transform 0.5s ease;
}

.product-gallery:hover img {
    transform: scale(1.05);
}

.thumbnail-container {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    padding: 0.5rem;
    background: var(--accent-color);
    border-radius: var(--border-radius-md);
    justify-content: center;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    border: 2px solid transparent;
    object-fit: cover;
    transition: all 0.3s ease;
}

.thumbnail:hover {
    transform: scale(1.1);
    border-color: var(--primary-color);
}

.thumbnail.active {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-soft);
}

.product-info {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-soft);
}

.product-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.product-tabs {
    border-bottom: 2px solid var(--accent-dark);
    background: white;
    border-radius: var(--border-radius-md) var(--border-radius-md) 0 0;
    padding: 0 1rem;
}

.product-tabs button {
    padding: 1rem 1.5rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.product-tabs button:hover {
    color: var(--primary-color);
}

.product-tabs button.active {
    color: var(--primary-color);
    font-weight: 600;
    border-bottom: 2px solid var(--primary-color);
}

.related-product {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
}

.related-product:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-large);
}

.related-product img {
    transition: transform 0.5s ease;
}

.related-product:hover img {
    transform: scale(1.05);
}

.size-button {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: white;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    transition: all 0.3s ease;
}

.size-button.active, .size-button:hover {
    background: var(--primary-color);
    color: white;
}

        





