/* Araf Baby Mart - Global Styles */

/* CSS Variables - Pastel Color Palette */
:root {
    --light-sky-blue: #87CEEB;
    --pale-pastel-pink: #F8BBD9;
    --soft-mint-green: #B8E6B8;
    --light-peach-orange: #FFCBA4;
    --gentle-lavender-purple: #DDA0DD;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-gray: #6c757d;
    --text-dark: #2c3e50;
    --border-color: #e9ecef;
}

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

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

/* Header Styles - Mobile-First Design */
.header {
    background: #ffffff;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    border-bottom: 1px solid #f0f2f5;
    position: sticky;
    top: 0;
}

.top-bar {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 10px 0;
    font-size: 12px;
    border-bottom: 1px solid #dee2e6;
    width: 100%;
}

.contact-info span {
    color: #495057;
    margin-right: 20px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
}

.contact-info span:hover {
    color: var(--light-sky-blue);
}

.contact-info span i {
    color: var(--light-sky-blue);
    font-size: 12px;
}

.user-actions .btn {
    font-size: 11px;
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.user-actions .btn:hover {
    transform: translateY(-1px);
}

.navbar {
    padding: 8px 0;
    background: #ffffff;
}

.navbar-brand .logo {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

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

.search-container {
    max-width: 480px;
}

.search-input {
    border: 1px solid #e1e5e9;
    border-radius: 24px 0 0 24px;
    padding: 10px 16px;
    font-size: 14px;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.search-input:focus {
    border-color: var(--light-sky-blue);
    box-shadow: 0 0 0 3px rgba(135, 206, 235, 0.1);
    background: #ffffff;
    outline: none;
}

.btn-search {
    background: var(--light-sky-blue);
    border: 1px solid var(--light-sky-blue);
    border-radius: 0 24px 24px 0;
    color: #ffffff;
    padding: 10px 16px;
    transition: all 0.3s ease;
}

.btn-search:hover {
    background: #5dade2;
    border-color: #5dade2;
    color: #ffffff;
    transform: translateY(-1px);
}

.cart-btn {
    background: #f8f9fa;
    color: #495057;
    padding: 8px 10px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    min-height: 40px;
}

.cart-btn:hover {
    background: var(--light-sky-blue);
    color: #ffffff;
    border-color: var(--light-sky-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(135, 206, 235, 0.3);
}

.cart-count {
    top: -5px;
    right: -5px;
    font-size: 10px;
    min-width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #dc3545;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #ffffff;
}

.nav-link {
    color: #495057 !important;
    font-weight: 500;
    padding: 8px 16px !important;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    background: #f8f9fa;
    color: var(--light-sky-blue) !important;
    transform: translateY(-1px);
}

.nav-link.active {
    color: var(--light-sky-blue) !important;
    background: rgba(135, 206, 235, 0.1);
}

.dropdown-menu {
    border: 1px solid #e9ecef;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    padding: 8px 0;
    margin-top: 8px;
}

.dropdown-item {
    padding: 8px 20px;
    color: #495057;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: #f8f9fa;
    color: var(--light-sky-blue);
}

/* Button Styles - Redesigned */
.btn-primary {
    background: var(--light-sky-blue);
    border-color: var(--light-sky-blue);
    color: var(--white);
    font-weight: 500;
    border-radius: 8px;
    padding: 8px 16px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.btn-primary:hover {
    background: #5dade2;
    border-color: #5dade2;
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(135, 206, 235, 0.3);
}

.btn-outline-primary {
    border-color: #e1e5e9;
    color: #495057;
    background: transparent;
    border-radius: 8px;
    padding: 8px 16px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.btn-outline-primary:hover {
    background: var(--light-sky-blue);
    border-color: var(--light-sky-blue);
    color: var(--white);
    transform: translateY(-1px);
}

.btn-sm {
    padding: 6px 12px;
    font-size: 13px;
}

/* Mobile Header Improvements */
.navbar-toggler {
    border: 1px solid #e9ecef !important;
    padding: 5px 8px;
    font-size: 14px;
    color: #495057;
    border-radius: 8px;
    background: #f8f9fa;
    transition: all 0.3s ease;
    min-width: 36px;
    min-height: 36px;
}

.navbar-toggler:hover {
    background: var(--light-sky-blue);
    color: #ffffff;
    border-color: var(--light-sky-blue) !important;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(135, 206, 235, 0.1);
}

.mobile-search {
    padding: 10px 0;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
    margin-top: 5px;
}

.mobile-search .input-group {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.mobile-search .form-control {
    border: 1px solid #e1e5e9;
    background: #ffffff;
    padding: 10px 16px;
    font-size: 14px;
}

.mobile-search .btn-search {
    padding: 10px 16px;
}

.header-actions {
    gap: 6px;
    display: flex;
    align-items: center;
}

.header-actions .btn {
    border-radius: 8px;
    font-size: 12px;
    padding: 6px 10px;
    min-width: 36px;
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Simple Navigation Styles */
.navbar-nav {
    gap: 5px;
}

.nav-link {
    color: #495057 !important;
    font-weight: 500;
    padding: 10px 16px !important;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: rgba(135, 206, 235, 0.1);
    color: var(--light-sky-blue) !important;
}

.nav-link.active {
    background: var(--light-sky-blue);
    color: #ffffff !important;
}

/* Dropdown Menu */
.dropdown-menu {
    border: 1px solid #e9ecef;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    margin-top: 8px;
    min-width: 250px;
}

.dropdown-header {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 20px 5px;
}

.dropdown-item {
    padding: 10px 20px;
    color: #495057;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.dropdown-item:hover {
    background: rgba(135, 206, 235, 0.1);
    color: var(--light-sky-blue);
}

.dropdown-item i {
    color: var(--light-sky-blue);
    width: 16px;
}

.dropdown-divider {
    margin: 8px 0;
}

/* Mobile Navigation */
.navbar-collapse {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    backdrop-filter: blur(10px);
}

.navbar-nav {
    width: 100%;
    gap: 5px;
}

/* Simple Mobile Menu Styles */
.offcanvas-header {
    background: var(--light-sky-blue);
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.offcanvas-title {
    color: #ffffff;
    font-weight: 600;
}

.btn-close {
    filter: invert(1);
}

.offcanvas-body {
    padding: 20px;
}

/* User Info Section */
.user-info {
    background: rgba(135, 206, 235, 0.1);
    border-radius: 12px;
    padding: 15px;
}

.user-avatar {
    text-align: center;
}

/* Mobile Navigation Links */
.mobile-nav-links {
    margin: 20px 0;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    padding: 12px 0;
    color: var(--text-dark);
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: var(--light-sky-blue);
}

.mobile-nav-link i {
    color: var(--light-sky-blue);
}

/* Mobile Categories */
.mobile-category-section {
    margin: 15px 0;
}

.mobile-category-title {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid #e9ecef;
}

.mobile-category-link {
    display: flex;
    align-items: center;
    padding: 8px 0 8px 20px;
    color: var(--dark-gray);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.mobile-category-link:hover {
    color: var(--light-sky-blue);
}

.mobile-category-link i {
    color: var(--light-sky-blue);
    font-size: 12px;
}

/* Contact Info */
.contact-info p {
    color: var(--dark-gray);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-info i {
    color: var(--light-sky-blue);
}

.mobile-action-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-dark);
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.mobile-action-btn:hover {
    background: linear-gradient(135deg, rgba(135, 206, 235, 0.1), rgba(248, 187, 217, 0.05));
    border-color: var(--light-sky-blue);
    color: var(--light-sky-blue);
    transform: translateX(5px);
}

.mobile-action-btn i:first-child {
    width: 20px;
    text-align: center;
    color: var(--light-sky-blue);
}

.mobile-action-btn span {
    flex: 1;
    font-weight: 500;
}

.mobile-action-btn i:last-child {
    color: var(--dark-gray);
    font-size: 12px;
}

/* Mobile Auth Section */
.mobile-auth-section {
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.auth-welcome {
    text-align: center;
    margin-bottom: 20px;
}

.auth-welcome i {
    font-size: 40px;
    color: var(--light-sky-blue);
    margin-bottom: 10px;
}

.auth-welcome h6 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 5px;
}

.auth-welcome p {
    color: var(--dark-gray);
    font-size: 14px;
    margin: 0;
}

.mobile-auth-actions {
    display: flex;
    gap: 10px;
}

.mobile-auth-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.mobile-auth-btn.login {
    background: var(--light-sky-blue);
    color: #ffffff;
    border: 2px solid var(--light-sky-blue);
}

.mobile-auth-btn.login:hover {
    background: #5dade2;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(135, 206, 235, 0.3);
}

.mobile-auth-btn.register {
    background: transparent;
    color: var(--light-sky-blue);
    border: 2px solid var(--light-sky-blue);
}

.mobile-auth-btn.register:hover {
    background: var(--light-sky-blue);
    color: #ffffff;
}

/* Mobile Navigation Section */
.mobile-nav-section {
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-section-title {
    color: var(--text-dark);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #f0f0f0;
}

.mobile-nav-items {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.mobile-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
    cursor: pointer;
}

.mobile-nav-item:hover {
    background: linear-gradient(135deg, rgba(135, 206, 235, 0.1), rgba(248, 187, 217, 0.05));
    border-color: var(--light-sky-blue);
    color: var(--light-sky-blue);
    transform: translateX(5px);
}

.mobile-nav-item.expandable:hover {
    transform: none;
}

.mobile-nav-item i:first-child {
    width: 20px;
    text-align: center;
    color: var(--light-sky-blue);
}

.mobile-nav-item span {
    flex: 1;
    font-weight: 500;
}

.mobile-nav-item i:last-child {
    color: var(--dark-gray);
    font-size: 12px;
    transition: transform 0.3s ease;
}

.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #f8f9fa;
    border-radius: 12px;
    margin-top: 5px;
}

.mobile-submenu.active {
    max-height: 300px;
    padding: 10px;
}

.mobile-submenu-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-dark);
    margin-bottom: 5px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.mobile-submenu-item:hover {
    background: var(--light-sky-blue);
    color: #ffffff;
    transform: translateX(3px);
}

.mobile-submenu-item i {
    width: 16px;
    text-align: center;
    font-size: 12px;
}

/* Mobile Contact Section */
.mobile-contact-section {
    padding: 20px;
}

.mobile-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-dark);
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.mobile-contact-item:hover {
    background: var(--light-sky-blue);
    color: #ffffff;
    transform: translateX(3px);
}

.mobile-contact-item i:first-child {
    width: 20px;
    text-align: center;
    color: var(--light-sky-blue);
}

.mobile-contact-item:hover i:first-child {
    color: #ffffff;
}

.mobile-contact-item span {
    flex: 1;
    font-weight: 500;
}

.mobile-contact-item i:last-child {
    color: var(--dark-gray);
    font-size: 12px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--light-gray), var(--white));
    border-top: 1px solid var(--border-color);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--light-sky-blue), var(--pale-pastel-pink), var(--soft-mint-green), var(--light-peach-orange));
}

.footer-logo {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

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

.footer-title {
    color: var(--text-dark);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--light-sky-blue), var(--pale-pastel-pink));
    border-radius: 2px;
}

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

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

.footer-links a {
    color: var(--dark-gray);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    padding: 5px 0;
}

.footer-links a:hover {
    color: var(--light-sky-blue);
    transform: translateX(5px);
}

.footer-links a::before {
    content: '→';
    opacity: 0;
    margin-right: 8px;
    transition: opacity 0.3s ease;
}

.footer-links a:hover::before {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--light-sky-blue), var(--pale-pastel-pink));
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
    box-shadow: 0 3px 10px rgba(135, 206, 235, 0.3);
}

.social-link:hover {
    background: linear-gradient(135deg, var(--light-peach-orange), var(--gentle-lavender-purple));
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(135, 206, 235, 0.4);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    color: var(--dark-gray);
    font-size: 14px;
}

.contact-info i {
    color: var(--light-sky-blue);
    width: 16px;
    text-align: center;
}

/* Footer Bottom Section */
.footer-bottom {
    background: linear-gradient(135deg, var(--text-dark), #34495e);
    color: var(--white);
    padding: 25px 0;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--light-sky-blue), var(--pale-pastel-pink), var(--soft-mint-green));
}

