 :root {
     --primary-color: #2563eb;
     --text-dark: #1f2937;
     --bg-white: #ffffff;
     --bg-light: #f3f4f6;
     --transition-speed: 0.3s;
 }

 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 body {
     background-color: var(--bg-light);
     color: var(--text-dark);
 }

 :root {
     --showcase-primary-color: #1a1a1a;
     --accent-color: #e63946;
     --cta-color: #2563eb;
     --cta-hover: #1d4ed8;
     --bg-color: #ffffff;
     --card-bg: #ffffff;
     --secondary-text: #757575;
     --border-color: #f0f0f0;
     --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
     --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
     --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
     --transition: all 0.3s ease;
 }

 a {
     text-decoration: none;
     color: inherit;
 }

 .site-header {
     background-color: var(--bg-white);
     box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
     position: sticky;
     top: 0;
     z-index: 1000;
 }

 .navbar {
     max-width: 1400px;
     width: 90%;
     margin: 0 auto;
     height: 90px;
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .nav-links {
     display: flex;
     gap: 2rem;
     align-items: center;
     list-style: none;
 }

 .nav-item {
     position: relative;
     font-weight: 600;
     color: var(--text-dark);
     cursor: pointer;
 }

 .dropdown-menu {
     list-style: none;
 }

 .profile-icon {
     padding: 5px;
     font-weight: 600;
 }

 .nav-item.hover-underline {
     padding-top: 5px;
 }

 .nav-item.hover-underline::before {
     content: '';
     position: absolute;
     width: 100%;
     height: 3px;
     bottom: -4px;
     left: 0;
     background-color: var(--primary-color);
     visibility: hidden;
     transform: scaleX(0);
     transform-origin: left;
     transition: all var(--transition-speed) ease-in-out;
 }

 .nav-item.hover-underline:hover::before,
 .nav-item.hover-underline.active::before {
     visibility: visible;
     transform: scaleX(1);
 }


 .dropdown {
     position: relative;
     height: auto;
     display: flex;
     align-items: center;
 }

 /* .dropdown>a::after {
    content: '▼';
    font-size: 0.8em;
    margin-left: 5px;
    display: inline-block;
} */

 .dropdown-menu {
     position: absolute;
     top: 140%;
     left: 50%;
     transform: translateX(-50%) translateY(10px);
     background: var(--bg-white);
     min-width: 180px;
     box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
     border-radius: 8px;
     padding: 0.5rem 0;
     opacity: 0;
     visibility: hidden;
     transition: 0.3s;
     border: 1px solid #e5e7eb;
 }

 .dropdown:hover .dropdown-menu {
     opacity: 1;
     visibility: visible;
     transform: translateX(-50%) translateY(0);
 }

 .dropdown-item {
     display: block;
     padding: 0.75rem 1.5rem;
     transition: background 0.2s;
 }

 .dropdown-item:hover {
     background-color: var(--bg-light);
     color: var(--primary-color);
 }

 .nav-actions {
     display: flex;
     align-items: center;
     gap: 1.5rem;
 }

 .search-container {
     display: flex;
     align-items: center;
     border: 1px solid #a3a4a8;
     border-radius: 20px;
     background: var(--bg-light);
     padding-right: 15px;
     width: 200px;
     transition: all 0.3s ease;
 }

 .search-input {
     border: none;
     background: transparent;
     outline: none;
     padding: 0.5rem 1rem;
     width: 100%;
     color: var(--text-dark);
 }

 .search-icon {
     color: #777;
     cursor: pointer;
 }

 .search-container:focus-within {
     border-color: var(--primary-color);
     width: 240px;
     box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.1);
 }

 .cart-icon-wrapper {
     cursor: pointer;
     position: relative;
     font-size: 1.4rem;
     color: var(--text-dark);
     transition: color 0.6s ease;
 }

 .cart-icon-wrapper:hover .cart-icon {
     color: var(--primary-color);
 }

 .cart-badge {
     position: absolute;
     top: -5px;
     right: -8px;
     background: #ef4444;
     color: white;
     font-size: 0.7rem;
     height: 18px;
     width: auto;
     min-width: 18px;
     padding: 2px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: transform 0.2s ease-out;
     transform-origin: center;
 }

 @keyframes cartBump {
     0% {
         transform: scale(1);
     }

     25% {
         transform: scale(1.2) rotate(-8deg);
     }

     50% {
         transform: scale(1.2) rotate(8deg);
     }

     75% {
         transform: scale(1.1) rotate(-4deg);
     }

     100% {
         transform: scale(1);
     }
 }

 .cart-animating {
     animation: cartBump 0.4s ease-out;
 }

 .cart-flying-ghost {
     position: fixed;
     z-index: 9999;
     pointer-events: none;
     border-radius: 50%;
     object-fit: cover;
     box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
     transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
 }


 .menu-toggle {
     font-size: 1.5rem;
     color: var(--text-dark);
     cursor: pointer;
     transition: color 0.3s;
     display: none;
 }

 .menu-toggle:hover {
     color: var(--primary-color);
 }

 #close-menu-btn {
     display: none;
 }





 /* =================Body Start=============== */
 .main-container {
     width: 90%;
     max-width: 1400px;
     margin: 0 auto;
 }

 
 .slider-wrapper {
     position: relative;
     width: 100%;
     max-width: 1400px;
     aspect-ratio: 16 / 9;
     overflow: hidden;
     box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
     background: #000;
     margin-top: 10px;
 }

 .slides-container {
     display: flex;
     width: 100%;
     height: 100%;
     transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
 }

 .slide {
     min-width: 100%;
     height: 100%;
     position: relative;
     overflow: hidden;
 }

 .slide img {
     width: 100%;
     height: 100%;
     object-fit: contain;
     transition: transform 6s ease;
 }

 .slide.active img {
     transform: scale(1.05);
 }

 .slide-desc {
     font-size: 1.1rem;
     line-height: 1.6;
     margin-bottom: 30px;
     color: rgba(255, 255, 255, 0.9);
     text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
 }

 .slider-btn {
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     background: rgba(139, 137, 137, 0.4);
     backdrop-filter: blur(5px);
     border: 1px solid rgba(255, 255, 255, 0.2);
     color: white;
     width: 50px;
     height: 50px;
     border-radius: 50%;
     cursor: pointer;
     z-index: 10;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: all 0.3s ease;
 }

 .slider-btn:hover {
     background: white;
     color: black;
 }

 .prev-btn {
     left: 20px;
 }

 .next-btn {
     right: 20px;
 }

 .indicators {
     position: absolute;
     bottom: 30px;
     left: 50%;
     transform: translateX(-50%);
     display: flex;
     gap: 12px;
     z-index: 10;
 }

 .dot {
     width: 12px;
     height: 12px;
     border-radius: 50%;
     background-color: rgba(255, 255, 255, 0.3);
     cursor: pointer;
     transition: all 0.3s ease;
     border: 2px solid transparent;
 }

 .dot.active {
     background-color: white;
     transform: scale(1.2);
 }

 .dot:hover {
     background-color: rgba(255, 255, 255, 0.7);
 }

 /* ==================== HERO SECTION STYLING ==================== */

 .hero-section {
     position: relative;
     width: 100%;
     min-height: 600px;
     display: flex;
     align-items: center;
     justify-content: center;
     overflow: hidden;
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     border-radius: 10px;
     margin-top: 5px;
 }

 .hero-background {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-image:
         radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.8) 0%, transparent 50%),
         radial-gradient(circle at 80% 80%, rgba(118, 75, 162, 0.8) 0%, transparent 50%);
     z-index: 0;
 }

 .hero-animated-shapes {
     position: absolute;
     width: 100%;
     height: 100%;
     overflow: hidden;
     z-index: 1;
 }

 .shape {
     position: absolute;
     opacity: 0.1;
     animation: float 6s ease-in-out infinite;
 }

 .shape-1 {
     width: 300px;
     height: 300px;
     background: white;
     border-radius: 50%;
     top: -50px;
     left: -50px;
     animation-delay: 0s;
 }

 .shape-2 {
     width: 200px;
     height: 200px;
     background: white;
     border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
     bottom: -30px;
     right: -30px;
     animation-delay: 2s;
 }

 .shape-3 {
     width: 150px;
     height: 150px;
     background: white;
     border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
     top: 50%;
     right: 10%;
     animation-delay: 4s;
 }

 @keyframes float {

     0%,
     100% {
         transform: translateY(0px) rotate(0deg);
     }

     50% {
         transform: translateY(30px) rotate(10deg);
     }
 }

 .hero-content {
     position: relative;
     z-index: 2;
     max-width: 1200px;
     width: 100%;
     padding: 60px 40px;
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 60px;
     align-items: center;
 }

 .hero-text {
     color: white;
     animation: slideInLeft 0.8s ease-out;
 }

 .hero-text h1 {
     font-size: 3.5rem;
     font-weight: 800;
     line-height: 1.2;
     margin-bottom: 20px;
     letter-spacing: -1px;
     font-family: 'Cinzel', serif;
 }

 .hero-text .highlight {
     background: linear-gradient(120deg, #fff 0%, #e0e7ff 100%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
 }

 .hero-text p {
     font-size: 1.2rem;
     line-height: 1.6;
     margin-bottom: 30px;
     opacity: 0.95;
     font-weight: 300;
 }

 .hero-buttons {
     display: flex;
     gap: 20px;
     flex-wrap: wrap;
 }

 .btn-primary,
 .btn-secondary {
     padding: 15px 40px;
     font-size: 1rem;
     font-weight: 600;
     border: none;
     border-radius: 50px;
     cursor: pointer;
     transition: all 0.3s ease;
     text-decoration: none;
     display: inline-block;
     text-align: center;
 }

 .btn-primary {
     background: white;
     color: #667eea;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
 }

 .btn-primary:hover {
     transform: translateY(-3px);
     box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
 }

 .btn-secondary {
     background: transparent;
     color: white;
     border: 2px solid white;
 }

 .btn-secondary:hover {
     background: white;
     color: #667eea;
     transform: translateY(-3px);
 }

 .hero-features {
     display: flex;
     gap: 30px;
     margin-top: 40px;
     flex-wrap: wrap;
 }

 .hero-feature {
     display: flex;
     align-items: center;
     gap: 12px;
     font-size: 0.95rem;
     opacity: 0.9;
 }

 .hero-feature i {
     font-size: 1.5rem;
     color: #fff;
 }

 .hero-visual {
     position: relative;
     animation: slideInRight 0.8s ease-out;
 }

 .hero-image-wrapper {
     position: relative;
     width: 100%;
     height: 500px;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .hero-image-box {
     position: relative;
     width: 100%;
     height: 100%;
     background: rgba(255, 255, 255, 0.1);
     backdrop-filter: blur(10px);
     border-radius: 20px;
     overflow: hidden;
     border: 2px solid rgba(255, 255, 255, 0.2);
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .hero-image-box img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     border-radius: 20px;
 }


.hero-slider-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    animation: heroSlideSlider 20s infinite; 
}

.hero-slide:nth-child(1) { animation-delay: 0s; }
.hero-slide:nth-child(2) { animation-delay: 4s; }
.hero-slide:nth-child(3) { animation-delay: 8s; }
.hero-slide:nth-child(4) { animation-delay: 12s; }
.hero-slide:nth-child(5) { animation-delay: 16s; }

@keyframes heroSlideSlider {
    0% { 
        opacity: 0; 
        transform: scale(1); 
    }
    5%, 20% { 
        opacity: 1; 
        z-index: 2;
    }
    25% {
        opacity: 0;
        transform: scale(1.1); 
    }
    100% { 
        opacity: 0; 
    }
}

 .hero-floating-card {
     position: absolute;
     background: rgba(255, 255, 255, 0.95);
     padding: 20px 25px;
     border-radius: 15px;
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
     animation: float 4s ease-in-out infinite;
 }

 .hero-floating-card-1 {
     bottom: 30px;
     left: 20px;
     animation-delay: 0s;
 }

 .hero-floating-card-2 {
     top: 40px;
     right: 20px;
     animation-delay: 1s;
 }

 .floating-card-content {
     display: flex;
     align-items: center;
     gap: 12px;
 }

 .floating-card-icon {
     width: 40px;
     height: 40px;
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     font-size: 1.2rem;
 }

 .floating-card-text h4 {
     font-size: 0.9rem;
     font-weight: 700;
     color: #333;
     margin: 0;
 }

 .floating-card-text p {
     font-size: 0.8rem;
     color: #666;
     margin: 3px 0 0 0;
 }

 @keyframes slideInLeft {
     from {
         opacity: 0;
         transform: translateX(-50px);
     }

     to {
         opacity: 1;
         transform: translateX(0);
     }
 }

 @keyframes slideInRight {
     from {
         opacity: 0;
         transform: translateX(50px);
     }

     to {
         opacity: 1;
         transform: translateX(0);
     }
 }

 /* ==================== RESPONSIVE DESIGN ==================== */

 @media (max-width: 768px) {
     .hero-section {
         min-height: 500px;
     }

     .hero-content {
         grid-template-columns: 1fr;
         gap: 40px;
         padding: 40px 20px;
     }

     .hero-text h1 {
         font-size: 2.5rem;
     }

     .hero-text p {
         font-size: 1rem;
     }

     .hero-image-wrapper {
         height: 350px;
     }

     .hero-buttons {
         flex-direction: column;
     }

     .btn-primary,
     .btn-secondary {
         width: 100%;
     }

     .hero-features {
         flex-direction: row;
         gap: 15px;
     }

     .shape-1 {
         width: 150px;
         height: 150px;
     }

     .shape-2 {
         width: 100px;
         height: 100px;
     }

     .shape-3 {
         width: 80px;
         height: 80px;
     }
 }

 @media (max-width: 480px) {
     .hero-section {
         min-height: 400px;
     }

     .hero-text h1 {
         font-size: 2rem;
     }

     .hero-text p {
         font-size: 0.95rem;
     }

     .hero-image-wrapper {
         height: 250px;
     }

    .hero-floating-card {
        padding: 10px 15px;
        border-radius: 10px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    }

    .floating-card-icon {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }

    .floating-card-content {
        gap: 8px;
    }

    .floating-card-text h4 {
        font-size: 0.75rem;
        line-height: 1.1;
    }

    .floating-card-text p {
        font-size: 0.65rem;
        margin-top: 2px;
    }

    .hero-floating-card-1 {
        bottom: 10px;
        left: 10px;
    }

    .hero-floating-card-2 {
        top: 10px;
        right: 10px;
    }
 }

 /* =============Why shop us start========================= */
 .why-shop-section {
     padding: 80px 20px;
     max-width: 1200px;
     margin: 0 auto;
     text-align: center;
     position: relative;
 }

 .bg-decoration {
     position: absolute;
     top: -50px;
     right: -50px;
     width: 300px;
     height: 300px;
     background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
     border-radius: 50%;
     z-index: -1;
 }

 .bg-decoration.left {
     top: auto;
     bottom: -50px;
     right: auto;
     left: -50px;
 }

 .section-header {
     margin-bottom: 60px;
     opacity: 0;
     transform: translateY(20px);
     transition: all 0.8s ease-out;
 }

 .section-header.visible {
     opacity: 1;
     transform: translateY(0);
 }

 .section-subtitle {
     color: #2563eb;
     text-transform: uppercase;
     letter-spacing: 2px;
     font-size: 0.85rem;
     font-weight: 700;
     margin-bottom: 10px;
     display: block;
 }

 .section-title {
     font-size: 2.5rem;
     font-weight: 700;
     color: #0f172a;
 }

 .features-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
     gap: 30px;
 }

 .feature-card {
     background: #ffffff;
     border-radius: 16px;
     padding: 40px 25px;
     text-align: center;
     position: relative;
     cursor: pointer;
     box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
     border: 1px solid #e2e8f0;
     opacity: 0;
     transform: translateY(40px);
     transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
 }

 .feature-card.visible {
     opacity: 1;
     transform: translateY(0);
 }

 .feature-card:nth-child(1) {
     transition-delay: 0.1s;
 }

 .feature-card:nth-child(2) {
     transition-delay: 0.2s;
 }

 .feature-card:nth-child(3) {
     transition-delay: 0.3s;
 }

 .feature-card:nth-child(4) {
     transition-delay: 0.4s;
 }

 .feature-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
     border-color: #bfdbfe;
 }

 .icon-wrapper {
     width: 70px;
     height: 70px;
     margin: 0 auto 25px;
     background: #eff6ff;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: all 0.4s ease;
 }

 .feature-card:hover .icon-wrapper {
     background: #2563eb;
     transform: scale(1.1) rotate(-5deg);
     box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.3);
 }

 .icon-wrapper svg {
     width: 32px;
     height: 32px;
     stroke: #2563eb;
     transition: stroke 0.4s ease;
 }

 .feature-card:hover .icon-wrapper svg {
     stroke: #ffffff;
 }

 .feature-title {
     font-size: 1.25rem;
     margin-bottom: 12px;
     font-weight: 600;
     color: #1e293b;
     transition: color 0.3s ease;
 }

 .feature-card:hover .feature-title {
     color: #2563eb;
 }

 .feature-desc {
     font-size: 0.95rem;
     line-height: 1.6;
     color: #64748b;
     transition: color 0.3s ease;
 }

 .feature-card:hover .feature-desc {
     color: #334155;
 }



 /* =======================Products Section==================== */
 .showcase-section {
     width: 90%;
     max-width: 1400px;
     margin: 0 auto;
 }

 .showcase-section h1 {
     text-align: center;
     padding: 10px 0;
     background-color: #2563eb;
     color: white;
     border-radius: 6px;
     font-family: 'Cinzel';
 }

 .product-section-header {
     display: flex;
     justify-content: space-between;
     align-items: flex-start;
     margin: 24px 0;
     gap: 20px;
 }

 .section-title h2 {
     font-size: 1.75rem;
     font-weight: 700;
     margin-bottom: 4px;
     letter-spacing: -0.5px;
     display: flex;
     align-items: center;
     gap: 10px;
     font-family: 'Cinzel';
 }

 .section-title p {
     color: var(--secondary-text);
     font-size: 0.85rem;
     font-weight: 200;
 }

 .view-all-link {
     text-decoration: none;
     color: var(--showcase-primary-color);
     font-weight: 600;
     font-size: 0.9rem;
     border-bottom: 2px solid transparent;
     transition: var(--transition);
     display: flex;
     align-items: center;
     gap: 2px;
 }

 .view-all-link:hover {
     border-bottom-color: #2563eb;
     color: #2563eb;
 }

 .slider-container {
     position: relative;
     width: 100%;
 }

 .slider-track-wrapper {
     overflow-x: auto;
     white-space: nowrap;
     scroll-behavior: smooth;
     padding: 10px 0px 30px 0px;
     scrollbar-width: none;
 }

 .slider-track-wrapper::-webkit-scrollbar {
     display: none;
 }

 .product-list {
     display: flex;
     gap: 20px;
 }

 .product-card {
     flex: 0 0 260px;
     background: var(--card-bg);
     border: 1px solid var(--border-color);
     border-radius: 12px;
     overflow: hidden;
     position: relative;
     transition: var(--transition);
     display: flex;
     flex-direction: column;
     scroll-snap-align: start;
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);

 }

 .product-card:hover {
     transform: translateY(-5px);
     box-shadow: var(--shadow-md);
     border-color: transparent;
 }

 .card-image-wrapper {
     position: relative;
     width: 100%;
     height: 260px;
     overflow: hidden;
     cursor: pointer;
     background-color: #f9f9f9;
 }

 .card-image {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.5s ease;
     /* border: 1px solid black;
     border-radius: 12px; */
 }

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

 .badge {
     position: absolute;
     top: 12px;
     left: 12px;
     padding: 4px 8px;
     border-radius: 4px;
     font-size: 0.75rem;
     font-weight: 700;
     text-transform: uppercase;
     z-index: 2;
 }

 .badge-new {
     background-color: var(--cta-color);
     color: white;
 }

 .badge-sale {
     background-color: var(--accent-color);
     color: white;
 }

 .upcoming-badge {
     position: absolute;
     top: 10px;
     left: 10px;
     background-color: #ff9800;
     color: #fff;
     padding: 4px 10px;
     font-size: 12px;
     font-weight: 700;
     border-radius: 4px;
     text-transform: uppercase;
     z-index: 10;
     box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
 }

 .add-cart-btn.disabled {
     background-color: #cccccc !important;
     color: #666666 !important;
     cursor: not-allowed !important;
     border: none !important;
 }

 .wishlist-btn {
     position: absolute;
     top: 12px;
     right: 12px;
     width: 32px;
     height: 32px;
     background: rgba(255, 255, 255, 0.8);
     backdrop-filter: blur(4px);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     border: none;
     transition: var(--transition);
     z-index: 2;
 }

 .wishlist-btn:hover {
     background: #fff;
     transform: scale(1.1);
 }

 .wishlist-btn svg {
     width: 18px;
     height: 18px;
     fill: none;
     stroke: var(--showcase-primary-color);
     stroke-width: 2;
 }

 .wishlist-btn.active svg {
     fill: var(--accent-color);
     stroke: var(--accent-color);
 }

 .card-content {
     padding: 16px;
     display: flex;
     flex-direction: column;
     flex-grow: 1;
 }

 .product-category {
     font-size: 0.8rem;
     color: var(--secondary-text);
     margin-bottom: 4px;
     text-transform: uppercase;
     letter-spacing: 0.5px;
 }

 .product-title {
     font-size: 1rem;
     font-weight: 600;
     color: var(--showcase-primary-color);
     margin-bottom: 8px;
     line-height: 1.4;
     white-space: nowrap;
     overflow: hidden;
     text-overflow: ellipsis;
 }

 .rating {
     display: flex;
     align-items: center;
     margin-bottom: 12px;
     font-size: 0.85rem;
     color: #ffb400;
 }

 .rating span {
     margin-left: 4px;
     color: var(--secondary-text);
     font-size: 0.8rem;
 }

 .card-footer {
     display: flex;
     justify-content: center;
     flex-direction: column;
     align-items: center;
     gap: 10px;
 }

 .price-group {
     display: flex;
     flex-direction: column;
     justify-content: center;
     text-align: center;
 }

 .current-price {
     font-weight: 700;
     font-size: 1.2rem;
     color: var(--showcase-primary-color);
 }

 .old-price {
     font-size: 0.9rem;
     text-decoration: line-through;
     color: #b0b0b0;
 }

 .add-cart-btn {
     background-color: var(--cta-color);
     color: white;
     border: none;
     width: auto;
     height: auto;
     padding: 10px 16px;
     border-radius: 8px;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 8px;
     cursor: pointer;
     font-size: 0.85rem;
     font-weight: 600;
     transition: var(--transition);
 }

 .add-cart-btn:hover {
     background-color: var(--cta-hover);
     transform: translateY(-2px);
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
 }


 .nav-btn {
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     width: 44px;
     height: 44px;
     border-radius: 50%;
     background: white;
     border: 1px solid var(--border-color);
     box-shadow: var(--shadow-sm);
     cursor: pointer;
     display: flex;
     align-items: center;
     justify-content: center;
     z-index: 10;
     opacity: 0;
     transition: var(--transition);
 }

 @media (min-width: 1024px) {
     .slider-container:hover .nav-btn {
         opacity: 1;
     }
 }

 .nav-btn:hover {
     background-color: var(--showcase-primary-color);
     border-color: var(--showcase-primary-color);
 }

 .nav-btn:hover svg {
     stroke: white;
 }

 .nav-btn.prev {
     left: -22px;
 }

 .nav-btn.next {
     right: -22px;
 }

 .nav-btn svg {
     width: 20px;
     height: 20px;
     stroke: var(--showcase-primary-color);
     stroke-width: 2;
     fill: none;
     transition: var(--transition);
 }

