/* Modern IGP Website Styles */

:root {
    /* Modern Aesthetic Color Palette - Fresh Teal Theme */
    --primary-color: #14B8A6;
    --primary-dark: #0D9488;
    --primary-light: #5EEAD4;
    --secondary-color: #F59E0B;
    --accent-color: #FBBF24;
    --text-dark: #1F2937;
    --text-light: #6B7280;
    --text-muted: #9CA3AF;
    --bg-light: #F9FAFB;
    --bg-gradient: linear-gradient(135deg, #E0F2FE 0%, #F0FDFA 100%);
    --border-radius: 16px;
    --shadow-sm: 0 2px 8px rgba(20, 184, 166, 0.2);
    --shadow-md: 0 4px 16px rgba(20, 184, 166, 0.25);
    --shadow-lg: 0 8px 32px rgba(20, 184, 166, 0.3);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Comfortaa', 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Modern Header */
.header-modern {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* Promotional Banner */
.header-promo-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 0.5rem 0;
    color: white;
}

.promo-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    margin: 0;
}

.promo-text i {
    margin-right: 0.5rem;
}

.promo-text strong {
    font-weight: 600;
    color: white;
}

/* Header Top Bar */
.header-top-bar {
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.header-top-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-phone {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
}

.header-phone:hover {
    color: var(--primary-color);
    background: rgba(20, 184, 166, 0.1);
}

.header-phone i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.header-email {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
}

.header-email:hover {
    color: var(--primary-color);
    background: rgba(20, 184, 166, 0.1);
}

.header-email i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.header-separator {
    color: rgba(0,0,0,0.2);
    margin: 0 0.5rem;
}

.header-top-right {
    font-size: 0.875rem;
}

.currency-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.currency-selector i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.form-select-modern {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 0.35rem 0.75rem;
    font-size: 0.875rem;
    background: white;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.form-select-modern:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.2);
}

.header-top-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
}

.header-top-link:hover {
    color: var(--primary-color);
    background: rgba(20, 184, 166, 0.1);
}

.header-top-link i {
    font-size: 0.85rem;
}

/* Main Navigation */
.modern-nav {
    padding: 0.75rem 0;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.98) !important;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.modern-nav .container-fluid {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 45px;
    width: auto;
    transition: var(--transition);
}

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

/* Header Location */
.header-location {
    margin-right: 1rem;
}

.location-selector {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    background: #f5f3ff;
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
}

.location-selector:hover {
    background: #ede9fe;
    border-color: #c4b5fd;
}

.location-flag {
    width: 24px;
    height: 18px;
    border-radius: 3px;
    overflow: hidden;
    flex-shrink: 0;
}

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

.location-text {
    display: flex;
    flex-direction: column;
}

.location-label {
    font-size: 0.85rem;
    color: #7c3aed;
    font-weight: 500;
    line-height: 1.2;
}

.location-arrow {
    font-size: 0.7rem;
    color: #7c3aed;
    margin-left: 0.25rem;
}

/* Header Search */
.header-search {
    max-width: 500px;
    margin: 0 1rem;
}

.search-wrapper-header {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.search-input-header {
    width: 100%;
    padding: 0.65rem 3rem 0.65rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 25px;
    font-size: 0.9rem;
    transition: var(--transition);
    background: white;
}

.search-input-header:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

.search-btn-header {
    position: absolute;
    right: 0.5rem;
    background: transparent;
    border: none;
    color: #6b7280;
    font-size: 1rem;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border-radius: 50%;
}

.search-btn-header:hover {
    color: var(--primary-color);
    background: rgba(20, 184, 166, 0.1);
}

/* Header Categories */
.header-categories {
    margin-left: auto;
}

.category-link {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: var(--transition);
    position: relative;
}

.category-link:hover {
    color: var(--primary-color);
    background: rgba(20, 184, 166, 0.1);
}

/* Mobile Styles */
.header-location-mobile .location-selector {
    width: 100%;
    justify-content: flex-start;
}

.header-search-mobile {
    width: 100%;
}

.header-categories-mobile {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.category-link-mobile {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    transition: var(--transition);
    background: #f8f9fa;
    display: block;
}

.category-link-mobile:hover {
    color: var(--primary-color);
    background: rgba(20, 184, 166, 0.1);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    padding: 0.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}

.mobile-menu-icon {
    width: 24px;
    height: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mobile-menu-icon span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-menu-btn[aria-expanded="true"] .mobile-menu-icon span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn[aria-expanded="true"] .mobile-menu-icon span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn[aria-expanded="true"] .mobile-menu-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Header Search */
.header-search-desktop {
    max-width: 400px;
    /* margin-left: auto; */
    margin-right: 1rem;
}

.search-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.search-icon-left {
    position: absolute;
    left: 1rem;
    color: var(--text-light);
    font-size: 0.9rem;
    z-index: 1;
}

.search-input {
    width: 100%;
    padding: 0.75rem 3.5rem 0.75rem 2.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-size: 0.9rem;
    transition: var(--transition);
    background: #f8f9fa;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.2);
}

.search-btn {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
}

.search-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(221, 39, 69, 0.3);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header-action-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 50%;
    transition: var(--transition);
    position: relative;
    background: rgba(0,0,0,0.02);
}

.header-action-icon:hover {
    background: rgba(20, 184, 166, 0.15);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.header-action-icon i {
    font-size: 1.15rem;
}

.header-cart-icon {
    background: rgba(20, 184, 166, 0.1);
}

.header-cart-icon:hover {
    background: rgba(20, 184, 166, 0.2);
}

.header-luxe-badge {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    transition: var(--transition);
}

.header-luxe-badge:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: white;
}

.badge-count {
    position: absolute;
    top: -2px;
    right: -2px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    border: 2px solid white;
    box-shadow: 0 2px 6px rgba(221, 39, 69, 0.3);
}

/* Navigation Links */
.modern-nav-link {
    color: var(--text-dark) !important;
    font-family: 'Comfortaa', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.75rem 1.25rem !important;
    border-radius: 10px;
    transition: var(--transition);
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    white-space: nowrap;
    margin: 0 0.25rem;
}

.modern-nav-link::before {
    content: '';
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 2px;
    transition: var(--transition);
}

.modern-nav-link:hover::before {
    width: 70%;
}

.modern-nav-link:hover,
.modern-nav-link.active {
    color: var(--primary-dark) !important;
    background: rgba(20, 184, 166, 0.15);
    transform: translateY(-2px);
}

.modern-nav-link.active {
    background: rgba(20, 184, 166, 0.25);
}

.modern-nav-link i {
    font-size: 1.05rem;
    color: var(--primary-dark);
    transition: var(--transition);
}

.modern-nav-link:hover i {
    transform: scale(1.1);
}

/* Search Modal */
.search-modal-content {
    border-radius: 0;
    border: none;
}

.search-wrapper-mobile {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.search-input-mobile {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid #ddd;
    border-radius: 50px;
    font-size: 1rem;
}

.search-input-mobile:focus {
    outline: none;
    border-color: var(--primary-color);
}

.search-btn-mobile {
    background: var(--primary-color);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.search-btn-mobile:hover {
    background: var(--primary-dark);
}

/* Hero Banner Section */
.hero-banner-section {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

.hero-swiper {
    width: 100%;
    height: 500px;
}

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

.hero-banner-image-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .hero-swiper {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .hero-swiper {
        height: 300px;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out;
}

.hero-badge {
    font-family: 'Bebas Neue', sans-serif;
    display: inline-block;
    background: rgba(20, 184, 166, 0.15);
    color: var(--primary-dark);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.hero-title {
    font-family: 'Fredoka One', cursive;
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.btn-modern {
    font-family: 'Bebas Neue', sans-serif;
    display: inline-flex;
    align-items: center;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 400;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary-modern {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #1a1a1a;
    box-shadow: 0 4px 20px rgba(20, 184, 166, 0.4);
    font-weight: 700;
}

.btn-primary-modern::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary-modern:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(20, 184, 166, 0.5);
}

.btn-primary-modern span {
    position: relative;
    z-index: 1;
}

.hero-image-wrapper {
    position: relative;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    animation: fadeInRight 0.8s ease-out;
}

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(20, 184, 166, 0.15);
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    top: 50%;
    right: 5%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-pagination {
    bottom: 30px !important;
}

.hero-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: white;
    opacity: 0.5;
    transition: var(--transition);
}

.hero-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    width: 30px;
    border-radius: 6px;
    background: var(--primary-color);
}

.hero-nav-next,
.hero-nav-prev {
    color: var(--primary-color) !important;
    background: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.hero-nav-next:after,
.hero-nav-prev:after {
    font-size: 18px;
    font-weight: bold;
}

.hero-nav-next:hover,
.hero-nav-prev:hover {
    background: var(--primary-color);
    color: white !important;
    transform: scale(1.1);
}


.fresh-products-swiper{
    padding: 30px 0px 20px 0px;
}

/* ========== NEW ARRIVALS CIRCULAR DESIGN ========== */
.new-arrival-circular-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    transition: var(--transition);
    cursor: pointer;
}

.new-arrival-circular-card:hover {
    transform: translateY(-8px);
}

.circular-product-image {
    position: relative;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--primary-color);
    background: white;
    box-shadow: 0 8px 24px var(--shadow-sm);
    transition: var(--transition);
    margin: 0 auto;
}

.new-arrival-circular-card:hover .circular-product-image {
    border-color: var(--shadow-sm);
    box-shadow: 0 12px 32px var(--shadow-sm);
    transform: scale(1.05);
}

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

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

.circular-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    border-radius: 50%;
    z-index: 2;
}

.new-arrival-circular-card:hover .circular-overlay {
    opacity: 1;
}

.btn-quick-view-circular {
    font-family: 'Poppins', sans-serif;
    background: white;
    color: #FF6B35;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
}

.btn-quick-view-circular:hover {
    background: #FF6B35;
    color: white;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

.circular-product-info {
    text-align: center;
    padding-top: 0.5rem;
}

.circular-product-name {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 0.3rem 0;
    transition: var(--transition);
}

.new-arrival-circular-card:hover .circular-product-name {
    color: #FF6B35;
}

.circular-product-size {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: #666;
    margin: 0;
    letter-spacing: 0.5px;
}

/* Responsive Styles for Circular New Arrivals */
 

@media (max-width: 768px) {
    
    
    .circular-product-name {
        font-size: 0.9rem;
    }
    
    .circular-product-size {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .circular-product-image {
        width: 130px;
        height: 130px; 
    }
    
    .new-arrival-circular-card {
        gap: 0.5rem;
        padding: 0.5rem;
    }
}
@media (max-width: 330px) {
    .circular-product-image {
        width: 130px;
        height: 130px; 
    }
    
}
.occasion-cakes-swiper{
    padding: 30px 0px 20px 0px;
}

/* ========== CATEGORY SWIPER SECTION ========== */
.category-swiper-section {
    padding: 60px 0;
}

.category-swiper {
    padding: 20px 0 0px;
}
 

.category-card {
    background: transparent;
    border-radius: 50%;
    overflow: visible;
    transition: var(--transition);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 0.3rem;
}

.category-card:hover {
    transform: translateY(-10px) scale(1.05);
}

.category-card-image {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    overflow: hidden;
    background: white;
    box-shadow: var(--shadow-md);
    border: 4px solid var(--primary-color);
    transition: var(--transition);
    position: relative;
    margin: 0 auto;
}

.category-card:hover .category-card-image {
    border-color: var(--primary-dark);
    box-shadow: 0 8px 30px rgba(20, 184, 166, 0.4);
    transform: scale(1.1);
}

.category-card-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.1), transparent);
    z-index: 1;
    border-radius: 50%;
    opacity: 0;
    transition: var(--transition);
}

.category-card:hover .category-card-image::before {
    opacity: 1;
}

.category-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    border-radius: 50%;
}

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

.category-card-content {
    text-align: center;
    padding-top: 0.5rem;
}

.category-card-title {
    font-family: 'Comfortaa', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--text-dark);
    margin: 0;
    transition: var(--transition);
    position: relative;
}
 

.category-card:hover .category-card-title {
    color: var(--primary-dark);
}

 

.category-swiper-next,
.category-swiper-prev {
    color: var(--primary-color) !important;
    background: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 2px solid var(--primary-color);
}

.category-swiper-next:after,
.category-swiper-prev:after {
    font-size: 20px;
    font-weight: bold;
}

.category-swiper-next:hover,
.category-swiper-prev:hover {
    background: var(--primary-color);
    color: #1a1a1a !important;
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(20, 184, 166, 0.4);
}

@media (max-width: 1024px) {
    .category-card-image {
        width: 150px;
        height: 150px;
    }
    
    .category-card-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .category-card-image {
        width: 120px;
        height: 120px;
        border-width: 3px;
    }
    
    .category-card-content {
        padding-top: 0.25rem;
    }
    
    .category-card-title {
        font-size: 1rem;
        letter-spacing: 1px;
    }
    
    .category-card {
        gap: 0.75rem;
        padding: 0.5rem;
    }
}

/* Quick Categories - IGP Style */
.quick-categories-section {
    padding: 2rem 0;
    background: white;
}

.quick-categories-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    gap: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.quick-categories-wrapper::-webkit-scrollbar {
    height: 4px;
}

.quick-categories-wrapper::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 2px;
}

.category-item-igp {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    text-decoration: none;
    color: var(--text-dark);
    transition: var(--transition);
    text-align: center;
    flex: 1;
    min-width: 120px;
    position: relative;
}

.category-item-igp:hover {
    color: var(--primary-dark);
}

.category-icon-wrapper {
    position: relative;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-icon-blob {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 192, 203, 0.3);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.8);
    transition: var(--transition);
    z-index: 0;
}

.category-item-igp:hover .category-icon-blob {
    opacity: 1;
    transform: scale(1);
}

.category-icon-igp {
    position: relative;
    z-index: 1;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(30%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%);
    transition: var(--transition);
    opacity: 0.8;
}

.category-item-igp:hover .category-icon-img {
    filter: brightness(0) saturate(100%) invert(15%) sepia(94%) saturate(7151%) hue-rotate(340deg) brightness(92%) contrast(89%);
    opacity: 1;
}

.category-icon-fallback {
    width: 100%;
    height: 100%;
    transition: var(--transition);
}

.category-item-igp:hover .category-icon-fallback {
    stroke: var(--primary-color);
}

.category-item-igp:hover .category-icon-fallback circle,
.category-item-igp:hover .category-icon-fallback path[fill] {
    fill: var(--primary-color);
}

.category-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: var(--transition);
    white-space: nowrap;
}

.category-item-igp:hover .category-label {
    color: var(--primary-dark);
}

.category-separator {
    width: 1px;
    height: 60px;
    background: var(--primary-color);
    flex-shrink: 0;
}