.footer-bottom::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footerPattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23footerPattern)"/></svg>');
    pointer-events: none;
}

.footer-bottom .container {
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    opacity: 0.9;
}

.payment-methods {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
    flex-wrap: wrap;
}

.payment-methods span {
    font-weight: 600;
    opacity: 0.9;
    font-size: 14px;
}

.payment-icons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.payment-icon {
    height: 35px;
    width: auto;
    background: var(--white);
    padding: 5px 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.payment-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Copyright and Company Info */
.copyright-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.company-badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

/* Mobile Responsive Footer */
@media (max-width: 767.98px) {
    .footer-bottom {
        text-align: center;
        padding: 20px 0;
    }
    
    .footer-bottom .row {
        flex-direction: column-reverse;
        gap: 15px;
    }
    
    .payment-methods {
        justify-content: center;
        margin-bottom: 15px;
    }
    
    .payment-methods span {
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }
    
    .payment-icons {
        justify-content: center;
    }
    
    .copyright-info {
        justify-content: center;
        flex-direction: column;
        gap: 10px;
    }
}

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

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

.border-primary-custom {
    border-color: var(--light-sky-blue) !important;
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.6s ease-in-out;
}

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

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

.slide-up {
    animation: slideUp 0.6s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

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

/* Loading Spinner */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, .3);
    border-radius: 50%;
    border-top-color: var(--white);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Produ
ct Card Styles */
.product-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.product-image {
    height: 180px;
    position: relative;
    overflow: hidden;
    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.05);
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--pale-pastel-pink);
    color: var(--text-dark);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    z-index: 2;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: var(--white);
}

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

