/* Enhanced Color Variables - Refined Palette */
:root {
    --primary-navy: #19317d;
    --primary-gold: #d4a460;
    --secondary-gold: #e6c373;
    --light-gold: #f5f0e6;
    --accent-blue: #4a6fb5;
    --text-dark: #19317d;
    --text-light: #7f8c8d;
    --background-light: #fdfefe;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #d4a460 0%, #e6c373 100%);
    --gradient-secondary: linear-gradient(135deg, #19317d 0%, #4a6fb5 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    --gradient-rainbow: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57, #ff9ff3, #54a0ff);
    --shadow-light: rgba(0, 0, 0, 0.08);
    --shadow-medium: rgba(0, 0, 0, 0.12);
    --shadow-heavy: rgba(0, 0, 0, 0.18);
    --shadow-glow: 0 0 30px rgba(212, 164, 96, 0.2);
    --shadow-neon: 0 0 20px rgba(74, 111, 181, 0.3);
    --border-radius: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --discount-red: #e74c3c;
    --discount-green: #27ae60;
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    scroll-behavior: smooth;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    background-attachment: fixed;
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Enhanced Custom Animations */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

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

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

@keyframes shimmer {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: calc(200px + 100%) 0;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(212, 164, 96, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(212, 164, 96, 0.6);
    }
}

@keyframes morphing {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    25% {
        border-radius: 58% 42% 75% 25% / 76% 24% 76% 24%;
    }
    50% {
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
    }
    75% {
        border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
    }
    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}

/* Gentle Animations for Hero Section */
@keyframes gentle-morphing {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.02) rotate(1deg);
        opacity: 0.4;
    }
}

@keyframes subtle-shimmer {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    50% {
        opacity: 0.3;
    }
    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}