/* Responsive for Quick Categories */
@media (max-width: 1200px) {
    .category-item-igp {
        min-width: 110px;
        padding: 1rem 1rem;
    }
    
    .category-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .category-icon-igp {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 992px) {
    .quick-categories-wrapper {
        padding: 1.25rem 0.75rem;
    }
    
    .category-item-igp {
        min-width: 100px;
        padding: 0.75rem 0.5rem;
    }
    
    .category-label {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .quick-categories-wrapper {
        padding: 1rem 0.5rem;
    }
    
    .category-item-igp {
        min-width: 90px;
        padding: 0.75rem 0.25rem;
        gap: 0.5rem;
    }
    
    .category-icon-wrapper {
        width: 50px;
        height: 50px;
    }
    
    .category-icon-igp {
        width: 40px;
        height: 40px;
    }
    
    .category-label {
        font-size: 0.75rem;
    }
    
    .category-separator {
        height: 50px;
    }
}

/* Section Headers */
.section-header-modern {
    margin-bottom: 3rem;
}

.section-title-modern {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
    letter-spacing: 2px;
}

/* .section-title-modern::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 2px;
} */

.section-subtitle {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0rem;
}

/* Budget-Friendly Gifts Section */
.budget-gifts-section {
    background: white;
    position: relative;
}

.budget-card {
    position: relative;
    border-radius: 20px;
    padding: 3rem 2rem;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.budget-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.budget-card-pink {
    background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
    color: #fff5e6;
}

.budget-card-beige {
    background: linear-gradient(135deg, #fff5e6 0%, #ffe8cc 100%);
    color: #e91e63;
}

.budget-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.15;
    font-size: 4rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.5rem;
    line-height: 1;
    pointer-events: none;
}

.budget-pattern::before {
    content: attr(data-pattern);
    transform: rotate(-45deg);
    white-space: nowrap;
}

.budget-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.budget-label {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    opacity: 0.95;
}

.budget-price {
    font-size: 2.5rem;
    font-weight: 900;
    font-family: 'Bebas Neue', sans-serif;
    line-height: 1;
    letter-spacing: 2px;
}

.budget-card-pink .budget-price {
    color: #fff5e6;
}

.budget-card-beige .budget-price {
    color: #e91e63;
}

/* Product Cards Modern */
.product-card-modern {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
    opacity: 1; 
        box-shadow: 0 8px 32px rgb(0 0 0 / 8%);
}

.product-card-modern.animate-in {
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.6s ease-out;
}

.product-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.product-image-modern {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    background: #f5f5f5;
}

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

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

.bakery-locations-products-swiper{
    padding: 30px 0px;
}
.bakery-locations-products-swiper .product-price{
    text-align: center;
}
.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    box-shadow: 0 3px 10px rgba(20, 184, 166, 0.4);
}

.product-badge.anniversary {
    background: linear-gradient(135deg, #e91e63, #c2185b);
    box-shadow: 0 3px 10px rgba(233, 30, 99, 0.4);
}

.product-price {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 0.5rem;
    font-family: 'Bebas Neue', sans-serif;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card-modern:hover .product-overlay {
    opacity: 1;
}

.btn-quick-view {
    font-family: 'Bebas Neue', sans-serif;
    background: white;
    color: var(--primary-dark);
    border: none;
    padding:0.5rem 1rem;
    border-radius: 50px;
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-quick-view:hover {
    background: var(--primary-color);
    color: #1a1a1a;
    transform: scale(1.05);
}

.product-info-modern {
    padding: 0.7rem;
}

.product-name {
    font-family: 'Comfortaa', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0; 
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.flag-badge-modern {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.5rem;
    background: white;
    padding: 8px;
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
    z-index: 2;
}

/* Best Selling Products */
.best-selling-swiper{
    padding: 30px 0px 40px 0px;
}
.product-item-card-modern {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-item-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.product-img-wrapper-modern {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: #f5f5f5;
}

.product-img-wrapper-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
        object-position: top;
    transition: var(--transition);
}

.product-item-card-modern:hover .product-img-wrapper-modern img {
    transform: scale(1.1);
}

.product-img-wrapper-modern .product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    z-index: 3;
}

.product-img-wrapper-modern:hover .product-overlay {
    opacity: 1;
}

.badge-modern-delivery {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary-color);
    color: white;
    padding: 0.4rem 0.9rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

.wishlist-icon {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 2;
}

.wishlist-icon:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.wishlist-icon i {
    color: var(--primary-color);
    transition: var(--transition);
}

.wishlist-icon:hover i {
    color: white;
}

.product-info-card {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-title-card {
    font-family: 'Comfortaa', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0; 
    line-height: 1.4;
}

.rating-modern {
    color: #ffc107;
    font-size: 0.85rem;
    margin-right: 0.5rem;
}

.rating-count {
    font-size: 0.85rem;
    color: var(--text-light);
}

.price-modern {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-dark);
}

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

.btn-add-cart:hover {
    background: var(--primary-dark);
    transform: scale(1.1) rotate(5deg);
}

.best-selling-next,
.best-selling-prev,
.fresh-products-next,
.fresh-products-prev,
.occasion-cakes-next,
.occasion-cakes-prev,
.bakery-locations-next,
.bakery-locations-prev {
    color: var(--primary-color) !important;
    background: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.best-selling-next:after,
.best-selling-prev:after,
.fresh-products-next:after,
.fresh-products-prev:after,
.occasion-cakes-next:after,
.occasion-cakes-prev:after,
.bakery-locations-next:after,
.bakery-locations-prev:after {
    font-size: 18px;
    font-weight: bold;
}

.best-selling-next:hover,
.best-selling-prev:hover,
.fresh-products-next:hover,
.fresh-products-prev:hover,
.occasion-cakes-next:hover,
.occasion-cakes-prev:hover,
.bakery-locations-next:hover,
.bakery-locations-prev:hover {
    background: var(--primary-color);
    color: white !important;
    transform: scale(1.1);
}

/* Favourite Cards */
.favourite-card-modern {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 350px;
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px);
}

.favourite-card-modern.animate-in {
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.6s ease-out;
}

.favourite-card-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    object-position: 0px -40px;
}

.favourite-card-modern:hover img {
    transform: scale(1.15);
}

.favourite-overlay { 
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 2.5rem; 
    position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
        padding: 2.5rem;
        transform: translateY(20px);
        opacity: 1;
        transition: var(--transition);
}



.favourite-overlay h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.75rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.btn-explore {
    font-family: 'Bebas Neue', sans-serif;
    background: white;
    color: var(--primary-dark);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-explore:hover {
    background: var(--primary-color);
    color: #1a1a1a;
    transform: translateX(5px);
}

/* Country Cards */
.country-card-modern {
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px);
}

.country-card-modern.animate-in {
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.6s ease-out;
}

.country-card-modern:hover {
    transform: translateY(-8px);
}

.country-image-modern {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    aspect-ratio: 1;
    margin-bottom: 1rem;
}

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

.country-card-modern:hover .country-image-modern img {
    transform: scale(1.15);
}

.country-name {
    font-family: 'Comfortaa', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

/* Background Gradients */
.bg-gradient-light {
    background: var(--bg-gradient);
}

/* Footer */
.footer-modern {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.footer-title {
    font-family: 'Bebas Neue', sans-serif;
    color: white;
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

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

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.1rem;
}

.social-icon:hover {
    background: var(--primary-color);
    transform: translateY(-5px) scale(1.1);
    color: white;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.form-control-modern {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.9rem;
}

.form-control-modern::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-control-modern:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.15);
}

.btn-newsletter {
    font-family: 'Bebas Neue', sans-serif;
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: #1a1a1a;
    border: none;
    border-radius: 50px;
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-newsletter:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    max-width: 120px;
    height: auto;
    /* filter: brightness(0) invert(1); */
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-contact-info {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.footer-contact-info a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact-info a:hover {
    color: var(--primary-color);
}

.footer-newsletter-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-title-small {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links i {
    font-size: 0.7rem;
    opacity: 0.6;
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: right;
}

.payment-icon {
    width: 50px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.payment-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
}

.trust-badge {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.trust-badge i {
    color: var(--primary-color);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

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

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

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Responsive Design */
@media (min-width: 767px) {
    .favourite-overlay{
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
        padding: 2.5rem;
        transform: translateY(20px);
        opacity: 0;
        transition: var(--transition);
    }
    .favourite-card-modern:hover .favourite-overlay {
        transform: translateY(0);
        opacity: 1;
    }
}
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title-modern {
        font-size: 1.8rem;
    }
    
    .min-vh-50 {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title-modern {
        font-size: 1.5rem;
    }
    
    .btn-modern {
        padding: 0.875rem 2rem;
        font-size: 0.85rem;
    }
    
    .favourite-card-modern {
        height: 250px;
    }
    
    .header-promo-banner {
        display: none !important;
    }
    
    .header-top-bar {
        display: none !important;
    }
    
    .header-search-desktop {
        display: none !important;
    }
    
    .header-luxe-badge {
        display: none !important;
    }
    
    .header-actions {
        gap: 0.5rem;
    }
    
    .header-action-icon {
        width: 40px;
        height: 40px;
    }
    
    .header-action-icon i {
        font-size: 1rem;
    }
    
    .logo-img {
        height: 40px;
    }
    
    
    
    .modern-nav-link {
        padding: 0.6rem 1rem !important;
        font-size: 0.9rem;
    }
    
    .footer-modern {
        padding: 2.5rem 0 !important;
    }
    
    .footer-title {
        font-size: 1.1rem;
    }
    
    .footer-logo {
        max-width: 100px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .form-control-modern {
        margin-bottom: 0.75rem;
    }
    
    .btn-newsletter {
        width: 100%;
    }
    
    .payment-methods {
        gap: 0.75rem;
    }
    
    .payment-icon {
        width: 45px;
        height: 30px;
        font-size: 1.2rem;
    }
    
    .trust-badges {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .header-action-icon i {
        font-size: 1rem;
    }
    
    .badge-count {
        width: 16px;
        height: 16px;
        font-size: 0.65rem;
        top: 0;
        right: 0;
    }
    
    .logo-img {
        height: 35px;
    }
    
    .modern-nav {
        padding: 3px 0;
    }
    
    .navbar-collapse {
        margin-top: 1rem;
        border-top: 1px solid rgba(0,0,0,0.05);
        padding-top: 1rem;
    }
    
    .modern-nav-link {
        padding: 0.75rem 1rem !important;
        width: 100%;
        justify-content: flex-start;
    }
    
    .modern-nav-link span {
        display: inline !important;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .product-section {
        padding: 2.5rem 0;
    }
    
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* ========== PRODUCT FIVE SECTION (trendingswiperoo) ========== */
 

.trendingswiperoo .product-five1 {
    margin: 10px;
}

.product-five1 .content-box .proimg {
    text-align: center;
}

.product-five1 .content-box .proimg img {
    width: 170px;
    height: 170px;
    transition: .6s;
    object-fit: cover;
    border-radius: 50%;
}

.product-five1 .content-box:hover .proimg img {
    transform: scale(0.9);
}

.product-five1 .content-box .div-contenttx {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    border-radius: 13px;
    padding: 10px 10px;
    margin-top: -45px;
    cursor: pointer;
}

.product-five1 .content-box .div-contenttx .div-block3 .add-tocart:hover {
    background: var(--accent-yellow);
    border: 1px solid var(--accent-yellow);
    color: #1a1a1a;
}

.product-five1 .content-box .div-contenttx .div-block1 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    margin-top: 40px;
}

.product-five1 .content-box .div-contenttx .div-block1 .div-tex-pri p {
    margin-bottom: 0px;
    max-width: 100px;
    font-size: 12px;
    line-height: 16px;
    font-weight: 400;
    color: white;
    font-family: 'Poppins', sans-serif;
}

.product-five1 .content-box .div-contenttx .div-block1 .div-prices .actualprice {
    margin-bottom: 0px;
    font-size: 16px;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

.product-five1 .content-box .div-contenttx .div-block1 .div-prices .text-line {
    font-size: 12px;
    color: white;
    text-decoration: line-through;
    text-align: end;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

.product-five1 .content-box .div-contenttx .div-block2 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.product-five1 .content-box .div-contenttx .div-block2 .pnew p {
    background: white;
    font-size: 7px;
    padding: 2px 7px;
    border-radius: 13px;
    line-height: normal;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-bottom: 0;
}

.product-five1 .content-box .div-contenttx .div-block2 .percentace .div-per {
    font-size: 7px;
    background: #D00505;
    padding: 2px 7px;
    border-radius: 12px;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.product-five1 .content-box .div-contenttx .div-block3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-five1 .content-box .div-contenttx .div-block3 .add-tocart {
    border: 1px solid white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3px 8px;
    cursor: pointer;
    border-radius: 30px;
    gap: 6px;
}

.product-five1 .content-box .div-contenttx .div-block3 .add-tocart p {
    margin-bottom: 0px;
    color: white;
    font-size: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.product-five1 .content-box .div-contenttx .div-block3 .add-tocart img {
    width: 14px;
}

.product-five1 .content-box .div-contenttx .div-block3 .heard i {
    color: white;
    font-size: 15px;
}

.product-five1 .content-box .div-contenttx .div-block3 .div-rattingtt {
    color: #e2d8d8;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
}

.product-five1 .content-box .div-contenttx .div-block3 .div-rattingtt i {
    color: white;
    font-size: 10px;
}

.rupeessymsame {
    margin-bottom: 0rem;
    font-family: 'Poppins', sans-serif;
}

.sam-viemoe {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0px 10px 0px;
}

.sam-viemoe .btns2 {
    width: fit-content;
    padding: 5px 23px;
    border-radius: 30px;
    border: 1px solid black;
    cursor: pointer;
    font-size: 13px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    background: transparent;
    transition: all 0.3s;
}

.sam-viemoe .btns2:hover {
    border: 1px solid var(--primary-color);
    color: #1a1a1a;
    background: var(--primary-color);
}

 

.trendingswiperoo .swiper-pagination-bullet {
    width: 30px;
    height: 2px;
    text-align: center;
    line-height: 20px;
    font-size: 12px;
    color: #000;
    opacity: 1;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 0px;
}

.trendingswiperoo .swiper-pagination-bullet-active {
    color: #fff;
    background: var(--primary-color);
}

.swiper-button-next,
.swiper-button-prev {
    background: white;
    width: 35px !important;
    height: 35px !important;
    border-radius: 50%;
}

.swiper-button-next:hover {
    background: rgba(255, 255, 255, 0);
    border: 2px solid black;
}

.swiper-button-prev:hover {
    background: rgb(218, 218, 218);
    border: 2px solid white;
}

.swiper-button-next img,
.swiper-button-prev img {
    width: 20px;
}

.trendingswipereight1 .swiper-button-next:after, .trendingswipereight1 .swiper-rtl .swiper-button-prev:after{
    display: none;
}

.trendingswipereight1 .swiper-button-prev:after, .trendingswipereight1 .swiper-rtl .swiper-button-next:after{
    display: none;
}
.trendingswiperoo  .swiper-button-next:after, .trendingswiperoo  .swiper-rtl .swiper-button-prev:after{
    display: none;
}

.trendingswiperoo  .swiper-button-prev:after, .trendingswiperoo  .swiper-rtl .swiper-button-next:after{
    display: none;
}


/* Responsive Styles */

@media (max-width: 768px) {
   /* .trendingswiperoo  .swiper-button-next, .swiper-button-prev{
        display: none;
    } */
    .product-five1 .content-box .proimg img {
        height: 160px;
    }
    .trendingswiperoo .product-five1{
        margin: 0px;
    }

    .product-five1 .content-box .div-contenttx .div-block1 .div-prices .actualprice {
        font-size: 17px;
    }

    .product-five1 .content-box .div-contenttx .div-block1 .div-prices .text-line {
        font-size: 11px;
    }

    .product-five1 .content-box .div-contenttx .div-block1 .div-tex-pri p {
        font-size: 14px;
    }

    .product-five1 .content-box .div-contenttx .div-block2 .pnew p {
        font-size: 10px;
        padding: 2px 8px;
    }

    .product-five1 .content-box .div-contenttx .div-block2 .percentace .div-per {
        font-size: 10px;
        padding: 2px 8px;
    }

    .product-five1 .content-box .div-contenttx .div-block3 .div-rattingtt {
        font-size: 12px;
    }

    .product-five1 .content-box .div-contenttx .div-block3 .div-rattingtt i {
        font-size: 10px;
    }

    .product-five1 .content-box .div-contenttx .div-block3 .add-tocart p {
        font-size: 8px;
    }

    .product-five1 .content-box .div-contenttx .div-block3 .add-tocart img {
        width: 20px;
    }

    .product-five1 .content-box .div-contenttx .div-block3 .add-tocart {
        padding: 4px 8px;
        gap: 4px;
    }

    .product-five1 .content-box .div-contenttx .div-block3 .heard i {
        font-size: 16px;
    }
}
@media (max-width: 480px) {
    .product-five1 .content-box .proimg img{
        height: 120px;
        width: 120px;
    }
}

/* ========== NEW ARRIVALS SECTION (product-eight1) ========== */
.new-arrivals {
    background-position: bottom;
    background-size: cover;
    background-repeat: no-repeat;
}

.back-setalos {
    padding: 30px 0px 0px 0px;
    background: rgba(0, 0, 0, 0.2);
}

.new-arrivals .heading-section {
    margin-bottom: 70px;
    text-align: center;
}

.new-arrivals .heading-section p {
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 30px;
    margin-bottom: 0;
}

.heading-section {
    text-align: center;
    margin-bottom: 25px;
}

.heading-section p {
    color: #000;
    font-size: 30px;
    font-style: normal;
    line-height: normal;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    margin-bottom: 0;
}

/* .trendingswipereight1 .product-eight1,
.trendingswipereight2 .product-eight1 {
    margin: 10px;
} */

.product-eight1 .box-contain .image {
    position: relative;
    height: 410px;
    overflow: hidden;
    border-radius: 10px;
}

.product-eight1 .box-contain .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s;
}

.product-eight1 .box-contain:hover .image img {
    transform: scale(1.2);
}

.product-eight1 .box-contain .image .product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    z-index: 2;
    border-radius: 10px;
}

.product-eight1 .box-contain:hover .image .product-overlay {
    opacity: 1;
}

.product-eight1 .box-contain .image .product-overlay .btn-quick-view {
    font-family: 'Poppins', sans-serif;
    background: white;
    color: var(--primary-dark);
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
}

.product-eight1 .box-contain .image .product-overlay .btn-quick-view:hover {
    background: var(--primary-color);
    color: #1a1a1a;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.4);
}

.product-eight1 .box-contain .image .inner-content {
    position: absolute;
    bottom: 0px;
    width: 100%;
    padding: 7px 0px 7px 20px;
    background: rgba(131, 131, 131, 0.35);
    backdrop-filter: blur(5px);
}

.product-eight1 .box-contain .image .inner-content .heading-pro p {
    color: #ffffff;
    font-size: 17px;
    margin-bottom: 7px !important;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
}

.product-eight1 .box-contain .image .inner-content .div-pri-heart {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 20px;
}

.product-eight1 .box-contain .image .inner-content .div-pri-heart .active-pri {
    color: white;
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.product-eight1 .box-contain .image .inner-content .div-pri-heart .div-heart-add {
    display: flex;
    align-items: center;
    gap: 14px;
}

.product-eight1 .box-contain .image .inner-content .div-pri-heart .div-heart-add img {
    width: 22px;
}

.product-eight1 .box-contain .image .inner-content .div-pri-heart .div-heart-add i {
    font-size: 17px;
    color: white;
    cursor: pointer;
    transition: all 0.3s;
}

.product-eight1 .box-contain .image .inner-content .div-pri-heart .div-heart-add i:hover {
    color: #e9327a;
}

.new-arrivals .sam-viemoe {
    padding: 100px 0px 30px 0px;
}

.new-arrivals .sam-viemoe .btns2 {
    border: 1px solid white;
    color: white;
    background: transparent;
}

.new-arrivals .sam-viemoe .btns2:hover {
    background: white;
    color: #000;
}

/* Responsive Styles for New Arrivals */
@media (max-width: 1024px) {
    .trendingswipereight1 .product-eight1,
    .trendingswipereight2 .product-eight1 {
        margin: 8px 0px;
    }

    .product-eight1 .box-contain .image {
        
        height: 350px;
    }

    .product-eight1 .box-contain .image .inner-content {
        padding: 10px 0px 10px 7px;
    }
}

@media (max-width: 768px) {
    .product-eight1 .box-contain .image {
        height: 410px;
    }

    .product-eight1 .box-contain .image .inner-content .heading-pro p {
        font-size: 15px;
    }

    .product-eight1 .box-contain .image .inner-content .div-pri-heart .active-pri {
        font-size: 16px;
    }

    .product-eight1 .box-contain .image .inner-content .div-pri-heart {
        padding-right: 10px;
    }

    .product-eight1 .box-contain .image .inner-content .div-pri-heart .div-heart-add {
        gap: 10px;
    }

    .heading-section p {
        font-size: 25px;
    }

    .new-arrivals .heading-section p {
        font-size: 25px;
    }
}

/* ========== PAGE HEADER BANNER ========== */
.page-header-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 80px 0 60px;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.page-header-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1555507036-ab1f4038808a?w=1920&q=80') center/cover;
    opacity: 0.15;
    z-index: 0;
}

.page-header-banner .container {
    position: relative;
    z-index: 1;
}

.page-title {
    font-family: 'Fredoka One', cursive;
    font-size: 4rem;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-subtitle {
    font-family: 'Comfortaa', sans-serif;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

@media (max-width: 768px) {
    .page-header-banner {
        padding: 60px 0 40px;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
}

/* ========== PRODUCT FILTER SECTION ========== */
.product-filter-section {
    border-bottom: 2px solid var(--primary-color);
}

.filter-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--text-dark);
}

.filter-buttons {
    justify-content: flex-end;
}

.filter-btn {
    font-family: 'Comfortaa', sans-serif;
    padding: 0.6rem 1.5rem;
    border: 2px solid var(--primary-color);
    background: white;
    color: var(--primary-dark);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.3);
}

.product-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--primary-dark);
    margin-top: 0.5rem;
}

/* ========== UNIQUE CONTACT PAGE STYLES ========== */
.unique-contact-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #fff5e6 0%, #fff 50%, #fff5e6 100%);
    overflow: hidden;
}

.contact-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(20, 184, 166, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(20, 184, 166, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

/* Header Section */
.contact-main-header {
    position: relative;
    z-index: 1;
    margin-bottom: 3rem;
}

.contact-header-icon-large {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(20, 184, 166, 0.3);
    transform: rotate(-5deg);
    animation: float 3s ease-in-out infinite;
}

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

.contact-header-icon-large i {
    font-size: 3.5rem;
    color: #1a1a1a;
    transform: rotate(5deg);
}

.contact-main-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    font-weight: 400;
    letter-spacing: 3px;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 0px rgba(20, 184, 166, 0.2);
}

.contact-main-subtitle {
    font-family: 'Comfortaa', sans-serif;
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Quick Contact Cards */
.quick-contact-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.quick-contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
}

.quick-contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(20, 184, 166, 0.2);
}

.quick-contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.15), rgba(20, 184, 166, 0.08));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.quick-contact-card:hover .quick-contact-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    transform: scale(1.1) rotate(5deg);
}

.quick-contact-icon i {
    font-size: 2rem;
    color: var(--primary-dark);
    transition: var(--transition);
}

.quick-contact-card:hover .quick-contact-icon i {
    color: #1a1a1a;
}

.quick-contact-card h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 1px;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.quick-contact-card p {
    font-family: 'Comfortaa', sans-serif;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.quick-contact-link {
    font-family: 'Comfortaa', sans-serif;
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.quick-contact-link:hover {
    color: var(--primary-color);
    gap: 1rem;
}

/* Form Container */
.unique-form-container {
    background: white;
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.unique-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light), var(--primary-color));
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

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

.form-header-styled {
    margin-bottom: 2.5rem;
}

.form-title-styled {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    letter-spacing: 2px;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-desc-styled {
    font-family: 'Comfortaa', sans-serif;
    color: var(--text-light);
    font-size: 1rem;
}

.unique-contact-form {
    position: relative;
    z-index: 1;
}

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

.form-field-wrapper {
    margin-bottom: 1.5rem;
}

.field-label {
    font-family: 'Comfortaa', sans-serif;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.field-label i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.input-field-styled,
.textarea-field-styled {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid #e8e8e8;
    border-radius: 15px;
    font-family: 'Comfortaa', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background: #f8f9fa;
}

.input-field-styled:focus,
.textarea-field-styled:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 5px rgba(20, 184, 166, 0.15);
    transform: translateY(-2px);
}

.textarea-field-styled {
    resize: vertical;
    min-height: 120px;
}

.submit-btn-unique {
    width: 100%;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: #1a1a1a;
    border: none;
    border-radius: 15px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 2px;
    font-weight: 400;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    box-shadow: 0 8px 25px rgba(20, 184, 166, 0.3);
    margin-top: 1rem;
}

.submit-btn-unique:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(20, 184, 166, 0.4);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

.submit-btn-unique:active {
    transform: translateY(-1px);
}

/* Info Sidebar */
.info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    height: 100%;
}

.info-card-styled,
.social-card-styled {
    background: white;
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.info-card-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 1px;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--primary-color);
}

.info-list-styled {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list-styled li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
    font-family: 'Comfortaa', sans-serif;
    color: var(--text-light);
    line-height: 1.6;
}

.info-list-styled li:last-child {
    margin-bottom: 0;
}

.info-list-styled li i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

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

.social-btn-styled {
    padding: 1rem;
    border-radius: 15px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    font-family: 'Comfortaa', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: white;
}

.social-btn-styled.facebook {
    background: linear-gradient(135deg, #1877f2, #0d5dbf);
}

.social-btn-styled.instagram {
    background: linear-gradient(135deg, #e4405f, #c13584);
}

.social-btn-styled.twitter {
    background: linear-gradient(135deg, #1da1f2, #0d8bd9);
}

.social-btn-styled.whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.social-btn-styled:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.social-btn-styled i {
    font-size: 1.5rem;
}

/* Map Section */
.map-wrapper-styled {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.map-header-styled {
    padding: 2rem 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
}

.map-title-styled {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 2px;
    color: #1a1a1a;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.map-title-styled i {
    font-size: 1.8rem;
}

.map-container-styled {
    height: 450px;
}

.map-container-styled iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive */
@media (max-width: 992px) {
    .form-row-styled {
        grid-template-columns: 1fr;
    }
    
    .social-grid-styled {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .unique-contact-section {
        padding: 60px 0;
    }
    
    .contact-header-icon-large {
        width: 100px;
        height: 100px;
    }
    
    .contact-header-icon-large i {
        font-size: 2.5rem;
    }
    
    .contact-main-title {
        font-size: 2.5rem;
    }
    
    .unique-form-container {
        padding: 2rem 1.5rem;
    }
    
    .quick-contact-card {
        padding: 2rem 1.5rem;
    }
    
    .map-header-styled {
        padding: 1.5rem 2rem;
    }
    
    .map-title-styled {
        font-size: 1.5rem;
    }
    
    .social-grid-styled {
        grid-template-columns: 1fr 1fr;
    }
}

/* ========== GALLERY SECTION STYLES ========== */
.gallery-card-featured,
.gallery-card-medium,
.gallery-card-small {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    cursor: pointer;
}

.gallery-card-featured:hover,
.gallery-card-medium:hover,
.gallery-card-small:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.gallery-image-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.gallery-card-featured .gallery-image-wrapper {
    height: 500px;
}

.gallery-card-medium .gallery-image-wrapper {
    height: 240px;
}

.gallery-card-small .gallery-image-wrapper {
    height: 250px;
}

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

.gallery-card-featured:hover .gallery-image-wrapper img,
.gallery-card-medium:hover .gallery-image-wrapper img,
.gallery-card-small:hover .gallery-image-wrapper img {
    transform: scale(1.15);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.3), transparent);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: var(--transition);
}

.gallery-card-featured:hover .gallery-overlay,
.gallery-card-medium:hover .gallery-overlay,
.gallery-card-small:hover .gallery-overlay {
    opacity: 1;
}

.gallery-content {
    text-align: center;
    color: white;
}

.gallery-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    color: white;
}

.gallery-description {
    font-family: 'Comfortaa', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.gallery-icon {
    font-size: 2.5rem;
    color: white;
    background: var(--primary-color);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    transition: var(--transition);
}

.gallery-card-medium:hover .gallery-icon,
.gallery-card-small:hover .gallery-icon {
    transform: scale(1.2) rotate(5deg);
    background: var(--primary-dark);
}

/* Responsive Gallery */
@media (max-width: 992px) {
    .gallery-card-featured .gallery-image-wrapper {
        height: 400px;
    }
    
    .gallery-card-medium .gallery-image-wrapper {
        height: 200px;
    }
    
    .gallery-card-small .gallery-image-wrapper {
        height: 220px;
    }
}

@media (max-width: 768px) {
    .gallery-card-featured .gallery-image-wrapper {
        height: 300px;
    }
    
    .gallery-card-medium .gallery-image-wrapper {
        height: 180px;
    }
    
    .gallery-card-small .gallery-image-wrapper {
        height: 200px;
    }
    
    .gallery-title {
        font-size: 1.5rem;
    }
    
    .gallery-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
}

/* ========== LIGHTBOX MODAL STYLES ========== */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease-in;
}

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

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: white;
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    transition: var(--transition);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    backdrop-filter: blur(10px);
}

.lightbox-close:hover {
    color: var(--primary-color);
    background: rgba(20, 184, 166, 0.2);
    transform: rotate(90deg) scale(1.1);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    transition: var(--transition);
    user-select: none;
    z-index: 10000;
}

.lightbox-prev {
    left: 50px;
}

.lightbox-next {
    right: 50px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--primary-color);
    color: #1a1a1a;
    transform: translateY(-50%) scale(1.1);
}

.lightbox-counter {
    color: white;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-top: 20px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

.gallery-card-featured,
.gallery-card-medium,
.gallery-card-small {
    cursor: pointer;
}

/* Responsive Lightbox */
@media (max-width: 768px) {
    .lightbox-close {
        top: 20px;
        right: 20px;
        font-size: 2rem;
        width: 40px;
        height: 40px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        font-size: 2rem;
        padding: 15px 20px;
    }
    
    .lightbox-prev {
        left: 15px;
    }
    
    .lightbox-next {
        right: 15px;
    }
    
    .lightbox-counter {
        font-size: 1.2rem;
        margin-top: 15px;
        padding: 8px 15px;
    }
    
    .lightbox-img {
        max-height: 75vh;
    }
}

/* ========== CONTACT SECTION INDEX PAGE ========== */
.contact-info-card-index {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    height: 100%;
    text-align: center;
}

.contact-info-card-index:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(20, 184, 166, 0.2);
}

.contact-icon-box {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.contact-info-card-index:hover .contact-icon-box {
    transform: scale(1.1) rotate(5deg);
}

.contact-icon-box i {
    font-size: 1.8rem;
    color: #1a1a1a;
}

.contact-info-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 1px;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.contact-info-text {
    font-family: 'Comfortaa', sans-serif;
    color: var(--text-light);
    margin: 0.25rem 0;
    font-size: 0.95rem;
}

.contact-form-wrapper-index {
    background: white;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper-index::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light), var(--primary-color));
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

.contact-form-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    letter-spacing: 2px;
    color: var(--text-dark);
}

.contact-form-index {
    position: relative;
    z-index: 1;
}

.form-group-index {
    margin-bottom: 1.5rem;
}

.form-label-index {
    font-family: 'Comfortaa', sans-serif;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.form-label-index i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.form-input-index,
.form-textarea-index {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid #e8e8e8;
    border-radius: 15px;
    font-family: 'Comfortaa', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background: #f8f9fa;
}

.form-input-index:focus,
.form-textarea-index:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 5px rgba(20, 184, 166, 0.15);
    transform: translateY(-2px);
}

.form-textarea-index {
    resize: vertical;
    min-height: 120px;
}

.btn-submit-index {
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: #1a1a1a;
    border: none;
    border-radius: 15px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 2px;
    font-weight: 400;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    box-shadow: 0 8px 25px rgba(20, 184, 166, 0.3);
    margin-top: 1rem;
}

.btn-submit-index:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(20, 184, 166, 0.4);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

.btn-submit-index:active {
    transform: translateY(-1px);
}

/* ========== FAQ SECTION ========== */
.faq-accordion {
    border: none;
}

.faq-item {
    background: white;
    border: none;
    border-radius: 15px !important;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: 0 8px 30px rgba(20, 184, 166, 0.15);
}

.faq-button {
    font-family: 'Comfortaa', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text-dark);
    background: white;
    border: none;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    width: 100%;
    text-align: left;
    transition: var(--transition);
    box-shadow: none !important;
}

.faq-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.1), rgba(20, 184, 166, 0.05));
    color: var(--primary-dark);
}

.faq-button:focus {
    box-shadow: none;
    border: none;
}

.faq-button i {
    color: var(--primary-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.faq-button::after {
    margin-left: auto;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffc107'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: var(--transition);
}

.faq-button:not(.collapsed)::after {
    transform: rotate(180deg);
}

.faq-body {
    font-family: 'Comfortaa', sans-serif;
    color: var(--text-light);
    line-height: 1.8;
    padding: 1.5rem 2rem 2rem;
    background: white;
    font-size: 0.95rem;
}

/* About Us Section */
.about-section {
    background: linear-gradient(180deg, #ffffff 0%, #fff9e6 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.about-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--border-radius);
    overflow: visible;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-image-main {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    border: 5px solid rgba(20, 184, 166, 0.2);
}

.about-image-main img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-image-wrapper:hover .about-image-main img {
    transform: scale(1.08);
}

.about-image-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 3;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.about-overlay-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 0.9rem;
}

.about-overlay-content i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.about-image-badge {
    position: absolute;
    bottom: -20px;
    right: 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 2rem 2.5rem;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(20, 184, 166, 0.5);
    z-index: 4;
    transform: rotate(-5deg);
    transition: var(--transition);
}

.about-image-wrapper:hover .about-image-badge {
    transform: rotate(0deg) scale(1.05);
}

.badge-content {
    text-align: center;
    color: white;
}

.badge-number {
    font-size: 3rem;
    font-weight: 800;
    font-family: 'Bebas Neue', sans-serif;
    margin: 0;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.badge-text {
    font-size: 0.95rem;
    margin: 0.5rem 0 0;
    opacity: 0.95;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.about-stats-overlay {
    position: absolute;
    bottom: -40px;
    left: 30px;
    display: flex;
    gap: 1.5rem;
    z-index: 3;
}

.stat-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(20, 184, 166, 0.2);
}

.stat-item h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin: 0;
    line-height: 1;
}

.stat-item p {
    font-size: 0.75rem;
    color: var(--text-light);
    margin: 0.5rem 0 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.about-content {
    padding: 1rem 0;
    position: relative;
    z-index: 1;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.2), rgba(20, 184, 166, 0.1));
    color: var(--primary-dark);
    padding: 0.6rem 1.45rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
    border: 2px solid rgba(20, 184, 166, 0.3);
}

.section-tag i {
    font-size: 1.1rem;
    color: var(--primary-color);
}

.about-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.1;
    position: relative;
    padding-bottom: 0.8rem;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    border-radius: 2px;
}

.about-description {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 0.5rem;
} 

.about-features .row {
    margin: 0;
}

.about-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding: 0.5rem;
    background: white;
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: 2px solid transparent;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.about-feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(20, 184, 166, 0.2);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
    font-size: 2rem;
    box-shadow: 0 8px 25px rgba(20, 184, 166, 0.4);
    transition: var(--transition);
}

.about-feature-item:hover .feature-icon {
    transform: rotate(5deg) scale(1.15);
}

.feature-content {
    width: 100%;
}

.feature-content h5 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.7rem;
    line-height: 1.6;
}

.btn-about-cta {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(20, 184, 166, 0.3);
    border: 2px solid transparent;
}

.btn-about-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(20, 184, 166, 0.4);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-about-cta i {
    transition: var(--transition);
}

.btn-about-cta:hover i {
    transform: translateX(5px);
}

/* Our Story Section */
.our-story-section {
    background: white;
}

.story-content {
    padding: 1rem 0;
}

.story-image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.story-highlights {
    margin-top: 2rem;
}

.highlight-item {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.1), rgba(20, 184, 166, 0.05));
    border-radius: 15px;
    border: 2px solid rgba(20, 184, 166, 0.2);
    transition: var(--transition);
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(20, 184, 166, 0.2);
}

.highlight-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.highlight-item h5 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--text-dark);
    margin: 0.5rem 0 0.25rem;
}