.image-overlay i {
    font-size: 24px;
    margin-bottom: 8px;
}

.image-overlay span {
    font-size: 14px;
    font-weight: 500;
}

.product-info {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: var(--text-dark);
    text-decoration: none;
}

.product-title:hover {
    color: var(--light-sky-blue);
}

.product-price {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
    flex: 1;
}

.product-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.btn-add-cart {
    flex: 1;
    background: var(--light-sky-blue);
    color: var(--white);
    border: none;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.btn-add-cart:hover:not(:disabled) {
    background: #5dade2;
    transform: translateY(-1px);
}

.btn-add-cart:disabled {
    background: var(--dark-gray);
    cursor: not-allowed;
}

.btn-quick-view {
    background: var(--light-gray);
    color: var(--text-dark);
    border: 1px solid var(--border-color);
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 40px;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-quick-view:hover {
    background: var(--light-sky-blue);
    color: var(--white);
    border-color: var(--light-sky-blue);
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

/* Responsive Product Grid */
@media (max-width: 1199.98px) {
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 18px;
    }
}

@media (max-width: 991.98px) {
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 16px;
    }
}

@media (max-width: 767.98px) {
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 12px;
        padding: 15px 0;
    }

    .product-image {
        height: 140px;
    }

    .product-info {
        padding: 12px;
    }

    .product-title {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .product-price {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .btn-add-cart {
        font-size: 12px;
        padding: 8px 10px;
    }

    .btn-quick-view {
        min-width: 36px;
        min-height: 36px;
        padding: 8px;
    }
}

@media (max-width: 575.98px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .product-image {
        height: 120px;
    }

    .product-info {
        padding: 10px;
    }

    .product-title {
        font-size: 13px;
        line-clamp : 1;
        -webkit-line-clamp: 1;
    }

    .product-price {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .product-actions {
        gap: 6px;
    }

    .btn-add-cart {
        font-size: 11px;
        padding: 6px 8px;
    }

    .btn-quick-view {
        min-width: 32px;
        min-height: 32px;
        padding: 6px;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

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

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

/* Mobi
le Responsive Styles */
@media (max-width: 991.98px) {
    .top-bar {
        display: none !important;
    }

    .navbar {
        padding: 10px 0;
    }

    .navbar-brand .logo {
        height: 35px;
    }

    .search-container {
        display: none !important;
    }

    .mobile-search {
        display: block !important;
        padding: 8px 0;
    }

    .header-actions {
        gap: 4px;
    }

    .cart-btn {
        padding: 6px 8px;
        min-width: 36px;
        min-height: 36px;
        font-size: 14px;
    }

    .cart-count {
        top: -4px;
        right: -4px;
        font-size: 9px;
        min-width: 14px;
        height: 14px;
    }
}

@media (max-width: 767.98px) {
    .header {
        box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
    }

    .navbar {
        padding: 8px 0;
    }

    .navbar-brand .logo {
        height: 32px;
    }

    .mobile-search {
        padding: 6px 0;
    }

    .mobile-search .form-control {
        padding: 8px 14px;
        font-size: 13px;
    }

    .mobile-search .btn-search {
        padding: 8px 14px;
    }

    .header-actions .btn {
        font-size: 11px;
        padding: 5px 8px;
        min-width: 32px;
        min-height: 32px;
    }

    .cart-btn {
        padding: 5px 7px;
        min-width: 32px;
        min-height: 32px;
        font-size: 13px;
    }

    .navbar-toggler {
        padding: 4px 6px;
        font-size: 12px;
        min-width: 32px;
        min-height: 32px;
    }

    .navbar-collapse {
        margin-top: 8px;
        padding: 12px;
    }

    .navbar-nav .nav-link {
        padding: 10px 14px !important;
        font-size: 14px;
    }

    .dropdown-item {
        padding: 8px 16px;
        font-size: 13px;
    }
}

@media (max-width: 575.98px) {
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .navbar {
        padding: 6px 0;
    }

    .navbar-brand .logo {
        height: 28px;
    }

    .mobile-search {
        padding: 5px 0;
        margin-top: 3px;
    }

    .mobile-search .form-control {
        padding: 8px 12px;
        font-size: 12px;
    }

    .mobile-search .btn-search {
        padding: 6px 12px;
        font-size: 12px;
    }

    .header-actions {
        gap: 3px;
    }

    .header-actions .btn {
        font-size: 10px;
        padding: 4px 6px;
        min-width: 28px;
        min-height: 28px;
    }

    .cart-btn {
        padding: 4px 6px;
        min-width: 28px;
        min-height: 28px;
        font-size: 12px;
    }

    .cart-count {
        top: -3px;
        right: -3px;
        font-size: 8px;
        min-width: 12px;
        height: 12px;
    }

    .navbar-toggler {
        padding: 3px 5px;
        font-size: 11px;
        min-width: 28px;
        min-height: 28px;
    }

    .navbar-collapse {
        margin-top: 6px;
        padding: 10px;
    }

    .navbar-nav .nav-link {
        padding: 8px 12px !important;
        font-size: 13px;
    }

    .dropdown-item {
        padding: 6px 14px;
        font-size: 12px;
    }

    .offcanvas-body {
        padding: 15px;
    }

    .user-info h6 {
        font-size: 14px;
    }

    .contact-info p {
        font-size: 13px;
    }
}

/* Hero Section Mobile Improvements */
@media (max-width: 991.98px) {
    .hero-section {
        padding: 40px 0;
    }

    .hero-content h1 {
        font-size: 28px;
        line-height: 1.3;
    }

    .hero-content p {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .hero-buttons .btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 15px;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 30px 0;
    }

    .hero-content {
        text-align: center;
        padding: 20px;
    }

    .hero-content h1 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .hero-content p {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .hero-buttons .btn {
        padding: 10px 18px;
        font-size: 14px;
    }

    .hero-image {
        margin-top: 20px;
    }

    .hero-image img {
        max-height: 250px;
    }
}

@media (max-width: 575.98px) {
    .hero-section {
        padding: 20px 0;
    }

    .hero-content {
        padding: 15px;
    }

    .hero-content h1 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .hero-content p {
        font-size: 14px;
        margin-bottom: 18px;
    }

    .hero-buttons .btn {
        padding: 8px 16px;
        font-size: 13px;
    }

    .hero-image img {
        max-height: 200px;
    }
}

/* Clean and Simple Styles - No Heavy Effects */