/* Custom CSS for BrandCrafters */

:root {
    --primary-color: #1A4DB3;
    --secondary-color: #E6B800;
    --accent-color: #F8F9FA;
    --text-dark: #2C3E50;
    --text-light: #6C757D;
    --white: #FFFFFF;
    --shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    --shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

/* Custom Bootstrap Overrides */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.75rem 2rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #1639A0;
    border-color: #1639A0;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.75rem 2rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Navigation */
.navbar {
    padding: 1rem 0;
    background-color: var(--white) !important;
    backdrop-filter: blur(10px);
}

.brand-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.5rem;
}

.brand-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-right: 0.5rem;
    font-size: 1.2rem;
    font-weight: bold;
}

.brand-text {
    color: var(--primary-color);
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
    background-color: rgba(26, 77, 179, 0.1);
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: 12px;
    padding: 1rem;
}

.dropdown-item {
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: rgba(26, 77, 179, 0.1);
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
  background: #FDF9F2; /* soft cream background */
  min-height: 80vh;
    padding: 4rem 0;
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

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

.hero-buttons .btn {
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.hero-image img {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

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

/* Quick Stats */
.stat-item h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

/* Flash Sale Banner */
.flash-sale-banner {
    background: linear-gradient(135deg, #FF6B6B, #FF8E53);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(255, 107, 107, 0.3);
    position: relative;
}

.timer-display {
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 0.5rem;
}

.timer-display span {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    margin: 0 0.125rem;
}

/* Special Offers */
.special-offers {
    margin-top: 2rem;
}

.offer-banner {
    background: linear-gradient(135deg, #C13584, #8E44AD);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(193, 53, 132, 0.3);
}

.offer-banner .btn {
    font-weight: 600;
    font-size: 0.875rem;
}

/* Enhanced Sidebar */
.categories-sidebar {
    position: sticky;
    top: 100px;
}

.category-link {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
    border-left: 3px solid transparent;
}

.category-link:hover {
    background-color: rgba(26, 77, 179, 0.1);
    color: var(--primary-color);
    transform: translateX(5px);
    border-left-color: var(--primary-color);
}

.category-link i {
    color: var(--primary-color);
    width: 20px;
}

/* View Options */
.view-options .btn.active {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.view-options .btn {
    position: relative;
}

/* Tooltip styles */
[data-tooltip] {
    position: relative;
}

[data-tooltip]:hover::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--text-dark);
    color: var(--white);
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    white-space: nowrap;
    z-index: 1000;
}

[data-tooltip]:hover::after {
    content: '';
    position: absolute;
    bottom: 115%;
    left: 50%;
    transform: translateX(-50%);
    border: 4px solid transparent;
    border-top-color: var(--text-dark);
    z-index: 1000;
}

/* Sections */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Sidebar Categories */
.categories-sidebar {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    position: sticky;
    top: 100px;
}

.category-title {
    background: linear-gradient(135deg, var(--primary-color), #C13584);
    color: var(--white);
    padding: 1rem 1.5rem;
    margin: -1.5rem -1.5rem 1.5rem -1.5rem;
    border-radius: 12px 12px 0 0;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

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

.category-list li {
    margin-bottom: 0.5rem;
}

.category-link {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.category-link:hover {
    background-color: rgba(26, 77, 179, 0.1);
    color: var(--primary-color);
    transform: translateX(5px);
}

.featured-title {
    color: #C13584;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(193, 53, 132, 0.2);
}

.featured-item {
    display: flex;
    align-items: center;
    background: rgba(193, 53, 132, 0.05);
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.featured-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.featured-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 1rem;
}

.featured-content h6 {
    margin-bottom: 0.25rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.875rem;
}

.featured-content .text-muted {
    font-size: 0.875rem;
    margin-bottom: 0;
}

/* Main Content */
.main-content {
    min-height: 80vh;
}

.products-header {
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
}

.products-title {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.view-options .btn {
    width: 40px;
    height: 40px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Enhanced Product Cards */
.product-card {
    background: var(--white);
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 220px;
    background: #f8f9fa;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.product-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: linear-gradient(135deg, #FF6B6B, #FF8E53);
    color: var(--white);
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.product-body {
    padding: 1.25rem;
}

.product-category {
    color: var(--text-light);
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.product-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    line-height: 1.4;
    height: 2.8rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-price {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.current-price {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.original-price {
    font-size: 0.875rem;
    color: var(--text-light);
    text-decoration: line-through;
}

.product-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-add-cart {
    flex: 1;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
}

.btn-quick-view {
    width: 40px;
    height: 38px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

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

/* Promise Section */
.why-choose-us {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.promise-item {
    transition: all 0.3s ease;
    padding: 1.5rem;
    border-radius: 12px;
}

.promise-item:hover {
    transform: translateY(-5px);
}

.promise-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.promise-item:hover .promise-icon {
    color: #C13584;
    transform: scale(1.1);
}

.promise-item h5 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

/* Featured Products */
.featured-products {
    padding: 5rem 0;
}

.product-card {
    background: var(--white);
    border: none;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%;
}

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

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

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.product-body {
    padding: 1.5rem;
}

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

.product-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.product-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.product-price .original-price {
    font-size: 1rem;
    color: var(--text-light);
    text-decoration: line-through;
    margin-left: 0.5rem;
}

/* Categories */
.categories {
    padding: 5rem 0;
    background-color: var(--accent-color);
}

.category-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
}

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

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.category-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.category-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* About Preview */
.about-preview {
    padding: 5rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

/* Shop Today Section */
.shop-today {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-top: 1px solid #eee;
}

/* Footer */
.footer {
    background-color: #2C3E50 !important;
    padding: 3rem 0 1rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-brand .brand-icon {
    margin-right: 0.5rem;
}

.footer h5 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer a {
    color: #BDC3C7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--secondary-color);
}

.footer ul li {
    margin-bottom: 0.5rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-content {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .navbar-nav {
        text-align: center;
        margin-top: 1rem;
    }
    
    .category-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    /* Ultra Mobile Design Enhancements */
    body {
        overflow-x: hidden;
    }
    
    .hero-section {
        padding: 2rem 0;
        background: linear-gradient(135deg, 
            rgba(26, 77, 179, 0.06) 0%, 
            rgba(230, 184, 0, 0.06) 50%,
            rgba(193, 53, 132, 0.06) 100%);
    }
    
    .hero-title {
        font-size: 1.8rem;
        font-weight: 900;
        line-height: 1.1;
        margin-bottom: 1rem;
        background: linear-gradient(135deg, var(--primary-color) 0%, #C13584 50%, var(--secondary-color) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-shadow: none;
        animation: titlePulse 3s ease-in-out infinite;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }
    
    .hero-buttons {
        padding: 0 1rem;
        gap: 0.75rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 320px;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        font-weight: 700;
        border-radius: 25px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        position: relative;
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }
    
    .hero-buttons .btn-primary {
        background: linear-gradient(135deg, var(--primary-color) 0%, #C13584 100%);
        box-shadow: 0 6px 20px rgba(26, 77, 179, 0.3);
        border: none;
    }
    
    .hero-buttons .btn-primary:active {
        transform: translateY(1px) scale(0.98);
    }
    
    .hero-image {
        padding: 0 1rem;
        margin-top: 1.5rem;
    }
    
    .hero-image img {
        border-radius: 15px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }
    
    /* Ultra Compact Navigation */
    .navbar {
        padding: 0.5rem 0;
    }
    
    .brand-logo {
        font-size: 1.1rem;
        font-weight: 800;
    }
    
    .brand-icon {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
        border-radius: 10px;
    }
    
    .navbar-toggler {
        border: none;
        padding: 0.375rem;
        border-radius: 8px;
        background: linear-gradient(135deg, var(--primary-color), #C13584);
        color: var(--white);
    }
    
    /* Ultra Compact Cards */
    .main-content {
        padding: 2rem 0;
    }
    
    .categories-sidebar {
        margin-bottom: 1.5rem;
        padding: 1rem;
        border-radius: 15px;
    }
    
    .category-title {
        font-size: 1rem;
        padding: 0.75rem 1rem;
        margin: -1rem -1rem 1rem -1rem;
        border-radius: 15px 15px 0 0;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        padding: 0 0.5rem;
    }
    
    .product-card {
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    }
    
    .product-image {
        height: 220px;
        border-radius: 15px 15px 0 0;
    }
    
    .product-body {
        padding: 1.25rem;
    }
    
    .product-title {
        font-size: 1rem;
        font-weight: 700;
        line-height: 1.3;
        margin-bottom: 0.5rem;
    }
    
    .current-price {
        font-size: 1.25rem;
        font-weight: 800;
    }
    
    .btn-add-cart {
        width: 100%;
        padding: 0.75rem;
        font-size: 0.9rem;
        font-weight: 700;
        border-radius: 12px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    /* Ultra Compact Sections */
    .section-title {
        font-size: 1.8rem;
        font-weight: 900;
        text-align: center;
        margin-bottom: 0.75rem;
        background: linear-gradient(135deg, var(--primary-color) 0%, #C13584 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .section-subtitle {
        font-size: 1rem;
        text-align: center;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }
    
    .promise-item {
        padding: 1.5rem 1rem;
        margin-bottom: 1rem;
        border-radius: 15px;
        text-align: center;
    }
    
    .promise-icon {
        font-size: 2.5rem;
        margin-bottom: 0.75rem;
    }
    
    .promise-item h5 {
        font-size: 1.1rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
    }
    
    .promise-item p {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 0;
    }
    
    /* Ultra Compact Footer */
    .footer {
        padding: 2rem 0 1rem;
        text-align: center;
    }
    
    .footer .col-lg-4,
    .footer .col-lg-2,
    .footer .col-lg-3 {
        margin-bottom: 1.5rem;
    }
    
    .footer h5 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .footer p,
    .footer li {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .social-links a {
        width: 36px;
        height: 36px;
        margin: 0 0.25rem;
        font-size: 0.9rem;
    }
    
    /* Ultra Compact WhatsApp Widget */
    .whatsapp-chat-widget {
        bottom: 15px;
        right: 15px;
    }
    
    .chat-button {
        width: 55px;
        height: 55px;
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    }
    
    .chat-button i {
        font-size: 1.5rem;
    }
    
    /* Ultra Compact Blog */
    .blog-hero {
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .blog-search .input-group {
        max-width: 100%;
        margin: 0;
        border-radius: 20px;
    }
    
    .blog-search .form-control,
    .blog-search .btn {
        padding: 0.875rem 1.25rem;
        font-size: 1rem;
    }
    
    .filter-tabs {
        padding: 0.75rem;
        gap: 0.5rem;
    }
    
    .filter-btn {
        max-width: 100%;
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
        border-radius: 20px;
    }
    
    .blog-post-card {
        border-radius: 15px;
        margin-bottom: 1.5rem;
    }
    
    .blog-post-card .post-image {
        height: 200px;
        border-radius: 15px 15px 0 0;
    }
    
    .blog-post-card .post-content {
        padding: 1.25rem;
    }
    
    .blog-post-card .post-title {
        font-size: 1.1rem;
        line-height: 1.3;
        height: auto;
        margin-bottom: 0.75rem;
    }
    
    .blog-post-card .post-meta {
        font-size: 0.75rem;
        gap: 0.5rem;
        margin-bottom: 0.75rem;
    }
    
    .blog-post-card .post-excerpt {
        font-size: 0.85rem;
        height: auto;
        margin-bottom: 1rem;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }
    
    /* Performance Optimizations for Ultra Mobile */
    .cart-item {
        padding: 0.875rem;
        border-radius: 12px;
    }
    
    .quick-action-card {
        margin-bottom: 0.75rem;
        padding: 1rem;
        border-radius: 12px;
    }
    
    /* Ultra Mobile Animations */
    @keyframes titlePulse {
        0%, 100% { 
            transform: scale(1);
            text-shadow: 0 0 5px rgba(26, 77, 179, 0.2);
        }
        50% { 
            transform: scale(1.02);
            text-shadow: 0 0 15px rgba(26, 77, 179, 0.4), 0 0 25px rgba(193, 53, 132, 0.3);
        }
    }
    
    /* Touch Optimization */
    .btn, .nav-link, .product-card, .category-link {
        -webkit-tap-highlight-color: rgba(26, 77, 179, 0.2);
        touch-action: manipulation;
    }
    
    /* Reduce Motion for Performance */
    @media (prefers-reduced-motion: reduce) {
        *, ::before, ::after {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
        }
    }
}

/* Loading Animation */
.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--accent-color);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* BrandCrafters Logo Animation */
.brand-icon {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transition: all 0.3s ease;
}

.brand-logo:hover .brand-icon {
    transform: rotate(5deg) scale(1.05);
    box-shadow: 0 4px 15px rgba(26, 77, 179, 0.3);
}



/* Cart Badge */
.cart-count-badge {
    font-size: 0.75rem;
    min-width: 1.25rem;
    height: 1.25rem;
}

/* Utility Classes */
.text-primary-custom {
    color: var(--primary-color) !important;
}

.text-secondary-custom {
    color: var(--secondary-color) !important;
}

.bg-primary-custom {
    background-color: var(--primary-color) !important;
}

.bg-secondary-custom {
    background-color: var(--secondary-color) !important;
}

.bg-accent-custom {
    background-color: var(--accent-color) !important;
}

/* Enhanced Branding Styles */
.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Team Photos */
.team-photo {
    width: 120px;
    height: 120px;
    object-fit: cover;
}

/* Enhanced Product Cards for Products Page */
.product-description {
    font-size: 0.875rem;
    line-height: 1.4;
}

/* Contact Page Enhancements */
.contact-icon {
    width: 40px;
    text-align: center;
}

.quick-action-card {
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.quick-action-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.action-icon {
    transition: transform 0.3s ease;
}

.quick-action-card:hover .action-icon {
    transform: scale(1.1);
}

/* FAQ Page Enhancements */
.accordion-button {
    font-weight: 500;
    background-color: transparent;
}

.accordion-button:not(.collapsed) {
    background-color: rgba(26, 77, 179, 0.1);
    color: var(--primary-color);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(26, 77, 179, 0.25);
}

/* Enhanced Value Cards */
.value-card {
    padding: 2rem 1.5rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid transparent;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Mission/Vision Cards */
.mission-card, .vision-card {
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.vision-card {
    border-left-color: var(--secondary-color);
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Enhanced Feature Items */
.feature-item {
    transition: all 0.3s ease;
    padding: 1rem;
    border-radius: 8px;
}

.feature-item:hover {
    background-color: rgba(26, 77, 179, 0.05);
    transform: translateX(10px);
}

.feature-icon {
    font-size: 1.5rem;
    width: 40px;
    text-align: center;
}

/* Enhanced Cart Styles */
.cart-item {
    transition: all 0.3s ease;
    padding: 1.5rem;
    border-radius: 12px;
    background-color: var(--white);
}

.cart-item:hover {
    background-color: rgba(26, 77, 179, 0.02);
    transform: translateX(5px);
}

.quantity-controls .btn {
    width: 36px;
    height: 36px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-input {
    border-left: none;
    border-right: none;
}

/* Product Page Enhancements */
.product-image-container .main-image {
    overflow: hidden;
    border-radius: 16px;
}

.thumbnail-images img {
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.thumbnail-images img:hover,
.thumbnail-images img.border-primary {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

/* Stats styling */
.stat-item h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

/* Enhanced buttons with gradients */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1639A0 100%);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1639A0 0%, #1428A0 100%);
    transform: translateY(-2px);
}

/* WhatsApp Chat Widget */
.whatsapp-chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.chat-button {
    background: #25D366;
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    font-weight: 600;
    text-decoration: none;
}

.chat-button:hover {
    background: #22C55E;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.chat-button i {
    font-size: 1.5rem;
}

.chat-text {
    font-size: 0.9rem;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .chat-text {
        display: none;
    }
    
    .chat-button {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        padding: 0;
        justify-content: center;
    }
}

/* Blog Hero */
.blog-hero {
    background: linear-gradient(135deg, 
        rgba(26, 77, 179, 0.1) 0%, 
        rgba(230, 184, 0, 0.1) 100%);
    position: relative;
}

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

.blog-search .input-group {
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    overflow: hidden;
}

.blog-search .form-control {
    border: none;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
}

.blog-search .btn {
    border: none;
    padding: 1rem 2rem;
}

/* Featured Article */
.featured-article {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.featured-post {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.featured-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.featured-post .post-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.featured-post .post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-post:hover .post-image img {
    transform: scale(1.05);
}

.post-category-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), #C13584);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.featured-post .post-content {
    padding: 2rem;
}

.featured-post .post-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.post-meta span {
    display: flex;
    align-items: center;
}

.post-excerpt {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Blog Filter Tabs */
.blog-filters {
    border-bottom: 1px solid #e9ecef;
}

.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #e9ecef;
    color: var(--text-dark);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    white-space: nowrap;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), #C13584);
    transition: left 0.3s ease;
    z-index: -1;
}

.filter-btn:hover::before,
.filter-btn.active::before {
    left: 0;
}

.filter-btn:hover,
.filter-btn.active {
    color: var(--white);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26, 77, 179, 0.3);
}

/* Blog Post Cards */
.blog-post-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.blog-post-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.blog-post-card .post-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-post-card .post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.blog-post-card .post-category-badge {
    top: 1rem;
    left: 1rem;
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem;
}

.blog-post-card .post-content {
    padding: 1.5rem;
}

.blog-post-card .post-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    line-height: 1.4;
    height: 3.2rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.blog-post-card .post-meta {
    font-size: 0.8rem;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.blog-post-card .post-excerpt {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-light);
    margin-bottom: 1.25rem;
    height: 3.6rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

.post-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.post-share {
    display: flex;
    gap: 0.5rem;
}

.share-btn {
    width: 32px;
    height: 32px;
    background: #f8f9fa;
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.875rem;
}

.share-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* Newsletter Signup */
.newsletter-signup {
    background: linear-gradient(135deg, var(--primary-color) 0%, #C13584 100%);
    position: relative;
}

.newsletter-signup .container {
    position: relative;
    z-index: 2;
}

.newsletter-form .input-group {
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border-radius: 50px;
    overflow: hidden;
}

.newsletter-form .form-control {
    border: none;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    background: var(--white);
}

.newsletter-form .btn {
    border: none;
    padding: 1rem 2rem;
    background: var(--secondary-color);
    font-weight: 600;
}

.newsletter-form .btn:hover {
    background: #D6A700;
    transform: translateY(-1px);
}

/* Clean Product Cards (Rio Gift Shop Style) */
.product-card {
    background: var(--white);
    border: 1px solid #f5f5f5;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    border-color: rgba(26, 77, 179, 0.2);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 220px;
    background: #f8f9fa;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #ff4757;
    color: var(--white);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(255, 71, 87, 0.3);
}

.product-body {
    padding: 1.25rem;
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    color: var(--primary-color);
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    opacity: 0.8;
}

.product-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    line-height: 1.4;
    height: 2.8rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    flex-shrink: 0;
}

.product-price {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    gap: 0.5rem;
    flex-shrink: 0;
}

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

.original-price {
    font-size: 0.9rem;
    color: var(--text-light);
    text-decoration: line-through;
}

.product-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin-top: auto;
}

.btn-add-cart {
    flex: 1;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    background: var(--primary-color);
    border: none;
    color: var(--white);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-add-cart::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1639A0, #C13584);
    transition: left 0.3s ease;
}

.btn-add-cart:hover::before {
    left: 0;
}

.btn-add-cart span {
    position: relative;
    z-index: 2;
}

.btn-add-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(26, 77, 179, 0.3);
}

.btn-quick-view {
    width: 40px;
    height: 40px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-quick-view:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 77, 179, 0.3);
}



/* Clean Grid Layout - 4 Columns Desktop, 2 Mobile */
.products-grid,
#products-container,
#main-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
    width: 100%;
}

/* Ensure proper grid layout */
.products-grid > .product-card,
#products-container > .product-card,
#main-products-grid > .product-card {
    width: 100%;
    height: 100%;
}

/* Large Desktop - 4 columns */
@media (min-width: 1201px) {
    .products-grid,
    #products-container,
    #main-products-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

/* Desktop/Laptop - 3 columns */
@media (max-width: 1200px) and (min-width: 769px) {
    .products-grid,
    #products-container,
    #main-products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
}

/* Tablet - 2 columns as requested */
@media (max-width: 768px) and (min-width: 577px) {
    .products-grid,
    #products-container,
    #main-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

/* Mobile - Single Column */
@media (max-width: 576px) {
    .products-grid,
    #products-container,
    #main-products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 400px;
        margin: 1.5rem auto 0;
    }
}

/* Modern Card Hover Effects */
.modern-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), #C13584);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.modern-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

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

/* Featured Product Rotation */
.featured-item {
    display: flex;
    align-items: center;
    background: rgba(193, 53, 132, 0.05);
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.5s ease;
    cursor: pointer;
}

.featured-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(193, 53, 132, 0.2);
    background: rgba(193, 53, 132, 0.1);
}

.featured-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 1rem;
    transition: all 0.3s ease;
}

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

.featured-content {
    flex: 1;
}

.featured-content h6 {
    margin-bottom: 0.25rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.featured-item:hover .featured-content h6 {
    color: var(--primary-color);
}

.featured-content .text-muted {
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.featured-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.featured-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.featured-dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.featured-dot:hover {
    background: var(--primary-color);
    opacity: 0.7;
}

/* Enhanced Typography */
.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), #C13584);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, 
        rgba(26, 77, 179, 0.05) 0%, 
        rgba(230, 184, 0, 0.05) 100%);
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb {
    background: none;
    padding: 0;
    margin-bottom: 1rem;
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb-item.active {
    color: var(--text-light);
}

/* Products Section Styles */
.products-section {
    min-height: 70vh;
}

.filters-card {
    border: 1px solid #f0f0f0;
    position: sticky;
    top: 100px;
}

.filters-card h5 {
    color: var(--primary-color);
    font-weight: 700;
    border-bottom: 2px solid rgba(26, 77, 179, 0.1);
    padding-bottom: 0.75rem;
}

.category-filter {
    border: none;
    padding: 0.75rem 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.category-filter:hover,
.category-filter.active {
    background: rgba(26, 77, 179, 0.1);
    color: var(--primary-color);
    border-left: 3px solid var(--primary-color);
}

.results-info {
    color: var(--text-light);
    font-weight: 500;
}

#sort-products {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-weight: 500;
}

#sort-products:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(26, 77, 179, 0.25);
}

/* ENHANCED RESPONSIVE DESIGN FOR ALL PAGES */

/* Large screens (1200px+) */
@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
    
    .hero-title {
        font-size: 3.5rem;
        line-height: 1.2;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

/* Desktop and Large Tablets (992px - 1199px) */
@media (max-width: 1199px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
    
    .hero-content {
        padding-right: 1rem;
    }
}

/* Tablets (768px - 991px) */
@media (max-width: 991px) {
    .hero-content {
        text-align: center;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2.75rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.15rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-buttons .btn {
        margin: 0.5rem;
        min-width: 160px;
    }
    
    .categories-sidebar {
        position: static;
        margin-bottom: 2rem;
        border-radius: 16px;
        padding: 1.5rem;
    }
    
    .flash-sale-banner {
        text-align: center;
        padding: 1.25rem;
        border-radius: 12px;
    }
    
    .timer-display {
        margin-top: 1rem;
        font-size: 1.1rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.25rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .navbar-nav {
        padding-top: 1rem;
        text-align: center;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem !important;
        margin: 0.25rem 0;
        border-radius: 8px;
    }
    
    .promise-item {
        margin-bottom: 2rem;
        padding: 2rem 1rem;
    }
    
    .featured-section {
        padding: 1rem;
        border-radius: 12px;
        background: rgba(26, 77, 179, 0.02);
    }
}

/* Mobile Devices (up to 767px) */
@media (max-width: 767px) {
    /* Enhanced Mobile Layout */
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .hero-section {
        padding: 3rem 0;
    }
    
    .hero-title {
        font-size: 2.25rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        line-height: 1.6;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1rem;
        border-radius: 12px;
    }
    
    .hero-image {
        margin-top: 2rem;
    }
    
    .hero-image img {
        border-radius: 16px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }
    
    /* Sidebar becomes full-width on mobile */
    .categories-sidebar {
        position: static;
        margin-bottom: 2rem;
        border-radius: 16px;
        padding: 1.5rem;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    }
    
    .category-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }
    
    .category-link {
        font-size: 0.875rem;
        padding: 0.75rem;
        text-align: center;
        border-radius: 8px;
        background: rgba(26, 77, 179, 0.05);
        border: 1px solid rgba(26, 77, 179, 0.1);
    }
    
    .category-link i {
        display: block;
        margin-bottom: 0.25rem;
        font-size: 1.2rem;
    }
    
    /* Products Grid - Single Column */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0;
    }
    
    .product-card {
        max-width: 100%;
        margin: 0 auto;
        border-radius: 16px;
        overflow: hidden;
    }
    
    .product-image {
        height: 200px;
    }
    
    .product-body {
        padding: 1.25rem;
    }
    
    /* Flash Sale Banner */
    .flash-sale-banner {
        text-align: center;
        padding: 1.5rem;
        border-radius: 16px;
        margin-bottom: 2rem;
    }
    
    .timer-display {
        margin-top: 1rem;
        font-size: 1.1rem;
    }
    
    /* Featured Section */
    .featured-section {
        padding: 1.25rem;
        border-radius: 16px;
        background: linear-gradient(135deg, rgba(26, 77, 179, 0.05), rgba(193, 53, 132, 0.05));
    }
    
    .featured-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .featured-image {
        width: 80px;
        height: 80px;
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    /* Blog Enhancements */
    .blog-hero {
        padding: 2rem 0;
    }
    
    .blog-search .input-group {
        max-width: 100%;
        border-radius: 25px;
    }
    
    .filter-tabs {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .filter-btn {
        width: 100%;
        max-width: 250px;
        padding: 1rem 1.5rem;
        border-radius: 25px;
        font-weight: 600;
    }
    
    .blog-post-card .post-title {
        font-size: 1.125rem;
        height: auto;
        line-height: 1.4;
    }
    
    .blog-post-card .post-excerpt {
        height: auto;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }
    
    .featured-post .post-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .featured-post .post-image {
        height: 220px;
    }
    
    .newsletter-form .input-group {
        flex-direction: column;
        border-radius: 20px;
        overflow: hidden;
    }
    
    .newsletter-form .form-control {
        border-radius: 20px;
        margin-bottom: 0.75rem;
        padding: 1rem 1.5rem;
    }
    
    .newsletter-form .btn {
        border-radius: 20px;
        padding: 1rem 2rem;
    }
    
    /* Navigation Enhancements */
    .navbar-brand {
        font-size: 1.25rem;
    }
    
    .brand-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    .navbar-nav {
        text-align: center;
        margin-top: 1rem;
        background: rgba(26, 77, 179, 0.02);
        border-radius: 12px;
        padding: 1rem;
    }
    
    .navbar-nav .nav-link {
        padding: 0.875rem 1rem !important;
        margin: 0.25rem 0;
        border-radius: 10px;
        font-weight: 600;
    }
    
    /* Section Titles */
    .section-title {
        font-size: 1.875rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    /* Promise Cards */
    .promise-item {
        margin-bottom: 2rem;
        padding: 2rem 1rem;
        border-radius: 16px;
        background: var(--white);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    }
    
    .promise-icon {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    /* View Options */
    .view-options {
        text-align: center !important;
        margin-top: 1.5rem;
    }
    
    .products-header .row {
        text-align: center;
    }
    
    .products-header .col-md-8,
    .products-header .col-md-4 {
        margin-bottom: 1rem;
    }
    
    /* Footer Enhancements */
    .footer {
        padding: 2.5rem 0 1rem;
    }
    
    .footer .col-lg-4,
    .footer .col-lg-2,
    .footer .col-lg-3 {
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .footer-brand {
        justify-content: center;
        margin-bottom: 1rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    /* WhatsApp Widget */
    .whatsapp-chat-widget {
        bottom: 15px;
        right: 15px;
    }
    
    .chat-button {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        padding: 0;
        justify-content: center;
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    
    .chat-text {
        display: none;
    }
    
    .chat-button i {
        font-size: 1.75rem;
    }
}

/* Extra Small Mobile Devices (up to 575px) */
@media (max-width: 575px) {
    .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    /* Hero Section - Ultra Mobile Optimized */
    .hero-section {
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 1.875rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }
    
    .hero-buttons .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
        border-radius: 10px;
        font-weight: 600;
    }
    
    /* Navigation - Compact */
    .brand-logo {
        font-size: 1.125rem;
    }
    
    .brand-icon {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    
    .navbar {
        padding: 0.75rem 0;
    }
    
    /* Sidebar Categories - Stacked */
    .categories-sidebar {
        padding: 1rem;
        border-radius: 12px;
    }
    
    .category-list {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .category-link {
        padding: 1rem;
        text-align: left;
        display: flex;
        align-items: center;
        font-size: 0.9rem;
    }
    
    .category-link i {
        display: inline-block;
        margin-right: 0.75rem;
        margin-bottom: 0;
        font-size: 1.1rem;
        width: 24px;
        text-align: center;
    }
    
    /* Products - Full Width Cards */
    .products-grid {
        gap: 1.25rem;
    }
    
    .product-card {
        border-radius: 12px;
    }
    
    .product-image {
        height: 180px;
    }
    
    .product-body {
        padding: 1rem;
    }
    
    .product-title {
        font-size: 0.95rem;
        line-height: 1.4;
        height: auto;
    }
    
    .current-price {
        font-size: 1.1rem;
    }
    
    .original-price {
        font-size: 0.85rem;
    }
    
    .product-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .btn-add-cart {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        font-weight: 600;
    }
    
    .btn-quick-view {
        width: 100%;
        height: 40px;
        border-radius: 8px;
    }
    
    /* Flash Sale - Compact */
    .flash-sale-banner {
        padding: 1rem;
        border-radius: 12px;
    }
    
    .flash-sale-banner h4 {
        font-size: 1.25rem;
    }
    
    .timer-display {
        font-size: 0.95rem;
        margin-top: 0.75rem;
    }
    
    .timer-display span {
        padding: 0.2rem 0.4rem;
        font-size: 0.85rem;
    }
    
    /* Featured Product - Vertical Layout */
    .featured-section {
        padding: 1rem;
        border-radius: 12px;
    }
    
    .featured-item {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem;
        border-radius: 10px;
    }
    
    .featured-image {
        width: 70px;
        height: 70px;
        margin-right: 0;
        margin-bottom: 0.75rem;
    }
    
    .featured-content h6 {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .featured-dots {
        margin-top: 1rem;
        gap: 0.4rem;
    }
    
    .featured-dot {
        width: 6px;
        height: 6px;
    }
    
    /* Sections */
    .section-title {
        font-size: 1.625rem;
        line-height: 1.3;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    /* Promise Items - Card Style */
    .promise-item {
        padding: 1.5rem 1rem;
        border-radius: 12px;
        margin-bottom: 1.5rem;
    }
    
    .promise-icon {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .promise-item h5 {
        font-size: 1.1rem;
    }
    
    .promise-item p {
        font-size: 0.9rem;
    }
    
    /* Blog - Mobile Optimized */
    .blog-hero {
        padding: 1.5rem 0;
    }
    
    .blog-search .form-control {
        padding: 0.875rem 1rem;
        font-size: 1rem;
    }
    
    .filter-btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
        max-width: 200px;
    }
    
    .blog-post-card {
        border-radius: 12px;
    }
    
    .blog-post-card .post-image {
        height: 160px;
    }
    
    .blog-post-card .post-content {
        padding: 1rem;
    }
    
    .blog-post-card .post-title {
        font-size: 1rem;
    }
    
    .featured-post .post-title {
        font-size: 1.375rem;
    }
    
    .featured-post .post-image {
        height: 180px;
    }
    
    .featured-post .post-content {
        padding: 1.5rem;
    }
    
    /* Newsletter */
    .newsletter-form .form-control {
        padding: 0.875rem 1.25rem;
        font-size: 1rem;
    }
    
    .newsletter-form .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
        font-weight: 600;
    }
    
    /* Footer - Compact */
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer .row > div {
        margin-bottom: 1.5rem;
    }
    
    .footer h5 {
        font-size: 1.125rem;
        margin-bottom: 1rem;
    }
    
    .footer ul li {
        margin-bottom: 0.4rem;
    }
    
    .footer a {
        font-size: 0.9rem;
    }
    
    /* WhatsApp Widget - Smaller */
    .whatsapp-chat-widget {
        bottom: 12px;
        right: 12px;
    }
    
    .chat-button {
        width: 52px;
        height: 52px;
        box-shadow: 0 3px 15px rgba(37, 211, 102, 0.4);
    }
    
    .chat-button i {
        font-size: 1.5rem;
    }
}

/* Products List View */
.products-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.products-list .product-card {
    display: flex;
    flex-direction: row;
    max-width: none;
    height: auto;
}

.products-list .product-image {
    width: 200px;
    min-width: 200px;
    height: 150px;
}

.products-list .product-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.products-list .product-title {
    height: auto;
    -webkit-line-clamp: unset;
    line-clamp: unset;
}

.products-list .product-actions {
    margin-top: auto;
    width: fit-content;
}

@media (max-width: 768px) {
    .products-list .product-card {
        flex-direction: column;
    }
    
    .products-list .product-image {
        width: 100%;
        height: 200px;
    }
    
    .products-list .product-actions {
        width: 100%;
    }
}

/* Loading Animations */
.skeleton {
    background: #f0f0f0;
    animation: none;
}

.skeleton-card {
    height: 400px;
    border-radius: 20px;
}

.skeleton-text {
    height: 1rem;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.skeleton-title {
    height: 1.5rem;
    border-radius: 4px;
    margin-bottom: 1rem;
    width: 80%;
}

/* Enhanced Interactions */
.interactive-element {
    cursor: pointer;
    user-select: none;
    transition: all 0.2s ease;
}

.interactive-element:active {
    transform: scale(0.98);
}

/* Modern Tooltips */
.tooltip-modern {
    position: relative;
}

.tooltip-modern::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--text-dark);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.tooltip-modern::after {
    content: '';
    position: absolute;
    bottom: 115%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: var(--text-dark);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.tooltip-modern:hover::before,
.tooltip-modern:hover::after {
    opacity: 1;
    visibility: visible;
}

/* Enhanced Mobile Responsive Design - Rio Gift Shop Style */

/* Clean Navigation - Mobile First */
.navbar {
    padding: 0.75rem 0;
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(15px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(26, 77, 179, 0.1);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.25rem;
}

.brand-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    font-size: 1rem;
}

/* Cart Icon - Always Visible & Mobile Optimized */
#cart-btn {
    padding: 0.5rem 0.75rem;
    font-size: 1.1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    min-width: 45px;
    text-align: center;
}

#cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 77, 179, 0.3);
}

.navbar-toggler {
    padding: 0.375rem 0.5rem;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    background: transparent;
    transition: all 0.3s ease;
}

.navbar-toggler:hover {
    background: rgba(26, 77, 179, 0.1);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(26, 77, 179, 0.25);
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: var(--white);
        border-radius: 15px;
        margin-top: 1rem;
        padding: 1.5rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(26, 77, 179, 0.1);
    }
    
    .navbar-nav .nav-item {
        margin-bottom: 0.5rem;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1.5rem !important;
        border-radius: 12px;
        font-weight: 600;
        transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        position: relative;
        overflow: hidden;
    }
    
    .navbar-nav .nav-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, var(--primary-color), #C13584);
        transition: left 0.3s ease;
        z-index: -1;
    }
    
    .navbar-nav .nav-link:hover::before,
    .navbar-nav .nav-link.active::before {
        left: 0;
    }
    
    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        color: var(--white) !important;
        transform: translateX(5px);
    }
    
    .dropdown-menu {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(26, 77, 179, 0.1);
        margin-top: 0.5rem;
    }
}

/* Mobile Hero Section Spectacular Design */
@media (max-width: 768px) {
    .hero-section {
        background: linear-gradient(135deg, 
            rgba(26, 77, 179, 0.08) 0%, 
            rgba(230, 184, 0, 0.08) 50%,
            rgba(193, 53, 132, 0.08) 100%);
        padding: 3rem 0;
        position: relative;
        overflow: hidden;
    }
    
    .hero-section::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(45deg, transparent 30%, rgba(26, 77, 179, 0.05) 50%, transparent 70%);
        animation: heroFloat 6s ease-in-out infinite;
    }
    
    .hero-content {
        text-align: center;
        padding: 2rem 0;
        position: relative;
        z-index: 2;
    }
    
    .hero-title {
        font-size: 2.2rem;
        font-weight: 800;
        line-height: 1.2;
        margin-bottom: 1.5rem;
        background: linear-gradient(135deg, var(--primary-color) 0%, #C13584 50%, var(--secondary-color) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        animation: titleGlow 2s ease-in-out infinite alternate;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.6;
        color: var(--text-light);
        margin-bottom: 2rem;
        animation: fadeInUp 1s ease 0.3s both;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        animation: fadeInUp 1s ease 0.6s both;
    }
    
    .hero-buttons .btn {
        width: 280px;
        padding: 1rem 2rem;
        font-size: 1.1rem;
        font-weight: 600;
        border-radius: 50px;
        position: relative;
        overflow: hidden;
        transform: translateY(0);
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    
    .hero-buttons .btn-primary {
        background: linear-gradient(135deg, var(--primary-color) 0%, #C13584 100%);
        border: none;
        box-shadow: 0 8px 25px rgba(26, 77, 179, 0.3);
    }
    
    .hero-buttons .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 35px rgba(26, 77, 179, 0.4);
    }
    
    .hero-buttons .btn-outline-primary {
        background: rgba(255, 255, 255, 0.9);
        border: 2px solid var(--primary-color);
        backdrop-filter: blur(10px);
    }
    
    .hero-image {
        margin-top: 2rem;
        position: relative;
        animation: fadeInUp 1s ease 0.9s both;
    }
    
    .hero-image::before {
        content: '';
        position: absolute;
        top: -10px;
        left: -10px;
        right: -10px;
        bottom: -10px;
        background: linear-gradient(135deg, var(--primary-color), #C13584, var(--secondary-color));
        border-radius: 25px;
        z-index: -1;
        opacity: 0.3;
        animation: imageGlow 3s ease-in-out infinite alternate;
    }
    
    .hero-image img {
        border-radius: 20px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
        width: 100%;
        height: auto;
        transform: scale(1);
        transition: all 0.4s ease;
    }
    
    .hero-image:hover img {
        transform: scale(1.02);
        box-shadow: 0 25px 80px rgba(0, 0, 0, 0.25);
    }
}

/* Mobile Product Cards Spectacular Design */
@media (max-width: 768px) {
    .main-content {
        padding: 3rem 0;
    }
    
    .categories-sidebar {
        position: static;
        margin-bottom: 2rem;
        transform: translateY(0);
        animation: slideInLeft 0.8s ease;
    }
    
    .modern-card {
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.95) 100%);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(26, 77, 179, 0.1);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0;
        animation: fadeInStagger 1.2s ease;
    }
    
    .product-card {
        max-width: 100%;
        margin: 0 auto;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 249, 250, 0.98) 100%);
        backdrop-filter: blur(15px);
        border: 1px solid rgba(26, 77, 179, 0.08);
        border-radius: 20px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        position: relative;
        overflow: hidden;
    }
    
    .product-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(135deg, var(--primary-color), #C13584, var(--secondary-color));
        transform: scaleX(0);
        transition: transform 0.4s ease;
    }
    
    .product-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        border-color: rgba(26, 77, 179, 0.2);
    }
    
    .product-card:hover::before {
        transform: scaleX(1);
    }
    
    .product-image {
        height: 250px;
        position: relative;
        overflow: hidden;
        border-radius: 20px 20px 0 0;
    }
    
    .product-image img {
        transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    
    .product-card:hover .product-image img {
        transform: scale(1.08) rotate(1deg);
    }
    
    .product-body {
        padding: 1.5rem;
    }
    
    .product-title {
        font-size: 1.1rem;
        font-weight: 700;
        height: auto;
        margin-bottom: 0.75rem;
        color: var(--text-dark);
        line-height: 1.4;
    }
    
    .current-price {
        font-size: 1.4rem;
        font-weight: 800;
        background: linear-gradient(135deg, var(--primary-color), #C13584);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .btn-add-cart {
        width: 100%;
        padding: 0.875rem;
        font-size: 1rem;
        font-weight: 600;
        border-radius: 15px;
        background: linear-gradient(135deg, var(--primary-color) 0%, #C13584 100%);
        border: none;
        position: relative;
        overflow: hidden;
        transition: all 0.4s ease;
    }
    
    .btn-add-cart::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #C13584 0%, var(--secondary-color) 100%);
        transition: left 0.4s ease;
    }
    
    .btn-add-cart:hover::before {
        left: 0;
    }
    
    .btn-add-cart span {
        position: relative;
        z-index: 2;
    }
}

/* Mobile Footer Enhancements */
@media (max-width: 768px) {
    .footer {
        background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
        position: relative;
        overflow: hidden;
    }
    
    .footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background: linear-gradient(135deg, var(--primary-color), #C13584, var(--secondary-color));
    }
    
    .footer .col-lg-4,
    .footer .col-lg-2,
    .footer .col-lg-3 {
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .footer-brand {
        justify-content: center;
        margin-bottom: 1.5rem;
    }
    
    .social-links {
        justify-content: center;
        margin-top: 1.5rem;
    }
    
    .social-links a {
        margin: 0 0.5rem;
        transform: scale(1);
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    
    .social-links a:hover {
        transform: scale(1.2) translateY(-5px);
        background: linear-gradient(135deg, var(--primary-color), #C13584);
    }
}

/* Mobile WhatsApp Widget Enhancement */
@media (max-width: 768px) {
    .whatsapp-chat-widget {
        bottom: 20px;
        right: 20px;
    }
    
    .chat-button {
        width: 65px;
        height: 65px;
        border-radius: 50%;
        padding: 0;
        justify-content: center;
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
        animation: pulse 2s infinite;
    }
    
    .chat-button i {
        font-size: 1.8rem;
    }
    
    .chat-text {
        display: none;
    }
}

/* Spectacular Animations */
@keyframes heroFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(1deg); }
}

@keyframes titleGlow {
    0% { text-shadow: 0 0 10px rgba(26, 77, 179, 0.3); }
    100% { text-shadow: 0 0 20px rgba(26, 77, 179, 0.6), 0 0 30px rgba(193, 53, 132, 0.3); }
}

@keyframes imageGlow {
    0% { opacity: 0.2; transform: scale(0.98); }
    100% { opacity: 0.4; transform: scale(1.02); }
}

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

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

@keyframes fadeInStagger {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.2);
    }
    100% {
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    }
}

/* Mobile Utility Classes */
@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
        font-weight: 800;
        text-align: center;
        background: linear-gradient(135deg, var(--primary-color) 0%, #C13584 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 1rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        text-align: center;
        color: var(--text-light);
        margin-bottom: 2rem;
        line-height: 1.6;
    }
    
    .promise-item {
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 249, 250, 0.9) 100%);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(26, 77, 179, 0.1);
        border-radius: 20px;
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
        transition: all 0.4s ease;
    }
    
    .promise-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    }
    
    .promise-icon {
        font-size: 3rem;
        background: linear-gradient(135deg, var(--primary-color), #C13584);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 1rem;
    }
}

/* Enhanced Mobile Blog Design */
@media (max-width: 768px) {
    .blog-hero {
        background: linear-gradient(135deg, 
            rgba(26, 77, 179, 0.1) 0%, 
            rgba(230, 184, 0, 0.1) 50%,
            rgba(193, 53, 132, 0.1) 100%);
        padding: 3rem 0;
        position: relative;
        overflow: hidden;
    }
    
    .blog-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%231A4DB3" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
        opacity: 0.3;
    }
    
    .blog-search .input-group {
        border-radius: 25px;
        overflow: hidden;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    }
    
    .blog-post-card {
        border-radius: 20px;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.95) 100%);
        backdrop-filter: blur(15px);
        border: 1px solid rgba(26, 77, 179, 0.08);
        margin-bottom: 2rem;
    }
    
    .filter-tabs {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1rem;
    }
    
    .filter-btn {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        padding: 0.875rem 1.5rem;
        border-radius: 25px;
        font-weight: 600;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 249, 250, 0.9) 100%);
        backdrop-filter: blur(10px);
        border: 2px solid rgba(26, 77, 179, 0.1);
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    
    .filter-btn:hover,
    .filter-btn.active {
        background: linear-gradient(135deg, var(--primary-color) 0%, #C13584 100%);
        border-color: transparent;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(26, 77, 179, 0.3);
    }
}

/* Custom scrollbar for webkit browsers */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

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

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #1639A0, #A02B70);
}

/* Related Products Section Styling */
.related-products {
    background: #f8f9fa;
}

.related-products .section-title {
    color: var(--dark-color);
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.related-products .section-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 0;
}

.related-products .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.related-products .product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.related-products .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.related-products .product-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.related-products .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.related-products .product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #e74c3c;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.related-products .product-body {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.related-products .product-category {
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.related-products .product-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.75rem;
    line-height: 1.4;
    flex: 1;
}

.related-products .product-price {
    margin-bottom: 1rem;
}

.related-products .current-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
}

.related-products .original-price {
    font-size: 0.9rem;
    color: #999;
    text-decoration: line-through;
    margin-left: 0.5rem;
}

.related-products .product-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: auto;
}

.related-products .btn-add-cart {
    flex: 1;
    padding: 0.625rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.related-products .btn-quick-view {
    padding: 0.625rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.related-products .btn-quick-view:hover {
    transform: translateY(-2px);
}

/* Responsive adjustments for related products */
@media (max-width: 768px) {
    .related-products .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .related-products .product-image {
        height: 180px;
    }
    
    .related-products .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .related-products .products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .related-products .product-image {
        height: 200px;
    }
}

/* Final Mobile Cart & Navigation Optimizations */
@media (max-width: 576px) {
    #cart-btn {
        padding: 0.45rem 0.6rem;
        font-size: 0.95rem;
        min-width: 40px;
    }
    
    .navbar-brand {
        font-size: 1.1rem;
    }
    
    .brand-icon {
        width: 30px;
        height: 30px;
        font-size: 0.85rem;
    }
    
    .navbar-toggler {
        padding: 0.3rem 0.4rem;
        font-size: 0.85rem;
    }
}

/* Performance & Accessibility Improvements */
.btn, .nav-link, .product-card, .category-link {
    -webkit-tap-highlight-color: rgba(26, 77, 179, 0.2);
    touch-action: manipulation;
}

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

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus,
.form-control:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Ensure proper contrast */
.text-muted {
    color: #6c757d !important;
}

/* Mobile-first loading states */
@media (max-width: 768px) {
    .loading, .skeleton {
        animation: pulse 1.5s ease-in-out infinite alternate;
    }
}

@keyframes pulse {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0.5;
    }
}