.highlight-item p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mission & Values Section */
.mission-values-section {
    background: #f8f9fa;
}

.value-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    height: 100%;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 5px 20px rgba(20, 184, 166, 0.3);
}

.value-card h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* Baking Process Section */
.baking-process-section {
    background: white;
}

.process-step {
    text-align: center;
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.05), rgba(20, 184, 166, 0.02));
    border-radius: 20px;
    border: 2px solid rgba(20, 184, 166, 0.1);
    transition: var(--transition);
    position: relative;
    height: 100%;
}

.process-step:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(20, 184, 166, 0.2);
}

.step-number {
    position: absolute;
    top: -15px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: white;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(20, 184, 166, 0.4);
}

.step-icon {
    width: 70px;
    height: 70px;
    margin: 1rem auto 1.5rem;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.process-step h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.process-step p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
}

/* Our Team Section */
.our-team-section {
    background: #f8f9fa;
}

.team-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.team-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

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

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

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.9), rgba(245, 158, 11, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.team-social {
    display: flex;
    gap: 1rem;
}

.team-social a {
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: var(--transition);
    text-decoration: none;
}

.team-social a:hover {
    background: var(--primary-dark);
    color: white;
    transform: scale(1.1);
}

.team-info {
    padding: 1.5rem;
    text-align: center;
}

.team-info h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.team-info p {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.team-experience {
    display: inline-block;
    background: rgba(20, 184, 166, 0.1);
    color: var(--text-light);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Why Choose Us Section */
.why-choose-section {
    background: white;
}

.why-choose-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.why-choose-list {
    margin-top: 2rem;
}

.why-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.05), rgba(20, 184, 166, 0.02));
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.why-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(20, 184, 166, 0.2);
}

.why-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
}

.why-content h5 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.why-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* Counter Section */
.counter-section {
    position: relative;
    overflow: hidden;
    background-image: url('https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.counter-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.92) 0%, rgba(245, 158, 11, 0.95) 100%);
    z-index: 1;
}

.counter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    z-index: 2;
}

.counter-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    z-index: 2;
}

.counter-section .container {
    position: relative;
    z-index: 3;
}

.counter-card {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    border: 3px solid rgba(255, 255, 255, 0.3);
    position: relative;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.counter-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    transition: var(--transition);
    opacity: 0;
}

.counter-card:hover::before {
    opacity: 1;
    transform: scale(1.1);
}

.counter-card:hover {
    transform: translateY(-15px) scale(1.03);
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.counter-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    transition: var(--transition);
}

.counter-card:hover .counter-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 255, 255, 0.3);
}

.counter-content {
    color: white;
}

.counter-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    display: block;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.counter-label {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Reviews Section */
.reviews-section {
    background: white;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.reviews-section .container {
    position: relative;
    overflow: visible;
}

.reviews-swiper {
    padding: 2rem 0 4rem;
    overflow: hidden;
    position: relative;
    margin: 0;
    width: 100%;
}

.reviews-swiper .swiper-wrapper {
    align-items: stretch;
}

.reviews-swiper .swiper-slide {
    height: auto;
    display: flex;
    box-sizing: border-box;
}

.review-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 2px solid transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}

.review-card:hover::before {
    transform: scaleX(1);
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(20, 184, 166, 0.2);
    border-color: var(--primary-color);
}

.reviews-pagination {
    position: relative;
    margin-top: 3rem;
}

.reviews-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    opacity: 0.3;
    transition: var(--transition);
}

.reviews-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    width: 30px;
    border-radius: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
}

.reviews-nav-next,
.reviews-nav-prev {
    color: var(--primary-color);
    background: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(20, 184, 166, 0.3);
    border: 2px solid var(--primary-color);
    transition: var(--transition);
    top: 50%;
    margin-top: -25px;
    z-index: 10;
}

.reviews-nav-next {
    right: 10px;
}

.reviews-nav-prev {
    left: 10px;
}

@media (min-width: 993px) {
    .reviews-section .container {
        padding-left: 60px;
        padding-right: 60px;
    }
    
    .reviews-nav-next {
        right: -10px;
    }
    
    .reviews-nav-prev {
        left: -10px;
    }
}

.reviews-nav-next:hover,
.reviews-nav-prev:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(20, 184, 166, 0.4);
}

.reviews-nav-next::after,
.reviews-nav-prev::after {
    font-size: 1.2rem;
    font-weight: 700;
}

.review-header {
    margin-bottom: 1.5rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(20, 184, 166, 0.3);
}

.reviewer-details {
    flex: 1;
}