@keyframes subtle-gradient-animation {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Enhanced Visual Effects */
.ripple {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    animation: ripple 0.6s linear;
    background-color: rgba(255, 255, 255, 0.7);
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Optimized animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth hover animations */
.product-card,
.btn-add,
.btn-wishlist,
.btn-category,
.btn-arrow {
    will-change: transform;
    backface-visibility: hidden;
    transform-style: preserve-3d;
}

/* Glass morphism effects */
.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Neon glow effects */
.neon-glow {
    box-shadow: 
        0 0 5px currentColor,
        0 0 10px currentColor,
        0 0 15px currentColor,
        0 0 20px currentColor;
}

/* Loading shimmer effect */
.shimmer {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

/* Parallax scrolling effect */
.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Enhanced button hover effects */
.btn-enhanced {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-enhanced:hover::before {
    left: 100%;
}

.btn-enhanced:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Text gradient effects */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 3s ease-in-out infinite;
}

/* Card hover effects */
.card-3d {
    transition: transform 0.3s ease;
    transform-style: preserve-3d;
}

.card-3d:hover {
    transform: translateY(-8px) rotateX(2deg) rotateY(2deg);
}

/* Floating elements */
.float-element {
    animation: float 6s ease-in-out infinite;
}

.float-element:nth-child(2n) {
    animation-delay: -2s;
}

.float-element:nth-child(3n) {
    animation-delay: -4s;
}

/* Magnetic hover effect */
.magnetic {
    transition: transform 0.3s ease;
}

.magnetic:hover {
    transform: scale(1.05);
}

/* Enhanced scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-secondary);
}

/* Selection styling */
::selection {
    background: var(--primary-gold);
    color: var(--white);
}

/* Enhanced focus states */
*:focus {
    outline: 2px solid var(--primary-gold);
    outline-offset: 2px;
}

/* Smooth reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced loading states */
.loading {
    position: relative;
    color: transparent;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--shimmer);
    border-radius: inherit;
}

/* Elastic hover effect */
.elastic {
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.elastic:hover {
    transform: scale(1.1);
}

/* Enhanced shadows */
.shadow-soft {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.shadow-medium {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.shadow-strong {
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
}

/* Gradient borders */
.gradient-border {
    border: 2px solid;
    border-image: var(--gradient-primary) 1;
}

/* Animated underlines */
.animated-underline {
    position: relative;
    text-decoration: none;
}

.animated-underline::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.animated-underline:hover::after {
    width: 100%;
}

/* Color transition effects */
.color-transition {
    transition: color 0.3s ease, background-color 0.3s ease;
}

/* Scale on hover */
.scale-hover {
    transition: transform 0.3s ease;
}

.scale-hover:hover {
    transform: scale(1.05);
}

/* Pulse animation */
.pulse-animation {
    animation: pulse 2s ease-in-out infinite;
}

/* Rotation hover */
.rotate-hover {
    transition: transform 0.3s ease;
}

.rotate-hover:hover {
    transform: rotate(5deg);
}

/* Tilt effect */
.tilt {
    transition: transform 0.3s ease;
}

.tilt:hover {
    transform: perspective(1000px) rotateX(10deg) rotateY(10deg);
}

/* Bounce entrance */
.bounce-in {
    animation: bounceIn 0.8s ease-out;
}

@keyframes bounceIn {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }
    50% {
        transform: scale(1.05);
        opacity: 1;
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}

/* Slide in animations */
.slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Zoom in animation */
.zoom-in {
    animation: zoomIn 0.6s ease-out;
}

@keyframes zoomIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Header Styles */
.header-section {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px var(--shadow-light);
    transition: var(--transition);
    animation: fadeInDown 0.8s ease-out;
}

.header-section.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 32px var(--shadow-medium);
}

.top-header {
    background: transparent;
    border-bottom: 1px solid rgba(233, 236, 239, 0.3);
}

@media (max-width: 991.98px) {
    .top-header {
        background: linear-gradient(135deg, #19317d 0%, #4a6fb5 100%);
        padding-right: 60px;
        position: relative;
        z-index: 1100;
    }
    .navbar-toggler {
        color: #fff;
        background: none;
        border: none;
        box-shadow: none;
        position: absolute;
        top: 18px;
        right: 18px;
        z-index: 1200;
        padding: 8px 12px;
        border-radius: 8px;
        transition: var(--transition);
    }
    .navbar-toggler:hover {
        background: rgba(255, 255, 255, 0.1);
    }
    .navbar-toggler .navbar-toggler-icon {
        color: #fff;
        font-size: 2rem;
        line-height: 1;
    }
}

.logo-square {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 8px 24px rgba(212, 164, 96, 0.3);
}

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

.logo-text {
    color: var(--white);
    font-weight: 800;
    font-size: clamp(1.2rem, 4vw, 1.4rem);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.btn-icon {
    background: none;
    border: none;
    font-size: clamp(1.2rem, 4vw, 1.4rem);
    color: var(--text-light);
    cursor: pointer;
    padding: 12px;
    border-radius: 12px;
    transition: var(--transition);
    position: relative;
}

.btn-icon:hover {
    color: var(--primary-navy);
    background: var(--light-gold);
    transform: translateY(-2px);
}

.btn-icon:active {
    transform: translateY(0);
}

/* User Profile Dropdown Styles */
.user-profile-dropdown {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 3px;
    border-radius: 12px;
    transition: var(--transition);
}

.user-profile-dropdown:hover {
    background: var(--light-gold);
}

.user-profile-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.user-avatar {
    width: 32px;
    height: 32px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
}

.user-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.user-name {
    font-size: clamp(0.75rem, 2.2vw, 0.85rem);
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.2;
}

.user-email {
    font-size: clamp(0.65rem, 2vw, 0.75rem);
    color: var(--text-light);
    line-height: 1.2;
}

.dropdown-arrow {
    font-size: 0.7rem;
    color: var(--text-light);
    transition: var(--transition);
    margin-left: auto;
}

.user-profile-dropdown.dropdown-open .dropdown-arrow {
    transform: rotate(180deg);
    color: var(--primary-gold);
}

/* Dropdown Menu Styles */
.user-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 8px 32px var(--shadow-medium);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    margin-top: 8px;
    overflow: hidden;
}

.user-dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

a.dropdown-item {
    text-decoration: none;
    color: var(--text-dark);
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover,
a.dropdown-item:hover {
    background: var(--light-gold);
    color: var(--primary-navy);
    transform: translateX(4px);
}

.dropdown-item i {
    font-size: 1rem;
    color: var(--primary-gold);
    width: 16px;
    text-align: center;
}

.dropdown-item:hover i {
    color: var(--primary-navy);
    transform: scale(1.1);
}


/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .user-info {
        display: none;
    }
    
    .user-profile-dropdown {
        padding: 8px;
    }
    
    .user-dropdown-menu {
        right: -10px;
        min-width: 160px;
    }
    
    .dropdown-item {
        padding: 10px 14px;
        font-size: 0.85rem;
    }
    
    .dropdown-item i {
        font-size: 0.9rem;
    }
}

.main-navigation {
    background: linear-gradient(135deg, #19317d 0%, #4a6fb5 100%);
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.main-navigation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.05) 50%, transparent 70%);
    animation: subtle-shimmer 8s ease-in-out infinite;
    pointer-events: none;
}

.header-section.scrolled .main-navigation {
    box-shadow: 0 4px 20px rgba(25, 49, 125, 0.3);
}

.nav-menu {
        display: flex;
        justify-content: center;
        align-items: center;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: 40px;
        transition: max-height 0.3s ease, opacity 0.3s ease;
}

/* Responsive Navbar */
@media (max-width: 991.98px) {
    .navbar-toggler {
        display: block;
        position: absolute;
        top: 20px;
        right: 10px;
        background: none;
        border: none;
        font-size: 2rem;
        color: var(--white);
        z-index: 1200;
        padding: 8px 12px;
        border-radius: 8px;
        transition: var(--transition);
    }
    .navbar-toggler:focus {
        outline: none;
    }
    .navbar-toggler:hover {
        background: rgba(255, 255, 255, 0.1);
    }
    .nav-menu {
        flex-direction: column;
        align-items: flex-start;
        background: linear-gradient(135deg, #19317d 0%, #4a6fb5 100%);
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        box-shadow: 0 8px 32px var(--shadow-light);
        border-radius: 0 0 16px 16px;
        gap: 0;
        padding: 0;
        transition: max-height 0.3s ease, opacity 0.3s ease;
    }
    .nav-menu.nav-menu-open {
        max-height: 400px;
        opacity: 1;
        padding: 10px 0 10px 0;
        margin-top: -14px;
    }
    .nav-menu li {
        width: 100%;
        margin: 0;
    }
    .nav-menu .nav-link {
        width: 100%;
        padding: 16px 24px;
        border-radius: 0;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        font-size: 1.1rem;
        justify-content: flex-start;
    }
    .nav-menu .nav-link::before {
        border-radius: 0;
    }
}

@media (min-width: 992px) {
    .navbar-toggler {
        display: none;
    }
    .nav-menu {
        display: flex !important;
        flex-direction: row;
        position: static;
        max-height: none;
        opacity: 1;
        background: none;
        box-shadow: none;
        border-radius: 0;
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .btn-icon{
        color: white;
    }
}

/* Additional responsive improvements */
@media (max-width: 1200px) {
    .nav-menu {
        gap: 30px;
    }
    .nav-menu .nav-link {
        padding: 10px 18px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .main-navigation {
        padding: 12px 0;
    }
    .nav-menu {
        gap: 0;
    }
    .nav-menu .nav-link {
        padding: 14px 20px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .main-navigation {
        padding: 10px 0;
    }
    .nav-menu .nav-link {
        padding: 12px 18px;
        font-size: 0.95rem;
    }
    .navbar-toggler {
        top: 20px;
        right: 15px;
        font-size: 1.8rem;
    }
}

.nav-menu li {
    margin: 0;
}

.nav-menu .nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: clamp(12px, 3vw, 15px);
    transition: var(--transition);
    display: flex;
    align-items: center;
    padding: 12px 20px;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.nav-menu .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: var(--transition);
    z-index: -1;
    border-radius: 25px;
}

.nav-menu .nav-link:hover::before {
    left: 0;
}

.nav-menu .nav-link.active::before {
    left: 0;
    background: var(--gradient-primary);
}

.nav-menu .nav-link:hover,
.nav-menu .nav-link.active {
    color: var(--white);
    transform: translateY(-2px);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.nav-menu .nav-link i {
    margin-left: 5px;
    font-size: 12px;
    transition: var(--transition);
}

.nav-menu .nav-link:hover i {
    transform: rotate(180deg);
}

/* Enhanced Hero Section */
.header-section {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px var(--shadow-light);
    transition: var(--transition);
    animation: fadeInDown 0.8s ease-out;
    height: 110px; /* Set header height for spacing reference */
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section .container::before {
    content: '';
    position: absolute;
    top: -40px;
    left: -40px;
    right: -40px;
    bottom: -40px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.4) 0%, 
        rgba(248, 249, 250, 0.6) 50%, 
        rgba(255, 255, 255, 0.3) 100%);
    border-radius: 24px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(212, 164, 96, 0.15);
    z-index: -1;
}

.hero-section {
    background: linear-gradient(135deg, 
        #f8f9fa 0%, 
        #ffffff 20%,
        #fdfefe 40%,
        #f5f0e6 70%,
        #e8dcc6 100%);
    padding: 160px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 100px rgba(212, 164, 96, 0.08);
    margin-top: 110px; /* Add margin equal to header height to prevent overlap */
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 40%, rgba(212, 164, 96, 0.06) 50%, transparent 60%),
        linear-gradient(-45deg, transparent 40%, rgba(25, 49, 125, 0.04) 50%, transparent 60%);
    animation: subtle-shimmer 12s ease-in-out infinite;
}

.hero-content {
    padding-right: 2rem;
    z-index: 2;
    animation: fadeInLeft 1s ease-out 0.2s both;
    position: relative;
}

/* Remove the individual content background */

.hero-title {
    font-size: clamp(2rem, 8vw, 5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: clamp(1px, 2vw, 2px);
    color: #19317d !important;
    background: linear-gradient(135deg, #19317d 0%, #4a6fb5 100%) !important;
    background-size: 200% 200% !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    text-shadow: none;
    animation: fadeInUp 1s ease-out 0.4s both, subtle-gradient-animation 6s ease infinite;
    position: relative;
    display: block;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Fallback for browsers that don't support background-clip */
@supports not (-webkit-background-clip: text) {
    .hero-title {
        color: #19317d !important;
        background: none !important;
        -webkit-text-fill-color: unset !important;
        text-shadow: 0 2px 4px rgba(25, 49, 125, 0.1);
    }
}

/* Override any text-gradient class conflicts */
.hero-title.text-gradient {
    color: #19317d !important;
    background: linear-gradient(135deg, #19317d 0%, #4a6fb5 100%) !important;
    background-size: 200% 200% !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.hero-subtitle {
    font-size: clamp(1rem, 4vw, 2rem);
    color: #d4a460;
    margin-bottom: 15px;
    font-weight: 500;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(212, 164, 96, 0.1);
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-description {
    font-size: clamp(0.9rem, 3vw, 1.2rem);
    color: #6c757d;
    margin-bottom: 40px;
    font-weight: 400;
    line-height: 1.6;
    max-width: 500px;
    text-shadow: none;
    animation: fadeInUp 1s ease-out 0.7s both;
}

.hero-content {
    padding-right: 2rem;
    z-index: 2;
    animation: fadeInLeft 1s ease-out 0.2s both;
}

.btn-shop-now {
    background: linear-gradient(135deg, #d4a460 0%, #e6c373 100%);
    color: #ffffff;
    padding: 16px 32px;
    border: 2px solid #d4a460;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 164, 96, 0.2);
    display: inline-block;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out 0.8s both;
    z-index: 1;
    text-transform: none;
    letter-spacing: 0.5px;
    text-shadow: none;
}

.btn-shop-now::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #19317d 0%, #4a6fb5 100%);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-shop-now:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 164, 96, 0.3);
    border-color: #e6c373;
}

.btn-shop-now:hover::before {
    left: 0;
}

.btn-shop-now:active {
    transform: translateY(0px);
    box-shadow: 0 3px 10px rgba(212, 164, 96, 0.2);
}

.hero-image {
    position: relative;
    z-index: 2;
    animation: fadeInRight 1s ease-out 0.4s both;
    padding-left: 2rem;
}

.hero-image img {
    border-radius: 24px;
    box-shadow: 0 24px 48px var(--shadow-heavy);
    max-width: 100%;
    height: auto;
    transition: var(--transition);
    animation: float 6s ease-in-out infinite 2s;
}

.hero-image:hover img {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 32px 64px var(--shadow-heavy);
}

/* Brand Promise Section */
.brand-promise {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--primary-navy) 100%);
    color: var(--white);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.brand-promise::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
}

.brand-promise .section-title {
    color: var(--white);
    animation: fadeInUp 1s ease-out;
}

.brand-title {
    font-size: clamp(1.5rem, 6vw, 3rem);
    font-weight: 700;
    margin-bottom: clamp(20px, 5vw, 30px);
    letter-spacing: clamp(1px, 2vw, 2px);
    color: var(--white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease-out 0.2s both;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.brand-text {
    font-size: clamp(0.9rem, 3vw, 1.3rem);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    color: var(--white);
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.4s both;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Section Titles */
.section-title {
    font-size: clamp(1.8rem, 6vw, 2.8rem);
    font-weight: 800;
    margin-bottom: clamp(30px, 8vw, 60px);
    color: var(--text-dark);
    letter-spacing: clamp(1px, 3vw, 2px);
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* Product Sections */
.featured-products,
.our-products {
    padding: 120px 0;
    background: var(--background-light);
    position: relative;
}

.our-products {
    background: var(--white);
}

.product-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 16px 40px var(--shadow-light);
    transition: all 0.3s ease;
    margin-bottom: 40px;
    position: relative;
    transform: translateY(0);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    will-change: transform;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 56px var(--shadow-medium);
}

.product-card:hover::before {
    opacity: 0.05;
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.product-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 12px;
    opacity: 0;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 2;
}

.product-card:hover .product-overlay {
    opacity: 1;
    transform: translateY(0);
}

.btn-add,
.btn-wishlist {
    background: var(--white);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px var(--shadow-light);
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.btn-add {
    background: var(--gradient-primary);
    color: var(--white);
    font-weight: bold;
    font-size: 1.4rem;
}

.btn-add:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(212, 164, 96, 0.4);
}

.btn-wishlist {
    color: #666;
    transition: all 0.3s ease;
}

.btn-wishlist:hover {
    background: #ff6b6b;
    color: var(--white);
    transform: scale(1.1);
}

.btn-wishlist.active,
.btn-wishlist i.fas {
    color: #ff6b6b;
}

.btn-wishlist:active {
    transform: scale(0.9);
}

/* Wishlist heart animation */
@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    10%, 30% { transform: scale(1.15); }
    20%, 40% { transform: scale(1.05); }
}

.btn-wishlist i.fas {
    animation: heartBeat 0.6s ease-in-out;
}

.product-info {
    padding: 30px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.product-name {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
    transition: var(--transition);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.product-card:hover .product-name {
    color: var(--primary-navy);
}

.product-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin: 0;
    text-shadow: 0 2px 4px rgba(212, 164, 96, 0.2);
}

.btn-see-more {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 24px rgba(212, 164, 96, 0.3);
}

.btn-see-more:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 32px rgba(212, 164, 96, 0.4);
}

/* Shop Categories */
.shop-categories {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--accent-blue) 100%);
    padding: 80px 0;
    text-align: center;
}

.shop-categories .section-title {
    color: var(--white);
}

.category-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-category {
    background: var(--primary-gold);
    color: var(--white);
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-category.active,
.btn-category:hover {
    background: var(--secondary-gold);
    color: var(--primary-navy);
}

.nav-arrows {
    display: flex;
    gap: 10px;
    margin-left: 20px;
}

.btn-arrow {
    background: var(--primary-gold);
    color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-arrow:hover {
    background: var(--secondary-gold);
    color: var(--primary-navy);
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: var(--background-light);
}

.about-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow-light);
    margin-bottom: 30px;
}

.about-icon {
    background: var(--primary-gold);
    color: var(--white);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
}

.about-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.about-card p {
    color: var(--text-light);
    line-height: 1.6;
}





.why-choose-us {
    background: var(--white);
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 10px 30px var(--shadow-light);
    margin-top: 50px;
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), var(--primary-navy));
}

.why-choose-us h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 40px;
    position: relative;
}

.why-choose-us h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), var(--primary-navy));
    border-radius: 2px;
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-navy));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
}

.feature-icon:hover {
    transform: scale(1.1);
}

.feature-icon i {
    font-size: 2rem;
    color: var(--white);
}

.why-choose-us .col-md-3 h5 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.why-choose-us .col-md-3 p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Location Section */
.location-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.showroom-info {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.showroom-info h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.showroom-details {
    margin-bottom: 30px;
}

.showroom-detail {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    padding: 10px 0;
}

.showroom-detail i {
    color: var(--primary-color);
    font-size: 18px;
    margin-right: 15px;
    margin-top: 3px;
    min-width: 20px;
}

.showroom-detail span {
    color: #666;
    line-height: 1.6;
}

.showroom-info .btn {
    width: 100%;
    padding: 12px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.showroom-info .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 164, 96, 0.3);
}

/* Footer */
.footer-section {
    background: linear-gradient(135deg, var(--primary-navy) 0%, #1a252f 100%);
    color: var(--white);
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(212, 164, 96, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(74, 111, 181, 0.1) 0%, transparent 50%);
    opacity: 0.3;
}

.footer-brand {
    position: relative;
    z-index: 2;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-logo .logo-square {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(212, 164, 96, 0.3);
}

.footer-logo .logo-text {
    color: var(--white);
    font-weight: 800;
    font-size: 1.2rem;
}

.brand-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 30px;
    font-size: clamp(0.85rem, 2.2vw, 0.95rem);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: var(--gradient-primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(212, 164, 96, 0.4);
    color: var(--white);
}

.footer-column {
    position: relative;
    z-index: 2;
}

.footer-title {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    font-weight: 700;
    margin-bottom: clamp(20px, 5vw, 25px);
    color: var(--white);
    position: relative;
    padding-bottom: 10px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    font-size: clamp(0.8rem, 2.2vw, 0.95rem);
    display: inline-block;
    position: relative;
    padding-left: 20px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary-gold);
    border-radius: 50%;
    opacity: 0;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 25px;
}

.footer-links a:hover::before {
    opacity: 1;
}

.contact-info {
    position: relative;
    z-index: 2;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    font-size: clamp(0.8rem, 2.2vw, 0.95rem);
}

.contact-item i {
    color: var(--primary-gold);
    width: clamp(18px, 4vw, 20px);
    margin-right: clamp(12px, 3vw, 15px);
    margin-top: 3px;
    font-size: clamp(0.95rem, 2.2vw, 1.1rem);
}

.contact-item span {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.newsletter-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    margin: 60px 0 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.newsletter-title {
    font-size: clamp(1.2rem, 3.5vw, 1.6rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.newsletter-text {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
    font-size: clamp(0.8rem, 2.2vw, 0.95rem);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.newsletter-form {
    margin-top: 20px;
}

.newsletter-form .input-group {
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.newsletter-form .form-control {
    border: none;
    padding: clamp(10px, 3vw, 15px) clamp(15px, 4vw, 25px);
    font-size: clamp(0.8rem, 2.2vw, 1rem);
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-dark);
    border-radius: 50px 0 0 50px;
}

.newsletter-form .form-control:focus {
    box-shadow: none;
    background: var(--white);
    border-color: var(--primary-gold);
}

.newsletter-form .form-control::placeholder {
    color: rgba(25, 49, 125, 0.6);
}

.btn-subscribe {
    background: var(--gradient-primary);
    border: none;
    padding: clamp(10px, 3vw, 15px) clamp(15px, 4vw, 30px);
    color: var(--white);
    font-weight: 600;
    border-radius: 0 50px 50px 0;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: clamp(0.75rem, 2vw, 0.9rem);
}

.btn-subscribe:hover {
    background: var(--gradient-secondary);
    transform: translateX(-2px);
    box-shadow: 0 8px 24px rgba(212, 164, 96, 0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    margin-top: 20px;
    position: relative;
    z-index: 2;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: clamp(0.75rem, 2vw, 0.9rem);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.footer-bottom-links {
    display: flex;
    justify-content: flex-end;
    gap: 30px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: clamp(0.75rem, 2vw, 0.9rem);
    transition: var(--transition);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.footer-bottom-links a:hover {
    color: var(--primary-gold);
}

/* Mobile Responsive for Footer */
@media (max-width: 768px) {
    .footer-section {
        padding: 60px 0 0;
    }
    
    .newsletter-section {
        padding: 30px 20px;
        margin: 40px 0 30px;
    }
    
    .newsletter-title {
        font-size: 1.4rem;
        text-align: center;
    }
    
    .newsletter-text {
        text-align: center;
        margin-bottom: 20px;
    }
    
    .newsletter-form .input-group {
        flex-direction: column;
        border-radius: 15px;
    }
    
    .newsletter-form .form-control {
        border-radius: 15px;
        margin-bottom: 15px;
    }
    
    .btn-subscribe {
        border-radius: 15px;
        width: 100%;
    }
    
    .footer-bottom-links {
        justify-content: center;
        margin-top: 20px;
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-title {
        text-align: center;
        font-size: 1.2rem;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links {
        text-align: center;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .contact-item {
        justify-content: center;
        text-align: left;
    }
}

/* Particle Background */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    pointer-events: none;
}

/* Enhanced WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #25d366, #128c7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    animation: pulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
    color: white;
}

.whatsapp-float:active {
    transform: scale(0.95);
}



/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Enhanced Progress Bar */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: var(--gradient-primary);
    z-index: 1001;
    transition: width 0.3s ease;
}

/* Text Animation Classes */
.text-reveal {
    overflow: hidden;
    position: relative;
}

.text-reveal .text {
    display: inline-block;
    transform: translateY(100%);
    transition: transform 0.6s ease;
}

.text-reveal.active .text {
    transform: translateY(0);
}

/* Tooltip Styles */
.tooltip {
    position: absolute;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.9rem;
    white-space: nowrap;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.tooltip.visible {
    opacity: 1;
}

/* Enhanced form styles */
.form-floating label {
    background: linear-gradient(45deg, #d4a460, #e6c373);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-control:focus {
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 0.2rem rgba(212, 164, 96, 0.25);
}

/* Modal Enhancements */
.modal-content {
    border-radius: 20px;
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.modal-backdrop {
    backdrop-filter: blur(10px);
}

/* Enhanced Card Animations */
.card-flip {
    perspective: 1000px;
    width: 100%;
    height: 200px;
}

.card-flip-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.card-flip:hover .card-flip-inner {
    transform: rotateY(180deg);
}

.card-flip-front, .card-flip-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-flip-back {
    transform: rotateY(180deg);
    background: var(--gradient-primary);
    color: white;
}

/* Typing Animation */
.typing-animation::after {
    content: '|';
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Enhanced Button Styles */
.btn-gradient {
    background: var(--gradient-primary);
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-gradient:hover::before {
    left: 100%;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 164, 96, 0.4);
}

/* Mobile Responsive Enhancements */
@media (max-width: 768px) {
    .hero-content {
        padding-right: 0;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .hero-image {
        padding-left: 0;
    }
    
    .hero-section .container::before {
        top: -30px;
        left: -30px;
        right: -30px;
        bottom: -30px;
        border-radius: 20px;
    }
    
    .hero-title {
        font-size: clamp(2rem, 6vw, 3rem);
        line-height: 1.2;
        margin-bottom: 15px;
        letter-spacing: 1px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .hero-subtitle {
        font-size: clamp(1rem, 3vw, 1.4rem);
        margin-bottom: 30px;
    }
    
    .brand-title {
        font-size: clamp(1.5rem, 5vw, 2.5rem);
        letter-spacing: 1px;
    }
    
    .brand-text {
        font-size: clamp(0.9rem, 2.5vw, 1.1rem);
        padding: 0 20px;
    }
    
    .hero-section {
        padding: 120px 0 80px;
        min-height: 90vh;
    }
    
    .hero-section::before,
    .hero-section::after {
        opacity: 0.2;
    }
}

/* Product Navigation Styles */
.product-navigation {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--accent-blue) 100%);
    padding: 15px 0;
    position: relative;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(25, 49, 125, 0.2);
}

.product-navigation .nav-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
    flex-wrap: wrap;
}

.product-navigation .nav-menu li {
    margin: 0;
}

.product-navigation .nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    padding: 10px 20px;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
}

.product-navigation .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: var(--transition);
    z-index: -1;
    border-radius: 25px;
}

.product-navigation .nav-link:hover::before,
.product-navigation .nav-link.active::before {
    left: 0;
}

.product-navigation .nav-link:hover,
.product-navigation .nav-link.active {
    color: var(--white);
    transform: translateY(-2px);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 15px rgba(212, 164, 96, 0.3);
}

.product-navigation .nav-link i {
    margin-left: 5px;
    font-size: 12px;
    transition: var(--transition);
}

.product-navigation .nav-link:hover i {
    transform: rotate(180deg);
}

/* Mobile Responsive for Product Navigation */
@media (max-width: 768px) {
    .product-navigation {
        padding: 12px 0;
    }
    
    .product-navigation .nav-menu {
        gap: 15px;
        justify-content: center;
    }
    
    .product-navigation .nav-link {
        padding: 8px 15px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .product-navigation .nav-menu {
        gap: 10px;
        flex-direction: column;
    }
    
    .product-navigation .nav-link {
        width: 100%;
        text-align: center;
        margin-bottom: 5px;
    }
}

/* Product Item Styles */
.product-item {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 100%;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.product-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 56px var(--shadow-medium);
}

.product-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    margin-bottom: 20px;
}

.product-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
    border-radius: 16px;
}

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

.product-actions {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 2;
}

.product-item:hover .product-actions {
    opacity: 1;
    transform: translateY(0);
}

.action-btn {
    background: var(--white);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px var(--shadow-light);
    transition: var(--transition);
    backdrop-filter: blur(10px);
    font-size: 16px;
    color: var(--text-dark);
}

.add-btn {
    background: var(--gradient-primary);
    color: var(--white);
    font-weight: bold;
}

.add-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(212, 164, 96, 0.4);
    color: var(--white);
}

.view-btn {
    background: var(--white);
    color: var(--text-dark);
}

.view-btn:hover {
    background: var(--accent-blue);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(74, 111, 181, 0.4);
}

.product-info {
    padding: 0;
    text-align: center;
    margin-top: auto;
}

.product-name {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
    transition: var(--transition);
}

.product-item:hover .product-name {
    color: var(--primary-navy);
}

.product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin: 0 0 20px 0;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Prominent Add to Cart Bar */
.product-add-to-cart {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: clamp(8px, 2vw, 12px) clamp(15px, 4vw, 20px);
    border-radius: 50px;
    font-weight: 600;
    font-size: clamp(0.8rem, 2.5vw, 1rem);
    cursor: pointer;
    transition: var(--transition);
    margin-top: 15px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(212, 164, 96, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-add-to-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 164, 96, 0.5);
    background: var(--gradient-secondary);
}

.product-add-to-cart:active {
    transform: translateY(0);
}

.product-add-to-cart i {
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
}

/* Alternative style for the existing add-btn in actions */
.action-btn.add-btn {
    background: var(--gradient-primary);
    color: var(--white);
    font-weight: bold;
}

@media (max-width: 576px) {
    .hero-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        word-spacing: -2px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        letter-spacing: 1px;
    }
    
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* Cart Modal Styles */
.cart-modal {
  position: fixed;
  z-index: 9999;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(26,49,125,0.15);
  display: flex; align-items: center; justify-content: center;
}
.cart-modal-content {
  background: #fff;
  border-radius: 18px;
  width: 90vw; max-width: 500px;
  max-height: 90vh;
  box-shadow: 0 8px 32px rgba(26,49,125,0.18);
  display: flex; flex-direction: column;
  overflow: hidden;
}
.cart-modal-header {
  background: #1A317D;
  color: #fff;
  padding: 1.2rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
}
.cart-modal-close {
  font-size: 2rem; cursor: pointer;
}
.cart-modal-body {
  padding: 1.5rem 2rem;
  overflow-y: auto;
  flex: 1 1 auto;
}
.cart-modal-footer {
  background: #f8f8f8;
  padding: 1rem 2rem;
  border-top: 1px solid #eee;
}
.cart-item-img {
  width: 60px; height: 60px; object-fit: cover; border-radius: 8px;
}
.cart-total-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 1.2rem; font-weight: 600;
}
@media (max-width: 600px) {
  .cart-modal-content { max-width: 98vw; padding: 0; }
  .cart-modal-header, .cart-modal-body, .cart-modal-footer { padding-left: 1rem; padding-right: 1rem; }
}
/* End Cart Modal Styles */

/* Product Pricing Styles */
.product-pricing {
    display: flex;
    flex-direction: column;
    gap: clamp(0.25rem, 1vw, 0.5rem);
    margin: clamp(0.25rem, 1vw, 0.5rem) 0;
}

.original-price {
    font-size: clamp(0.75rem, 2vw, 0.9rem);
    color: var(--text-light);
    text-decoration: line-through;
    font-weight: 400;
    opacity: 0.8;
}

.discount-price-container {
    align-items: center;
    gap: clamp(0.25rem, 1vw, 0.5rem);
    flex-wrap: wrap;
    text-align: center;
}

.discount-price {
    font-size: clamp(1rem, 3vw, 1.2rem);
    font-weight: 700;
    color: var(--discount-green);
    margin: 0;
}

.discount-badge {
    display: inline-block;
    background: var(--discount-red);
    color: white;
    font-size: clamp(0.6rem, 1.8vw, 0.75rem);
    font-weight: 600;
    padding: clamp(0.15rem, 1vw, 0.25rem) clamp(0.25rem, 1vw, 0.5rem);
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.3);
    animation: pulse 2s infinite;
    order: 1; /* This ensures the badge appears after the price */
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Product page specific pricing styles */
.product-details .product-pricing {
    flex-direction: row;
    align-items: center;
    gap: clamp(0.5rem, 2vw, 1rem);
    margin: clamp(0.5rem, 2vw, 1rem) 0;
}

.product-details .original-price {
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
}

.product-details .discount-price-container {
    flex-direction: row;
    align-items: center;
    gap: clamp(0.5rem, 1.8vw, 0.8rem);
}

.product-details .discount-price {
    font-size: clamp(1.5rem, 4vw, 1.8rem);
    font-weight: 800;
}

.product-details .discount-badge {
    font-size: clamp(0.65rem, 2vw, 0.8rem);
    padding: clamp(0.25rem, 1vw, 0.4rem) clamp(0.5rem, 1.8vw, 0.8rem);
    order: 1;
}

/* Responsive pricing styles */
@media (max-width: 768px) {
    .product-pricing {
        gap: 0.3rem;
    }
    
    .original-price {
        font-size: 0.8rem;
    }
    
    .discount-price-container {
        gap: 0.3rem;
    }
    
    .discount-price {
        font-size: 1rem;
    }
    
    .discount-badge {
        font-size: 0.7rem;
        padding: 0.2rem 0.4rem;
    }
    
    .product-details .product-pricing {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .product-details .original-price {
        font-size: 1rem;
    }
    
    .product-details .discount-price-container {
        flex-direction: row;
        align-items: center;
        gap: 0.5rem;
    }
    
    .product-details .discount-price {
        font-size: 1.5rem;
    }
}

/* Hover effects for pricing */
.product-card:hover .discount-badge {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.4);
}

.product-card:hover .discount-price {
    color: var(--primary-gold);
    transition: var(--transition);
}

