/* Modern IGP Website Styles */

:root {
    --primary-color: #FFC107;
    --primary-dark: #FFA000;
    --primary-light: #FFD54F;
    --secondary-color: #FF8F00;
    --accent-yellow: #FFEB3B;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --text-muted: #999;
    --bg-light: #FFF9E6;
    --bg-gradient: linear-gradient(135deg, #FFF9E6 0%, #FFFFFF 100%);
    --border-radius: 16px;
    --shadow-sm: 0 2px 8px rgba(255, 193, 7, 0.2);
    --shadow-md: 0 4px 16px rgba(255, 193, 7, 0.25);
    --shadow-lg: 0 8px 32px rgba(255, 193, 7, 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(255, 193, 7, 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(255, 193, 7, 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(255, 193, 7, 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(255, 193, 7, 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(255, 193, 7, 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(255, 193, 7, 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(255, 193, 7, 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(255, 193, 7, 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(255, 193, 7, 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(255, 193, 7, 0.15);
    color: var(--primary-color);
    transform: translateY(-2px);
}

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

.header-cart-icon {
    background: rgba(255, 193, 7, 0.1);
}

.header-cart-icon:hover {
    background: rgba(255, 193, 7, 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(255, 193, 7, 0.15);
    transform: translateY(-2px);
}

.modern-nav-link.active {
    background: rgba(255, 193, 7, 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(255, 193, 7, 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(255, 193, 7, 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(255, 193, 7, 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(255, 193, 7, 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;
}
.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(255, 193, 7, 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(255, 193, 7, 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(255, 193, 7, 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: 1rem;
}

/* 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;
    transform: translateY(30px);
        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(255, 193, 7, 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;
    text-align: center;
}

.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 */
.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;
    transition: var(--transition);
}

.product-item-card-modern:hover .product-img-wrapper-modern img {
    transform: scale(1.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);
}

.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);
}

.div-section-one .swiper .swiper-wrapper {
    padding-bottom: 50px;
}

.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 .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: auto;
        min-height: 350px;
    }

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

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

    .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: white;
    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(255, 193, 7, 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(255, 193, 7, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 193, 7, 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(255, 193, 7, 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(255, 193, 7, 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(255, 193, 7, 0.2);
}

.quick-contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.15), rgba(255, 193, 7, 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(255, 193, 7, 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(255, 193, 7, 0.3);
    margin-top: 1rem;
}

.submit-btn-unique:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 193, 7, 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(255, 193, 7, 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(255, 193, 7, 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(255, 193, 7, 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(255, 193, 7, 0.3);
    margin-top: 1rem;
}

.btn-submit-index:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 193, 7, 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(255, 193, 7, 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(255, 193, 7, 0.1), rgba(255, 193, 7, 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(255, 193, 7, 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(255, 193, 7, 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(255, 193, 7, 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(255, 193, 7, 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(255, 193, 7, 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(255, 193, 7, 0.2), rgba(255, 193, 7, 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(255, 193, 7, 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(255, 193, 7, 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(255, 193, 7, 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(255, 193, 7, 0.3);
    border: 2px solid transparent;
}

.btn-about-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 193, 7, 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(255, 193, 7, 0.1), rgba(255, 193, 7, 0.05));
    border-radius: 15px;
    border: 2px solid rgba(255, 193, 7, 0.2);
    transition: var(--transition);
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 193, 7, 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(255, 193, 7, 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(255, 193, 7, 0.05), rgba(255, 193, 7, 0.02));
    border-radius: 20px;
    border: 2px solid rgba(255, 193, 7, 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(255, 193, 7, 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(255, 193, 7, 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(255, 193, 7, 0.9), rgba(255, 143, 0, 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(255, 193, 7, 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(255, 193, 7, 0.05), rgba(255, 193, 7, 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(255, 193, 7, 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(255, 193, 7, 0.92) 0%, rgba(255, 143, 0, 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(255, 193, 7, 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(255, 193, 7, 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(255, 193, 7, 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(255, 193, 7, 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: 9999;
    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;
    }
}