.reviewer-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.review-stars {
    color: var(--primary-color);
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.review-text {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex: 1;
}

.review-date {
    color: var(--text-muted);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
}

.review-date i {
    color: var(--primary-color);
}

/* Responsive */
@media (max-width: 992px) {
    .about-title {
        font-size: 2.5rem;
    }
    
    .about-image-main img {
        height: 450px;
    }
    
    .about-image-badge {
        bottom: -15px;
        right: 20px;
        padding: 1.5rem 2rem;
        transform: rotate(-3deg);
    }
    
    .badge-number {
        font-size: 2.2rem;
    }
    
    .about-stats-overlay {
        bottom: -30px;
        left: 20px;
        gap: 1rem;
    }
    
    .stat-item {
        padding: 0.75rem 1.25rem;
    }
    
    .stat-item h4 {
        font-size: 1.5rem;
    }
    
    .counter-section {
        background-attachment: scroll;
    }
    
    .counter-number {
        font-size: 2.8rem;
    }
    
    .reviews-nav-next,
    .reviews-nav-prev {
        display: none;
    }
    
    .reviews-swiper {
        padding: 2rem 1rem 4rem;
    }
    
    .review-card {
        padding: 2rem 1.5rem;
    }
    
    .budget-card {
        padding: 2.5rem 1.5rem;
        min-height: 180px;
    }
    
    .budget-price {
        font-size: 2rem;
    }
    
    .budget-pattern {
        font-size: 3rem;
    }
    
    .reviews-swiper {
        padding: 2rem 1rem 4rem;
    }
}

@media (max-width: 768px) {
    .about-title {
        font-size: 2rem;
    }
    
    .about-title::after {
        width: 60px;
        height: 3px;
    }
    
    .about-image-main img {
        height: 400px;
    }
    
    .about-image-overlay {
        top: 15px;
        left: 15px;
        padding: 0.6rem 1.25rem;
    }
    
    .about-overlay-content {
        font-size: 0.8rem;
    }
    
    .about-image-badge {
        bottom: -10px;
        right: 15px;
        padding: 1.25rem 1.75rem;
        transform: rotate(0deg);
    }
    
    .badge-number {
        font-size: 2rem;
    }
    
    .badge-text {
        font-size: 0.85rem;
    }
    
    .about-stats-overlay {
        position: static;
        margin-top: 2rem;
        justify-content: center;
        gap: 1rem;
    }
    
    .stat-item {
        padding: 0.75rem 1rem;
    }
    
    .stat-item h4 {
        font-size: 1.4rem;
    }
    
    .stat-item p {
        font-size: 0.7rem;
    }
    
     
    
    .about-feature-item {
        padding: 1.5rem 1rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }
    
    .feature-content h5 {
        font-size: 1.3rem;
    }
    
    .about-features .row {
        gap: 1rem !important;
    }
    
    .counter-card {
        padding: 1rem;
    }
    
    .counter-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin-bottom: 1.25rem;
    }
    
    .counter-number {
        font-size: 2.5rem;
    }
    
    .counter-label {
        font-size: 1rem;
    }
    
    .review-card {
        padding: 1.5rem;
    }
    
    .reviewer-avatar {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .reviewer-name {
        font-size: 1.1rem;
    }
    
    .budget-card {
        padding: 2rem 1.25rem;
        min-height: 160px;
    }
    
    .budget-price {
        font-size: 1.75rem;
    }
    
    .budget-label {
        font-size: 0.8rem;
    }
    
    .budget-pattern {
        font-size: 2.5rem;
    }
    
    .contact-form-wrapper-index {
        padding: 2rem 1.5rem;
    }
    
    .contact-form-title {
        font-size: 1.8rem;
    }
    
    .contact-info-card-index {
        padding: 2rem 1.5rem;
    }
    
    .faq-button {
        padding: 1.25rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .faq-body {
        padding: 1.25rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .payment-methods{
            justify-content: center;
    }
    .about-title {
        font-size: 1.8rem;
    }
    
    .about-image-main img {
        height: 350px;
    }
    
    .about-image-overlay {
        top: 10px;
        left: 10px;
        padding: 0.5rem 1rem;
    }
    
    .about-image-badge {
        bottom: -10px;
        right: 10px;
        padding: 1rem 1.5rem;
    }
    
    .badge-number {
        font-size: 1.8rem;
    }
    
    .badge-text {
        font-size: 0.75rem;
    }
    
    .section-tag {
        font-size: 0.75rem;
        padding: 0.5rem 1.25rem;
    }
    
    .about-description {
        font-size: 0.95rem;
    }
    
    .btn-about-cta {
        padding: 0.875rem 2rem;
        font-size: 0.95rem;
    }
    
    
    
    .counter-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .counter-number {
        font-size: 2rem;
    }
    
    .counter-label {
        font-size: 0.9rem;
    }
    
    .review-card {
        padding: 1.25rem;
    }
    
    .budget-card {
        padding: 2rem 1.25rem;
        min-height: 160px;
    }
    
    .budget-price {
        font-size: 1.75rem;
    }
    
    .budget-label {
        font-size: 0.8rem;
    }
    
    .budget-pattern {
        font-size: 2.5rem;
    }
    
    .story-image-wrapper img,
    .why-choose-image img {
        margin-bottom: 2rem;
    }
    
    .value-card,
    .process-step,
    .team-card {
        margin-bottom: 2rem;
    }
    
    .highlight-item {
        padding: 1.25rem;
    }
    
    .highlight-item h5 {
        font-size: 1.3rem;
    }
    
    .value-icon,
    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .process-step {
        padding: 1.75rem 1.25rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        top: -12px;
        right: 15px;
    }
    
    .why-item {
        padding: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .why-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

/* Fixed WhatsApp Button */
.whatsapp-fixed {
    position: fixed;
    z-index: 9;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px; 
    top: 50%;
    right: 10px;
    transform: translate(0%, -50%);
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50% 50% 50% 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.whatsapp-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    border-radius: 50% 50% 50% 0;
}

.whatsapp-btn i {
    position: relative;
    z-index: 1;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
    background: #20BA5A;
}

.whatsapp-brand {
    background: #FF8C00;
    padding: 8px 12px;
    border-radius: 0 0 8px 8px;
    margin-top: -2px;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

.whatsapp-brand span {
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    display: block;
    line-height: 1.2;
}

/* Responsive WhatsApp Button */
@media (max-width: 768px) {
   
    
    .whatsapp-btn {
        width: 55px;
        height: 55px;
        font-size: 28px;
    }
    
    .whatsapp-brand {
        padding: 6px 10px;
    }
    
    .whatsapp-brand span {
        font-size: 0.7rem;
    }
}

@media (max-width: 576px) {
    
    
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .whatsapp-brand {
        padding: 5px 8px;
    }
    
    .whatsapp-brand span {
        font-size: 0.65rem;
    }
}

/* Add Banner Section */
.add-banner-section {
    width: 100%;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

.image-banner {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.image-banner img {
    width: 100%;
    height: auto;
    display: block;
    /* object-fit: cover; */
    transition: transform 0.3s ease;
}

.image-banner:hover img {
    transform: scale(1.02);
}

/* Responsive Add Banner Section */
 

@media (max-width: 992px) {
    .image-banner img {
        min-height: 250px;
    }
}

@media (max-width: 768px) {
    .add-banner-section {
        margin: 0;
    }
    
    .image-banner img {
        min-height: 200px;
    }
}

@media (max-width: 576px) {
    .image-banner img {
        min-height: 100px;
    }
}

/* ========================================= */
/* Top Buying Product Section CSS - Modern Style */
/* ========================================= */

/* Top Buying Tab Section - Modern Design */
 

.top-buying-tabsection .scrool-delevry .nav {
    justify-content: center;
    position: relative;
    border: none;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.top-buying-tabsection .scrool-delevry .nav::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    bottom: 0px;
}

.top-buying-tabsection .scrool-delevry .nav-tabs .nav-link {
    padding: 0.75rem 1.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 0.95rem;
    color: var(--text-light);
    border: none;
    border-radius: 25px;
    transition: var(--transition);
    background: transparent;
    position: relative;
}

.top-buying-tabsection .scrool-delevry .nav-tabs .nav-link:hover {
    color: var(--primary-color);
    background: rgba(20, 184, 166, 0.1);
}

.top-buying-tabsection .scrool-delevry .nav-tabs .nav-link.active {
    color: var(--primary-color);
    background: rgba(20, 184, 166, 0.15);
    font-weight: 600;
    border-bottom: 2px solid var(--primary-color);
}

/* Product Four1 Styles - Modern Design */
.product-four1 {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-four1:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.product-four1 .div-contain {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-four1 .div-contain .div-on-hover-show-det {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.product-four1 .div-contain .div-on-hover-show-det:hover .product-photo {
    transform: scale(1.1);
}

.product-four1 .div-contain .div-on-hover-show-det:hover .div-hover-show {
    bottom: 0px;
}

.product-four1 .div-contain .div-on-hover-show-det .div-hover-show {
    position: absolute;
    bottom: -100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6));
    height: 100%;
    text-align: center;
    padding: 50px 0px 10px 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.product-four1 .div-contain .product-photo {
    width: 100%;
    height: 350px;
    cursor: pointer;
    transition: var(--transition);
    object-fit: cover;
    background: #f8f9fa;
}

.product-four1 .div-contain .div-footer {
    text-align: center;
    cursor: pointer;
    padding: 10px 5px;
    background: white;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-four1 .div-contain .tittle-brand p {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.4;
}

.product-four1 .div-contain .amount-cost {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 0.5rem;
}

.product-four1 .div-contain .amount-cost .old {
    font-size: 0.85rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    margin-bottom: 0rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.product-four1 .div-contain .amount-cost .new {
    font-size: 1.1rem;
    margin-bottom: 0rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--primary-color);
}

.product-four1 .div-contain .div-on-hover-show-det .div-hover-show .no-product {
    color: white;
    border-top: 1px solid white;
    width: 100px;
    margin: 10px auto;
}

.product-four1 .div-contain .div-on-hover-show-det .div-hover-show .btn-quick-view {
    font-family: 'Poppins', sans-serif;
    background: white;
    color: var(--primary-dark);
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 1rem;
    text-transform: uppercase;
}

.product-four1 .div-contain .div-on-hover-show-det .div-hover-show .btn-quick-view:hover {
    background: var(--primary-color);
    color: #1a1a1a;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.4);
}

.product-four1 .div-contain .div-on-hover-show-det .div-hover-show .div-fl {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.product-four1 .div-contain .div-on-hover-show-det .div-hover-show .div-fl img {
    width: 30px;
}

.product-four1 .div-contain .div-on-hover-show-det .div-hover-show .div-fl i {
    font-size: 23px;
    color: white;
    cursor: pointer;
}

.product-four1 .div-contain .div-on-hover-show-det .div-hover-show .div-fl i:hover {
    color: #e5006f;
}

.product-four1 .div-contain .div-on-hover-show-det .div-hover-show .div-review-d .div-img i {
    font-size: 13px;
    color: white;
}

/* Swiper Styles for Top Buying */
.trendingswiper {
    padding: 1rem 0 3rem 0;
}

.trendingswiper .product-four1 {
    margin: 0.5rem;
    height: auto;
}

.trendingswiper .swiper-pagination {
    bottom: 0 !important;
}

.trendingswiper .swiper-button-next,
.trendingswiper .swiper-button-prev {
    background: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.trendingswiper .swiper-button-next:hover,
.trendingswiper .swiper-button-prev:hover {
    box-shadow: var(--shadow-md);
    background: var(--primary-color);
}

.trendingswiper .swiper-button-next::after,
.trendingswiper .swiper-button-prev::after {
    font-size: 18px;
    color: var(--text-dark);
    font-weight: bold;
}

.trendingswiper .swiper-button-next:hover::after,
.trendingswiper .swiper-button-prev:hover::after {
    color: white;
}

/* Rupee Symbol */
.rupeessymsame {
    font-family: inherit;
}

/* Responsive Styles for Top Buying Product */
@media (max-width: 992px) {
    .top-buying-tabsection .scrool-delevry .nav::after {
        display: none;
    }
    
    .top-buying-tabsection .scrool-delevry .nav {
        justify-content: center;
        gap: 0.25rem;
    }
    
    .trendingswiper .product-four1 {
        margin: 0.25rem;
    }
    
     
}

@media (max-width: 768px) {
    
    
    .top-buying-tabsection .scrool-delevry .nav-tabs .nav-link {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    
    
    .product-four1 .div-contain .tittle-brand p {
        font-size: 0.9rem;
    }
    
    .product-four1 .div-contain .amount-cost .new {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .top-buying-tabsection .scrool-delevry {
        margin-bottom: 1.5rem;
    }
    
    .top-buying-tabsection .scrool-delevry .nav-tabs .nav-link {
        padding: 0.4rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .product-four1 .div-contain .product-photo {
        height: 260px;
    }
    
    .product-four1 .div-contain .tittle-brand p {
        font-size: 0.85rem;
    }
    
    .product-four1 .div-contain .amount-cost {
        gap: 8px;
    }
    
    .product-four1 .div-contain .amount-cost .old {
        font-size: 0.75rem;
    }
    
    .product-four1 .div-contain .amount-cost .new {
        font-size: 0.95rem;
    }
    
    .trendingswiper .swiper-button-next,
    .trendingswiper .swiper-button-prev {
        width: 35px;
        height: 35px;
    }
    
    .trendingswiper .swiper-button-next::after,
    .trendingswiper .swiper-button-prev::after {
        font-size: 14px;
    }
}

/* ========================================= */
/* Shop the Look Section – card design from kunjum/index.html only */
/* ========================================= */

.shop-the-look-main-swiper {
    padding: 2rem 0;
}

.shop-look-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Main Look Image */
.look-main-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: #f5f5f5;
    position: relative;
}

.look-main-image img,
.look-main-image video,
.look-main-image iframe {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: var(--transition);
}
 

.look-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: #000;
}

.shop-look-card:hover .look-main-image img,
.shop-look-card:hover .look-main-image video {
    transform: scale(1.02);
}

/* Products Scroll Wrapper - Native overflow-x scroll */
.look-products-swiper-wrapper {
    background: white;
    padding: 10px 5px 10px 10px;
    width: 100%;
}

.look-products-scroll-container {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 1rem;
    padding: 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(20, 184, 166, 0.3) transparent;
}

.look-products-scroll-container::-webkit-scrollbar {
    height: 6px;
}

.look-products-scroll-container::-webkit-scrollbar-track {
    background: transparent;
}

.look-products-scroll-container::-webkit-scrollbar-thumb {
    background: rgba(20, 184, 166, 0.3);
    border-radius: 3px;
}

.look-products-scroll-container::-webkit-scrollbar-thumb:hover {
    background: rgba(20, 184, 166, 0.5);
}

.look-product-item {
    flex: 0 0 auto;
    width: 100%;
    min-width: 300px;
}

/* Product Card - Style to match image */
.look-product-card {
    background: transparent;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    padding: 0;
    margin: 0;
    width: 100%;
}

 
.look-product-image {
    width: 70px;
    height: 70px;
    min-width: 70px;
    border-radius: 8px;
    overflow: hidden;
    background: #f8f9fa;
    border: 1px solid #e5e7eb;
}

.look-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.look-product-info {
    flex: 1;
    min-width: 0;
    padding: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.look-product-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
    line-height: 1.3;
    font-family: 'Poppins', sans-serif;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.look-product-price {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
}

.look-product-original-price {
    font-size: 0.7rem;
    color: #9ca3af;
    text-decoration: line-through;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

.look-product-discount {
    font-size: 0.7rem;
    font-weight: 700;
    color: #22c55e;
    font-family: 'Poppins', sans-serif;
}

.look-add-btn {
    width: 30px;
    height: 30px;
    min-width: 30px;
    border-radius: 50%;
    background: #f3f4f6;
    color: #1f2937;
    border: 1px solid #d1d5db;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
    position: absolute;
    right: 5px;
    top: 0;
}

.look-add-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.look-add-btn i {
    font-size: 0.8rem;
    font-weight: bold;
}

/* Main Look Swiper Navigation */
.shop-the-look-main-swiper .swiper-button-next,
.shop-the-look-main-swiper .swiper-button-prev {
    background: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    color: var(--text-dark);
}

.shop-the-look-main-swiper .swiper-button-next:hover,
.shop-the-look-main-swiper .swiper-button-prev:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.shop-the-look-main-swiper .swiper-button-next::after,
.shop-the-look-main-swiper .swiper-button-prev::after {
    font-size: 20px;
    font-weight: bold;
}

.shop-the-look-main-swiper .swiper-pagination {
    bottom: 10px;
}

.shop-the-look-main-swiper .swiper-pagination-bullet {
    background: var(--primary-color);
    opacity: 0.5;
    width: 12px;
    height: 12px;
}

.shop-the-look-main-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    width: 30px;
    border-radius: 6px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .look-main-image {
        height: 280px;
    }
    
    .look-product-image {
        width: 60px;
        height: 60px;
        min-width: 60px;
    }
    
    .look-product-name {
        font-size: 0.85rem;
    }
    
    .look-product-price {
        font-size: 0.95rem;
    }
    
    .look-add-btn {
        width: 36px;
        height: 36px;
        min-width: 36px;
    }
}

@media (max-width: 768px) {
    .look-main-image {
        height: 250px;
    }
    .category-filter-card{
        display: none;
    }
    
    .look-products-swiper-wrapper {
        padding: 0.875rem;
    }
    
    .look-product-item {
        min-width: 280px;
    }
    
    .look-product-image {
        width: 55px;
        height: 55px;
        min-width: 55px;
    }
    
    .look-product-name {
        font-size: 0.8rem;
    }
    
    .look-product-price {
        font-size: 0.9rem;
    }
    
    .look-product-original-price {
        font-size: 0.75rem;
    }
    
    .look-product-discount {
        font-size: 0.8rem;
    }
    
    .look-add-btn {
        width: 32px;
        height: 32px;
        min-width: 32px;
    }
    
    .look-add-btn i {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .look-main-image {
        height: 220px;
    }
    
    .look-products-swiper-wrapper {
        padding: 0.75rem;
    }
    
    .look-product-item {
        min-width: 250px;
    }
    
    .look-product-card {
        gap: 0.75rem;
    }
    
    .look-product-image {
        width: 50px;
        height: 50px;
        min-width: 50px;
    }
    
    .look-product-name {
        font-size: 0.75rem;
    }
    
    .look-product-price {
        font-size: 0.85rem;
    }
    
    .look-product-original-price {
        font-size: 0.7rem;
    }
    
    .look-product-discount {
        font-size: 0.75rem;
    }
    
    .look-add-btn {
        width: 30px;
        height: 30px;
        min-width: 30px;
    }
    
    .look-add-btn i {
        font-size: 0.85rem;
    }
    
    .shop-the-look-main-swiper .swiper-button-next,
    .shop-the-look-main-swiper .swiper-button-prev {
        width: 40px;
        height: 40px;
    }
    
    .shop-the-look-main-swiper .swiper-button-next::after,
    .shop-the-look-main-swiper .swiper-button-prev::after {
        font-size: 16px;
    }
}

/* ========================================= */
/* Shopping Cart Bootstrap Offcanvas */
/* ========================================= */

.cart-offcanvas {
    width: 450px !important;
    max-width: 90vw;
    display: flex;
    flex-direction: column;
    position: relative;
}

.cart-offcanvas .offcanvas-header {
    border-bottom: 1px solid #e5e7eb;
    padding: 1.25rem 1.5rem;
}

.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    background: white;
    border: none;
}

.cart-close-btn {
    background: none;
    border: none;
    font-size: 1.25rem;
    color: var(--text-dark);
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    opacity: 0.7;
}

.cart-close-btn:hover {
    background: rgba(20, 184, 166, 0.1);
    color: var(--primary-color);
    opacity: 1;
    transform: rotate(90deg);
}

/* Cart Icon Cursor */
.addto-card-header[data-bs-toggle="offcanvas"] {
    cursor: pointer;
}

.addto-card-header[data-bs-toggle="offcanvas"]:hover .image {
    transform: scale(1.1);
}

/* Wishlist header: align with cart/search icons (fix heart sitting high) */
.jss440 .div-serotherlink .wishlist-header,
div.div-serotherlink .wishlist-header {
    display: flex;
    align-items: center;
    justify-content: center;
}
.wishlist-header.position-relative > a {
    display: flex;
    align-items: center;
    line-height: 0;
}
.wishlist-header.position-relative .image i {
    transition: transform 0.2s ease;
}
.wishlist-header:hover .image i {
    transform: scale(1.1);
}
/* Header count badges: same size for cart and wishlist */
#header-cart-count,
#header-wishlist-count {
    line-height: 1.2;
    padding: 0.2em 0.5em;
    font-size: 0.7rem !important;
    min-width: 1.1rem;
}

.cart-body {
    padding: 0;
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow-y: auto;
    min-height: 0;
}

.cart-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.cart-divider {
    height: 1px;
    background: #e5e7eb;
    margin: 0;
}

/* Cart Items Container */
.cart-items-container {
    padding: 0;
}

.cart-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #f3f4f6;
    position: relative;
    transition: var(--transition);
}

.cart-item:hover {
    background: #fafafa;
}

.cart-item-image {
    width: 100px;
    height: 100px;
    min-width: 100px;
    border-radius: 8px;
    overflow: hidden;
    background: #f8f9fa;
    border: 1px solid #e5e7eb;
}

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

.cart-item-details {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cart-item-name {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.4;
    font-family: 'Poppins', sans-serif;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cart-item-price {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

/* Quantity Selector */
.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    overflow: hidden;
    background: white;
}

.qty-btn {
    background: white;
    border: none;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-dark);
    font-size: 0.9rem;
    transition: var(--transition);
    border-right: 1px solid #e5e7eb;
}

.qty-btn:last-child {
    border-right: none;
    border-left: 1px solid #e5e7eb;
}

.qty-btn:hover {
    background: var(--primary-color);
    color: white;
}

.qty-btn:active {
    transform: scale(0.95);
}

.qty-value {
    min-width: 40px;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
    padding: 0 0.5rem;
}

/* Size Selector */
.size-selector {
    flex: 1;
    min-width: 80px;
    padding: 0.5rem 0.75rem;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    background: white;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: var(--transition);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%231F2937' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    padding-right: 2.5rem;
}

.size-selector:hover {
    border-color: var(--primary-color);
}

.size-selector:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

/* Delete Button */
.cart-delete-btn {
    background: none;
    border: none;
    color: #ef4444;
    font-size: 1.1rem;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.cart-delete-btn:hover {
    background: rgba(239, 68, 68, 0.1);
    transform: scale(1.1);
}

.cart-delete-btn:active {
    transform: scale(0.95);
}

/* Subtotal */
.cart-subtotal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: white;
}

.subtotal-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
}

.subtotal-amount {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
}

/* Cart Footer (Fixed at Bottom) */
.cart-footer {
    position: sticky;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: white;
    border-top: 1px solid #e5e7eb;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
    z-index: 10;
    margin-top: auto;
    flex-shrink: 0;
}

.cart-total {
    margin-bottom: 1rem;
    text-align: right;
}

.total-amount {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
    margin-bottom: 0.25rem;
}

.total-disclaimer {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.cart-checkout-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.3);
}

.cart-checkout-btn:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(20, 184, 166, 0.4);
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .cart-container {
        border-radius: 0;
        margin: 0;
        max-width: 100%;
    }

    .cart-header {
        padding: 1rem;
    }

    .cart-title {
        font-size: 1.25rem;
    }

    .cart-item {
        padding: 1rem;
        gap: 0.75rem;
    }

    .cart-item-image {
        width: 80px;
        height: 80px;
        min-width: 80px;
    }

    .cart-item-name {
        font-size: 0.9rem;
    }

    .cart-item-price {
        font-size: 0.95rem;
    }

    .cart-item-controls {
        gap: 0.5rem;
    }

    .qty-btn {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }

    .qty-value {
        min-width: 35px;
        font-size: 0.9rem;
    }

    .size-selector {
        font-size: 0.85rem;
        padding: 0.45rem 0.65rem;
        padding-right: 2rem;
    }

    .cart-offcanvas {
        width: 100% !important;
        max-width: 100vw;
    }
    
    .cart-footer {
        padding: 1rem;
        width: 100%;
    }
    

    .total-amount {
        font-size: 1.25rem;
    }

    .cart-checkout-btn {
        padding: 0.875rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .cart-item-image {
        width: 70px;
        height: 70px;
        min-width: 70px;
    }

    .cart-item-name {
        font-size: 0.85rem;
    }

    .cart-item-price {
        font-size: 0.9rem;
    }

    .cart-item-controls {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
    }

    .quantity-selector {
        width: 100%;
    }

    .size-selector {
        width: 100%;
    }
}

/* ========================================= */
/* Container Box Categories - Complete CSS */
/* ========================================= */

/* Page Info & Breadcrumb */
.div-page-info {
    padding: 0px 20px;
}

.div-page-info .div-trees {
    margin: 10px 0px 20px 0px;
}

.div-page-info .div-trees p {
    color: #000;
    font-size: 14px;
    font-style: normal;
    line-height: normal;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
}

.div-page-info .div-trees p a {
    color: #000;
    text-decoration: none;
}

.div-page-info .div-trees p a:hover {
    color: #727171;
}

.div-page-info .div-trees p span {
    color: #000;
    font-size: 15px;
    font-style: normal;
    margin-bottom: 0px;
    line-height: normal;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

/* Display Filter */
.display-filter {
    display: flex;
    justify-content: space-between;
    padding: 0px 20px;
    align-items: center;
}

.display-filter .filter-section p {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin: 0;
}

.display-filter .all-clear-fiter p {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 14px;
    cursor: pointer;
    margin: 0;
}

.display-filter .all-clear-fiter p:hover {
    color: #727171;
}

/* Special Section View Shortlist */
.special-section-viewshortlist-phonefil {
    display: none;
}

.special-section-viewshortlist-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 5px 20px 10px 20px;
}

.special-section-viewshortlist-title .headingcate-prod {
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.special-section-viewshortlist-title .div-select-size-ohtr2 {
    display: flex;
    gap: 20px;
}

.special-section-viewshortlist-title .div-select-size-ohtr2 #category-select {
    border-radius: 20px !important;
    border: 1px solid #ccc !important;
}

/* Category Dropdown */
.special-section-viewshortlist-title .category-dropdown {
    position: relative;
}

.special-section-viewshortlist-title .category-dropdown #category-select {
    font-family: 'Poppins', sans-serif;
    font-weight: 200;
    padding: 4px 26px 4px 10px;
    font-size: 14px;
    border-radius: 0px;
    border: 1px solid rgb(148, 148, 148);
    display: block;
    width: 100%;
    line-height: 1.5;
    background-image: url(Assets/downloadarrow.svg);
    background-position: right 5px center;
    background-repeat: no-repeat;
    background-size: 15px 14px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
}

.special-section-viewshortlist-title .short-bi-recommenderd {
    position: relative;
}

.special-section-viewshortlist-title .short-bi-recommenderd #category-select {
    padding: 6px 20px 6px 115px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    width: 250px;
    color: black;
    font-size: 14px;
    border: 1px solid rgb(148, 148, 148);
    border-radius: 0px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
}

.special-section-viewshortlist-title .short-bi-recommenderd .divrecomender-short {
    position: absolute;
    top: 8px;
    left: 10px;
    z-index: 1;
    pointer-events: none;
}

.special-section-viewshortlist-title .short-bi-recommenderd .divrecomender-short .image {
    display: flex;
    align-items: center;
    gap: 3px;
}

.special-section-viewshortlist-title .short-bi-recommenderd .divrecomender-short .image img {
    width: 20px;
}

.special-section-viewshortlist-title .short-bi-recommenderd .divrecomender-short .image p {
    font-size: 13px;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

/* Phone Filter View */
.special-section-viewshortlist-phonefil .divlist-alltre {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0px 10px 10px 5px;
    min-width: 400px;
    overflow-x: auto;
}

.special-section-viewshortlist-phonefil::-webkit-scrollbar {
    width: 0px;
    height: 0px;
}

.special-section-viewshortlist-phonefil .divlist-alltre .div-pse {
    border: 1px solid black;
    border-radius: 30px;
    padding: 4px 11px;
    cursor: pointer;
    white-space: nowrap;
}

.special-section-viewshortlist-phonefil .divlist-alltre .div-pse p {
    font-size: 11px;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.special-section-viewshortlist-phonefil .divlist-alltre .div-pse-filter {
    display: flex;
    align-items: center;
    gap: 4px;
    background: black;
    color: white;
}

.special-section-viewshortlist-phonefil .divlist-alltre .div-pse-filter i {
    font-size: 12px;
}

.special-section-viewshortlist-phonefil .divlist-alltre .div-pse-filter p {
    font-weight: 700;
}

/* Left Slide Filter Mobile */
.container-box-categories .left-slide-filter-mobile {
    background: white;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.container-box-categories .left-slide-filter-mobile .div-ul-list {
    padding: 20px;
    border-bottom: 1px solid #f3f4f6;
    transition: all 0.3s ease;
}

.container-box-categories .left-slide-filter-mobile .div-ul-list:last-child {
    border-bottom: none;
}

.container-box-categories .left-slide-filter-mobile .div-ul-list:hover {
    background: #f9fafb;
}

.container-box-categories .left-slide-filter-mobile .div-ul-list .heading-search-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    margin-bottom: 0px;
}

.container-box-categories .left-slide-filter-mobile .div-ul-list .heading-search-option .h2 {
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.container-box-categories .left-slide-filter-mobile .div-ul-list .heading-search-option .search-opclick {
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.container-box-categories .left-slide-filter-mobile .div-ul-list .heading-search-option .search-opclick:hover {
    background: rgba(20, 184, 166, 0.1);
}

.container-box-categories .left-slide-filter-mobile .div-ul-list .heading-search-option .search-opclick .open-searchone,
.container-box-categories .left-slide-filter-mobile .div-ul-list .heading-search-option .search-opclick .open-searchtwo,
.container-box-categories .left-slide-filter-mobile .div-ul-list .heading-search-option .search-opclick .open-searchthree {
    cursor: pointer;
    font-size: 16px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.container-box-categories .left-slide-filter-mobile .div-ul-list .heading-search-option .search-opclick .open-searchone:hover,
.container-box-categories .left-slide-filter-mobile .div-ul-list .heading-search-option .search-opclick .open-searchtwo:hover,
.container-box-categories .left-slide-filter-mobile .div-ul-list .heading-search-option .search-opclick .open-searchthree:hover {
    color: var(--primary-dark);
    transform: scale(1.1);
}

/* Search Bar */
.container-box-categories .search-bar {
    margin-top: 10px;
    margin-bottom: 15px;
}

.container-box-categories .search-bar .set-onclick-search {
    display: flex;
    align-items: center;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 8px 12px;
    gap: 10px;
    background: white;
    transition: all 0.3s ease;
}

.container-box-categories .search-bar .set-onclick-search:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

.container-box-categories .search-bar .set-onclick-search .searchInput {
    flex: 1;
    border: none;
    outline: none;
    padding: 4px 8px;
    font-size: 0.9rem;
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background: transparent;
}

.container-box-categories .search-bar .set-onclick-search .searchInput::placeholder {
    color: #9ca3af;
}

.container-box-categories .search-bar .set-onclick-search i {
    cursor: pointer;
    color: var(--primary-color);
    font-size: 14px;
    transition: all 0.3s ease;
}

.container-box-categories .search-bar .set-onclick-search i:hover {
    color: var(--primary-dark);
    transform: scale(1.1);
}

/* Select List */
.container-box-categories .left-slide-filter-mobile .div-ul-list .div-select-list .list-unstyled {
    height: 120px;
    overflow-y: auto;
    margin: 0;
    padding: 0;
    max-height: 200px;
}

.container-box-categories .left-slide-filter-mobile .div-ul-list .div-select-list .list-unstyled li {
    margin-bottom: 0px;
    transition: all 0.3s ease;
    padding: 10px 12px;
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
}

.container-box-categories .left-slide-filter-mobile .div-ul-list .div-select-list .list-unstyled li:hover {
    background: rgba(20, 184, 166, 0.05);
    border-color: rgba(20, 184, 166, 0.2); 
}

.container-box-categories .left-slide-filter-mobile .div-ul-list .div-select-list .list-unstyled li input[type="checkbox"],
.container-box-categories .left-slide-filter-mobile .div-ul-list .div-select-list .list-unstyled li input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary-color);
    flex-shrink: 0;
}

.container-box-categories .left-slide-filter-mobile .div-ul-list .div-select-list .list-unstyled li a {
    font-size: 0.9rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    flex: 1;
}

.container-box-categories .left-slide-filter-mobile .div-ul-list .div-select-list .list-unstyled li:hover a {
    color: var(--primary-color);
}

.container-box-categories .left-slide-filter-mobile .div-ul-list .div-select-list .list-unstyled::-webkit-scrollbar {
    width: 6px;
}

.container-box-categories .left-slide-filter-mobile .div-ul-list .div-select-list .list-unstyled::-webkit-scrollbar-track {
    background: #f3f4f6;
    border-radius: 10px;
}

.container-box-categories .left-slide-filter-mobile .div-ul-list .div-select-list .list-unstyled::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.container-box-categories .left-slide-filter-mobile .div-ul-list .div-select-list .list-unstyled::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Price Calculate */
.container-box-categories .left-slide-filter-mobile .div-ul-list .price-calculate {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #f3f4f6;
}

.container-box-categories .left-slide-filter-mobile .div-ul-list .price-calculate .div-calculater-price {
    display: flex;
    margin-top: 10px;
    gap: 15px;
}

.container-box-categories .left-slide-filter-mobile .div-ul-list .price-calculate .div-calculater-price .div-min-amount {
    flex: 1;
}

.container-box-categories .left-slide-filter-mobile .div-ul-list .price-calculate .div-calculater-price .div-min-amount .heading-amount {
    padding-bottom: 4px;
    font-size: 0.85rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.container-box-categories .left-slide-filter-mobile .div-ul-list .price-calculate .div-calculater-price .div-min-amount input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    color: var(--text-dark);
    font-size: 0.9rem;
    font-family: 'Poppins', sans-serif;
    background: white;
    transition: all 0.3s ease;
}

.container-box-categories .left-slide-filter-mobile .div-ul-list .price-calculate .div-calculater-price .div-min-amount input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

.container-box-categories .left-slide-filter-mobile .div-ul-list .price-calculate .div-calculater-price .div-min-amount input::placeholder {
    font-size: 0.9rem;
    color: #9ca3af;
}

.container-box-categories .left-slide-filter-mobile .div-ul-list .price-calculate .finalely-apply {
    margin-top: 15px;
}

.container-box-categories .left-slide-filter-mobile .div-ul-list .price-calculate .finalely-apply .search-price {
    width: 100%;
    border: none;
    padding: 12px 0px;
    text-align: center;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    color: white;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.3);
}

.container-box-categories .left-slide-filter-mobile .div-ul-list .price-calculate .finalely-apply .search-price:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(20, 184, 166, 0.4);
}

.container-box-categories .left-slide-filter-mobile .div-ul-list .price-calculate .finalely-apply .search-price:active {
    transform: translateY(0);
}

/* Categories Product Section */
.categories-productsection {
    margin-right: 10px;
}

/* Arrow for Slide (Pagination) */
.arrow-for-slide {
    display: flex;
    align-items: center;
    gap: 120px;
    padding: 20px 0px;
}

.arrow-for-slide .page-setnum {
    font-size: 18px;
    color: #555454;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
}

.arrow-for-slide .page-setnum span {
    font-weight: 600;
}

.arrow-for-slide .div-previus-arro {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #a6a2a2;
    padding: 4px 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.arrow-for-slide .div-previus-arro i {
    font-size: 17px;
    color: #000;
}

.arrow-for-slide .div-previus-arro p {
    font-family: 'Poppins', sans-serif;
    letter-spacing: 1.5px;
    margin: 0;
    color: #000;
}

.arrow-for-slide .div-previus-arro:hover {
    background: black;
}

.arrow-for-slide .div-previus-arro:hover i {
    color: rgb(255, 255, 255);
}

.arrow-for-slide .div-previus-arro:hover p {
    color: rgb(255, 255, 255);
}

.arrow-for-slide .button-arrrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.arrow-for-slide .button-arrrow .one-count-step {
    font-family: 'Poppins', sans-serif;
    height: 40px;
    width: 40px;
    display: flex;
    color: rgb(0, 0, 0);
    font-size: 20px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.arrow-for-slide .button-arrrow .one-count-step:hover {
    background: #000000;
    color: white;
}

/* Responsive Design */
@media (max-width: 992px) {
    .special-section-viewshortlist-phonefil {
        display: block;
        overflow: scroll;
    }

    .special-section-viewshortlist-title {
        display: none;
    }

    .display-filter {
        display: none;
    }

    .arrow-for-slide {
        flex-wrap: wrap;
        gap: 20px;
    }

    .arrow-for-slide .page-setnum {
        font-size: 15px;
        color: #555454;
    }

    .arrow-for-slide .button-arrrow {
        gap: 10px;
    }

    .arrow-for-slide .div-previus-arro p {
        font-weight: 500;
        font-size: 14px;
    }

    .arrow-for-slide .div-previus-arro i {
        font-size: 15px;
    }

    .div-page-info .div-trees {
        margin: 5px 0px 20px 0px;
    }

    .div-page-info .div-trees p {
        font-size: 11px;
    }

    .div-page-info .div-trees p span {
        font-size: 12px;
    }

    .div-page-info {
        padding: 0px 0px 0px 5px;
    }

    .container-box-categories .left-slide-filter-mobile {
        display: none;
    }
}

@media (max-width: 768px) {
    .special-section-viewshortlist-phonefil .divlist-alltre {
        min-width: 350px;
    }

    .special-section-viewshortlist-title .category-dropdown #category-select {
        font-size: 10px;
        background-position: right 4px center;
        background-size: 9px 14px;
        padding: 3px 16px 3px 6px;
    }

    .special-section-viewshortlist-title .short-bi-recommenderd .divrecomender-short .image p {
        font-size: 10px;
    }

    .special-section-viewshortlist-title .short-bi-recommenderd .divrecomender-short .image img {
        width: 15px;
    }

    .special-section-viewshortlist-title .short-bi-recommenderd .divrecomender-short .image {
        gap: 1px;
    }

    .special-section-viewshortlist-title .short-bi-recommenderd .divrecomender-short {
        top: 7px;
        left: 3px;
    }

    .special-section-viewshortlist-title .short-bi-recommenderd #category-select {
        padding: 6px 0px 6px 72px;
        width: 160px;
    }

    .special-section-viewshortlist-title .div-select-size-ohtr2 {
        gap: 4px;
    }
}


.productcategorieslist {
    padding: 20px 0;
}

.productcategorieslist .product-four11 {
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.productcategorieslist .product-four11 .div-contain {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    /*height: 100%;*/
    /*display: flex;*/
    /*flex-direction: column;*/
}

.productcategorieslist .product-four11:hover .div-contain {
    box-shadow: 0 8px 32px rgba(20, 184, 166, 0.2);
    transform: translateY(-5px);
}

.productcategorieslist .product-four11 .div-on-hover-show-det {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 12px 12px 0 0;
}

.productcategorieslist .product-four11 .div-on-hover-show-det:hover .product-photo {
    transform: scale(1.1);
}

.productcategorieslist .product-four11 .product-photo {
    width: 100%;
    height: 300px;
    cursor: pointer;
    transition: var(--transition);
    object-fit: cover;
    background: #f8f9fa;
    object-position: top;
}

.productcategorieslist .product-four11 .div-on-hover-show-det:hover .div-hover-show {
    bottom: 0px;
}

.productcategorieslist .product-four11 .div-hover-show {
    position: absolute;
    bottom: -100%;
    left: 0;
    right: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6));
    height: 100%;
    text-align: center;
    padding: 50px 0px 10px 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.productcategorieslist .product-four11 .div-fl {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.productcategorieslist .product-four11 .div-fl i {
    font-size: 23px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.productcategorieslist .product-four11 .div-fl i:hover {
    color: #e5006f;
    transform: scale(1.2);
}

.productcategorieslist .product-four11 .no-product {
    color: white;
    border-top: 1px solid white;
    width: 100px;
    margin: 10px auto;
    padding-top: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
}

.productcategorieslist .product-four11 .div-footer {
    text-align: center;
    cursor: pointer;
    padding: 1rem;
    background: white;
    /*flex-grow: 1;*/
    /*display: flex;*/
    /*flex-direction: column;*/
    /*justify-content: space-between;*/
}

.productcategorieslist .product-four11 .tittle-brand p {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.4;
        white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.productcategorieslist .product-four11 .amount-cost {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 0.5rem;
}

.productcategorieslist .product-four11 .amount-cost .old {
    font-size: 0.85rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    margin-bottom: 0rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.productcategorieslist .product-four11 .amount-cost .new {
    font-size: 1.1rem;
    margin-bottom: 0rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--primary-color);
}

.productcategorieslist .product-four11 .amount-cost .rupeessymsame {
    font-size: 0.85em;
    margin-right: 2px;
}

/* Responsive */

@media (max-width: 768px) {
    .productcategorieslist {
        padding: 15px 0;
    }
    
    .productcategorieslist .product-four11 {
        margin-bottom: 20px;
    }
    
    .productcategorieslist .product-four11 .div-footer {
        padding: 15px 12px;
    }
    
    .productcategorieslist .product-four11 .tittle-brand p {
        font-size: 0.85rem;
    }
    
    .productcategorieslist .product-four11 .amount-cost .new {
        font-size: 1.1rem;
    }
    
    .productcategorieslist .product-four11 .div-fl i {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
@media (max-width: 767px) {
    .productcategorieslist .product-four11 .product-photo{
        height: 250px;
    }
}

/* Offcanvas Filter Mobile Styles */
.govin-filtermobile {
    height: 70vh !important;
    max-height: 80vh;
}

.govin-filtermobile .offcanvas-body {
    padding: 0;
    overflow-y: auto;
}

.govin-filtermobile .offcanvas-header {
    border-bottom: 1px solid #e5e7eb;
    padding: 1rem 1.5rem;
    background: white;
    position: sticky;
    top: 0;
    z-index: 10;
}

.govin-filtermobile .offcanvas-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin: 0;
}

.govin-filtermobile .div-close {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    color: #d4145a;
    transition: all 0.3s ease;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.govin-filtermobile .div-close:hover {
    background: rgba(212, 20, 90, 0.1);
    transform: scale(1.05);
}

#filter.filter {
    padding: 0;
}

#filter .container-one {
    padding: 0;
}

#filter .row {
    margin: 0;
}

#filter .nav-nav {
    flex-direction: column;
    border: none;
    gap: 0;
}

#filter .nav-nav .nav-item {
    width: 100%;
}

#filter .nav-nav .nav-link {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    padding: 12px 15px;
    border: none;
    border-bottom: 1px solid #e5e7eb;
    background: #f9fafb;
    text-align: left;
    transition: all 0.3s ease;
    border-radius: 0;
}

#filter .nav-nav .nav-link:hover {
    background: #f3f4f6;
    color: var(--primary-color);
}

#filter .nav-nav .nav-link.active {
    background: white;
    color: var(--primary-color);
    font-weight: 700;
    border-left: 3px solid var(--primary-color);
    border-bottom: 1px solid #e5e7eb;
}

#filter .tab-content {
    padding: 15px;
    min-height: 200px;
}

#filter .details {
    padding: 0;
}

#filter .divphoneproser {
    position: relative;
    margin-bottom: 10px;
}

#filter .divphoneproser i {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 14px;
    z-index: 1;
}

#filter .divphoneproser .searchInput {
    width: 100%;
    padding: 10px 15px 10px 35px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: var(--text-dark);
    background: white;
    transition: all 0.3s ease;
}

#filter .divphoneproser .searchInput:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

#filter .div-info {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f3f4f6;
    transition: all 0.3s ease;
}

#filter .div-info:hover {
    background: #f9fafb;
    padding-left: 8px;
}

#filter .div-info:last-child {
    border-bottom: none;
}

