 :root {
            --primary-color: #000000;
            --accent-color: #FF0000;
            --background-color: #F8FAFC;
            --text-color: #333;
            --light-gray: #f5f5f5;
            --red-color: #FF0000;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--background-color);
            color: var(--text-color);
            overflow-x: hidden;
            padding-top: 80px;
        }
        .owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev {
            background-color: rgba(255, 255, 255, 0.9);
            color: var(--red-color);
        }
        /* Navigation Styles */
        .navbar {
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            padding: 15px 0;
            position: fixed !important;
            top: 0;
            width: 100%;
            z-index: 1030;
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            font-weight: 700;
            color: var(--primary-color);
            font-size: 1.5rem;
        }
        
        .navbar-brand img {
            height: 40px;
            margin-right: 10px;
        }
        
        .nav-link {
            color: var(--text-color);
            font-weight: 500;
            margin: 0 10px;
            transition: all 0.3s ease;
            position: relative;
            cursor: pointer;
        }
        
        .nav-link:hover {
            color: var(--accent-color);
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent-color);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .nav-icons {
            display: flex;
            align-items: center;
            background:var(--background-color);
        }
        
        .nav-icon {
            position: relative;
            margin-left: 15px;
            font-size: 1.2rem;
            color: var(--text-color);
            cursor: pointer;
            transition: color 0.3s ease;
        }
        
        .nav-icon:hover {
            color: var(--accent-color);
        }
        
        .cart-badge {
            position: absolute;
            top: -8px;
            right: -8px;
            background-color: var(--red-color);
            color: white;
            border-radius: 50%;
            width: 18px;
            height: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
            font-weight: 600;
        }
        
        /* Dropdown Menu Styles */
        .dropdown-menu {
            border: none;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            padding: 15px;
            margin-top: 15px;
            min-width: 220px;
            display: none;
        }
        
        .dropdown-menu.show {
            display: block;
        }
        
        .dropdown-item {
            border-radius: 10px;
            padding: 10px 15px;
            margin-bottom: 5px;
            transition: all 0.3s ease;
        }
        
        .dropdown-item:hover {
            background-color: rgba(255, 0, 0, 0.1);
            color: var(--accent-color);
        }
        
        .dropdown-submenu {
            position: relative;
        }
        
        .dropdown-submenu .dropdown-menu {
            top: 0;
            left: 100%;
            margin-top: -1px;
        }
        
        /* Mobile Bottom Navigation */
        .mobile-bottom-nav {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: white;
            box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            border-top-left-radius: 20px;
            border-top-right-radius: 20px;
            padding: 10px 0 20px;
        }
        
        .mobile-nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: #777;
            font-size: 0.8rem;
            padding: 5px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .mobile-nav-item.active {
            color: var(--primary-color);
        }
        
        .mobile-nav-item i {
            font-size: 1.3rem;
            margin-bottom: 5px;
        }
             /* Page Header */
        .page-header {
            background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
            color: white;
            padding: 60px 0 40px;
            margin-top: -30px;
        }
        
        .page-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .breadcrumb {
            background: none;
            padding: 0;
            margin: 0;
        }
        
        .breadcrumb-item {
            color: rgba(255, 255, 255, 0.8);
        }
        
        .breadcrumb-item.active {
            color: white;
        }
        
        .breadcrumb-item + .breadcrumb-item::before {
            color: rgba(255, 255, 255, 0.8);
            content: ">";
        }
        /* Hero Section Slideshow */
        .hero-section {
            position: relative;
            height: 80vh;
            min-height: 500px;
            overflow: hidden;
            margin-top: -80px;
        }
        
        .hero-slide {
            position: relative;
            width: 100%;
            height: 80vh;
            min-height: 500px;
            background-size: cover;
            background-position: center;
        }
        
        .hero-slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(255, 0, 0, 0.8));
            z-index: 1;
        }
        
        .hero-content {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 2;
            color: white;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 0 15px;
        }
        
        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
            width: 100%;
            max-width: 100%;
            padding: 0 20px;
        }
        
        .hero-subtitle {
            font-size: 1.3rem;
            margin-bottom: 30px;
            opacity: 0.9;
            width: 100%;
            max-width: 100%;
            padding: 0 20px;
        }
        
        .hero-buttons {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }
        
        .btn-hero {
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }
        
        .btn-primary-hero {
            background-color: white;
            color: var(--primary-color);
        }
        
        .btn-primary-hero:hover {
            background-color: var(--accent-color);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        .btn-secondary-hero {
            background-color: transparent;
            color: white;
            border: 2px solid white;
        }
        
        .btn-secondary-hero:hover {
            background-color: white;
            color: var(--primary-color);
            transform: translateY(-3px);
        }
        
        /* Owl Carousel Custom Styles */
        .owl-carousel {
            position: relative;
        }
        
        .owl-nav {
            position: absolute;
            top: 50%;
            width: 100%;
            transform: translateY(-50%);
            z-index: 10;
        }
        
        .owl-nav button {
            position: absolute;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.9);
            color: var(--primary-color);
            font-size: 1.5rem;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 1;
            border: 2px solid var(--accent-color);
        }
        
        .owl-nav button:hover {
            background-color: var(--accent-color);
            color: white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        
        .owl-nav .owl-prev {
            left: 20px;
        }
        
        .owl-nav .owl-next {
            right: 20px;
        }
        
        .owl-dots {
            position: absolute;
            bottom: 20px;
            width: 100%;
            text-align: center;
        }
        
        .owl-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            margin: 0 5px;
            display: inline-block;
            transition: all 0.3s ease;
        }
        
        .owl-dot.active {
            background-color: var(--accent-color);
            width: 30px;
            border-radius: 6px;
        }
        
        /* Search Overlay */
        .search-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            z-index: 1050;
            display: none;
            align-items: center;
            justify-content: center;
        }
        
        .search-overlay.show {
            display: flex;
        }
        
        .search-container {
            width: 90%;
            max-width: 600px;
            position: relative;
        }
        
        .search-input {
            width: 100%;
            padding: 20px 60px 20px 25px;
            font-size: 1.5rem;
            border: none;
            border-radius: 50px;
            background-color: white;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        
        .search-close {
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            font-size: 1.5rem;
            color: #777;
            cursor: pointer;
        }
        
        .search-results {
            margin-top: 20px;
            background-color: white;
            border-radius: 15px;
            padding: 20px;
            max-height: 400px;
            overflow-y: auto;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        
        .search-result-item {
            display: flex;
            align-items: center;
            padding: 15px 0;
            border-bottom: 1px solid #eee;
        }
        
        .search-result-item:last-child {
            border-bottom: none;
        }
        
        .search-result-image {
            width: 60px;
            height: 60px;
            object-fit: cover;
            border-radius: 10px;
            margin-right: 15px;
        }
        
        .search-result-details {
            flex-grow: 1;
        }
        
        .search-result-name {
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        .search-result-price {
            color: var(--primary-color);
            font-weight: 600;
        }
        
        /* Cart Preview */
        .cart-preview {
            position: fixed;
            top: 0;
            right: -400px;
            width: 400px;
            height: 100%;
            background-color: white;
            box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
            z-index: 1050;
            transition: right 0.3s ease;
            display: flex;
            flex-direction: column;
        }
        
        .cart-preview.open {
            right: 0;
        }
        
        .cart-header {
            padding: 20px;
            border-bottom: 1px solid #eee;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .cart-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--primary-color);
        }
        
        .cart-close {
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #777;
        }
        
        .cart-body {
            flex-grow: 1;
            overflow-y: auto;
            padding: 20px;
        }
        
        .cart-empty {
            text-align: center;
            padding: 40px 20px;
            color: #777;
        }
        
        .cart-item {
            display: flex;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
        }
        
        .cart-item-image {
            width: 80px;
            height: 80px;
            object-fit: cover;
            border-radius: 10px;
            margin-right: 15px;
        }
        
        .cart-item-details {
            flex-grow: 1;
        }
        
        .cart-item-name {
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        .cart-item-price {
            color: var(--primary-color);
            font-weight: 600;
        }
        
        .cart-item-quantity {
            display: flex;
            align-items: center;
            margin-top: 10px;
        }
        
        .quantity-btn {
            width: 30px;
            height: 30px;
            border: 1px solid #ddd;
            background: none;
            border-radius: 5px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .quantity-value {
            margin: 0 10px;
            font-weight: 600;
        }
        
        .cart-item-remove {
            color: #777;
            cursor: pointer;
            margin-left: 10px;
        }
        
        .cart-footer {
            padding: 20px;
            border-top: 1px solid #eee;
        }
        
        .cart-total {
            display: flex;
            justify-content: space-between;
            margin-bottom: 20px;
            font-size: 1.2rem;
            font-weight: 600;
        }
        
        .cart-checkout {
            width: 100%;
            padding: 15px;
            background-color: var(--primary-color);
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .cart-checkout:hover {
            background-color: var(--accent-color);
        }
        
        .cart-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1040;
            display: none;
        }
        
        .cart-overlay.show {
            display: block;
        }
        
        /* Success Notification */
        .notification {
            position: fixed;
            top: 100px;
            right: -400px;
            background-color: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            z-index: 1060;
            transition: right 0.3s ease;
            max-width: 350px;
        }
        
        .notification.show {
            right: 20px;
        }
        
        .notification-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: #28a745;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
        }
        
        .notification-content {
            flex-grow: 1;
        }
        
        .notification-title {
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        .notification-message {
            color: #666;
            font-size: 0.9rem;
        }
        
        /* Section Styles */
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--primary-color);
            position: relative;
            display: inline-block;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            background-color: var(--accent-color);
            border-radius: 2px;
        }
        
        .section-subtitle {
            color: #777;
            margin-bottom: 50px;
            max-width: 600px;
        }
        
        /* View More Button */
        .view-more-btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--primary-color);
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            margin-top: 20px;
        }
        
        .view-more-btn:hover {
            background-color: var(--accent-color);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
        }
        
        /* Category Cards */
        .category-card {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            height: 250px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            cursor: pointer;
            margin: 10px;
        }
        
        .category-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }
        
        .category-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .category-card:hover img {
            transform: scale(1.1);
        }
        
        .category-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
            display: flex;
            align-items: flex-end;
            padding: 20px;
        }
        
        .category-name {
            color: white;
            font-size: 1.5rem;
            font-weight: 600;
        }
        
        /* Product Cards */
        .product-card {
            border-radius: 15px;
            overflow: hidden;
            background-color: white;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            position: relative;
            margin: 10px;
        }
        
        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
        }
        
        .product-image-container {
            position: relative;
            overflow: hidden;
            height: 250px;
        }
        
        .product-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .product-card:hover .product-image {
            transform: scale(1.1);
        }
        
        .discount-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background-color: var(--red-color);
            color: white;
            padding: 5px 10px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.8rem;
        }
        
        .wishlist-icon {
            position: absolute;
            top: 15px;
            right: 15px;
            background-color: rgba(255, 255, 255, 0.9);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .wishlist-icon:hover {
            background-color: white;
            transform: scale(1.1);
        }
        
        .wishlist-icon.active {
            color: var(--red-color);
        }
        
        .product-details {
            padding: 20px;
        }
        
        .product-name {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--text-color);
        }
        
        .product-price {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }
        
        .price-current {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--primary-color);
        }
        
        .price-original {
            font-size: 1rem;
            color: #999;
            text-decoration: line-through;
            margin-left: 10px;
        }
        
        .product-rating {
            display: flex;
            margin-bottom: 15px;
        }
        
        .star {
            color: #ffc107;
            font-size: 0.9rem;
        }
        
        .add-to-cart-btn {
            width: 100%;
            padding: 12px;
            background-color: var(--primary-color);
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            cursor: pointer;
            transform: translateY(0);
        }
        
        .add-to-cart-btn:hover {
            background-color: var(--accent-color);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
        }
        
        /* Testimonials */
        .testimonial-card {
            background-color: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            height: 100%;
            margin: 10px;
        }
        
        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }
        
        .testimonial-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .customer-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 15px;
        }
        
        .customer-info {
            flex-grow: 1;
        }
        
        .customer-name {
            font-weight: 600;
            font-size: 1.1rem;
            margin-bottom: 5px;
        }
        
        .customer-role {
            color: #777;
            font-size: 0.9rem;
        }
        
        .testimonial-text {
            font-style: italic;
            line-height: 1.6;
            margin-bottom: 15px;
            color: #555;
        }
        
        .testimonial-rating {
            display: flex;
        }
        
        /* Promotional Banner */
        .promo-banner {
            background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
            border-radius: 20px;
            padding: 60px 40px;
            color: white;
            text-align: center;
            margin: 80px 0;
            position: relative;
            overflow: hidden;
        }
        
        .promo-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .promo-subtitle {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        
        .promo-btn {
            padding: 15px 40px;
            background-color: white;
            color: var(--primary-color);
            border: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .promo-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }
        
        /* Newsletter Section */
        .newsletter-section {
            background: linear-gradient(135deg, #f5f7fa, #e9ecef);
            border-radius: 20px;
            padding: 60px 40px;
            text-align: center;
            margin: 80px 0;
        }
        
        .newsletter-title {
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--primary-color);
        }
        
        .newsletter-subtitle {
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .newsletter-form {
            max-width: 500px;
            margin: 0 auto;
            display: flex;
            gap: 10px;
        }
        
        .newsletter-input {
            flex-grow: 1;
            padding: 15px 20px;
            border: 1px solid #ddd;
            border-radius: 50px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        .newsletter-input:focus {
            outline: none;
            border-color: var(--accent-color);
            box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.2);
        }
        
        .newsletter-btn {
            padding: 15px 30px;
            background-color: var(--primary-color);
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
        }
        
        .newsletter-btn:hover {
            background-color: var(--accent-color);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
        }
        
        /* Footer */
        footer {
            background-color: var(--primary-color);
            color: white;
            padding: 60px 0 30px;
        }
        
        .footer-logo {
            display: flex;
            align-items: center;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .footer-logo img {
            height: 40px;
            margin-right: 10px;
        }
        
        .footer-description {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
            margin-bottom: 20px;
        }
        
        .footer-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: var(--accent-color);
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        
        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: all 0.3s ease;
        }
        
        .social-icon:hover {
            background-color: var(--accent-color);
            transform: translateY(-3px);
        }
        
        .copyright {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
        }
        
        /* Responsive Styles */
        @media (max-width: 991px) {
            .navbar-nav {
                background-color: white;
                padding: 20px;
                border-radius: 10px;
                box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
                margin-top: 20px;
            }
            
            .hero-title {
                font-size: 2.5rem;
            }
            
            .mobile-bottom-nav {
                display: flex;
                justify-content: space-around;
            }
            
            body {
                padding-bottom: 70px;
            }
            
            .cart-preview {
                width: 100%;
                right: -100%;
            }
        }
        
        @media (max-width: 767px) {
            .section-title {
                font-size: 2rem;
            }
            
            .hero-section {
                height: 70vh;
            }
            
            .hero-title {
                font-size: 2rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }
            
            .promo-title {
                font-size: 2rem;
            }
            
            .newsletter-form {
                flex-direction: column;
            }
            
            .newsletter-btn {
                width: 100%;
            }
            
            .owl-nav button {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }
            
            .owl-nav .owl-prev {
                left: 10px;
            }
            
            .owl-nav .owl-next {
                right: 10px;
            }
        }

    /* products list */
     
        /* ===== Mobile Filter Toggle — sits OUTSIDE the sidebar column ===== */
        .mobile-filter-row {
            display: none;
            margin-bottom: 20px;
        }
        .mobile-filter-toggle {
            width: 100%;
            padding: 14px 20px;
            background: linear-gradient(135deg, #ffa500, #ff8c00);
            color: #fff;
            border: none;
            border-radius: 10px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            position: relative;
            z-index: 1001;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 165, 0, 0.3);
            -webkit-tap-highlight-color: transparent;
            touch-action: manipulation;
        }
        .mobile-filter-toggle:active {
            transform: scale(0.97);
        }

        /* ===== Mobile Overlay ===== */
        .filter-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 999;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .filter-overlay.active { opacity: 1; }

        /* ===== Filter Sidebar ===== */
        .filters-sidebar {
            background: #fff;
            border-radius: 16px;
            padding: 24px;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
            position: sticky;
            top: 100px;
        }
        .filter-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: #1a1a2e;
            margin-bottom: 20px;
            padding-bottom: 12px;
            border-bottom: 2px solid #f0f0f0;
        }

        /* Close button — only visible on mobile */
        .filter-close-btn {
            display: none;
            position: absolute;
            top: 16px;
            right: 16px;
            width: 34px;
            height: 34px;
            background: #f0f0f0;
            border: none;
            border-radius: 50%;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            color: #555;
            font-size: 1.1rem;
            transition: all 0.2s;
            z-index: 10;
            -webkit-tap-highlight-color: transparent;
            touch-action: manipulation;
        }
        .filter-close-btn:active { transform: scale(0.9); }

        /* ===== Filter Groups ===== */
        .filter-group {
            margin-bottom: 12px;
            border: 1px solid #eee;
            border-radius: 10px;
            overflow: hidden;
        }
        .filter-group-title {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 14px 16px;
            background: #f8f9fa;
            cursor: pointer;
            font-weight: 600;
            color: #333;
            transition: background 0.2s;
            user-select: none;
            -webkit-tap-highlight-color: transparent;
            touch-action: manipulation;
        }
        .filter-group-title:active { background: #eef0f2; }
        .filter-group-title i {
            transition: transform 0.3s ease;
            font-size: 0.8rem;
        }
        .filter-group-title i.rotated { transform: rotate(180deg); }
        .filter-options {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease;
        }
        .filter-options.open {
            max-height: 400px;
        }
        .filter-options-inner {
            padding: 10px 16px 14px;
        }
        .filter-option { padding: 5px 0; }
        .form-check-input:checked {
            background-color: #ffa500;
            border-color: #ffa500;
        }
        .form-check-input:focus {
            box-shadow: 0 0 0 0.2rem rgba(255, 165, 0, 0.25);
            border-color: #ffa500;
        }
        .form-check-label {
            font-size: 0.9rem;
            color: #555;
            cursor: pointer;
            transition: color 0.2s;
            -webkit-tap-highlight-color: transparent;
            touch-action: manipulation;
        }
        .form-check-label:hover { color: #ffa500; }

        /* ===== Price Range ===== */
        .price-range {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 12px;
        }
        .price-input {
            width: 100%;
            padding: 8px 10px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 0.9rem;
            text-align: center;
            transition: border-color 0.3s;
        }
        .price-input:focus {
            outline: none;
            border-color: #ffa500;
            box-shadow: 0 0 0 2px rgba(255, 165, 0, 0.15);
        }
        .price-range span { color: #999; font-weight: 500; }
        .form-range::-webkit-slider-thumb { background: #ffa500; }
        .form-range::-moz-range-thumb { background: #ffa500; }
        .form-range:focus::-webkit-slider-thumb {
            box-shadow: 0 0 0 0.25rem rgba(255, 165, 0, 0.25);
        }

        /* ===== Buttons ===== */
        .filter-apply {
            width: 100%;
            padding: 13px;
            background: linear-gradient(135deg, #ffa500, #ff8c00);
            color: #fff;
            border: none;
            border-radius: 10px;
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 18px;
            -webkit-tap-highlight-color: transparent;
            touch-action: manipulation;
        }
        .filter-apply:active { transform: scale(0.97); }
        .filter-clear {
            width: 100%;
            padding: 11px;
            background: transparent;
            color: #e63946;
            border: 2px solid #e63946;
            border-radius: 10px;
            font-size: 0.9rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 8px;
            -webkit-tap-highlight-color: transparent;
            touch-action: manipulation;
        }
        .filter-clear:active { background: #e63946; color: #fff; }

        /* ===== Active Filter Tags ===== */
        .active-filters {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 16px;
        }
        .active-filters:empty { display: none; }
        .filter-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 5px 12px;
            background: #fff3e0;
            color: #e65100;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
            animation: tagIn 0.3s ease;
        }
        @keyframes tagIn {
            from { opacity: 0; transform: scale(0.8); }
            to { opacity: 1; transform: scale(1); }
        }
        .filter-tag button {
            background: none;
            border: none;
            color: #e65100;
            cursor: pointer;
            padding: 0;
            font-size: 1.1rem;
            line-height: 1;
            display: flex;
            -webkit-tap-highlight-color: transparent;
            touch-action: manipulation;
        }

        /* ===== Products Header ===== */
        .products-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 24px;
            flex-wrap: wrap;
            gap: 12px;
        }
        .results-count { color: #666; font-size: 0.95rem; }
        .products-header > div:last-child {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .sort-dropdown {
            padding: 8px 16px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 0.9rem;
            color: #555;
            background: #fff;
            cursor: pointer;
        }
        .sort-dropdown:focus { outline: none; border-color: #ffa500; }
        .view-options { display: flex; gap: 4px; }
        .view-option {
            width: 38px;
            height: 38px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid #ddd;
            border-radius: 8px;
            cursor: pointer;
            color: #999;
            transition: all 0.2s;
            -webkit-tap-highlight-color: transparent;
            touch-action: manipulation;
        }
        .view-option:active { transform: scale(0.9); }
        .view-option:hover { color: #ffa500; border-color: #ffa500; }
        .view-option.active { background: #ffa500; color: #fff; border-color: #ffa500; }

        /* ===== Products Grid ===== */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        /* ===== Product Card ===== */
        .product-card {
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
            transition: all 0.4s ease;
        }
        .product-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
        }
        .product-card.hidden { display: none; }
        .product-image-container {
            position: relative;
            overflow: hidden;
            background: #f8f9fa;
            padding: 15px;
        }
        .product-image {
            width: 100%;
            height: 200px;
            object-fit: contain;
            transition: transform 0.5s ease;
        }
        .product-card:hover .product-image { transform: scale(1.06); }
        .discount-badge {
            position: absolute;
            top: 12px;
            left: 12px;
            background: #e63946;
            color: #fff;
            padding: 4px 10px;
            border-radius: 6px;
            font-size: 0.8rem;
            font-weight: 700;
        }
        .wishlist-icon {
            position: absolute;
            top: 12px;
            right: 12px;
            width: 36px;
            height: 36px;
            background: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            color: #ccc;
            transition: all 0.3s;
            -webkit-tap-highlight-color: transparent;
            touch-action: manipulation;
        }
        .wishlist-icon:hover, .wishlist-icon.active { color: #e63946; }
        .product-details { padding: 16px; }
        .product-name {
            font-size: 0.95rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 8px;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .product-rating { margin-bottom: 8px; }
        .star { color: #ffc107; font-size: 0.85rem; }
        .product-rating span { color: #999; font-size: 0.85rem; }
        .product-price { margin-bottom: 14px; }
        .price-current { font-size: 1.2rem; font-weight: 700; color: #1a1a2e; }
        .price-original {
            font-size: 0.9rem;
            color: #999;
            text-decoration: line-through;
            margin-left: 8px;
        }
        .add-to-cart-btn {
            width: 100%;
            padding: 10px;
            background: linear-gradient(135deg, #1a1a2e, #16213e);
            color: #fff;
            border: none;
            border-radius: 8px;
            font-size: 0.9rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            -webkit-tap-highlight-color: transparent;
            touch-action: manipulation;
        }
        .add-to-cart-btn:hover {
            background: linear-gradient(135deg, #ffa500, #ff8c00);
        }
        .add-to-cart-btn:active { transform: scale(0.97); }
        .add-to-cart-btn.added {
            background: linear-gradient(135deg, #2e7d32, #1b5e20);
            pointer-events: none;
        }

        /* ===== No Results ===== */
        .no-results {
            display: none;
            text-align: center;
            padding: 60px 20px;
            grid-column: 1 / -1;
        }
        .no-results.visible { display: block; }
        .no-results i { font-size: 3rem; color: #ddd; margin-bottom: 16px; }
        .no-results h3 { color: #666; font-size: 1.2rem; margin-bottom: 8px; }
        .no-results p { color: #999; font-size: 0.95rem; }

        /* ===== List View ===== */
        .products-list { display: none; }
        .products-list.active { display: block; }
        .products-grid.hidden-view { display: none; }
        .product-list-item {
            display: flex;
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
            margin-bottom: 16px;
            transition: all 0.3s ease;
        }
        .product-list-item:hover { box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1); }
        .product-list-item .product-image-container {
            width: 200px; min-width: 200px; padding: 20px;
        }
        .product-list-item .product-details {
            display: flex; flex-direction: column; justify-content: center;
            flex: 1; padding: 20px 24px;
        }
        .product-list-item .add-to-cart-btn {
            width: auto; padding: 10px 28px; align-self: flex-start;
        }

        /* ===== Pagination ===== */
        .pagination-container { display: flex; justify-content: center; margin-top: 40px; }
        .pagination .page-link {
            color: #555; border: 1px solid #eee; margin: 0 3px;
            border-radius: 8px !important; padding: 8px 14px; transition: all 0.2s;
            -webkit-tap-highlight-color: transparent; touch-action: manipulation;
        }
        .pagination .page-link:hover { background: #ffa500; border-color: #ffa500; color: #fff; }
        .pagination .page-item.active .page-link { background: #ffa500; border-color: #ffa500; color: #fff; }
        .pagination .page-item.disabled .page-link { background: #f8f9fa; color: #ccc; }

        /* ===== Toast ===== */
        .toast-container {
            position: fixed; bottom: 24px; right: 24px; z-index: 9999;
            display: flex; flex-direction: column; gap: 8px;
        }
        .toast-msg {
            background: #1a1a2e; color: #fff; padding: 12px 20px;
            border-radius: 10px; font-size: 0.9rem;
            box-shadow: 0 6px 20px rgba(0,0,0,0.2);
            display: flex; align-items: center; gap: 8px;
            animation: toastIn 0.4s ease; max-width: 320px;
        }
        .toast-msg.success { border-left: 4px solid #4caf50; }
        .toast-msg.info { border-left: 4px solid #ffa500; }
        @keyframes toastIn {
            from { opacity: 0; transform: translateY(20px) scale(0.95); }
            to { opacity: 1; transform: translateY(0) scale(1); }
        }
        @keyframes toastOut {
            from { opacity: 1; transform: translateY(0); }
            to { opacity: 0; transform: translateY(-10px); }
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 991px) {
            .mobile-filter-row { display: block; }
            .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

            .filters-sidebar {
                position: fixed;
                top: 0;
                left: -320px;
                width: 300px;
                height: 100%;
                height: 100dvh;
                border-radius: 0 16px 16px 0;
                z-index: 1000;
                overflow-y: auto;
                -webkit-overflow-scrolling: touch;
                transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
                box-shadow: none;
                padding: 24px 20px;
            }
            .filters-sidebar.open {
                left: 0;
                box-shadow: 10px 0 40px rgba(0, 0, 0, 0.25);
            }
            .filter-overlay.visible { display: block; }
            .filter-close-btn { display: flex; }
        }

        @media (max-width: 576px) {
            .products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
            .product-image { height: 140px; }
            .product-details { padding: 10px; }
            .product-name { font-size: 0.82rem; margin-bottom: 4px; }
            .price-current { font-size: 0.95rem; }
            .add-to-cart-btn { font-size: 0.78rem; padding: 7px 4px; }
            .page-title { font-size: 1.8rem; }
            .products-header { flex-direction: column; align-items: stretch; }
            .products-header > div:last-child { justify-content: space-between; }
            .product-list-item { flex-direction: column; }
            .product-list-item .product-image-container { width: 100%; min-width: unset; }
            .product-list-item .product-details { padding: 16px; }
            .toast-container { left: 16px; right: 16px; bottom: 16px; }
            .toast-msg { max-width: 100%; }
        }
        

        /* product details */

            
        .main-image-container {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            margin-bottom: 15px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
        }
        
        .main-image {
            width: 100%;
            height: 500px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .zoom-icon {
            position: absolute;
            top: 15px;
            right: 15px;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .zoom-icon:hover {
            background-color: white;
            transform: scale(1.1);
        }
        
        .thumbnail-container {
            display: flex;
            gap: 10px;
            overflow-x: auto;
            padding: 5px 0;
        }
        
        .thumbnail {
            width: 100px;
            height: 100px;
            object-fit: cover;
            border-radius: 10px;
            cursor: pointer;
            border: 2px solid transparent;
            transition: all 0.3s ease;
        }
        
        .thumbnail.active, .thumbnail:hover {
            border-color: var(--accent-color);
        }
        
        /* Product Info */
        .product-info {
            padding: 0 15px;
        }
        
        .product-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--primary-color);
        }
        
        .product-rating {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .star {
            color: #ffc107;
            font-size: 1rem;
        }
        
        .rating-count {
            margin-left: 10px;
            color: #777;
        }
        
        .product-price {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .price-current {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-color);
        }
        
        .price-original {
            font-size: 1.2rem;
            color: #999;
            text-decoration: line-through;
            margin-left: 15px;
        }
        
        .discount-badge {
            background-color: var(--red-color);
            color: white;
            padding: 5px 10px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.9rem;
            margin-left: 15px;
        }
        
        .product-description {
            margin-bottom: 30px;
            line-height: 1.6;
            color: #666;
        }
        
        .product-features {
            margin-bottom: 30px;
        }
        
        .feature-list {
            list-style: none;
            padding: 0;
        }
        
        .feature-item {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }
        
        .feature-icon {
            color: var(--accent-color);
            margin-right: 10px;
        }
        
        /* Product Options */
        .product-options {
            margin-bottom: 30px;
        }
        
        .option-group {
            margin-bottom: 20px;
        }
        
        .option-label {
            font-weight: 600;
            margin-bottom: 10px;
            display: block;
        }
        
        .size-options, .color-options {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .size-option, .color-option {
            padding: 10px 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .size-option:hover, .color-option:hover {
            border-color: var(--accent-color);
        }
        
        .size-option.active, .color-option.active {
            background-color: var(--primary-color);
            color: white;
            border-color: var(--primary-color);
        }
        
        .color-option {
            width: 40px;
            height: 40px;
            padding: 0;
            border-radius: 50%;
            position: relative;
        }
        
        .color-option.active::after {
            content: '\2713';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            font-weight: bold;
        }
        
        /* Quantity and Add to Cart */
        .add-to-cart-section {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
        }
        
        .quantity-selector {
            display: flex;
            align-items: center;
            border: 1px solid #ddd;
            border-radius: 8px;
            margin-right: 15px;
        }
        
        .quantity-btn {
            width: 40px;
            height: 40px;
            background: none;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .quantity-btn:hover {
            background-color: var(--light-gray);
        }
        
        .quantity-input {
            width: 50px;
            height: 40px;
            border: none;
            text-align: center;
            font-weight: 600;
        }
        
        .add-to-cart-btn {
            padding: 12px 30px;
            background-color: var(--primary-color);
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
        }
        
        .add-to-cart-btn:hover {
            background-color: var(--accent-color);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
        }
        
        .add-to-cart-btn i {
            margin-right: 8px;
        }
        
        .wishlist-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: white;
            border: 1px solid #ddd;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: 15px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .wishlist-btn:hover {
            border-color: var(--accent-color);
            color: var(--accent-color);
        }
        
        .wishlist-btn.active {
            background-color: var(--accent-color);
            color: white;
            border-color: var(--accent-color);
        }
        
        /* Product Tabs */
        .product-tabs {
            margin-top: 60px;
        }
        
        .tab-nav {
            display: flex;
            border-bottom: 1px solid #ddd;
            margin-bottom: 30px;
        }
        
        .tab-btn {
            padding: 15px 20px;
            background: none;
            border: none;
            font-weight: 600;
            color: #777;
            cursor: pointer;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .tab-btn:hover {
            color: var(--primary-color);
        }
        
        .tab-btn.active {
            color: var(--primary-color);
        }
        
        .tab-btn.active::after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 100%;
            height: 3px;
            background-color: var(--accent-color);
        }
        
        .tab-content {
            display: none;
        }
        
        .tab-content.active {
            display: block;
        }
        
        .spec-table {
            width: 100%;
            border-collapse: collapse;
        }
        
        .spec-table tr {
            border-bottom: 1px solid #eee;
        }
        
        .spec-table td {
            padding: 15px 10px;
        }
        
        .spec-table td:first-child {
            font-weight: 600;
            width: 30%;
        }
        
        /* Reviews */
        .review {
            border-bottom: 1px solid #eee;
            padding: 20px 0;
        }
        
        .review:last-child {
            border-bottom: none;
        }
        
        .review-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
        }
        
        .reviewer-info {
            display: flex;
            align-items: center;
        }
        
        .reviewer-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 15px;
            object-fit: cover;
        }
        
        .reviewer-name {
            font-weight: 600;
        }
        
        .review-date {
            color: #777;
            font-size: 0.9rem;
        }
        
        .review-rating {
            color: #ffc107;
            margin-bottom: 10px;
        }
        
        .review-text {
            line-height: 1.6;
            color: #666;
        }
        
        /* Related Products */
        .related-products {
            margin-top: 80px;
        }
        
        .section-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--primary-color);
            position: relative;
            display: inline-block;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            background-color: var(--accent-color);
            border-radius: 2px;
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 25px;
            margin-top: 40px;
        }
        
        .product-card {
            border-radius: 15px;
            overflow: hidden;
            background-color: white;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            position: relative;
        }
        
        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
        }
        
        .product-image-container {
            position: relative;
            overflow: hidden;
            height: 200px;
        }
        
        .product-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .product-card:hover .product-image {
            transform: scale(1.1);
        }
        
        .product-details {
            padding: 20px;
        }
        
        .product-name {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--text-color);
        }
        
        .product-price {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }
        
        .price-current {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--primary-color);
        }
        
        .product-rating {
            display: flex;
            margin-bottom: 15px;
        }
        
        .star {
            color: #ffc107;
            font-size: 0.9rem;
        }
        
        .add-to-cart-btn-small {
            width: 100%;
            padding: 10px;
            background-color: var(--primary-color);
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .add-to-cart-btn-small:hover {
            background-color: var(--accent-color);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
        }
        
        /* Footer */
        footer {
            background-color: var(--primary-color);
            color: white;
            padding: 60px 0 30px;
            margin-top: 80px;
        }
        
        .footer-logo {
            display: flex;
            align-items: center;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .footer-logo img {
            height: 40px;
            margin-right: 10px;
        }
        
        .footer-description {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
            margin-bottom: 20px;
        }
        
        .footer-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: var(--accent-color);
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        
        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: all 0.3s ease;
        }
        
        .social-icon:hover {
            background-color: var(--accent-color);
            transform: translateY(-3px);
        }
        
        .copyright {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
        }
        
        /* Responsive Styles */
        @media (max-width: 991px) {
            .navbar-nav {
                background-color: white;
                padding: 20px;
                border-radius: 10px;
                box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
                margin-top: 20px;
            }
            
            .mobile-bottom-nav {
                display: flex;
                justify-content: space-around;
            }
            
            body {
                padding-bottom: 70px;
            }
            
            .main-image {
                height: 400px;
            }
            
            .add-to-cart-section {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .quantity-selector {
                margin-bottom: 15px;
                margin-right: 0;
            }
            
            .add-to-cart-btn {
                width: 100%;
                justify-content: center;
            }
            
            .wishlist-btn {
                position: absolute;
                top: 15px;
                right: 15px;
            }
        }
        
        @media (max-width: 767px) {
            .page-title {
                font-size: 2rem;
            }
            
            .product-title {
                font-size: 1.5rem;
            }
            
            .main-image {
                height: 300px;
            }
            
            .tab-nav {
                overflow-x: auto;
            }
            
            .products-grid {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
                gap: 15px;
            }
        }

/* 
        about us */
         /* About Section */
        .about-section {
            padding: 80px 0;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--primary-color);
            position: relative;
            display: inline-block;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            background-color: var(--accent-color);
            border-radius: 2px;
        }
        
        .section-subtitle {
            color: #777;
            margin-bottom: 50px;
            max-width: 600px;
        }
        
        .about-content {
            display: flex;
            align-items: center;
            margin-bottom: 80px;
        }
        
        .about-text {
            flex: 1;
            padding-right: 50px;
        }
        
        .about-image {
            flex: 1;
        }
        
        .about-image img {
            width: 100%;
            border-radius: 15px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        /* Values Section */
        .values-section {
            background-color: white;
            padding: 80px 0;
            border-radius: 20px;
            margin: 50px 0;
        }
        
        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }
        
        .value-card {
            text-align: center;
            padding: 30px 20px;
            border-radius: 15px;
            background-color: var(--background-color);
            transition: all 0.3s ease;
        }
        
        .value-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .value-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background-color: var(--primary-color);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2rem;
        }
        
        .value-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--primary-color);
        }
        
        .value-description {
            color: #666;
            line-height: 1.6;
        }
        
        /* Team Section */
        .team-section {
            padding: 80px 0;
        }
        
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }
        
        .team-member {
            text-align: center;
            background-color: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }
        
        .team-member:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
        }
        
        .member-image {
            height: 250px;
            overflow: hidden;
        }
        
        .member-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .team-member:hover .member-image img {
            transform: scale(1.1);
        }
        
        .member-info {
            padding: 25px 20px;
        }
        
        .member-name {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 5px;
            color: var(--primary-color);
        }
        
        .member-position {
            color: var(--accent-color);
            font-weight: 500;
            margin-bottom: 15px;
        }
        
        .member-bio {
            color: #666;
            line-height: 1.6;
            margin-bottom: 20px;
        }
        
        .member-social {
            display: flex;
            justify-content: center;
            gap: 15px;
        }
        
        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: var(--light-gray);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-color);
            transition: all 0.3s ease;
        }
        
        .social-link:hover {
            background-color: var(--primary-color);
            color: white;
            transform: translateY(-3px);
        }
        
        /* Timeline Section */
        .timeline-section {
            background-color: white;
            padding: 80px 0;
            border-radius: 20px;
            margin: 50px 0;
        }
        
        .timeline {
            position: relative;
            max-width: 1000px;
            margin: 50px auto;
        }
        
        .timeline::after {
            content: '';
            position: absolute;
            width: 4px;
            background-color: var(--accent-color);
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -2px;
        }
        
        .timeline-item {
            padding: 10px 40px;
            position: relative;
            background-color: inherit;
            width: 50%;
        }
        
        .timeline-item::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            right: -10px;
            background-color: white;
            border: 4px solid var(--accent-color);
            top: 25px;
            border-radius: 50%;
            z-index: 1;
        }
        
        .timeline-item:nth-child(odd) {
            left: 0;
        }
        
        .timeline-item:nth-child(even) {
            left: 50%;
        }
        
        .timeline-item:nth-child(even)::after {
            left: -10px;
        }
        
        .timeline-content {
            padding: 20px 30px;
            background-color: white;
            position: relative;
            border-radius: 15px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
        }
        
        .timeline-year {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--accent-color);
            margin-bottom: 10px;
        }
        
        .timeline-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--primary-color);
        }
        
        .timeline-description {
            color: #666;
            line-height: 1.6;
        }
        
        /* Stats Section */
        .stats-section {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
            color: white;
            border-radius: 20px;
            margin: 50px 0;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .stat-label {
            font-size: 1.1rem;
            opacity: 0.9;
        }
        
        /* Footer */
        footer {
            background-color: var(--primary-color);
            color: white;
            padding: 60px 0 30px;
        }
        
        .footer-logo {
            display: flex;
            align-items: center;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .footer-logo img {
            height: 40px;
            margin-right: 10px;
        }
        
        .footer-description {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
            margin-bottom: 20px;
        }
        
        .footer-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: var(--accent-color);
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        
        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: all 0.3s ease;
        }
        
        .social-icon:hover {
            background-color: var(--accent-color);
            transform: translateY(-3px);
        }
        
        .copyright {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
        }
        
        /* Responsive Styles */
        @media (max-width: 991px) {
            .navbar-nav {
                background-color: white;
                padding: 20px;
                border-radius: 10px;
                box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
                margin-top: 20px;
            }
            
            .mobile-bottom-nav {
                display: flex;
                justify-content: space-around;
            }
            
            body {
                padding-bottom: 70px;
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .about-text {
                padding-right: 0;
                margin-bottom: 30px;
            }
            
            .timeline::after {
                left: 31px;
            }
            
            .timeline-item {
                width: 100%;
                padding-left: 70px;
                padding-right: 25px;
            }
            
            .timeline-item::before {
                left: 60px;
                border: medium solid white;
                border-width: 10px 10px 10px 0;
                border-color: transparent white transparent transparent;
            }
            
            .timeline-item::after {
                left: 21px;
            }
            
            .timeline-item:nth-child(even) {
                left: 0%;
            }
        }
        
        @media (max-width: 767px) {
            .page-title {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .values-grid, .team-grid, .stats-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .stat-number {
                font-size: 2.5rem;
            }
        }



        
        /* FAQ Section */
        .faq-section {
            padding: 80px 0;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--primary-color);
            position: relative;
            display: inline-block;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            background-color: var(--accent-color);
            border-radius: 2px;
        }
        
        .section-subtitle {
            color: #777;
            margin-bottom: 50px;
            max-width: 600px;
        }
        
        /* FAQ Search */
        .faq-search {
            max-width: 700px;
            margin: 0 auto 50px;
            position: relative;
        }
        
        .faq-search-input {
            width: 100%;
            padding: 15px 50px 15px 25px;
            border: 1px solid #ddd;
            border-radius: 50px;
            font-size: 1.1rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }
        
        .faq-search-input:focus {
            outline: none;
            border-color: var(--accent-color);
            box-shadow: 0 5px 15px rgba(255, 0, 0, 0.1);
        }
        
        .faq-search-btn {
            position: absolute;
            right: 5px;
            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: all 0.3s ease;
        }
        
        .faq-search-btn:hover {
            background: var(--accent-color);
        }
        
        /* FAQ Categories */
        .faq-categories {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 50px;
        }
        
        .faq-category {
            padding: 10px 20px;
            background-color: white;
            border: 1px solid #ddd;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 500;
        }
        
        .faq-category:hover, .faq-category.active {
            background-color: var(--primary-color);
            color: white;
            border-color: var(--primary-color);
        }
        
        /* FAQ Accordion */
        .faq-accordion {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .accordion-item {
            background-color: white;
            border: none;
            border-radius: 15px !important;
            margin-bottom: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            overflow: hidden;
        }
        
        .accordion-button {
            background-color: white;
            color: var(--text-color);
            font-weight: 600;
            padding: 20px 25px;
            box-shadow: none;
            border: none;
            position: relative;
        }
        
        .accordion-button:not(.collapsed) {
            background-color: white;
            color: var(--primary-color);
            box-shadow: none;
        }
        
        .accordion-button::after {
            background-image: none;
            content: "\F282";
            font-family: "bootstrap-icons";
            font-size: 1.2rem;
            position: absolute;
            right: 25px;
            top: 50%;
            transform: translateY(-50%);
            transition: transform 0.3s ease;
        }
        
        .accordion-button:not(.collapsed)::after {
            transform: translateY(-50%) rotate(180deg);
        }
        
        .accordion-body {
            padding: 0 25px 20px;
            color: #666;
            line-height: 1.6;
        }
        
        /* FAQ Contact Section */
        .faq-contact {
            background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
            border-radius: 20px;
            padding: 60px 40px;
            color: white;
            text-align: center;
            margin: 80px 0;
        }
        
        .faq-contact-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .faq-contact-subtitle {
            font-size: 1.1rem;
            margin-bottom: 30px;
            opacity: 0.9;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .faq-contact-btn {
            display: inline-block;
            padding: 15px 40px;
            background-color: white;
            color: var(--primary-color);
            border: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        
        .faq-contact-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }
        
        /* Footer */
        footer {
            background-color: var(--primary-color);
            color: white;
            padding: 60px 0 30px;
        }
        
        .footer-logo {
            display: flex;
            align-items: center;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .footer-logo img {
            height: 40px;
            margin-right: 10px;
        }
        
        .footer-description {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
            margin-bottom: 20px;
        }
        
        .footer-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: var(--accent-color);
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        
        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: all 0.3s ease;
        }
        
        .social-icon:hover {
            background-color: var(--accent-color);
            transform: translateY(-3px);
        }
        
        .copyright {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
        }
        
        /* Responsive Styles */
        @media (max-width: 991px) {
            .navbar-nav {
                background-color: white;
                padding: 20px;
                border-radius: 10px;
                box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
                margin-top: 20px;
            }
            
            .mobile-bottom-nav {
                display: flex;
                justify-content: space-around;
            }
            
            body {
                padding-bottom: 70px;
            }
        }
        
        @media (max-width: 767px) {
            .page-title {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .faq-contact {
                padding: 40px 20px;
            }
            
            .faq-contact-title {
                font-size: 1.5rem;
            }
        }




        
        /* Contact Section */
        .contact-section {
            padding: 80px 0;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--primary-color);
            position: relative;
            display: inline-block;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            background-color: var(--accent-color);
            border-radius: 2px;
        }
        
        .section-subtitle {
            color: #777;
            margin-bottom: 50px;
            max-width: 600px;
        }
        
        /* Contact Info Cards */
        .contact-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }
        
        .info-card {
            background-color: white;
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }
        
        .info-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
        }
        
        .info-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background-color: var(--primary-color);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.8rem;
        }
        
        .info-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--primary-color);
        }
        
        .info-text {
            color: #666;
            line-height: 1.6;
        }
        
        .info-link {
            color: var(--accent-color);
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .info-link:hover {
            color: var(--primary-color);
            text-decoration: underline;
        }
        
        /* Contact Form */
        .contact-form-container {
            background-color: white;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-label {
            font-weight: 500;
            margin-bottom: 10px;
            color: var(--text-color);
        }
        
        .form-control {
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        .form-control:focus {
            outline: none;
            border-color: var(--accent-color);
            box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.1);
        }
        
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        
        .form-select {
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        .form-select:focus {
            outline: none;
            border-color: var(--accent-color);
            box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.1);
        }
        
        .submit-btn {
            padding: 15px 40px;
            background-color: var(--primary-color);
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-block;
        }
        
        .submit-btn:hover {
            background-color: var(--accent-color);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
        }
        
        /* Map Section */
        .map-section {
            margin-top: 80px;
        }
        
        .map-container {
            height: 400px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
        }
        
        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
        
        /* WhatsApp Button */
        .whatsapp-btn {
            position: fixed;
            bottom: 80px;
            right: 20px;
            width: 60px;
            height: 60px;
            background-color: #25D366;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
            z-index: 1000;
            transition: all 0.3s ease;
        }
        
        .whatsapp-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
        }
        
        /* Footer */
        footer {
            background-color: var(--primary-color);
            color: white;
            padding: 60px 0 30px;
            margin-top: 80px;
        }
        
        .footer-logo {
            display: flex;
            align-items: center;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .footer-logo img {
            height: 40px;
            margin-right: 10px;
        }
        
        .footer-description {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
            margin-bottom: 20px;
        }
        
        .footer-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: var(--accent-color);
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        
        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: all 0.3s ease;
        }
        
        .social-icon:hover {
            background-color: var(--accent-color);
            transform: translateY(-3px);
        }
        
        .copyright {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
        }
        
        /* Responsive Styles */
        @media (max-width: 991px) {
            .navbar-nav {
                background-color: white;
                padding: 20px;
                border-radius: 10px;
                box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
                margin-top: 20px;
            }
            
            .mobile-bottom-nav {
                display: flex;
                justify-content: space-around;
            }
            
            body {
                padding-bottom: 70px;
            }
            
            .contact-form-container {
                padding: 30px 20px;
            }
        }
        
        @media (max-width: 767px) {
            .page-title {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .contact-info {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .info-card {
                padding: 20px;
            }
            
            .map-container {
                height: 300px;
            }
        }