.toast-container {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%); 
    z-index: 3000;
    display: flex;
    flex-direction: column-reverse; 
    gap: 10px;
    align-items: center; 
}

.toast {
    background: #ffffff;
    color: #333;
    padding: 12px 24px;
    border-radius: 10px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    border-left: 4px solid #2563eb; 
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 320px;
    animation: riseUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.toast.hide {
    animation: fadeDown 0.3s ease forwards;
}

@keyframes riseUp {
    0% {
        opacity: 0;
        transform: scale(0.5) translateY(40px);
    }
    70% {
        transform: scale(1.05) translateY(-5px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

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



 .separator {
     width: 90%;
     height: 1px;
     background-color: #757575;
     margin: auto;
 }


 /* ================= Cart Sidebar Styles ================= */
 .cart-overlay {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.5);
     z-index: 1001;
     opacity: 0;
     visibility: hidden;
     transition: all 0.3s ease;
 }

 .cart-overlay.active {
     opacity: 1;
     visibility: visible;
 }

 .cart-sidebar {
     position: fixed;
     top: 0;
     right: -600px;
     width: 350px;
     height: 100vh;
     background: #fff;
     z-index: 1002;
     box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
     transition: right 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
     display: flex;
     flex-direction: column;
 }

 .cart-sidebar.active {
     right: 0;
 }

 .cart-header {
     padding: 20px;
     border-bottom: 1px solid #eee;
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .cart-header h3 {
     font-size: 1.5rem;
     font-weight: 700;
 }

 .close-cart {
     cursor: pointer;
     font-size: 1.5rem;
     transition: color 0.3s;
 }

 .close-cart:hover {
     color: var(--accent-color);
 }

 .cart-items {
     flex: 1;
     overflow-y: auto;
     padding: 20px;
 }

 .empty-cart-msg {
     display: flex;
     flex-direction: column;
     justify-content: center;
     text-align: center;
     color: #888;
     margin-top: 50px;
 }

 .cart-item {
     display: flex;
     gap: 15px;
     margin-bottom: 20px;
     padding-bottom: 15px;
     border-bottom: 1px solid #f0f0f0;
     animation: fadeIn 0.3s ease;
 }

 .cart-item img {
     width: 70px;
     height: 70px;
     object-fit: cover;
     border-radius: 8px;
 }

 .cart-item-details {
     flex: 1;
     display: flex;
     flex-direction: column;
     justify-content: center;
 }

 .cart-item-title {
     font-weight: 600;
     font-size: 0.95rem;
     margin-bottom: 5px;
 }

 .cart-item-price {
     color: var(--primary-color);
     font-weight: 700;
     font-size: 0.9rem;
 }

 .cart-item-quantity {
     display: flex;
     align-items: center;
     gap: 10px;
     margin-top: 8px;
 }

 .qty-btn {
     width: 20px;
     height: 20px;
     background: #eee;
     border: none;
     border-radius: 4px;
     cursor: pointer;
     display: flex;
     align-items: center;
     justify-content: center;
     font-weight: bold;
 }

 .remove-btn {
     color: #ff4d4d;
     cursor: pointer;
     align-self: flex-start;
     margin-top: 5px;
     font-size: 1.1rem;
 }

 .cart-footer {
     padding: 20px;
     border-top: 1px solid #eee;
     background: #f9f9f9;
 }

 .cart-total {
     display: flex;
     justify-content: space-between;
     font-size: 1.2rem;
     font-weight: 700;
     margin-bottom: 15px;
 }

 .checkout-btn {
     width: 100%;
     padding: 12px;
     background: var(--cta-color);
     color: white;
     border: none;
     border-radius: 8px;
     font-size: 1rem;
     font-weight: 600;
     cursor: pointer;
     transition: background 0.3s;
 }

 .checkout-btn:hover {
     background: var(--cta-hover);
 }

 @keyframes fadeIn {
     from {
         opacity: 0;
         transform: translateY(10px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }



 /* ================= Product Modal Styles ================= */
 .product-modal-overlay {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.6);
     z-index: 2000;
     display: flex;
     justify-content: center;
     align-items: center;
     opacity: 0;
     visibility: hidden;
     transition: all 0.3s ease;
     backdrop-filter: blur(5px);
 }

 .product-modal-overlay.active {
     opacity: 1;
     visibility: visible;
 }

 .product-modal-content {
     background: white;
     width: 80%;
     height: 90vh;
     max-width: 900px;
     border-radius: 16px;
     position: relative;
     overflow: auto;
     -webkit-overflow-scrolling: touch;
     scrollbar-width: none;
     -ms-overflow-style: none;
     box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
     transform: scale(0.9);
     transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
 }

 .product-modal-overlay.active .product-modal-content {
     transform: scale(1);
 }

 .close-modal-btn {
     position: absolute;
     top: 15px;
     right: 15px;
     background: #f3f4f6;
     border: none;
     width: 36px;
     height: 36px;
     border-radius: 50%;
     cursor: pointer;
     font-size: 1.2rem;
     color: #333;
     z-index: 10;
     transition: 0.2s;
 }

 .close-modal-btn:hover {
     background: #e5e7eb;
     transform: rotate(90deg);
 }

 .modal-body {
     display: flex;
     flex-direction: column;
 }


 .modal-image-container {
     flex: 1;
     width: 50%;
     height: 400px;
     background: #f9fafb;
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 20px;
 }

 .modal-image-container img {
     max-width: 100%;
     max-height: 100%;
     object-fit: contain;
     mix-blend-mode: multiply;
     border-radius: 16px;
 }

 .modal-info-container {
     flex: 1;
     padding: 40px;
     display: flex;
     flex-direction: column;
     justify-content: center;
 }

 .modal-category {
     color: var(--primary-color);
     font-weight: 600;
     text-transform: uppercase;
     letter-spacing: 1px;
     font-size: 0.85rem;
     margin-bottom: 10px;
 }

 .modal-title {
     font-size: 2rem;
     line-height: 1.2;
     margin-bottom: 10px;
     color: var(--text-dark);
 }

 .modal-rating {
     color: #fbbf24;
     margin-bottom: 20px;
     font-size: 0.9rem;
 }

 .modal-description {
     color: #6b7280;
     line-height: 1.6;
     margin-bottom: 30px;
 }

 .modal-price {
     font-size: 1.8rem;
     font-weight: 700;
     color: var(--text-dark);
 }

 .modal-actions {
     display: flex;
     gap: 15px;
     margin-top: 20px;
 }

 .quantity-selector {
     display: flex;
     align-items: center;
     border: 1px solid #e5e7eb;
     border-radius: 8px;
     overflow: hidden;
 }

 .quantity-selector button {
     background: #f9fafb;
     border: none;
     width: 40px;
     height: 45px;
     cursor: pointer;
     font-size: 1.1rem;
     transition: 0.2s;
 }

 .quantity-selector button:hover {
     background: #e5e7eb;
 }

 .quantity-selector span {
     width: 40px;
     text-align: center;
     font-weight: 600;
 }

 .modal-btn {
     flex: 1;
     height: 45px;
 }


 /* =============subscribe start========================= */
 .subscribe-container {
     width: 90%;
     max-width: 1400px;
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     padding: 60px 40px;
     text-align: center;
     font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
     border-radius: 24px;
     margin: 60px auto;
     box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
     position: relative;
     overflow: hidden;
 }

 .subscribe-container::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
     opacity: 0.1;
     pointer-events: none;
 }

 .subscribe-content {
     position: relative;
     z-index: 2;
 }

 .subscribe-header {
     color: white;
     font-size: 2.5rem;
     font-weight: 700;
     line-height: 1.2;
     margin-bottom: 20px;
     padding: 0;
 }

 .highlight {
     color: #ffd166;
     position: relative;
     display: inline-block;
 }

 .highlight::after {
     content: '';
     position: absolute;
     bottom: 5px;
     left: 0;
     width: 100%;
     height: 8px;
     background: rgba(255, 209, 102, 0.2);
     z-index: -1;
     border-radius: 4px;
 }

 .subscribe-description {
     color: rgba(255, 255, 255, 0.9);
     font-size: 1.1rem;
     line-height: 1.6;
     max-width: 600px;
     margin: 0 auto 40px;
     padding: 0;
 }

 .subscribe-section {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 15px;
     margin: 0 auto 20px;
     max-width: 600px;
     flex-wrap: wrap;
 }

 .input-wrapper {
     position: relative;
     flex: 1;
     min-width: 300px;
 }

 .email-icon {
     position: absolute;
     left: 20px;
     top: 50%;
     transform: translateY(-50%);
     width: 20px;
     height: 20px;
     color: #667eea;
     pointer-events: none;
 }

 .subscribe-input {
     width: 100%;
     height: 56px;
     border-radius: 28px;
     border: 2px solid rgba(255, 255, 255, 0.2);
     background: rgba(255, 255, 255, 0.95);
     padding: 0 60px;
     font-size: 16px;
     font-family: 'Inter', sans-serif;
     transition: all 0.3s ease;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
 }

 .subscribe-input::placeholder {
     color: #9ca3af;
     font-family: 'Inter', sans-serif;
     padding-left: 0;
     font-weight: 400;
     opacity: 0.8;
 }

 .subscribe-input:focus {
     outline: none;
     border-color: #667eea;
     background: white;
     box-shadow: 0 6px 20px rgba(102, 126, 234, 0.2);
     transform: translateY(-2px);
 }

 .subscribe-button {
     height: 56px;
     background: linear-gradient(135deg, #ffd166 0%, #ffb347 100%);
     border: none;
     border-radius: 28px;
     color: #1a202c;
     font-family: 'Inter', sans-serif;
     font-size: 16px;
     font-weight: 600;
     padding: 0 35px;
     cursor: pointer;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 10px;
     transition: all 0.3s ease;
     box-shadow: 0 4px 15px rgba(255, 209, 102, 0.3);
     min-width: 160px;
     white-space: nowrap;
 }

 .subscribe-button:hover {
     transform: translateY(-3px);
     box-shadow: 0 8px 25px rgba(255, 209, 102, 0.4);
     background: linear-gradient(135deg, #ffda7a 0%, #ffbf66 100%);
 }

 .subscribe-button:active {
     transform: translateY(-1px);
 }

 .arrow-icon {
     width: 18px;
     height: 18px;
     transition: transform 0.3s ease;
 }

 .subscribe-button:hover .arrow-icon {
     transform: translateX(4px);
 }

 .privacy-note {
     color: rgba(255, 255, 255, 0.7);
     font-size: 0.9rem;
     margin-top: 25px;
     padding: 0;
 }

 .privacy-note a {
     color: #ffd166;
     text-decoration: none;
     font-weight: 500;
     transition: color 0.3s ease;
 }

 .privacy-note a:hover {
     color: white;
     text-decoration: underline;
 }

 @media (max-width: 768px) {
     .subscribe-container {
         padding: 40px 25px;
         margin: 40px auto;
         border-radius: 20px;
     }

     .subscribe-header {
         font-size: 2rem;
     }

     .subscribe-description {
         font-size: 1rem;
         padding: 0 10px;
     }

     .subscribe-section {
         flex-direction: column;
         gap: 15px;
     }

     .input-wrapper {
         min-width: 100%;
     }

     .subscribe-button {
         width: 100%;
         margin-top: 5px;
     }
 }

 @media (max-width: 480px) {
     .subscribe-header {
         font-size: 1.75rem;
     }

     .subscribe-input,
     .subscribe-button {
         height: 52px;
         border-radius: 26px;
     }
 }

 /* =====================footer start====================== */

 :root {
     --footer-bg: #111111;
     --footer-text: #e0e0e0;
     --footer-heading: #ffffff;
     --footer-link: #a0a0a0;
     --footer-link-hover: #ffffff;
     --footer-border: #333333;
     --social-hover: #4a90e2;
     --container-width: 1200px;
 }

 .site-footer {
     background-color: var(--footer-bg);
     color: var(--footer-text);
     padding: 80px 0 0 0;
     font-size: 14px;
     line-height: 1.6;
     margin-top: 20px;
 }

 .footer-container {
     max-width: var(--container-width);
     margin: 0 auto;
     padding: 0 20px;
     display: grid;
     gap: 40px;
     grid-template-columns: 1fr;
 }

 @media (min-width: 768px) {
     .footer-container {
         grid-template-columns: repeat(2, 1fr);
     }
 }

 @media (min-width: 1024px) {
     .footer-container {
         grid-template-columns: repeat(4, 1fr);
         gap: 30px;
     }
 }

 .footer-col {
     display: flex;
     flex-direction: column;
 }

 .footer-col h3 {
     color: var(--footer-heading);
     font-size: 18px;
     font-weight: 700;
     margin-bottom: 25px;
     text-transform: uppercase;
     letter-spacing: 1px;
     position: relative;
 }

 .footer-col h3::after {
     content: '';
     display: block;
     width: 30px;
     height: 2px;
     background-color: var(--footer-heading);
     margin-top: 10px;
 }

 .footer-links {
     list-style: none;
 }

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

 .footer-links a {
     color: var(--footer-link);
     text-decoration: none;
     transition: color 0.3s ease, padding-left 0.3s ease;
     display: inline-block;
 }

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

 .contact-info p {
     margin-bottom: 15px;
     color: var(--footer-link);
     display: flex;
     align-items: flex-start;
 }

 .contact-icon {
     margin-right: 12px;
     flex-shrink: 0;
     margin-top: 3px;
 }

 .latin-text {
     font-style: italic;
     color: var(--footer-link);
     margin-bottom: 20px;
     border-left: 2px solid #333;
     padding-left: 15px;
 }

 .social-icons {
     display: flex;
     gap: 15px;
     margin-top: 10px;
 }

 .social-link {
     display: flex;
     align-items: center;
     justify-content: center;
     width: 40px;
     height: 40px;
     background-color: #222;
     border-radius: 50%;
     color: #fff;
     transition: all 0.3s ease;
     text-decoration: none;
 }

 .social-link:hover {
     background-color: var(--social-hover);
     transform: translateY(-3px);
 }

 .social-link svg {
     width: 18px;
     height: 18px;
     fill: currentColor;
 }

 .footer-bottom {
     background-color: #000000;
     color: #777;
     padding: 25px 0;
     margin-top: 60px;
     text-align: center;
     font-size: 13px;
     border-top: 1px solid var(--footer-border);
 }

 svg {
     display: block;
 }

 /* ======================FOOTER END============== */