#filter .div-info input[type="checkbox"],
#filter .div-info input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary-color);
    flex-shrink: 0;
}

#filter .div-info p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    margin: 0;
    flex: 1;
}

#filter .div-count-pricephoe {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #e5e7eb;
    padding: 15px;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

#filter .div-set-ricepro {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

#filter .div-same {
    display: flex;
    align-items: center;
}

#filter .div-tx {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

#filter .bold-ph {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.2;
}

#filter .bold-js {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    margin: 0;
}

#filter .div-same button {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: white;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.3);
}

#filter .div-same button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(20, 184, 166, 0.4);
}

#filter .div-same button:active {
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .govin-filtermobile {
        height: 85vh !important;
    }
    
    #filter .nav-nav .nav-link {
        font-size: 0.85rem;
        padding: 10px 12px;
    }
    
    #filter .div-info {
        padding: 10px 0;
    }
    
    #filter .div-info p {
        font-size: 0.85rem;
    }
    
    #filter .bold-ph {
        font-size: 1.1rem;
    }
    
    #filter .div-same button {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .govin-filtermobile .offcanvas-header {
        padding: 0.75rem 1rem;
    }
    
    #filter .tab-content {
        padding: 12px;
    }
    
    #filter .div-set-ricepro {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    
    #filter .div-same button {
        width: 100%;
    }
}

