/**
 * Click VCard - Main Stylesheet
 * Premium SaaS + eCommerce Hybrid Design
 */

:root {
    --primary-color: #00B67A;
    --primary-dark: #009966;
    --secondary-color: #FFFFFF;
    --accent-color: #1a237e;
    --text-dark: #1a1a2e;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --bg-dark: #1a1a2e;

    /* PRD Variables */
    --emerald: #00B67A;
    --navy: #1a1a2e;
    --cyan: #00F5FF;
    --purple: #7C3AED;
    --glass: rgba(255,255,255,0.1);
    --glass-border: rgba(255,255,255,0.2);

    --gradient-primary: linear-gradient(135deg, #00B67A 0%, #00d68f 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a2e 0%, #2d3748 100%);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --shadow-glass: 0 8px 32px rgba(31, 38, 135, 0.15);
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* PRD Utilities */
.glass-card {background: var(--glass); backdrop-filter: blur(10px); border: 1px solid var(--glass-border); border-radius: 24px; box-shadow: 0 8px 32px rgba(0,0,0,0.1);}
.mesh-bg {background: radial-gradient(at 27% 37%, #00B67A 0px, transparent 50%), radial-gradient(at 97% 21%, #7C3AED 0px, transparent 50%), radial-gradient(at 52% 99%, #00F5FF 0px, transparent 50%), #1a1a2e !important;}
.hover-lift {transition: transform 0.3s;} 
.hover-lift:hover {transform: translateY(-8px);} 
@keyframes pulseGlow { 0% { box-shadow: 0 0 0 0 rgba(0, 182, 122, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(0, 182, 122, 0); } 100% { box-shadow: 0 0 0 0 rgba(0, 182, 122, 0); } }
.pulse-glow {animation: pulseGlow 2s infinite;}
.dark-section {background: var(--navy); color: white;}

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

.navbar-light .navbar-nav .nav-link.active, 
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .show > .nav-link {
    color: var(--primary-color) !important;
    font-weight: 600;
}

html, body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

/* ===== BRAND ===== */
.brand-primary {
    color: var(--primary-color);
    font-weight: 800;
}

.brand-secondary {
    color: var(--accent-color);
    font-weight: 800;
}

/* ===== TOP BAR ===== */
.top-bar {
    font-size: 0.85rem;
}

/* ===== NAVIGATION ===== */
.navbar {
    padding: 1rem 0;
    transition: var(--transition);
}

.navbar-brand {
    font-size: 1.75rem;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    padding: 0.5rem 1rem !important;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: var(--border-radius);
    padding: 0.5rem 0;
}

.dropdown-item {
    padding: 0.6rem 1.2rem;
    font-weight: 500;
    transition: var(--transition);
}

.dropdown-item:hover {
    background-color: rgba(0, 182, 122, 0.1);
    color: var(--primary-color);
}

/* ===== BUTTONS ===== */
.btn {
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    box-shadow: 0 4px 15px rgba(0, 182, 122, 0.3);
}

.btn-primary:hover {
    background: var(--gradient-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 182, 122, 0.4);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

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

.btn-success {
    background: #25D366;
    border: none;
}

.btn-success:hover {
    background: #1faa52;
}

/* ===== HERO SECTION ===== */
.hero-section {
    min-height: 90vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 4rem 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(0, 182, 122, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-title .highlight {
    color: var(--primary-color);
    position: relative;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-badges {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: white;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    box-shadow: var(--shadow-sm);
}

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

.hero-image-wrapper {
    position: relative;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.hero-float-card {
    position: absolute;
    background: white;
    padding: 1rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-glass);
    backdrop-filter: blur(10px);
}

.hero-float-card.card-1 {
    top: 20%;
    left: -10%;
    animation: float 3s ease-in-out infinite;
}

.hero-float-card.card-2 {
    bottom: 20%;
    right: -5%;
    animation: float 3s ease-in-out infinite 1.5s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* ===== GLASS CARDS ===== */
.glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-glass);
    transition: var(--transition);
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(31, 38, 135, 0.2);
}

/* ===== FEATURE CARDS ===== */
.feature-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

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

.feature-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.feature-text {
    color: var(--text-light);
    margin-bottom: 0;
}

/* ===== PRODUCT CARDS ===== */
.product-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    height: 100%;
}

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

.product-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

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

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

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

.product-content {
    padding: 1.5rem;
}

.product-title {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

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

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

/* ===== GRADIENT BACKGROUNDS ===== */
.bg-gradient-primary {
    background: var(--gradient-primary) !important;
}

/* ===== TEXT COLORS ===== */
.text-white {
    color: #ffffff !important;
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.5) !important;
}

.text-white-80 {
    color: rgba(255, 255, 255, 0.8) !important;
}

.text-white-90 {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* ===== CONTACT PAGE ===== */
.contact-section {
    padding: 5rem 0;
}

.contact-info-card {
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.contact-info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left-color: var(--primary-color);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-icon {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 182, 122, 0.3);
}

.contact-info-card h5 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-info-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-info-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-info-card a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Form Enhancements */
.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 182, 122, 0.25);
}

.input-group-text {
    background: var(--bg-light);
    border: 1px solid #dee2e6;
    color: var(--text-light);
}

.btn-primary:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 182, 122, 0.25);
}

/* Map Section */
.map-section {
    position: relative;
}

.map-container {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid #dee2e6;
    border-radius: var(--border-radius);
    overflow: hidden;
}

/* Contact Form Validation */
.was-validated .form-control:valid {
    border-color: #28a745;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.was-validated .form-control:invalid {
    border-color: #dc3545;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23dc3545' d='M5.293 1.293a1 1 0 011.414 0l4 4a1 1 0 010 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414l4-4z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

/* ===== SECTION STYLES ===== */
.section-padding {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-subtitle {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    background: var(--bg-light);
}

.step-card {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.step-text {
    color: var(--text-light);
}

/* ===== TESTIMONIALS ===== */
.testimonial-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    height: 100%;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.2;
    font-family: Georgia, serif;
}

.testimonial-rating {
    color: #ffc107;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.testimonial-designation {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* ===== FAQ ===== */
.faq-section {
    background: var(--bg-light);
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: var(--border-radius) !important;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.accordion-button {
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    background: white;
}

.accordion-button:not(.collapsed) {
    background: rgba(0, 182, 122, 0.05);
    color: var(--primary-color);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 182, 122, 0.25);
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: var(--gradient-primary);
    padding: 4rem 0;
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-btn {
    background: white;
    color: var(--primary-color);
    border: none;
}

.cta-btn:hover {
    background: var(--bg-dark);
    color: white;
}

/* ===== FOOTER ===== */
.footer {
    background: #1a1a2e;
    color: #fff;
}

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

.footer .social-link:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    color: #fff;
}

.footer a.text-white-50:hover {
    color: #fff !important;
    text-decoration: underline !important;
}

.footer .input-group .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

.footer .input-group .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.footer .input-group .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 0 0 0.2rem rgba(0, 182, 122, 0.25);
}

.footer h5 {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: white;
}

.footer a {
    text-decoration: none;
    transition: var(--transition);
}

.footer a:hover {
    color: var(--primary-color) !important;
    padding-left: 5px;
}

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

/* Enhanced Footer Styles */
.footer-brand h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-subtitle {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 1rem;
}

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

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

.footer-link {
    color: rgba(255, 255, 255, 0.7) !important;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-link:hover {
    color: #fff !important;
    transform: translateX(4px);
    text-decoration: underline !important;
}

.contact-info {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-icon {
    width: 36px;
    height: 36px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.875rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

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

.footer-social {
    margin-top: 1.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

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

.footer-newsletter {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-form .input-group {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

.newsletter-input {
    background: transparent !important;
    border: none !important;
    color: white !important;
    padding: 0.75rem 1rem;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-input:focus {
    background: rgba(255, 255, 255, 0.15) !important;
    box-shadow: none !important;
    color: white !important;
}

.newsletter-btn {
    background: var(--primary-color);
    border: none;
    padding: 0.75rem 1.25rem;
    border-radius: 0 12px 12px 0;
}

.trust-badges {
    margin-top: 1.5rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
}

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

.payment-methods {
    margin-top: 1.5rem;
}

.payment-icon {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.payment-icon:hover {
    color: white;
}

.payment-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    margin-left: 0.5rem;
}

/* Footer Support Section */
.footer-support {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.quick-contact {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
}

.quick-contact .small {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.payment-section {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
}

.cert-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

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

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

@media (max-width: 768px) {
    .footer-support {
        padding: 1rem;
    }

    .cert-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright,
.made-in {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin: 0;
}

/* App Download Buttons */
.app-download {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.app-store-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #000;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    min-width: 135px;
}

.app-store-btn:hover {
    background: #333;
    color: white;
    transform: translateY(-2px);
}

.app-store-btn i {
    font-size: 1.5rem;
}

.app-store-btn span {
    line-height: 1.2;
}

.app-store-btn span small {
    font-size: 0.7rem;
    opacity: 0.8;
}

/* Enhanced Payment Badges */
.payment-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

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

.payment-badge i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

/* Footer Bottom Links */
.footer-bottom-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.footer-bottom-link {
    color: rgba(255, 255, 255, 0.6) !important;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-bottom-link:hover {
    color: white !important;
}

.separator {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.875rem;
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    }

    50% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.6);
    }

    100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    }
}

@media (max-width: 768px) {
    .footer-brand h3 {
        font-size: 1.5rem;
    }

    .contact-info {
        padding: 1rem;
    }

    .footer-newsletter {
        padding: 1rem;
    }

    .trust-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

    .app-store-btn {
        min-width: 120px;
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

    .app-store-btn i {
        font-size: 1.2rem;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 0.25rem;
        font-size: 0.8rem;
    }

    .separator {
        display: none;
    }

}

/* Newsletter & Trust Section */
.newsletter-trust-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.newsletter-trust-section::before {
    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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23000" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.newsletter-content,
.trust-content {
    position: relative;
    z-index: 1;
}

.newsletter-form-inline .input-group {
    max-width: 500px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    overflow: hidden;
}

.newsletter-form-inline .form-control {
    border: none;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    background: white;
}

.newsletter-form-inline .form-control:focus {
    box-shadow: none;
    background: white;
}

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

.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.trust-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.trust-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #00d68f);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.trust-text h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #333;
}

.trust-text small {
    font-size: 0.875rem;
    color: #666;
}

@media (max-width: 768px) {
    .newsletter-trust-section {
        padding: 3rem 0;
    }

    .trust-item {
        padding: 1rem;
    }

    .trust-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .trust-text h5 {
        font-size: 0.9rem;
    }

    .trust-text small {
        font-size: 0.8rem;
    }
}

.social-links a:hover {
    background: var(--primary-color);
    color: white !important;
    padding-left: 0;
}

/* ===== FLOATING WHATSAPP ===== */
.whatsapp-float {
    position: fixed;
    bottom: 85px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
    text-decoration: none;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
    color: white;
}

/* ===== MOBILE STICKY CTA ===== */
.mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991.98px) {
    body {
        padding-bottom: 72px;
    }

    .whatsapp-float {
        bottom: 86px;
        right: 16px;
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
    }

    .mobile-sticky-cta .btn {
        padding-top: 0.85rem;
        padding-bottom: 0.85rem;
    }
}

/* ===== CART COUNT BADGE ===== */
.cart-count {
    font-size: 0.625rem;
    transform: translate(-50%, -30%) !important;
}

/* ===== ALERTS ===== */
.alert {
    border-radius: var(--border-radius);
    border: none;
}

.alert-success {
    background: rgba(0, 182, 122, 0.1);
    color: #0f5132;
}

.alert-danger {
    background: rgba(220, 53, 69, 0.1);
    color: #842029;
}

/* ===== PAGINATION ===== */
.pagination .page-link {
    border-radius: 50%;
    margin: 0 0.25rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    color: var(--text-dark);
    font-weight: 500;
}

.pagination .page-item.active .page-link {
    background: var(--primary-color);
}

.pagination .page-link:hover {
    background: rgba(0, 182, 122, 0.1);
    color: var(--primary-color);
}

/* ===== FORMS ===== */
.form-control {
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    border: 2px solid #e9ecef;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(0, 182, 122, 0.15);
}

.form-floating .form-control {
    border-radius: var(--border-radius);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-float-card {
        display: none;
    }

    .navbar-collapse {
        background: white;
        padding: 1rem;
        border-radius: var(--border-radius);
        box-shadow: var(--shadow-lg);
        margin-top: 1rem;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-padding {
        padding: 3rem 0;
    }

    .cta-title {
        font-size: 1.75rem;
    }

    body {
        padding-bottom: 60px;
    }
}

/* ===== UTILITY CLASSES ===== */
.text-primary {
    color: var(--primary-color) !important;
}

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

.border-primary {
    border-color: var(--primary-color) !important;
}

.shadow-hover {
    transition: var(--transition);
}

.shadow-hover:hover {
    box-shadow: var(--shadow-lg);
}

.min-vh-50 {
    min-height: 50vh;
}

.min-vh-75 {
    min-height: 75vh;
}

/* ===== ANIMATIONS ===== */
@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes slideInUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

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

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

/* ===== PRODUCT PAGE ENHANCEMENTS ===== */
.sticky-cart {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    padding: 1rem 0;
    z-index: 1030;
    border-top: 1px solid #e9ecef;
}

.cursor-pointer {
    cursor: pointer;
}

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

.product-gallery .col-3 .card {
    transition: all 0.3s ease;
}

.product-gallery .col-3 .card:hover {
    transform: scale(1.05);
}

.main-product-image {
    transition: transform 0.3s ease;
}

/* ===== ACCORDION STYLING ===== */
.accordion-button:not(.collapsed) {
    background-color: rgba(0, 182, 122, 0.1);
    color: var(--primary-color);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 182, 122, 0.25);
}

/* ===== QUANTITY SELECTOR ===== */
#addToCartForm .input-group {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
}

#addToCartForm .input-group .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 100%;
}

#addToCartForm .input-group .form-control {
    border-left: 0;
    border-right: 0;
    min-width: 50px;
}

/* ===== IMAGE STYLES & LAZY LOADING ===== */
img {
    max-width: 100%;
    height: auto;
    transition: opacity 0.3s ease;
}

img[loading="lazy"] {
    opacity: 0;
}

img[loading="lazy"].loaded,
img[loading="lazy"]:not([src=""]) {
    opacity: 1;
}

/* Hero Image */
.hero-image {
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
    transition: transform 0.5s ease;
}

.hero-image:hover {
    transform: translateY(-10px);
}

/* Product Images */
.product-gallery img {
    transition: transform 0.3s ease;
}

.product-gallery .main-product-image {
    max-height: 500px;
    object-fit: contain;
}

/* Blog Images */
.blog-image {
    height: 220px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image {
    transform: scale(1.05);
}

/* Testimonial Avatars */
.testimonial-avatar {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
}

/* Image Placeholder Container */
.img-container {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.img-container img {
    max-height: 100%;
    width: auto;
}

/* ===== SKELETON LOADING ===== */
.skeleton {
    background: linear-gradient(90deg, #e9ecef 25%, #f8f9fa 50%, #e9ecef 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--border-radius);
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* ===== IMPROVED RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-image {
        max-width: 80%;
        margin: 0 auto;
        display: block;
    }

    .section-padding {
        padding: 3rem 0;
    }

    .btn-lg {
        padding: 0.625rem 1.25rem;
        font-size: 0.9rem;
    }

    .blog-image {
        height: 180px;
    }
}

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-badges {
        justify-content: center;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
    }

    .feature-icon i {
        font-size: 1.5rem;
    }
}

/* ===== IMAGE ERROR FALLBACK ===== */
img.error {
    background: #f8f9fa;
    padding: 20px;
    border: 2px dashed #dee2e6;
}

/* ===== SMOOTH SCROLL ===== */
html {
    scroll-behavior: smooth;
}

/* ===== FOCUS STATES ===== */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* ===== PRODUCT CARD HOVER EFFECT ===== */
.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

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

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

.product-image {
    transition: transform 0.3s ease;
}

/* ===== TIMELINE STYLES ===== */
.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    width: 50%;
    padding: 0 40px;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

.timeline-year {
    position: absolute;
    top: 0;
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: var(--shadow-md);
}

.timeline-item:nth-child(odd) .timeline-year {
    right: -40px;
}

.timeline-item:nth-child(even) .timeline-year {
    left: -40px;
}

.timeline-content {
    background: white;
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.timeline-content:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 80px;
        padding-right: 0;
        text-align: left !important;
    }

    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        left: 0;
    }

    .timeline-year {
        left: 0 !important;
        right: auto !important;
        width: 60px;
        height: 60px;
        font-size: 1rem;
    }
}

/* ===== SHOP HERO SECTION ===== */
.shop-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    position: relative;
    overflow: hidden;
}

.shop-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(0, 182, 122, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(255, 193, 7, 0.1) 0%, transparent 40%);
    z-index: 1;
}

.shop-hero-stat {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.shop-hero-stat:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.shop-hero-stat i {
    font-size: 1.25rem;
}

.shop-hero-stat strong {
    font-size: 1.1rem;
    display: block;
    line-height: 1.2;
}

.shop-hero-stat small {
    font-size: 0.7rem;
    line-height: 1.2;
}

.shop-hero-image {
    animation: heroFloat 4s ease-in-out infinite;
}

@keyframes heroFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* ===== SHOP FILTER PILLS ===== */
.shop-filter-pills {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 2px;
}

.shop-filter-pills::-webkit-scrollbar {
    display: none;
}

.shop-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
    background: var(--bg-light);
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    border: 2px solid transparent;
}

.shop-pill:hover {
    color: var(--primary-color);
    background: rgba(0, 182, 122, 0.08);
    border-color: rgba(0, 182, 122, 0.2);
    transform: translateY(-1px);
}

.shop-pill.active {
    color: white;
    background: var(--gradient-primary);
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 182, 122, 0.3);
}

.shop-search-bar .input-group {
    border-radius: 50px;
    overflow: hidden;
    border: 2px solid #e9ecef;
    transition: border-color 0.3s ease;
}

.shop-search-bar .input-group:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 182, 122, 0.1);
}

.shop-search-bar .form-control,
.shop-search-bar .input-group-text {
    border: none !important;
    box-shadow: none !important;
}

/* ===== SHOP PRODUCT CARDS ===== */
.shop-discount-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #ff4757 0%, #ff6b81 100%);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(255, 71, 87, 0.4);
}

.shop-featured-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #ffc107 0%, #ffdb4d 100%);
    color: #333;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(255, 193, 7, 0.4);
}

.shop-cat-label {
    display: inline-block;
    padding: 0.15rem 0.5rem;
    background: rgba(0, 182, 122, 0.08);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.shop-product-col .product-card {
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.shop-product-col .product-card:hover {
    border-color: rgba(0, 182, 122, 0.2);
}

.shop-product-col .product-overlay {
    opacity: 0;
    transition: opacity 0.3s ease;
    background: rgba(26, 26, 46, 0.6);
    backdrop-filter: blur(4px);
}

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

/* ===== SHOP VIEW TOGGLE ===== */
.shop-view-toggle {
    border-radius: 8px !important;
    border: 2px solid #dee2e6 !important;
    transition: all 0.2s ease;
}

.shop-view-toggle.active {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: white !important;
}

.shop-view-toggle:hover:not(.active) {
    border-color: var(--primary-color) !important;
    color: var(--primary-color) !important;
}

/* List View */
.shop-products-grid.list-view .shop-product-col {
    flex: 0 0 100%;
    max-width: 100%;
}

.shop-products-grid.list-view .product-card {
    flex-direction: row;
}

.shop-products-grid.list-view .product-image-wrapper {
    width: 280px;
    flex-shrink: 0;
    aspect-ratio: auto;
}

.shop-products-grid.list-view .product-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

@media (max-width: 767px) {
    .shop-products-grid.list-view .product-card {
        flex-direction: column;
    }

    .shop-products-grid.list-view .product-image-wrapper {
        width: 100%;
        aspect-ratio: 4/3;
    }
}

/* ===== SHOP TRUST SECTION ===== */
.shop-trust-section {
    padding: 3rem 0;
    background: var(--bg-light);
}

.shop-trust-item {
    padding: 1.5rem 1rem;
}

.shop-trust-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.25rem;
    box-shadow: 0 4px 15px rgba(0, 182, 122, 0.25);
    transition: transform 0.3s ease;
}

.shop-trust-item:hover .shop-trust-icon {
    transform: translateY(-4px) scale(1.05);
}

.shop-trust-item h6 {
    font-weight: 700;
    font-size: 0.95rem;
}

/* ===== SHOP EMPTY STATE ===== */
.shop-empty-state {
    width: 100px;
    height: 100px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.shop-empty-state i {
    font-size: 2.5rem;
    color: var(--text-light);
    opacity: 0.4;
}

/* ===== SHOP RESPONSIVE ===== */
@media (max-width: 991px) {
    .shop-hero-stat {
        padding: 0.5rem 0.75rem;
    }

    .shop-hero-stat strong {
        font-size: 0.95rem;
    }
}

@media (max-width: 767px) {
    .shop-hero {
        padding: 2rem 0;
    }

    .shop-hero h1 {
        font-size: 2rem !important;
    }

    .shop-hero .lead {
        font-size: 1rem;
    }

    .shop-filter-pills {
        gap: 0.5rem;
    }

    .shop-pill {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
    }

    .shop-trust-section {
        padding: 2rem 0;
    }

    .shop-trust-icon {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }
}

/* ===== ANIMATED ICONS ===== */
.fas,
.fab,
.far {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

/* Pulse Animation */
.fa-pulse-hover:hover,
.fas.fa-pulse:hover,
.fab.fa-pulse:hover,
.far.fa-pulse:hover {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* Bounce Animation */
.fa-bounce-hover:hover {
    animation: bounce 1s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Rotate Animation */
.fa-rotate-hover:hover {
    animation: rotate 2s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Shake Animation */
.fa-shake-hover:hover {
    animation: shake 0.5s;
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translateX(-2px);
    }

    20%,
    40%,
    60%,
    80% {
        transform: translateX(2px);
    }
}

/* Fade In Animation */
.fa-fade-hover:hover {
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from {
        opacity: 0.3;
    }

    to {
        opacity: 1;
    }
}

/* Glow Animation */
.fa-glow-hover:hover {
    animation: glow 1.5s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        filter: drop-shadow(0 0 2px rgba(0, 182, 122, 0.3));
        transform: scale(1);
    }

    to {
        filter: drop-shadow(0 0 8px rgba(0, 182, 122, 0.8));
        transform: scale(1.1);
    }
}

/* Swing Animation */
.fa-swing-hover:hover {
    animation: swing 1s ease-in-out;
}

@keyframes swing {
    20% {
        transform: rotate(15deg);
    }

    40% {
        transform: rotate(-10deg);
    }

    60% {
        transform: rotate(5deg);
    }

    80% {
        transform: rotate(-5deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

/* Tada Animation */
.fa-tada-hover:hover {
    animation: tada 1s;
}

@keyframes tada {
    0% {
        transform: scale(1) rotate(0deg);
    }

    10%,
    20% {
        transform: scale(0.9) rotate(-3deg);
    }

    30%,
    50%,
    70%,
    90% {
        transform: scale(1.1) rotate(3deg);
    }

    40%,
    60%,
    80% {
        transform: scale(1.1) rotate(-3deg);
    }

    100% {
        transform: scale(1) rotate(0deg);
    }
}

/* Heart Beat Animation */
.fa-heartbeat-hover:hover {
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0% {
        transform: scale(1);
    }

    14% {
        transform: scale(1.3);
    }

    28% {
        transform: scale(1);
    }

    42% {
        transform: scale(1.3);
    }

    70% {
        transform: scale(1);
    }
}

/* Wobble Animation */
.fa-wobble-hover:hover {
    animation: wobble 1s;
}

@keyframes wobble {
    0% {
        transform: translateX(0%);
    }

    15% {
        transform: translateX(-25%) rotate(-5deg);
    }

    30% {
        transform: translateX(20%) rotate(3deg);
    }

    45% {
        transform: translateX(-15%) rotate(-3deg);
    }

    60% {
        transform: translateX(10%) rotate(2deg);
    }

    75% {
        transform: translateX(-5%) rotate(-1deg);
    }

    100% {
        transform: translateX(0%);
    }
}

/* Float Animation */
.fa-float-hover:hover {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Zoom Animation */
.fa-zoom-hover:hover {
    animation: zoom 0.5s;
}

@keyframes zoom {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

/* Specific Icon Animations */
.fas.fa-search:hover,
.fab.fa-search:hover,
.far.fa-search:hover {
    animation: pulse 1s infinite;
}

.fas.fa-shopping-cart:hover,
.fab.fa-shopping-cart:hover,
.far.fa-shopping-cart:hover {
    animation: bounce 1s;
}

.fas.fa-user:hover,
.fab.fa-user:hover,
.far.fa-user:hover {
    animation: pulse 1.5s infinite;
}

.fas.fa-heart:hover,
.fab.fa-heart:hover,
.far.fa-heart:hover {
    animation: heartbeat 1.3s ease-in-out infinite;
}

.fas.fa-star:hover,
.fab.fa-star:hover,
.far.fa-star:hover {
    animation: glow 1s ease-in-out infinite alternate;
}

.fas.fa-bolt:hover,
.fab.fa-bolt:hover,
.far.fa-bolt:hover {
    animation: flash 0.8s;
}

.fas.fa-mobile-alt:hover,
.fab.fa-mobile-alt:hover,
.far.fa-mobile-alt:hover {
    animation: shake 0.5s;
}

.fas.fa-qrcode:hover,
.fab.fa-qrcode:hover,
.far.fa-qrcode:hover {
    animation: rotate 2s linear infinite;
}

.fas.fa-truck:hover,
.fab.fa-truck:hover,
.far.fa-truck:hover {
    animation: tada 1s;
}

.fas.fa-phone:hover,
.fab.fa-phone:hover,
.far.fa-phone:hover {
    animation: pulse 1.2s infinite;
}

.fas.fa-envelope:hover,
.fab.fa-envelope:hover,
.far.fa-envelope:hover {
    animation: bounce 1.2s infinite;
}

.fas.fa-check:hover,
.fab.fa-check:hover,
.far.fa-check:hover {
    animation: zoom 0.6s;
}

.fas.fa-arrow-right:hover,
.fab.fa-arrow-right:hover,
.far.fa-arrow-right:hover {
    animation: slideRight 0.8s;
}

.fas.fa-arrow-left:hover,
.fab.fa-arrow-left:hover,
.far.fa-arrow-left:hover {
    animation: slideLeft 0.8s;
}

.fas.fa-arrow-up:hover,
.fab.fa-arrow-up:hover,
.far.fa-arrow-up:hover {
    animation: slideUp 0.8s;
}

.fas.fa-arrow-down:hover,
.fab.fa-arrow-down:hover,
.far.fa-arrow-down:hover {
    animation: slideDown 0.8s;
}

.fas.fa-brain:hover,
.fab.fa-brain:hover,
.far.fa-brain:hover {
    animation: glow 2s ease-in-out infinite alternate;
}

.fas.fa-cogs:hover,
.fab.fa-cogs:hover,
.far.fa-cogs:hover {
    animation: rotate 3s linear infinite;
}

.fas.fa-chart-line:hover,
.fab.fa-chart-line:hover,
.far.fa-chart-line:hover {
    animation: float 2s ease-in-out infinite;
}

.fas.fa-shield-alt:hover,
.fab.fa-shield-alt:hover,
.far.fa-shield-alt:hover {
    animation: pulse 1.8s infinite;
}

.fas.fa-sync:hover,
.fab.fa-sync:hover,
.far.fa-sync:hover {
    animation: rotate 1.5s linear infinite;
}

.fas.fa-users:hover,
.fab.fa-users:hover,
.far.fa-users:hover {
    animation: bounce 1.5s infinite;
}

.fas.fa-rocket:hover,
.fab.fa-rocket:hover,
.far.fa-rocket:hover {
    animation: tada 1.2s;
}

.fas.fa-exclamation-triangle:hover,
.fab.fa-exclamation-triangle:hover,
.far.fa-exclamation-triangle:hover {
    animation: shake 0.6s;
}

.fas.fa-clock:hover,
.fab.fa-clock:hover,
.far.fa-clock:hover {
    animation: rotate 4s linear infinite;
}

.fas.fa-calendar:hover,
.fab.fa-calendar:hover,
.far.fa-calendar:hover {
    animation: bounce 1.3s;
}

.fas.fa-comment:hover,
.fab.fa-comment:hover,
.far.fa-comment:hover {
    animation: pulse 1.4s infinite;
}

.fas.fa-share:hover,
.fab.fa-share:hover,
.far.fa-share:hover {
    animation: zoom 0.7s;
}

.fas.fa-download:hover,
.fab.fa-download:hover,
.far.fa-download:hover {
    animation: slideDown 0.9s;
}

.fas.fa-upload:hover,
.fab.fa-upload:hover,
.far.fa-upload:hover {
    animation: slideUp 0.9s;
}

.fas.fa-edit:hover,
.fab.fa-edit:hover,
.far.fa-edit:hover {
    animation: wobble 0.8s;
}

.fas.fa-trash:hover,
.fab.fa-trash:hover,
.far.fa-trash:hover {
    animation: shake 0.5s;
}

.fas.fa-plus:hover,
.fab.fa-plus:hover,
.far.fa-plus:hover {
    animation: zoom 0.6s;
}

.fas.fa-minus:hover,
.fab.fa-minus:hover,
.far.fa-minus:hover {
    animation: pulse 1s;
}

.fas.fa-times:hover,
.fab.fa-times:hover,
.far.fa-times:hover {
    animation: rotate 0.5s;
}

.fas.fa-bars:hover,
.fab.fa-bars:hover,
.far.fa-bars:hover {
    animation: shake 0.4s;
}

.fas.fa-home:hover,
.fab.fa-home:hover,
.far.fa-home:hover {
    animation: bounce 1s;
}

.fas.fa-info:hover,
.fab.fa-info:hover,
.far.fa-info:hover {
    animation: pulse 1.5s infinite;
}

.fas.fa-question:hover,
.fab.fa-question:hover,
.far.fa-question:hover {
    animation: wobble 1s;
}

.fas.fa-play:hover,
.fab.fa-play:hover,
.far.fa-play:hover {
    animation: zoom 0.8s;
}

.fas.fa-pause:hover,
.fab.fa-pause:hover,
.far.fa-pause:hover {
    animation: pulse 1.2s infinite;
}

.fas.fa-stop:hover,
.fab.fa-stop:hover,
.far.fa-stop:hover {
    animation: shake 0.6s;
}

.fas.fa-forward:hover,
.fab.fa-forward:hover,
.far.fa-forward:hover {
    animation: slideRight 0.7s;
}

.fas.fa-backward:hover,
.fab.fa-backward:hover,
.far.fa-backward:hover {
    animation: slideLeft 0.7s;
}

.fas.fa-refresh:hover,
.fab.fa-refresh:hover,
.far.fa-refresh:hover {
    animation: rotate 1s linear infinite;
}

.fas.fa-expand:hover,
.fab.fa-expand:hover,
.far.fa-expand:hover {
    animation: zoom 0.9s;
}

.fas.fa-compress:hover,
.fab.fa-compress:hover,
.far.fa-compress:hover {
    animation: zoom 0.9s;
}

.fas.fa-lock:hover,
.fab.fa-lock:hover,
.far.fa-lock:hover {
    animation: shake 0.5s;
}

.fas.fa-unlock:hover,
.fab.fa-unlock:hover,
.far.fa-unlock:hover {
    animation: bounce 0.8s;
}

.fas.fa-eye:hover,
.fab.fa-eye:hover,
.far.fa-eye:hover {
    animation: pulse 1.3s infinite;
}

.fas.fa-eye-slash:hover,
.fab.fa-eye-slash:hover,
.far.fa-eye-slash:hover {
    animation: shake 0.6s;
}

.fas.fa-copy:hover,
.fab.fa-copy:hover,
.far.fa-copy:hover {
    animation: zoom 0.7s;
}

.fas.fa-paste:hover,
.fab.fa-paste:hover,
.far.fa-paste:hover {
    animation: slideDown 0.8s;
}

.fas.fa-cut:hover,
.fab.fa-cut:hover,
.far.fa-cut:hover {
    animation: shake 0.5s;
}

.fas.fa-save:hover,
.fab.fa-save:hover,
.far.fa-save:hover {
    animation: bounce 1.1s;
}

.fas.fa-print:hover,
.fab.fa-print:hover,
.far.fa-print:hover {
    animation: pulse 1.4s infinite;
}

.fas.fa-camera:hover,
.fab.fa-camera:hover,
.far.fa-camera:hover {
    animation: flash 0.8s;
}

.fas.fa-video:hover,
.fab.fa-video:hover,
.far.fa-video:hover {
    animation: pulse 1.6s infinite;
}

.fas.fa-music:hover,
.fab.fa-music:hover,
.far.fa-music:hover {
    animation: bounce 1.4s infinite;
}

.fas.fa-volume-up:hover,
.fab.fa-volume-up:hover,
.far.fa-volume-up:hover {
    animation: pulse 1.2s infinite;
}

.fas.fa-volume-down:hover,
.fab.fa-volume-down:hover,
.far.fa-volume-down:hover {
    animation: pulse 1.2s infinite;
}

.fas.fa-volume-mute:hover,
.fab.fa-volume-mute:hover,
.far.fa-volume-mute:hover {
    animation: shake 0.6s;
}

.fas.fa-microphone:hover,
.fab.fa-microphone:hover,
.far.fa-microphone:hover {
    animation: pulse 1.5s infinite;
}

.fas.fa-microphone-slash:hover,
.fab.fa-microphone-slash:hover,
.far.fa-microphone-slash:hover {
    animation: shake 0.7s;
}

.fas.fa-map-marker:hover,
.fab.fa-map-marker:hover,
.far.fa-map-marker:hover {
    animation: bounce 1.3s infinite;
}

.fas.fa-map:hover,
.fab.fa-map:hover,
.far.fa-map:hover {
    animation: zoom 1s;
}

.fas.fa-globe:hover,
.fab.fa-globe:hover,
.far.fa-globe:hover {
    animation: rotate 8s linear infinite;
}

.fas.fa-wifi:hover,
.fab.fa-wifi:hover,
.far.fa-wifi:hover {
    animation: pulse 1.8s infinite;
}

.fas.fa-bluetooth:hover,
.fab.fa-bluetooth:hover,
.far.fa-bluetooth:hover {
    animation: pulse 2s infinite;
}

.fas.fa-usb:hover,
.fab.fa-usb:hover,
.far.fa-usb:hover {
    animation: shake 0.5s;
}

.fas.fa-plug:hover,
.fab.fa-plug:hover,
.far.fa-plug:hover {
    animation: pulse 1.3s infinite;
}

.fas.fa-battery:hover,
.fab.fa-battery:hover,
.far.fa-battery:hover {
    animation: pulse 2.5s infinite;
}

.fas.fa-signal:hover,
.fab.fa-signal:hover,
.far.fa-signal:hover {
    animation: pulse 1.7s infinite;
}

.fas.fa-sun:hover,
.fab.fa-sun:hover,
.far.fa-sun:hover {
    animation: rotate 10s linear infinite;
}

.fas.fa-moon:hover,
.fab.fa-moon:hover,
.far.fa-moon:hover {
    animation: pulse 3s infinite;
}

.fas.fa-cloud:hover,
.fab.fa-cloud:hover,
.far.fa-cloud:hover {
    animation: float 3s ease-in-out infinite;
}

.fas.fa-cloud-download:hover,
.fab.fa-cloud-download:hover,
.far.fa-cloud-download:hover {
    animation: slideDown 1.2s infinite;
}

.fas.fa-cloud-upload:hover,
.fab.fa-cloud-upload:hover,
.far.fa-cloud-upload:hover {
    animation: slideUp 1.2s infinite;
}

.fas.fa-umbrella:hover,
.fab.fa-umbrella:hover,
.far.fa-umbrella:hover {
    animation: shake 0.8s;
}

.fas.fa-tint:hover,
.fab.fa-tint:hover,
.far.fa-tint:hover {
    animation: pulse 1.9s infinite;
}

.fas.fa-fire:hover,
.fab.fa-fire:hover,
.far.fa-fire:hover {
    animation: glow 1.5s ease-in-out infinite alternate;
}

.fas.fa-lightbulb:hover,
.fab.fa-lightbulb:hover,
.far.fa-lightbulb:hover {
    animation: glow 2s ease-in-out infinite alternate;
}

.fas.fa-bell:hover,
.fab.fa-bell:hover,
.far.fa-bell:hover {
    animation: shake 0.6s;
}

.fas.fa-book:hover,
.fab.fa-book:hover,
.far.fa-book:hover {
    animation: bounce 1.2s;
}

.fas.fa-bookmark:hover,
.fab.fa-bookmark:hover,
.far.fa-bookmark:hover {
    animation: pulse 1.4s infinite;
}

.fas.fa-tag:hover,
.fab.fa-tag:hover,
.far.fa-tag:hover {
    animation: zoom 0.8s;
}

.fas.fa-tags:hover,
.fab.fa-tags:hover,
.far.fa-tags:hover {
    animation: bounce 1.1s infinite;
}

.fas.fa-certificate:hover,
.fab.fa-certificate:hover,
.far.fa-certificate:hover {
    animation: glow 1.8s ease-in-out infinite alternate;
}

.fas.fa-trophy:hover,
.fab.fa-trophy:hover,
.far.fa-trophy:hover {
    animation: tada 1.5s;
}

.fas.fa-medal:hover,
.fab.fa-medal:hover,
.far.fa-medal:hover {
    animation: bounce 1.4s infinite;
}

.fas.fa-crown:hover,
.fab.fa-crown:hover,
.far.fa-crown:hover {
    animation: glow 2s ease-in-out infinite alternate;
}

.fas.fa-gem:hover,
.fab.fa-gem:hover,
.far.fa-gem:hover {
    animation: pulse 1.6s infinite;
}

.fas.fa-coins:hover,
.fab.fa-coins:hover,
.far.fa-coins:hover {
    animation: bounce 1.3s infinite;
}

.fas.fa-credit-card:hover,
.fab.fa-credit-card:hover,
.far.fa-credit-card:hover {
    animation: slideRight 0.9s;
}

.fas.fa-money-bill:hover,
.fab.fa-money-bill:hover,
.far.fa-money-bill:hover {
    animation: bounce 1.2s infinite;
}

.fas.fa-piggy-bank:hover,
.fab.fa-piggy-bank:hover,
.far.fa-piggy-bank:hover {
    animation: pulse 1.7s infinite;
}

.fas.fa-shopping-bag:hover,
.fab.fa-shopping-bag:hover,
.far.fa-shopping-bag:hover {
    animation: bounce 1.1s;
}

.fas.fa-shopping-basket:hover,
.fab.fa-shopping-basket:hover,
.far.fa-shopping-basket:hover {
    animation: bounce 1.3s infinite;
}

.fas.fa-gift:hover,
.fab.fa-gift:hover,
.far.fa-gift:hover {
    animation: tada 1.4s;
}

.fas.fa-birthday-cake:hover,
.fab.fa-birthday-cake:hover,
.far.fa-birthday-cake:hover {
    animation: pulse 2s infinite;
}

.fas.fa-plane:hover,
.fab.fa-plane:hover,
.far.fa-plane:hover {
    animation: float 4s ease-in-out infinite;
}

.fas.fa-car:hover,
.fab.fa-car:hover,
.far.fa-car:hover {
    animation: bounce 1.5s infinite;
}

.fas.fa-train:hover,
.fab.fa-train:hover,
.far.fa-train:hover {
    animation: slideRight 2s infinite;
}

.fas.fa-ship:hover,
.fab.fa-ship:hover,
.far.fa-ship:hover {
    animation: float 3s ease-in-out infinite;
}

.fas.fa-bicycle:hover,
.fab.fa-bicycle:hover,
.far.fa-bicycle:hover {
    animation: bounce 1.8s infinite;
}

.fas.fa-motorcycle:hover,
.fab.fa-motorcycle:hover,
.far.fa-motorcycle:hover {
    animation: bounce 1.6s infinite;
}

.fas.fa-bus:hover,
.fab.fa-bus:hover,
.far.fa-bus:hover {
    animation: bounce 2s infinite;
}

.fas.fa-subway:hover,
.fab.fa-subway:hover,
.far.fa-subway:hover {
    animation: slideRight 1.5s infinite;
}

.fas.fa-taxi:hover,
.fab.fa-taxi:hover,
.far.fa-taxi:hover {
    animation: bounce 1.4s infinite;
}

.fas.fa-hotel:hover,
.fab.fa-hotel:hover,
.far.fa-hotel:hover {
    animation: pulse 1.9s infinite;
}

.fas.fa-bed:hover,
.fab.fa-bed:hover,
.far.fa-bed:hover {
    animation: bounce 1.3s infinite;
}

.fas.fa-utensils:hover,
.fab.fa-utensils:hover,
.far.fa-utensils:hover {
    animation: shake 0.7s;
}

.fas.fa-coffee:hover,
.fab.fa-coffee:hover,
.far.fa-coffee:hover {
    animation: pulse 1.5s infinite;
}

.fas.fa-glass-cheers:hover,
.fab.fa-glass-cheers:hover,
.far.fa-glass-cheers:hover {
    animation: bounce 1.2s infinite;
}

.fas.fa-football-ball:hover,
.fab.fa-football-ball:hover,
.far.fa-football-ball:hover {
    animation: bounce 1.8s infinite;
}

.fas.fa-basketball-ball:hover,
.fab.fa-basketball-ball:hover,
.far.fa-basketball-ball:hover {
    animation: bounce 2s infinite;
}

.fas.fa-baseball-ball:hover,
.fab.fa-baseball-ball:hover,
.far.fa-baseball-ball:hover {
    animation: bounce 1.6s infinite;
}

.fas.fa-tennis-ball:hover,
.fab.fa-tennis-ball:hover,
.far.fa-tennis-ball:hover {
    animation: bounce 1.4s infinite;
}

.fas.fa-bowling-ball:hover,
.fab.fa-bowling-ball:hover,
.far.fa-bowling-ball:hover {
    animation: bounce 1.9s infinite;
}

/* Additional Animations */
@keyframes flash {

    0%,
    50%,
    100% {
        opacity: 1;
    }

    25%,
    75% {
        opacity: 0.5;
    }
}

@keyframes slideRight {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(5px);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes slideLeft {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-5px);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes slideUp {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes slideDown {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(5px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Button Icon Animations */
.btn:hover .fas,
.btn:hover .fab,
.btn:hover .far {
    animation: zoom 0.3s;
}

/* Card Icon Animations */
.card:hover .fas,
.card:hover .fab,
.card:hover .far {
    animation: float 2s ease-in-out infinite;
}

/* Navigation Icon Animations */
.nav-link:hover .fas,
.nav-link:hover .fab,
.nav-link:hover .far {
    animation: bounce 0.8s;
}

/* Feature Icon Animations */
.feature-icon:hover {
    animation: pulse 1.5s infinite;
}

/* Social Media Icon Animations */
.social-icon:hover {
    animation: tada 0.8s;
}

/* Loading Icon Animation */
.fa-spin {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Responsive Icon Animations */
@media (max-width: 767px) {

    .fas:hover,
    .fab:hover,
    .far:hover {
        animation-duration: 0.5s;
    }
}

/* ===== MOBILE SHOPPING UX POLISH ===== */
@media (max-width: 991.98px) {
    .section-padding {
        padding: 2.5rem 0;
    }

    .breadcrumb {
        font-size: 0.85rem;
        flex-wrap: wrap;
    }

    .display-4,
    .display-5 {
        font-size: 2rem !important;
        line-height: 1.2;
    }

    .sticky-top {
        position: static !important;
        top: auto !important;
    }

    /* Product listing cards */
    .product-card {
        border-radius: 14px;
    }

    .product-content {
        padding: 1rem;
    }

    .product-title {
        font-size: 1rem;
        line-height: 1.35;
        margin-bottom: 0.4rem;
    }

    .product-price {
        font-size: 1.25rem;
    }

    .product-price .original {
        font-size: 0.9rem;
    }

    .product-content .btn {
        min-height: 42px;
        font-size: 0.82rem;
        padding: 0.65rem 1rem;
    }

    /* Shop page */
    .shop-hero {
        padding: 2rem 0;
    }

    .shop-hero .lead {
        font-size: 1rem;
    }

    /* Product details page */
    #mainProductImage {
        max-height: 320px !important;
    }

    #personalizeCard .card-body {
        padding: 1rem !important;
    }

    #personalizeCard .input-group .input-group-text,
    #personalizeCard .input-group .form-control {
        height: 44px;
    }

    #personalizeCard .btn-lg {
        min-height: 44px;
    }

    /* Cart page */
    .cart-table td img {
        width: 52px !important;
        height: 52px !important;
    }

    .cart-table h6 {
        font-size: 0.98rem;
    }

    .cart-qty-group .btn,
    .cart-qty-group .form-control {
        height: 40px;
    }

    .cart-table td {
        white-space: nowrap;
    }

    .cart-table td:first-child {
        white-space: normal;
    }

    /* Checkout page */
    .checkout-progress {
        overflow-x: auto;
        gap: 1rem;
        padding-bottom: 0.5rem;
    }

    .checkout-progress::before {
        min-width: 560px;
    }

    .progress-step {
        min-width: 120px;
    }

    .checkout-section {
        padding: 1.15rem;
        border-radius: 14px;
        margin-bottom: 1rem;
    }

    .section-title {
        font-size: 1.1rem;
    }

    .checkout-product {
        padding: 1rem;
    }

    .checkout-product-image {
        width: 64px;
        height: 64px;
    }

    .order-summary {
        padding: 1.15rem;
        border-radius: 14px;
        margin-top: 0.5rem;
    }

    .summary-header {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .summary-total {
        margin: 1rem -1.15rem -1.15rem -1.15rem;
        padding: 1rem 1.15rem;
    }

    .coupon-input-group {
        flex-direction: column;
    }

    .coupon-btn {
        width: 100%;
    }

    .btn-checkout {
        min-height: 48px;
        font-size: 1rem;
        padding: 0.95rem 1.2rem;
    }
}

@media (max-width: 767.98px) {

    /* Products/category listing */
    .col-md-6.col-xl-4,
    .col-md-6.col-lg-4,
    .col-md-6.col-lg-4.col-xl-3 {
        max-width: 100%;
        flex: 0 0 100%;
    }

    .card-body .btn,
    .btn {
        letter-spacing: 0.2px;
    }

    /* Payment page */
    #paymentForm .btn-lg {
        min-height: 48px;
        font-size: 1rem;
    }

    /* Order confirmation */
    .d-inline-block.bg-white.rounded.p-3.shadow-sm {
        display: block !important;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
        max-width: 380px;
    }
}