/* Product Detail Page Styles */
.product-detail-section {
    padding: 40px 0;
}

.product-image-gallery {
    position: sticky;
    top: 100px;
}

.product-main-swiper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
}

.product-main-swiper .swiper-slide img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: top;
}

.product-thumb-swiper {
    margin-top: 10px;
}

.product-thumb-swiper .swiper-slide {
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.product-thumb-swiper .swiper-slide-thumb-active {
    border-color: var(--primary-color);
}

.product-thumb-swiper .swiper-slide img {
    width: 100%;
    height: 75px;
    object-fit: cover;
}

.product-info-section {
    padding-left: 30px;
}

.product-brand .brand-badge {
    display: inline-block;
    padding: 6px 12px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Poppins', sans-serif;
}

.product-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

.product-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rating-stars {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rating-value {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
}

.rating-count {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.product-price-section {
    padding: 20px 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.price-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 8px;
}

.current-price {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.original-price {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.discount-badge {
    display: inline-block;
    padding: 4px 10px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.price-note {
    font-size: 0.85rem;
    font-family: 'Poppins', sans-serif;
}

.buy-earn-section {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.05) 0%, rgba(13, 148, 136, 0.05) 100%);
    border: 1px solid rgba(20, 184, 166, 0.2);
}

.learn-more-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.learn-more-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.product-options {
    padding: 20px 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.option-title {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.color-options {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.color-option {
    position: relative;
}

.color-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.color-label {
    display: block;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.color-option input[type="radio"]:checked + .color-label {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(20, 184, 166, 0.2);
}

.color-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    display: block;
}

.size-options {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.size-options input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.size-label {
    display: inline-block;
    padding: 8px 10px;
    border: 1.5px solid #e5e7eb;
    border-radius: 0;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-dark);
    background: white;
    transition: all 0.3s ease;
    min-width: 50px;
    text-align: center;
    position: relative;
}

.size-options input[type="radio"]:checked + .size-label {
    border-color: #000000;
    border-width: 2px;
    background: white;
    color: var(--text-dark);
    font-weight: 700;
}

.size-label:hover {
    border-color: #9ca3af;
    background: white;
}

/* Size Measurements Box */
.div-measureitem{
    display: flex;
    gap: 20px;
}
.size-measurements-box {
    border: 1.5px dashed #d1d5db;
    border-radius: 0;
    padding: 10px 10px;
    margin-top: 16px;
    background: white;
    display: none;
}

.size-measurements-box.show {
    display: block;
    animation: fadeInUp 0.3s ease-out;
}

.measurement-item {
    display: flex;
    justify-content: space-between;
    align-items: center; 
    line-height: 1.5;
    gap: 5px;
}

.measurement-item:last-child {
    margin-bottom: 0;
}

.measurement-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    color: #1f2937;
    font-weight: 700;
}

.measurement-label strong {
    font-weight: 700;
    color: #1f2937;
}

.measurement-value {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: #1f2937;
    font-weight: 400;
}

/* Size Chart Link */
.size-chart-link-wrapper {
    margin-top: 16px;
}

.size-chart-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.size-chart-link i {
    font-size: 1.1rem;
    color: var(--text-dark);
}

.size-chart-text {
    display: inline-flex;
    gap: 4px;
}

.size-text {
    color: #6366f1;
    font-weight: 600;
}

.chart-text {
    color: #3b82f6;
    font-weight: 600;
}

.size-chart-link:hover {
    opacity: 0.8;
}

.size-chart-link:hover .size-text {
    color: #4f46e5;
}

.size-chart-link:hover .chart-text {
    color: #2563eb;
}

/* Size Chart Modal */
/* Size Chart Modal - Fullscreen */
#sizeChartModal .modal-dialog {
    margin: 0;
    max-width: 100%;
    height: 100%;
}

#sizeChartModal .modal-content {
    height: 100%;
    border-radius: 0;
    border: none;
}

.size-chart-modal-content {
    border-radius: 0;
    border: none;
    box-shadow: none;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.size-chart-header {
    border-bottom: 2px solid #e5e7eb;
    padding: 20px 24px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
}

.size-chart-header .modal-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
}

.size-chart-header .btn-close {
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.size-chart-header .btn-close:hover {
    opacity: 1;
}

.size-chart-body {
    padding: 24px;
    flex: 1;
    overflow-y: auto;
}

/* Size Chart Toggle Buttons */
.size-chart-toggle {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.toggle-btn {
    padding: 10px 24px;
    border: 2px solid #e5e7eb;
    background: white;
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-btn:hover {
    border-color: var(--primary-color);
    background: rgba(20, 184, 166, 0.1);
}

.toggle-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Size Chart Table */
.size-chart-table-wrapper {
    overflow-x: auto;
    margin-bottom: 20px;
}

.size-chart-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Poppins', sans-serif;
}

.size-chart-table thead {
    background: #f9fafb;
}

.size-chart-table th {
    padding: 14px 12px;
    text-align: left;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-dark);
    border-bottom: 2px solid #e5e7eb;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.size-chart-table td {
    padding: 14px 12px;
    border-bottom: 1px solid #e5e7eb;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.size-chart-table tbody tr:hover {
    background: #f9fafb;
}

.size-chart-table tbody tr:last-child td {
    border-bottom: none;
}

/* Size Guide Note */
.size-chart-note {
    background: #f9fafb;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.size-chart-note p {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.size-guide-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.size-guide-list li {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.size-guide-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.size-guide-list li:last-child {
    margin-bottom: 0;
}

.size-guide-list li strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Responsive Styles for Size Chart */
@media (max-width: 768px) {
    .size-chart-table {
        font-size: 0.85rem;
    }
    
    .size-chart-table th,
    .size-chart-table td {
        padding: 10px 8px;
    }
    
    .size-chart-body {
        padding: 20px 16px;
    }
}

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

.product-actions .btn {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
}

.btn-add-to-cart {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.3);
}

.btn-add-to-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(20, 184, 166, 0.4);
    color: white;
}

.btn-buy-now {
    background: var(--text-dark);
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-buy-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    color: white;
    background: #1a1a1a;
}

.pincode-section {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
}

.pincode-section h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1rem;
}

.input-group .form-control {
    border: 1px solid #e5e7eb;
    border-radius: 8px 0 0 8px;
    padding: 10px 15px;
    font-family: 'Poppins', sans-serif;
}

.input-group .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

.btn-check-pincode {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    border-radius: 0 8px 8px 0;
    padding: 10px 20px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.btn-check-pincode:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: white;
}

.delivery-info {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.delivery-option {
    display: flex;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.delivery-option i {
    color: var(--primary-color);
    width: 20px;
}

.product-share {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.share-label {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #113a65;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Product Details Tabs */
.product-details-tabs {
    background: #f9fafb;
}

.product-detail-tabs {
    border-bottom: 2px solid #e5e7eb;
}

.product-detail-tabs .nav-link {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--text-muted);
    border: none;
    border-bottom: 3px solid transparent;
    padding: 15px 25px;
    transition: all 0.3s ease;
}

.product-detail-tabs .nav-link:hover {
    color: var(--primary-color);
    border-bottom-color: rgba(20, 184, 166, 0.3);
}

.product-detail-tabs .nav-link.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    background: transparent;
}

.tab-content {
    padding: 30px 0;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.product-detail-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f3f4f6;
}

.detail-label {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.detail-value {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.9rem;
}

/* Reviews Section */
.review-summary {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.overall-rating h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--text-dark);
    font-size: 3rem;
}

.rating-breakdown {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rating-bar-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
}

.rating-bar-item .progress {
    flex: 1;
    height: 8px;
    background: #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
}

.rating-bar-item .progress-bar {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    height: 100%;
    transition: width 0.3s ease;
}

.review-item {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.review-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
}

.reviewer-details h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.review-rating {
    color: #ffc107;
    font-size: 0.85rem;
}

.review-date {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.review-text {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 15px;
}

.btn-helpful {
    background: none;
    border: 1px solid #e5e7eb;
    padding: 6px 12px;
    border-radius: 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-helpful:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(20, 184, 166, 0.05);
}

/* Offers Section */
.offer-item {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.offer-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
}

.offer-item h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--text-dark);
}

.offer-item p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
}

/* Breadcrumb */
.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
    font-size:15px;
}

/* Responsive */
@media (max-width: 992px) {
    .product-info-section {
        padding-left: 0;
        margin-top: 30px;
    }
    
    .product-image-gallery {
        position: static;
    }
    
     
}

@media (max-width: 768px) {
    .product-title {
        font-size: 1.5rem;
    }
    
    .current-price {
        font-size: 1.5rem;
    }
    
    .product-main-swiper .swiper-slide img {
        height: 550px;
    }
    
    .color-img {
        width: 60px;
        height: 60px;
    }
    
    .size-label {
        padding: 8px 15px;
        font-size: 0.85rem;
    }
}

/* About Us Page Styles */
.about-us-section {
    padding: 60px 0;
}

 

 

.section-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
}

.about-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.about-image img {
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.feature-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(20, 184, 166, 0.15);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
}

.feature-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.feature-text {
    font-family: 'Poppins', sans-serif;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.mission-vision-section {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.05) 0%, rgba(13, 148, 136, 0.05) 100%);
    border: 1px solid rgba(20, 184, 166, 0.1);
}

/* Contact Us Page Styles */
.contact-us-section {
    padding: 60px 0;
}

.contact-info-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(20, 184, 166, 0.15);
}

.contact-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.contact-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.contact-text {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.contact-form-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.form-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.5rem;
}

.form-label {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.form-control {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 12px 15px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
    outline: none;
}

.btn-submit-contact {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    padding: 12px 40px;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.3);
}

.btn-submit-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(20, 184, 166, 0.4);
    color: white;
}

/* Checkout Page Styles */
.checkout-section {
    padding: 40px 0;
}

.checkout-form-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.checkout-section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.3rem;
    padding-bottom: 15px;
    border-bottom: 2px solid #f3f4f6;
}

.order-summary-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 100px;
}

.order-item-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

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

.order-item-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.order-item-details {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
}

.order-item-price {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1rem;
}

.order-item-qty {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.price-breakdown {
    padding-top: 15px;
    border-top: 1px solid #e5e7eb;
}

.price-row {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.price-row strong {
    font-size: 1.1rem;
}

.total-price {
    font-size: 1.3rem;
    color: var(--primary-color);
}

.promo-code-section .form-control {
    border-radius: 8px 0 0 8px;
}

.btn-apply-promo {
    background: var(--text-dark);
    color: white;
    border: none;
    border-radius: 0 8px 8px 0;
    padding: 12px 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-apply-promo:hover {
    background: #1a1a1a;
    color: white;
}

.btn-place-order {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    padding: 16px 30px;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.3);
}

.btn-place-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(20, 184, 166, 0.4);
    color: white;
}

.payment-methods-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.payment-method-item {
    position: relative;
}

.payment-method-item input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.payment-label {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.payment-method-item input[type="radio"]:checked + .payment-label {
    border-color: var(--primary-color);
    background: rgba(20, 184, 166, 0.05);
}

.payment-label:hover {
    border-color: var(--primary-color);
    background: rgba(20, 184, 166, 0.05);
}

.payment-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.payment-info h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1rem;
    margin-bottom: 4px;
}

.payment-info p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .order-summary-card {
        position: static;
        margin-top: 30px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .section-heading {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 1.75rem;
    }
    
    .checkout-form-card,
    .order-summary-card {
        padding: 20px;
    }
    
    .payment-label {
        padding: 12px;
    }
    
    .payment-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}
 .similar-products-swiper {
    padding: 0px 0px 20px 0px;
 }

/* Dashboard Page Styles */
.dashboard-section {
    padding: 40px 0;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    min-height: calc(100vh - 200px);
}

/* Dashboard Header */
.dashboard-header {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.05) 0%, rgba(13, 148, 136, 0.05) 100%);
    padding: 25px 30px;
    border-radius: 15px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(20, 184, 166, 0.1);
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.dashboard-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.dashboard-welcome {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    color: var(--text-dark);
}

.dashboard-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
}

/* Quick Stats Cards */
.stat-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    border: 1px solid rgba(20, 184, 166, 0.1);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.stat-card-primary::before {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.stat-card-success::before {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.stat-card-warning::before {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.stat-card-info::before {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-card-icon {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.stat-card:hover .stat-card-icon {
    transform: scale(1.1) rotate(5deg);
}

.stat-card-primary .stat-card-icon {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.stat-card-success .stat-card-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.stat-card-warning .stat-card-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.stat-card-info .stat-card-icon {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.stat-card-content {
    flex: 1;
}

.stat-card-value {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    color: var(--text-dark);
    margin: 0;
    line-height: 1;
}

.stat-card-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 5px 0 0 0;
}

.stat-card-badge {
    margin-top: 10px;
}

/* Quick Actions */
.quick-actions {
    margin-bottom: 30px;
}

.quick-action-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    text-decoration: none;
    color: var(--text-dark);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: block;
    height: 100%;
}

.quick-action-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    color: var(--text-dark);
    text-decoration: none;
}

.quick-action-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    color: white;
}

.quick-action-card h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.quick-action-card .badge {
    font-size: 0.75rem;
    padding: 4px 10px;
}

.dashboard-sidebar {
    position: sticky;
    top: 100px;
}

/* User Profile Card */
.user-profile-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
}

.user-avatar img {
    border: 4px solid var(--primary-color);
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.2);
}

.user-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-dark);
}

.user-email {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
}

.user-stats {
    display: flex;
    justify-content: space-around;
    padding-top: 15px;
    border-top: 1px solid #f3f4f6;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 5px;
}

/* Dashboard Menu */
.dashboard-menu {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    padding: 20px;
}

.dashboard-menu .nav-link {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--text-dark);
    padding: 12px 15px;
    border-radius: 10px;
    margin-bottom: 8px;
    transition: all 0.3s ease;
    border: none;
    display: flex;
    align-items: center;
}

.dashboard-menu .nav-link:hover {
    background: rgba(20, 184, 166, 0.1);
    color: var(--primary-color);
}

.dashboard-menu .nav-link.active {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.3);
}

.dashboard-menu .nav-link i {
    width: 20px;
    font-size: 1rem;
}

.dashboard-menu .nav-link.text-danger:hover {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

.dashboard-menu .badge {
    font-size: 0.75rem;
    padding: 4px 8px;
}

/* Dashboard Content */
.dashboard-content {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.dashboard-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.dashboard-card-header {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.05) 0%, rgba(13, 148, 136, 0.05) 100%);
    padding: 20px 25px;
    border-bottom: 1px solid #f3f4f6;
}

.dashboard-card-header h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.3rem;
}

.dashboard-card-header h4 i {
    color: var(--primary-color);
}

.dashboard-card-body {
    padding: 25px;
}

/* Form Styles */
.dashboard-card-body .form-label {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.dashboard-card-body .form-control {
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    padding: 12px 15px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.dashboard-card-body .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.1);
    outline: none;
}

.dashboard-card-body .btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border: none;
    padding: 12px 30px;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.3);
}

.dashboard-card-body .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(20, 184, 166, 0.4);
}

/* Order Item Card */
.order-item-card {
    background: #f9fafb;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.order-item-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.order-item-card img {
    border-radius: 8px;
}

.order-item-card h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1rem;
}

/* Wishlist Item Card - improved design */
.wishlist-grid .wishlist-item-card {
    height: 100%;
}

.wishlist-card-inner {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.wishlist-item-card:hover .wishlist-card-inner {
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.wishlist-card-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: #f8f9fa;
}

.wishlist-card-image a {
    display: block;
    height: 100%;
}

.wishlist-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.wishlist-item-card:hover .wishlist-card-image img {
    transform: scale(1.06);
}

.wishlist-card-remove {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: none;
    color: #e63946;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
    z-index: 1;
}

.wishlist-card-remove:hover {
    background: #e63946;
    color: #fff;
    transform: scale(1.08);
}

.wishlist-card-remove i {
    font-size: 1rem;
}

.wishlist-card-body {
    padding: 1rem 1rem 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.wishlist-card-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
    min-height: 2.8em;
    word-break: break-word;
    transition: color 0.2s ease;
}

.wishlist-card-title:hover {
    color: #e63946;
}

.wishlist-card-price {
    margin-bottom: 0.75rem;
}

.wishlist-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: auto;
}

.wishlist-card-view-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    border: 1px solid #1a1a1a;
    color: #1a1a1a;
    background: transparent;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    flex: 1;
    min-width: 0;
}

.wishlist-card-view-btn:hover {
    background: #1a1a1a;
    color: #fff;
    border-color: #1a1a1a;
}

.wishlist-card-price .current {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
}

.wishlist-card-price .compare {
    font-size: 0.9rem;
    color: #888;
    text-decoration: line-through;
    margin-left: 0.35rem;
}

.wishlist-card-add-cart {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    background: #1a1a1a;
    color: #fff !important;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none !important;
    transition: background 0.2s ease, color 0.2s ease;
    flex: 1;
    min-width: 0;
    white-space: nowrap;
    line-height: 1.2;
}

.wishlist-card-add-cart:hover {
    background: #e63946;
    color: #fff !important;
}

.wishlist-card-add-cart i,
.wishlist-card-add-cart span {
    color: inherit;
}

/* Legacy wishlist item card classes (for compatibility) */
.wishlist-item-image {
    position: relative;
    overflow: hidden;
}

.wishlist-item-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.btn-remove-wishlist {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: white;
    border: none;
    color: #dc3545;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.wishlist-item-info {
    padding: 15px;
}

.wishlist-item-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
    margin-bottom: 10px;
    min-height: 40px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.wishlist-item-price {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 15px;
}

/* Cart Item Dashboard */
.cart-item-dashboard {
    background: #f9fafb;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #e5e7eb;
}

.cart-item-dashboard img {
    border-radius: 8px;
}

.cart-item-dashboard h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1rem;
}

.cart-summary {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.05) 0%, rgba(13, 148, 136, 0.05) 100%);
    border: 1px solid rgba(20, 184, 166, 0.1);
}

.cart-summary .d-flex {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
}

.cart-summary strong {
    font-size: 1.2rem;
}

/* Address Card */
.address-card {
    background: white;
    transition: all 0.3s ease;
}

.address-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.address-card h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--text-dark);
}

.address-card p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
}

.address-actions {
    margin-top: 15px;
    display: flex;
    gap: 10px;
}

/* Payment Method Card */
.payment-method-card {
    background: white;
    transition: all 0.3s ease;
}

.payment-method-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.payment-method-card h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--text-dark);
}

/* Settings Section */
.settings-section {
    padding-bottom: 25px;
    border-bottom: 1px solid #f3f4f6;
    margin-bottom: 25px;
}

.settings-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.settings-section h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.form-check-input {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.form-check-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: var(--text-dark);
    cursor: pointer;
    margin-left: 8px;
}

/* Badge Styles */
.badge {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
}

/* Button Styles */
.btn-sm {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-outline-danger {
    border: 2px solid #dc3545;
    color: #dc3545;
    transition: all 0.3s ease;
}

.btn-outline-danger:hover {
    background: #dc3545;
    color: white;
    transform: translateY(-2px);
}

/* Quantity Selector */
.quantity-selector {
    display: flex;
    align-items: center;
    gap: 10px;
}

.qty-btn {
    width: 35px;
    height: 35px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #e5e7eb;
    background: white;
    transition: all 0.3s ease;
}

.qty-btn:hover {
    border-color: var(--primary-color);
    background: rgba(20, 184, 166, 0.1);
    color: var(--primary-color);
}

.qty-value {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    min-width: 30px;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 992px) {
    .dashboard-sidebar {
        position: static;
        margin-bottom: 30px;
    }
    
    .user-stats {
        gap: 20px;
    }
    
    .dashboard-card-header {
        padding: 15px 20px;
    }
    
    .dashboard-card-body {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .dashboard-section {
        padding: 20px 0;
    }
    
    .user-profile-card {
        padding: 20px !important;
    }
    
    .user-avatar img {
        width: 80px !important;
        height: 80px !important;
    }
    
    .user-name {
        font-size: 1rem;
    }
    
    .dashboard-menu {
        padding: 15px;
    }
    
    .dashboard-menu .nav-link {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .dashboard-card-header h4 {
        font-size: 1.1rem;
    }
    
    .dashboard-card-body {
        padding: 15px;
    }
    
    .order-item-card,
    .cart-item-dashboard {
        padding: 15px;
    }
    
    .wishlist-item-image img {
        height: 200px;
    }
    
    .address-card {
        margin-bottom: 15px;
    }
    
    .payment-method-card {
        padding: 15px !important;
    }
    
    .stat-value {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .user-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .dashboard-menu .nav-link {
        font-size: 0.85rem;
        padding: 8px 10px;
    }
    
    .dashboard-menu .nav-link i {
        font-size: 0.9rem;
    }
    
    .order-item-card .row,
    .cart-item-dashboard .row {
        text-align: center;
    }
    
    .order-item-card .col-md-2,
    .cart-item-dashboard .col-md-2 {
        margin-bottom: 15px;
    }
    
    .wishlist-item-image img {
        height: 180px;
    }
}

/* Enhanced Dashboard Styles */
.dashboard-overview-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    height: 100%;
}

.dashboard-overview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(20, 184, 166, 0.15);
}

.overview-icon {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.3);
}

.overview-content {
    flex: 1;
}

.overview-value {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.overview-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

/* User Profile Card Enhancements */
.user-profile-card {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.05) 0%, rgba(13, 148, 136, 0.05) 100%);
    border: 1px solid rgba(20, 184, 166, 0.1);
}

.user-avatar {
    position: relative;
    display: inline-block;
}

.btn-edit-avatar {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    border: 3px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.btn-edit-avatar:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

.user-level-badge .badge {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    padding: 6px 12px;
    font-size: 0.85rem;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.quick-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Quick Actions Bar */
.quick-actions-bar {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.quick-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 15px;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.05) 0%, rgba(13, 148, 136, 0.05) 100%);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
    border: 1px solid rgba(20, 184, 166, 0.1);
    height: 100%;
}

.quick-action-btn:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(20, 184, 166, 0.3);
}

.quick-action-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.quick-action-btn:hover .quick-action-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: scale(1.1);
}

.quick-action-btn span {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Order Item Enhancements */
.order-image-wrapper {
    position: relative;
}

.order-quantity-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--primary-color);
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 2px 8px rgba(20, 184, 166, 0.3);
}

.order-meta {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
}

.badge-lg {
    padding: 8px 14px;
    font-size: 0.9rem;
    font-weight: 700;
}

/* Wishlist Item Enhancements */
.wishlist-item-rating {
    font-size: 0.85rem;
}

.wishlist-item-rating .text-muted {
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
}

/* Cart Item Enhancements */
.cart-item-image-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.cart-item-details {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.cart-item-details .badge {
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    padding: 4px 8px;
}

/* Address Card Enhancements */
.address-type-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 2px 8px rgba(20, 184, 166, 0.3);
}

.address-details p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Payment Method Card Enhancements */
.payment-card-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9fafb;
    border-radius: 12px;
    padding: 10px;
}

/* Responsive Enhancements */
@media (max-width: 992px) {
    .dashboard-overview-card {
        padding: 20px;
    }
    
    .overview-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .overview-value {
        font-size: 1.5rem;
    }
    
    .quick-actions-bar {
        padding: 15px;
    }
    
    .quick-action-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .dashboard-overview-card {
        padding: 15px;
        gap: 15px;
    }
    
    .overview-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .overview-value {
        font-size: 1.3rem;
    }
    
    .overview-label {
        font-size: 0.8rem;
    }
    
    .quick-action-btn {
        padding: 15px 10px;
    }
    
    .quick-action-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .quick-action-btn span {
        font-size: 0.8rem;
    }
    
    .address-type-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        top: 10px;
        right: 10px;
    }
    
    .payment-card-icon {
        width: 50px;
        height: 50px;
    }
}

/* Dashboard Welcome Header */
.dashboard-welcome-header {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.05) 0%, rgba(13, 148, 136, 0.05) 100%);
    padding: 25px 30px;
    border-radius: 15px;
    border: 1px solid rgba(20, 184, 166, 0.1);
}

.dashboard-welcome-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.dashboard-welcome-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
}

.dashboard-header {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.05) 0%, rgba(13, 148, 136, 0.05) 100%);
    padding: 25px 30px;
    border-radius: 15px;
    border: 1px solid rgba(20, 184, 166, 0.1);
    margin-bottom: 30px;
}

.dashboard-welcome {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.dashboard-welcome .text-primary {
    color: var(--primary-color) !important;
}

.dashboard-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
}

/* Quick Action Badge */
.quick-action-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--primary-color);
    color: white;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 2px 6px rgba(20, 184, 166, 0.4);
}

.quick-action-btn {
    position: relative;
}

/* Stat Cards */
.stat-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.stat-card-primary::before {
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.stat-card-success::before {
    background: linear-gradient(90deg, #10b981 0%, #059669 100%);
}

.stat-card-warning::before {
    background: linear-gradient(90deg, #f59e0b 0%, #d97706 100%);
}

.stat-card-info::before {
    background: linear-gradient(90deg, #3b82f6 0%, #2563eb 100%);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(20, 184, 166, 0.15);
}

.stat-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 15px;
}

.stat-card-primary .stat-card-icon {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.stat-card-success .stat-card-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.stat-card-warning .stat-card-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.stat-card-info .stat-card-icon {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.stat-card-value {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.stat-card-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

.stat-card-badge {
    margin-top: 15px;
}

.stat-card-badge .badge {
    font-size: 0.75rem;
    padding: 4px 10px;
}

/* Quick Action Card */
.quick-action-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    text-decoration: none;
    color: var(--text-dark);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: block;
    height: 100%;
    position: relative;
}

.quick-action-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(20, 184, 166, 0.15);
    color: var(--text-dark);
    text-decoration: none;
}

.quick-action-card .quick-action-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    color: white;
}

.quick-action-card h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.quick-action-card .badge {
    font-size: 0.75rem;
}

/* Account Security Section */
.security-item {
    transition: all 0.3s ease;
}

.security-item:hover {
    background: rgba(20, 184, 166, 0.05) !important;
    transform: translateX(5px);
}

.security-item h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

/* Responsive Enhancements */
@media (max-width: 992px) {
    .dashboard-welcome-title {
        font-size: 1.5rem;
    }
    
    .stat-card-value {
        font-size: 1.8rem;
    }
    
    .stat-card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .dashboard-welcome-header {
        padding: 20px;
    }
    
    .dashboard-welcome-title {
        font-size: 1.3rem;
    }
    
    .stat-card {
        padding: 20px;
    }
    
    .stat-card-value {
        font-size: 1.5rem;
    }
    
    .quick-action-card {
        padding: 15px;
    }
    
    .quick-action-card .quick-action-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* Dashboard Header */
.dashboard-header {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.05) 0%, rgba(13, 148, 136, 0.05) 100%);
    padding: 25px 30px;
    border-radius: 15px;
    border: 1px solid rgba(20, 184, 166, 0.1);
    margin-bottom: 30px;
}

.dashboard-welcome {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.dashboard-welcome .text-primary {
    color: var(--primary-color) !important;
}

.dashboard-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
}

/* User Badge */
.user-badge .badge,
.user-level-badge .badge {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    padding: 6px 12px;
    font-size: 0.85rem;
}

/* Quick Actions in Profile Card */
.quick-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quick-actions .btn {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 8px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.quick-actions .btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.quick-actions .btn-outline-secondary:hover {
    background: var(--text-dark);
    color: white;
    transform: translateY(-2px);
}

/* Security Icon */
.security-icon {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.1) 0%, rgba(13, 148, 136, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Settings Section Enhancements */
.settings-section-header {
    padding-bottom: 15px;
    border-bottom: 2px solid #f3f4f6;
    margin-bottom: 20px;
}

.settings-section-header h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.settings-option-card {
    background: white;
    transition: all 0.3s ease;
}

.settings-option-card:hover {
    background: rgba(20, 184, 166, 0.02);
    border-color: var(--primary-color) !important;
    transform: translateX(5px);
}

.settings-option-card h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
    margin: 0;
}

.settings-form .password-input-wrapper {
    position: relative;
}

.settings-form .password-input-wrapper .form-control {
    padding-right: 45px;
}

.settings-form .password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 5px;
    transition: all 0.3s ease;
}

.settings-form .password-toggle:hover {
    color: var(--primary-color);
}

/* Danger Zone Card */
.danger-zone-card {
    background: rgba(220, 53, 69, 0.05);
    border-color: #dc3545 !important;
}

.danger-zone-card:hover {
    background: rgba(220, 53, 69, 0.08);
}

.danger-zone-card h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

/* Delete Account Modal */
.delete-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: rgba(220, 53, 69, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Form Switch Enhancements */
.form-switch .form-check-input {
    width: 50px;
    height: 26px;
    cursor: pointer;
    background-color: #e5e7eb;
    border: none;
    transition: all 0.3s ease;
}

.form-switch .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-switch .form-check-input:focus {
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.25);
}

/* Enhanced Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dashboard-card {
    animation: fadeInUp 0.5s ease-out;
}

.stat-card {
    animation: fadeInUp 0.5s ease-out;
}

.stat-card:nth-child(1) { animation-delay: 0.1s; }
.stat-card:nth-child(2) { animation-delay: 0.2s; }
.stat-card:nth-child(3) { animation-delay: 0.3s; }
.stat-card:nth-child(4) { animation-delay: 0.4s; }

/* Loading States */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(20, 184, 166, 0.3);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 1s ease-in-out infinite;
}

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

/* Enhanced Badge Styles */
.badge-lg {
    padding: 8px 14px;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 20px;
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .dashboard-header {
        padding: 20px;
    }
    
    .dashboard-welcome {
        font-size: 1.3rem;
    }
    
    .stat-card {
        padding: 20px;
    }
    
    .stat-card-value {
        font-size: 1.5rem;
    }
    
    .security-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .settings-option-card {
        padding: 15px !important;
    }
    
    .danger-zone-card {
        padding: 20px !important;
    }
}

/* Additional Dashboard Enhancements */
.dashboard-card {
    animation: fadeInUp 0.5s ease-out;
}

.stat-card {
    animation: fadeInUp 0.5s ease-out;
}

.stat-card:nth-child(1) { animation-delay: 0.1s; }
.stat-card:nth-child(2) { animation-delay: 0.2s; }
.stat-card:nth-child(3) { animation-delay: 0.3s; }
.stat-card:nth-child(4) { animation-delay: 0.4s; }

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

/* Enhanced Quick Action Cards */
.quick-action-card {
    position: relative;
    overflow: hidden;
}

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

.quick-action-card:hover::before {
    left: 100%;
}

/* Enhanced Order Progress Bars */
.progress {
    height: 6px;
    border-radius: 10px;
    background: #e5e7eb;
    overflow: hidden;
}

.progress-bar {
    border-radius: 10px;
    transition: width 0.6s ease;
}

/* Enhanced Form Switches */
.form-switch {
    padding-left: 3rem;
}

.form-switch .form-check-input {
    width: 3rem;
    height: 1.5rem;
    margin-left: -3rem;
    background-color: #e5e7eb;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-switch .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-switch .form-check-input:focus {
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.25);
    outline: none;
}

/* Enhanced Modal Styles */
.modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-header {
    border-bottom: 1px solid #f3f4f6;
    padding: 20px 25px;
}

.modal-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--text-dark);
}

.modal-body {
    padding: 25px;
}

.modal-footer {
    border-top: 1px solid #f3f4f6;
    padding: 20px 25px;
}

/* Enhanced Tooltips */
[data-bs-toggle="tooltip"] {
    cursor: pointer;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Enhanced Focus States */
.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.1);
    outline: none;
}

/* Loading States */
.btn.loading {
    position: relative;
    color: transparent;
    pointer-events: none;
}

.btn.loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 0.6s linear infinite;
}

/* Enhanced Hover Effects */
.order-item-card:hover,
.cart-item-dashboard:hover,
.address-card:hover,
.payment-method-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Enhanced Badge Styles */
.badge {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    letter-spacing: 0.3px;
}

.badge-lg {
    padding: 8px 14px;
    font-size: 0.9rem;
    font-weight: 700;
}

/* Enhanced Button Styles */
.btn {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

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

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

/* Enhanced Input Styles */
.form-control,
.form-select {
    font-family: 'Poppins', sans-serif;
    border-radius: 10px;
    transition: all 0.3s ease;
}

/* Enhanced Card Shadows */
.dashboard-card,
.user-profile-card,
.dashboard-menu,
.stat-card,
.quick-action-card {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.dashboard-card:hover,
.user-profile-card:hover,
.stat-card:hover,
.quick-action-card:hover {
    box-shadow: 0 8px 24px rgba(20, 184, 166, 0.15);
}

/* Enhanced Text Styles */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

p, span, label {
    font-family: 'Poppins', sans-serif;
}

/* Enhanced Responsive Design */
@media (max-width: 992px) {
    .dashboard-section {
        padding: 30px 0;
    }
    
    .stat-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .dashboard-section {
        padding: 20px 0;
    }
    
    .quick-actions {
        margin-bottom: 25px;
    }
    
    .quick-action-card {
        padding: 15px;
    }
    
    .quick-action-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .stat-card {
        padding: 20px;
    }
    
    .stat-card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .stat-card-value {
        font-size: 1.5rem;
    }
}

/* Empty State Styles */
.empty-state {
    text-align: center;
    padding: 60px 20px;
}

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

.empty-state h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.empty-state p {
    font-family: 'Poppins', sans-serif;
    color: var(--text-muted);
    margin-bottom: 25px;
}

/* Enhanced Scrollbar */
.dashboard-card-body::-webkit-scrollbar,
.offcanvas-body::-webkit-scrollbar {
    width: 8px;
}

.dashboard-card-body::-webkit-scrollbar-track,
.offcanvas-body::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.dashboard-card-body::-webkit-scrollbar-thumb,
.offcanvas-body::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.dashboard-card-body::-webkit-scrollbar-thumb:hover,
.offcanvas-body::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Enhanced Transitions */
* {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

/* Print Styles */
@media print {
    .dashboard-sidebar,
    .quick-actions,
    .btn,
    .dashboard-header {
        display: none !important;
    }
    
    .dashboard-card {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}

/* Additional Polish */
.dashboard-section {
    background: linear-gradient(to bottom, #f9fafb 0%, #ffffff 100%);
}

/* Enhanced Stat Cards with Hover Effects */
.stat-card {
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.stat-card::after {
    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;
}

.stat-card:hover::after {
    left: 100%;
}

/* Enhanced User Profile Card */
.user-profile-card {
    position: relative;
    overflow: hidden;
}

.user-profile-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.user-profile-card:hover::before {
    opacity: 1;
}

/* Enhanced Menu Items */
.dashboard-menu .nav-link {
    position: relative;
    overflow: hidden;
}

.dashboard-menu .nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--primary-color);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.dashboard-menu .nav-link.active::before,
.dashboard-menu .nav-link:hover::before {
    transform: scaleY(1);
}

/* Enhanced Order Status Badges */
.badge.bg-success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
}

.badge.bg-warning {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%) !important;
}

.badge.bg-info {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%) !important;
}

.badge.bg-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%) !important;
}

/* Enhanced Form Controls */
.form-control:disabled,
.form-select:disabled {
    background-color: #f9fafb;
    opacity: 0.7;
    cursor: not-allowed;
}

/* Enhanced Modal Backdrop */
.modal-backdrop {
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

/* Enhanced Loading States */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.loading-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Enhanced Focus Rings */
.btn:focus-visible,
.form-control:focus-visible,
.form-select:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Enhanced Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Enhanced Transitions for Better UX */
a, button, input, select, textarea {
    transition: all 0.2s ease;
}

/* Enhanced Card Hover States */
.dashboard-card:hover {
    transform: translateY(-2px);
}

.order-item-card:hover,
.cart-item-dashboard:hover {
    border-color: var(--primary-color);
}

/* Enhanced Button Groups */
.btn-group .btn {
    border-radius: 0;
}

.btn-group .btn:first-child {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.btn-group .btn:last-child {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

/* Enhanced Empty States */
.empty-state {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.02) 0%, rgba(13, 148, 136, 0.02) 100%);
    border-radius: 15px;
    border: 2px dashed #e5e7eb;
}

/* Enhanced Progress Indicators */
.progress {
    position: relative;
    overflow: hidden;
}

.progress-bar {
    position: relative;
    overflow: hidden;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-image: linear-gradient(
        -45deg,
        rgba(255, 255, 255, 0.2) 25%,
        transparent 25%,
        transparent 50%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.2) 75%,
        transparent 75%,
        transparent
    );
    background-size: 1rem 1rem;
    animation: progress-bar-stripes 1s linear infinite;
}

@keyframes progress-bar-stripes {
    0% {
        background-position: 1rem 0;
    }
    100% {
        background-position: 0 0;
    }
}

/* Dashboard Mobile Menu Toggle Button */
.dashboard-menu-toggle {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    border-radius: 10px;
    padding: 12px 20px;
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.2);
    transition: all 0.3s ease;
}

.dashboard-menu-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(20, 184, 166, 0.3);
}

.dashboard-menu-toggle i {
    font-size: 1.1rem;
}

/* Dashboard Offcanvas Styles */
.offcanvas-start {
    width: 320px;
    max-width: 85vw;
    border-right: 1px solid rgba(20, 184, 166, 0.1);
}

.offcanvas-header {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.05) 0%, rgba(13, 148, 136, 0.05) 100%);
    padding: 20px;
}

.offcanvas-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.2rem;
}

.offcanvas-title i {
    color: var(--primary-color);
}

.offcanvas-body {
    padding: 0;
    overflow-y: auto;
}

/* Dashboard Sidebar Mobile */
.dashboard-sidebar-mobile {
    padding: 0;
}

.dashboard-sidebar-mobile .dashboard-menu {
    padding: 20px 15px;
}

/* User Profile Card in Main Content */
.dashboard-content .user-profile-card {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.05) 0%, rgba(13, 148, 136, 0.05) 100%);
    border: 1px solid rgba(20, 184, 166, 0.1);
    border-radius: 15px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
    .dashboard-content .user-profile-card {
        padding: 20px !important;
    }
    
    .dashboard-content .user-avatar img {
        width: 80px !important;
        height: 80px !important;
    }
}

.dashboard-sidebar-mobile .nav-link {
    padding: 12px 15px;
    margin-bottom: 5px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.dashboard-sidebar-mobile .nav-link:hover {
    background: rgba(20, 184, 166, 0.1);
    transform: translateX(5px);
}

.dashboard-sidebar-mobile .nav-link.active {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
}

.dashboard-sidebar-mobile .nav-link.active i {
    color: white;
}

.dashboard-sidebar-mobile .mobile-menu-item {
    cursor: pointer;
    user-select: none;
}

/* Sync Mobile and Desktop Tab States */
.dashboard-sidebar-mobile .nav-link[data-bs-toggle="pill"] {
    cursor: pointer;
}

/* Enhanced Offcanvas Backdrop */
.offcanvas-backdrop {
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
    .dashboard-section {
        padding: 20px 0;
    }
    
    .dashboard-menu-toggle {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .offcanvas-start {
        width: 280px;
    }
    
    .dashboard-sidebar-mobile .dashboard-menu {
        padding: 15px 10px;
    }
}

/* Smooth Offcanvas Animation */
.offcanvas {
    transition: transform 0.3s ease-in-out;
}

/* Close Button Enhancement */
.offcanvas-header .btn-close {
    background: none;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.offcanvas-header .btn-close:hover {
    opacity: 1;
    transform: rotate(90deg);
}
 
/* Additional Dashboard Enhancements */
.dashboard-card-header {
    position: relative;
}

.dashboard-card-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    opacity: 0.3;
}

/* Order Progress Bar */
.progress {
    height: 6px;
    border-radius: 10px;
    background: #e5e7eb;
    overflow: hidden;
}

.progress-bar {
    border-radius: 10px;
    transition: width 0.6s ease;
}

/* Enhanced Badge Styles */
.badge-lg {
    padding: 8px 14px;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 20px;
}

/* Order Meta Icons */
.order-meta i {
    color: var(--primary-color);
    font-size: 0.85rem;
}

/* Cart Item Image Wrapper */
.cart-item-image-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.cart-item-image-wrapper img {
    transition: transform 0.3s ease;
}

.cart-item-dashboard:hover .cart-item-image-wrapper img {
    transform: scale(1.05);
}

/* Wishlist Item Rating */
.wishlist-item-rating {
    display: flex;
    align-items: center;
    gap: 3px;
    margin-bottom: 10px;
}

.wishlist-item-rating i {
    font-size: 0.75rem;
}

/* Address Type Icon Enhancement */
.address-type-icon {
    box-shadow: 0 2px 8px rgba(20, 184, 166, 0.3);
    transition: all 0.3s ease;
}

.address-card:hover .address-type-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.4);
}

/* Payment Card Icon Enhancement */
.payment-card-icon {
    transition: all 0.3s ease;
}

.payment-method-card:hover .payment-card-icon {
    transform: scale(1.1);
}

/* Form Control Enhancements */
.dashboard-card-body .form-control:focus,
.dashboard-card-body .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.1);
}

.dashboard-card-body .form-select {
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    padding: 12px 15px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

/* Enhanced Button Styles */
.dashboard-card-body .btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
    transition: all 0.3s ease;
}

.dashboard-card-body .btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.3);
}

.dashboard-card-body .btn-outline-danger {
    border: 2px solid #dc3545;
    color: #dc3545;
    font-weight: 600;
    transition: all 0.3s ease;
}

.dashboard-card-body .btn-outline-danger:hover {
    background: #dc3545;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

/* Loading Animation for Cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dashboard-card,
.stat-card,
.quick-action-card {
    animation: fadeInUp 0.5s ease-out;
}

/* Hover Effects for Interactive Elements */
.order-item-card,
.cart-item-dashboard,
.wishlist-item-card,
.address-card,
.payment-method-card {
    transition: all 0.3s ease;
}

.order-item-card:hover,
.cart-item-dashboard:hover {
    background: #ffffff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* Empty State Styles */
.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-state-icon {
    font-size: 4rem;
    color: #d1d5db;
    margin-bottom: 20px;
}

.empty-state-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.empty-state-text {
    font-family: 'Poppins', sans-serif;
    color: var(--text-muted);
    margin-bottom: 30px;
}

/* Responsive Enhancements */
@media (max-width: 992px) {
    .dashboard-header {
        padding: 20px;
    }
    
    .dashboard-welcome {
        font-size: 1.5rem;
    }
    
    .stat-card {
        padding: 20px;
    }
    
    .stat-card-value {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .dashboard-header {
        padding: 15px;
        text-align: center;
    }
    
    .dashboard-welcome {
        font-size: 1.3rem;
    }
    
    .stat-card {
        padding: 15px;
    }
    
    .stat-card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .stat-card-value {
        font-size: 1.5rem;
    }
    
    .quick-action-card {
        padding: 15px;
    }
}

/* Additional Modern Enhancements */
.dashboard-section {
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
}

/* Enhanced Stat Cards with Animation */
.stat-card {
    position: relative;
    overflow: hidden;
}

.stat-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover::after {
    opacity: 1;
}

.stat-card-icon {
    position: relative;
    z-index: 1;
}

/* Enhanced Quick Action Cards */
.quick-action-card {
    position: relative;
    overflow: hidden;
}

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

.quick-action-card:hover::before {
    left: 100%;
}

/* Enhanced User Profile Card */
.user-profile-card {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.05) 0%, rgba(13, 148, 136, 0.05) 100%);
    border: 1px solid rgba(20, 184, 166, 0.1);
    position: relative;
    overflow: hidden;
}

.user-profile-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

/* Enhanced Dashboard Menu */
.dashboard-menu .nav-link {
    position: relative;
    overflow: hidden;
}

.dashboard-menu .nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-color);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.dashboard-menu .nav-link.active::before,
.dashboard-menu .nav-link:hover::before {
    transform: scaleY(1);
}

/* Enhanced Order Cards */
.order-item-card {
    position: relative;
}

.order-item-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-color);
    border-radius: 0 4px 4px 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.order-item-card:hover::before {
    opacity: 1;
}

/* Enhanced Cart Summary */
.cart-summary {
    position: relative;
    overflow: hidden;
}

.cart-summary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

/* Enhanced Address Cards */
.address-card {
    position: relative;
}

.address-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 4px 0 0 4px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.address-card:hover::before {
    opacity: 1;
}

/* Enhanced Payment Method Cards */
.payment-method-card {
    position: relative;
}

.payment-method-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.payment-method-card:hover::before {
    opacity: 1;
}

/* Smooth Scroll for Dashboard */
.dashboard-content {
    scroll-behavior: smooth;
}

/* Loading Skeleton (for future use) */
.skeleton-loader {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s ease-in-out infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Tooltip Enhancements */
[data-bs-toggle="tooltip"] {
    cursor: pointer;
}

/* Print Styles */
@media print {
    .dashboard-sidebar,
    .quick-actions-bar,
    .dashboard-header {
        display: none;
    }
    
    .dashboard-card {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}

/* Fix duplicate stat-card styles */
.stat-card {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-direction: column;
    text-align: center;
}

.stat-card-content {
    width: 100%;
}

.stat-card-icon {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.stat-card:hover .stat-card-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Enhanced Form Styles */
.dashboard-card-body .form-control,
.dashboard-card-body .form-select {
    border-radius: 10px;
    border: 2px solid #e5e7eb;
    padding: 12px 15px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.dashboard-card-body .form-control:focus,
.dashboard-card-body .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.1);
    outline: none;
}

/* Enhanced Button Styles */
.dashboard-card-body .btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border: none;
    padding: 12px 30px;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.3);
}

.dashboard-card-body .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(20, 184, 166, 0.4);
}

/* Enhanced Badge Styles */
.badge {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

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

/* Enhanced Progress Bars */
.progress {
    height: 8px;
    border-radius: 10px;
    background: #e5e7eb;
    overflow: hidden;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.progress-bar {
    border-radius: 10px;
    transition: width 0.6s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Enhanced Rating Stars */
.fa-star.text-warning {
    color: #fbbf24 !important;
    text-shadow: 0 1px 2px rgba(251, 191, 36, 0.3);
}

/* Enhanced Icons */
.dashboard-card-header i,
.dashboard-menu .nav-link i {
    transition: all 0.3s ease;
}

.dashboard-menu .nav-link:hover i {
    transform: scale(1.2);
}

/* Smooth Transitions */
* {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

/* Enhanced Scrollbar */
.dashboard-card-body::-webkit-scrollbar {
    width: 8px;
}

.dashboard-card-body::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.dashboard-card-body::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.dashboard-card-body::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* ========== BLOG PAGE STYLES ========== */

/* Blog Section */
.blog-section {
    background: #f9fafb;
    min-height: 60vh;
    padding: 60px 0 !important;
}

.blog-section .container {
    max-width: 1200px;
}

/* Blog Cards */
.blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
   
    margin-bottom: 30px;
    border: 1px solid #f0f0f0;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(20, 184, 166, 0.15);
}

.blog-card-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 280px;
    background: #f3f4f6;
}

.blog-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.blog-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.featured-badge {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    font-size: 13px;
    padding: 8px 16px;
}

.blog-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2;
    cursor: pointer;
}

.blog-card:hover .blog-play-overlay {
    opacity: 1;
}

.blog-play-overlay i {
    font-size: 24px;
    color: var(--primary-color);
    margin-left: 3px;
}

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

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 13px;
    color: var(--text-light);
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-meta i {
    font-size: 12px;
    color: var(--primary-color);
}

.blog-card-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 14px;
    line-height: 1.5;
    font-family: 'Poppins', sans-serif;
}

.blog-card-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card-title a:hover {
    color: var(--primary-color);
}

.blog-card-excerpt {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
    font-size: 15px;
}

.blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
}

.btn-read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.btn-read-more:hover {
    color: var(--primary-dark);
    gap: 10px;
}

.btn-read-more i {
    transition: transform 0.3s ease;
}

.btn-read-more:hover i {
    transform: translateX(3px);
}

.blog-stats {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: var(--text-light);
}

.blog-stats span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-stats i {
    font-size: 14px;
}

/* Featured Blog Card */
.featured-blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 50px;
    border: 2px solid rgba(20, 184, 166, 0.1);
}

.featured-blog-card .blog-card-image-wrapper {
    height: 450px;
}

.featured-blog-card .blog-card-content {
    padding: 32px;
}

.featured-blog-card .blog-card-title {
    font-size: 28px;
    margin-bottom: 16px;
}

.featured-blog-card .blog-card-excerpt {
    font-size: 16px;
    line-height: 1.7;
}

/* Blog Sidebar */
.blog-sidebar-widget {
    background: white;
    padding: 28px;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.blog-sidebar-widget:hover {
    box-shadow: 0 4px 20px rgba(20, 184, 166, 0.1);
    transform: translateY(-2px);
}

.widget-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-dark);
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-color);
    font-family: 'Poppins', sans-serif;
    position: relative;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-dark);
}

.widget-description {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 16px;
}

/* Blog Search Form */
.blog-search-form {
    position: relative;
    display: flex;
    gap: 0;
}

.blog-search-form input {
    padding: 14px 50px 14px 18px;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    font-size: 15px;
    width: 100%;
    transition: all 0.3s ease;
}

.blog-search-form input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
    outline: none;
}

.btn-search-blog {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(20, 184, 166, 0.3);
}

.btn-search-blog:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.4);
}

/* Blog Categories List */
.blog-categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-categories-list li {
    margin-bottom: 12px;
}

.blog-categories-list a {
    color: var(--text-dark);
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f3f4f6;
    transition: all 0.3s ease;
}

.blog-categories-list a:hover {
    color: var(--primary-color);
    padding-left: 8px;
}

.blog-categories-list i {
    color: var(--primary-color);
    font-size: 12px;
    margin-right: 8px;
}

.blog-categories-list span {
    color: var(--text-light);
    font-size: 13px;
}

/* Recent Posts */
.recent-posts-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.recent-post-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 12px;
    border-radius: 10px;
    transition: all 0.3s ease;
    margin-bottom: 12px;
}

.recent-post-item:hover {
    background: #f9fafb;
    transform: translateX(5px);
}

.recent-post-item img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.recent-post-content h5 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.5;
}

.recent-post-content h5 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.recent-post-content h5 a:hover {
    color: var(--primary-color);
}

.recent-post-content a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.recent-post-content a:hover {
    color: var(--primary-color);
}

.recent-post-date {
    font-size: 12px;
    color: var(--text-light);
}

/* Blog Tags */
.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.blog-tag {
    background: #f3f4f6;
    color: var(--text-dark);
    padding: 8px 16px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    border: 1px solid transparent;
}

.blog-tag:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.3);
    border-color: var(--primary-color);
}

/* Blog Newsletter Form */
.blog-newsletter-form input {
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    padding: 14px 18px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.blog-newsletter-form input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
    outline: none;
}

.btn-subscribe {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(20, 184, 166, 0.3);
}

.btn-subscribe:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(20, 184, 166, 0.4);
}

/* Blog Details Page */
.blog-details-section {
    background: #f9fafb;
    min-height: 60vh;
}

.blog-breadcrumb {
    background: white;
    padding: 12px 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.blog-breadcrumb .breadcrumb {
    margin: 0;
    background: transparent;
}

.blog-breadcrumb .breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.blog-details-post {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.blog-details-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.blog-share-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.share-label {
    font-weight: 600;
    color: var(--text-dark);
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-btn.facebook { background: #1877f2; }
.share-btn.twitter { background: #1da1f2; }
.share-btn.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.share-btn.pinterest { background: #bd081c; }
.share-btn.linkedin { background: #0077b5; }

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.blog-details-featured-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 30px;
}

.blog-details-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-details-featured-image:hover .blog-image-overlay {
    opacity: 1;
}

.btn-play-video {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-play-video:hover {
    transform: scale(1.1);
    background: white;
}

.btn-play-video i {
    font-size: 32px;
    color: var(--primary-color);
    margin-left: 4px;
}

.blog-details-content {
    line-height: 1.8;
    color: var(--text-dark);
}

.blog-details-content h2 {
    font-size: 28px;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.blog-details-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.blog-details-content p {
    margin-bottom: 20px;
    font-size: 16px;
}

.blog-details-content .lead {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-light);
    margin-bottom: 30px;
}

.blog-content-image {
    margin: 30px 0;
}

.blog-content-image img {
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.image-caption {
    text-align: center;
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
    margin-top: 10px;
}

.blog-video-embed {
    margin: 30px 0;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-caption {
    text-align: center;
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
    margin-top: 10px;
}

.blog-conclusion {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.05), rgba(13, 148, 136, 0.05));
    border-left: 4px solid var(--primary-color);
    border-radius: 12px;
}

.blog-tags-section {
    padding-top: 20px;
    border-top: 2px solid #e5e7eb;
}

.blog-tags-section h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

/* Author Box */
.blog-author-box {
    background: #f9fafb;
    border-radius: 16px;
    border: 2px solid #e5e7eb;
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.author-bio {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 12px;
}

.author-social {
    display: flex;
    gap: 12px;
}

.author-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.author-social a:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* Comments Section */
.blog-comments-section {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid #e5e7eb;
}

.comments-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.comment-item {
    padding: 20px;
    background: #f9fafb;
    border-radius: 12px;
    margin-bottom: 20px;
}

.comment-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.comment-author {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.comment-date {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 8px;
    display: block;
}

.comment-text {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 8px;
}

.comment-reply {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.comment-reply:hover {
    color: var(--primary-dark);
}

.comment-form {
    background: #f9fafb;
    padding: 30px;
    border-radius: 16px;
    margin-top: 30px;
}

.comment-form h5 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.comment-form .form-control {
    border-radius: 10px;
    border: 2px solid #e5e7eb;
    padding: 12px 16px;
}

.comment-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

.btn-submit-comment {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border: none;
    padding: 12px 32px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-submit-comment:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.3);
}

/* Related Posts */
.related-posts-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.related-post-item {
    display: block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.related-post-item:hover {
    transform: translateX(5px);
}

.related-post-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 10px;
}

.related-post-item h6 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.related-post-item:hover h6 {
    color: var(--primary-color);
}

/* Pagination - Product grid & category pages */
.products-pagination-wrap .pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 6px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.products-pagination-wrap .page-item {
    list-style: none;
    margin: 0;
}

.products-pagination-wrap .page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 14px;
    font-size: 0.95rem;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    color: var(--primary-color, #0d9488);
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.products-pagination-wrap .page-link:hover {
    background: var(--primary-color, #0d9488);
    color: #fff;
    border-color: var(--primary-color, #0d9488);
}

.products-pagination-wrap .page-item.active .page-link {
    background: var(--primary-color, #0d9488);
    border-color: var(--primary-color, #0d9488);
    color: #fff;
    pointer-events: none;
}

.products-pagination-wrap .page-item.disabled .page-link {
    color: #9ca3af;
    background: #f3f4f6;
    border-color: #e5e7eb;
    pointer-events: none;
    cursor: not-allowed;
}

@media (max-width: 576px) {
    .products-pagination-wrap .page-link {
        min-width: 36px;
        height: 36px;
        padding: 0 10px;
        font-size: 0.875rem;
    }
}

/* Responsive Styles for Blog */
@media (max-width: 768px) {
    .blog-section {
        padding: 40px 0 !important;
    }

    .blog-details-post {
        padding: 24px;
    }

    .blog-details-title {
        font-size: 28px;
    }

    .featured-blog-card {
        margin-bottom: 30px;
    }

    .featured-blog-card .blog-card-image-wrapper {
        height: 280px;
    }

    .featured-blog-card .blog-card-title {
        font-size: 22px;
    }

    .blog-details-content h2 {
        font-size: 24px;
    }

    .blog-details-content h3 {
        font-size: 20px;
    }

    .blog-card-image-wrapper {
        height: 220px;
    }

    .blog-share-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .blog-sidebar-widget {
        padding: 20px;
        margin-bottom: 25px;
    }
}

@media (max-width: 576px) {
    .blog-section {
        padding: 30px 0 !important;
    }

    .blog-details-post {
        padding: 20px;
    }

    .blog-details-title {
        font-size: 24px;
    }

    .blog-meta {
        flex-direction: column;
        gap: 8px;
    }

    .blog-card-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .blog-card-content {
        padding: 20px;
    }

    .blog-card-title {
        font-size: 18px;
    }

    .widget-title {
        font-size: 18px;
    }
}
 

.product-main-swiper .swiper-button-next:after, .swiper-button-prev:after{
    font-size: 20px;
    color: black;
}
.similar-products-swiper .swiper-button-next:after, .swiper-button-prev:after{
    font-size: 20px;
    color: black;
}