/* 
 * EV Accessories - Premium Frontend Styles
 * Enhanced UI with premium, symmetric and professional design
 */

/* ========== CSS VARIABLES ========== */
:root {
    /* Primary Colors */
    --primary-color: #0D4F38;
    --primary-light: #147a5a;
    --primary-dark: #083628;
    --secondary-color: #D4AF37;
    --secondary-light: #e5c156;
    --secondary-dark: #b8962e;
    
    /* Neutral Colors */
    --accent-color: #1A1A2E;
    --dark-color: #16213E;
    --light-color: #F8F9FA;
    --white: #FFFFFF;
    --off-white: #F5F5F5;
    
    /* Status Colors */
    --success-color: #28A745;
    --success-light: #d4edda;
    --warning-color: #FFC107;
    --danger-color: #DC3545;
    --info-color: #17A2B8;
    
    /* Text Colors */
    --text-primary: #1A1A2E;
    --text-secondary: #4A4A68;
    --text-muted: #6C757D;
    --text-light: #ADB5BD;
    
    /* Backgrounds */
    --bg-light: #F8F9FA;
    --bg-dark: #1A1A2E;
    --bg-card: #FFFFFF;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);
    --shadow-primary: 0 4px 20px rgba(13, 79, 56, 0.25);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0D4F38 0%, #147a5a 100%);
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #e5c156 100%);
    --gradient-dark: linear-gradient(135deg, #1A1A2E 0%, #16213E 100%);
    --gradient-hero: linear-gradient(135deg, rgba(13, 79, 56, 0.95) 0%, rgba(20, 122, 90, 0.9) 100%);
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ========== BASE STYLES ========== */
body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-primary);
    background-color: var(--bg-light);
    line-height: 1.6;
    font-weight: 400;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition-normal);
}

a:hover {
    color: var(--primary-light);
}

p {
    margin-bottom: 1rem;
}

/* ========== TOP HEADER ========== */
.top-header {
    background: var(--gradient-primary);
    padding: 10px 0;
    font-size: 0.875rem;
    position: relative;
    overflow: hidden;
}

.top-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(0); }
    100% { transform: translateX(50%); }
}

.top-header .container {
    position: relative;
    z-index: 1;
}

.top-header span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.top-header a {
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.1);
    transition: var(--transition-normal);
}

.top-header a:hover {
    background: rgba(255,255,255,0.2);
    color: var(--white);
}

/* ========== NAVBAR ========== */
.navbar {
    background: var(--white) !important;
    box-shadow: var(--shadow-md);
    padding: 12px 0;
    transition: var(--transition-normal);
}

.navbar.scrolled {
    padding: 8px 0;
    box-shadow: var(--shadow-lg);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color) !important;
    padding: 0;
}

.navbar-brand img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-normal);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.navbar-brand:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
}

.navbar-brand span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-toggler {
    border: none;
    padding: 8px 12px;
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler-icon {
    background-image: none !important;
    position: relative;
    width: 24px;
    height: 18px;
    cursor: pointer;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after,
.navbar-toggler-icon span {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: var(--transition-normal);
}

.navbar-toggler-icon::before { top: 0; }
.navbar-toggler-icon span { top: 8px; }
.navbar-toggler-icon::after { top: 16px; }

.nav-link {
    font-weight: 500;
    color: var(--text-secondary) !important;
    padding: 10px 16px !important;
    border-radius: var(--radius-md);
    position: relative;
    transition: var(--transition-normal);
    font-size: 0.9rem;
    letter-spacing: 0.3px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition-normal);
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
    background: rgba(13, 79, 56, 0.05);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: calc(100% - 32px);
}

/* Cart Button */
.nav-link.cart-btn {
    background: var(--gradient-primary) !important;
    color: var(--white) !important;
    padding: 10px 20px !important;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-primary);
    transition: var(--transition-normal);
}

.nav-link.cart-btn::after {
    display: none;
}

.nav-link.cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(13, 79, 56, 0.35);
}

.cart-badge {
    background: var(--secondary-color);
    color: var(--accent-color);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: var(--radius-full);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* ========== BUTTONS ========== */
.btn {
    font-weight: 600;
    padding: 12px 28px;
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--gradient-primary);
    border-color: var(--primary-color);
    color: var(--white);
    box-shadow: var(--shadow-primary);
}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--primary-light);
    border-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(13, 79, 56, 0.35);
    color: var(--white);
}

.btn-secondary {
    background: var(--gradient-gold);
    border-color: var(--secondary-color);
    color: var(--accent-color);
}

.btn-secondary:hover,
.btn-secondary:focus {
    background: var(--secondary-light);
    border-color: var(--secondary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.35);
    color: var(--accent-color);
}

.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-light {
    border-color: var(--white);
    color: var(--white);
    background: transparent;
}

.btn-outline-light:hover,
.btn-outline-light:focus {
    background: var(--white);
    border-color: var(--white);
    color: var(--primary-color);
}

.btn-success {
    background: var(--success-color);
    border-color: var(--success-color);
}

.btn-success:hover {
    background: #218838;
    border-color: #218838;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
}

/* ========== CARDS ========== */
.card {
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    background: var(--bg-card);
    overflow: hidden;
}

.card:hover {
    box-shadow: var(--shadow-md);
}

.card-header {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 16px 24px;
    font-weight: 600;
}

.card-body {
    padding: 24px;
}

/* ========== PRODUCT CARDS ========== */
.product-card {
    border: none;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.product-card .card-img-top {
    height: 220px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.product-card:hover .card-img-top {
    transform: scale(1.08);
}

.product-card .card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card .card-title {
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
    color: var(--text-primary);
}

.product-card .card-title a {
    color: inherit;
}

.product-card .card-title a:hover {
    color: var(--primary-color);
}

.product-card .price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Category Card */
.category-card {
    border: none;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.category-card .card-img-top {
    height: 160px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.category-card:hover .card-img-top {
    transform: scale(1.1);
}

.category-card .card-body {
    padding: 20px;
    text-align: center;
    background: var(--white);
}

.category-card .card-title {
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-primary);
}

/* Featured Product Card */
.featured-product-card {
    border: none;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.featured-product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.featured-product-card .product-image-wrapper {
    position: relative;
    padding-top: 70%;
    overflow: hidden;
    background: var(--white);
}

.featured-product-card .product-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
    transition: transform 0.5s ease;
}

.featured-product-card:hover .product-image-wrapper img {
    transform: scale(1.08);
}

.featured-product-card .product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.featured-product-card .badge-discount {
    background: var(--gradient-gold);
    color: var(--accent-color);
}

.featured-product-card .badge-new {
    background: var(--gradient-primary);
    color: var(--white);
}

.featured-product-card .product-actions {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transform: translateX(20px);
    transition: var(--transition-normal);
    z-index: 2;
}

.featured-product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.featured-product-card .product-action-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: var(--white);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    cursor: pointer;
    font-size: 1rem;
}

.featured-product-card .product-action-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.featured-product-card .product-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.featured-product-card .product-category {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(13, 79, 56, 0.1);
    color: var(--primary-color);
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    align-self: flex-start;
}

.featured-product-card .product-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.4;
}

.featured-product-card .current-price {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-color);
}

.featured-product-card .original-price {
    font-size: 0.95rem;
    color: var(--text-light);
    text-decoration: line-through;
    margin-left: 10px;
}

.featured-product-card .stock-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

.featured-product-card .stock-badge.in-stock {
    background: rgba(40, 167, 69, 0.1);
    color: var(--success-color);
}

.featured-product-card .stock-badge.out-of-stock {
    background: rgba(220, 53, 69, 0.1);
    color: var(--danger-color);
}

.featured-product-card .add-to-cart-btn {
    width: 100%;
    padding: 14px 24px;
    border: none;
    border-radius: var(--radius-full);
    background: var(--gradient-primary);
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition-normal);
    cursor: pointer;
    margin-top: auto;
    box-shadow: var(--shadow-primary);
}

.featured-product-card .add-to-cart-btn:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(13, 79, 56, 0.35);
}

/* ========== FORMS ========== */
.form-control,
.form-select {
    border: 2px solid #E8E8E8;
    border-radius: var(--radius-md);
    padding: 14px 18px;
    font-size: 0.95rem;
    transition: var(--transition-normal);
    background: var(--white);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(13, 79, 56, 0.1);
    outline: none;
}

.form-control::placeholder {
    color: var(--text-light);
}

.form-label {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    font-size: 0.9rem;
}

/* ========== QUANTITY SELECTOR ========== */
.quantity-selector {
    display: flex;
    align-items: center;
    gap: 0;
    background: var(--off-white);
    border-radius: var(--radius-full);
    overflow: hidden;
    width: fit-content;
}

.quantity-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

.quantity-input {
    width: 60px;
    text-align: center;
    border: none;
    background: transparent;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1rem;
}

.quantity-input:focus {
    outline: none;
}

/* ========== HERO SECTION ========== */
.hero-section {
    background: var(--gradient-hero);
    padding: 120px 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(255,255,255,0.08) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-20px, 20px) rotate(5deg); }
}

.hero-section .display-4 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-section .lead {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

/* Hero Banner */
#heroCarousel .carousel-item,
#heroCarousel .hero-banner-item {
    min-height: 650px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

#heroCarousel .carousel-item::before,
#heroCarousel .hero-banner-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-hero);
    opacity: 0.85;
}

#heroCarousel .carousel-caption {
    position: relative;
    z-index: 2;
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
}

#heroCarousel .carousel-control-prev,
#heroCarousel .carousel-control-next {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.9;
    z-index: 3;
}

#heroCarousel .carousel-control-prev {
    left: 20px;
}

#heroCarousel .carousel-control-next {
    right: 20px;
}

#heroCarousel .carousel-control-prev-icon,
#heroCarousel .carousel-control-next-icon {
    background-image: none;
    position: relative;
}

#heroCarousel .carousel-control-prev-icon::before,
#heroCarousel .carousel-control-next-icon::before {
    content: '\f104';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary-color);
    font-size: 1.2rem;
}

#heroCarousel .carousel-control-next-icon::before {
    content: '\f105';
}

/* ========== SECTIONS ========== */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
}

/* ========== WHY CHOOSE US ========== */
.why-choose-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    height: 100%;
}

.why-choose-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.why-choose-card .icon-wrapper {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 8px 25px rgba(13, 79, 56, 0.3);
}

.why-choose-card .icon-wrapper i {
    font-size: 1.75rem;
    color: var(--white);
}

.why-choose-card h5 {
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.why-choose-card p {
    color: var(--text-muted);
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* ========== CTA SECTION ========== */
.cta-section {
    background: var(--gradient-primary);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
}

.cta-section h2 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-section p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--accent-color);
    color: rgba(255,255,255,0.85);
    padding: 80px 0 30px;
}

.footer h5 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.footer p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
}

.footer a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition-normal);
    display: inline-block;
    padding: 4px 0;
}

.footer a:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.footer .social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer .social-links a {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
    transform: none;
}

.footer .social-links a:hover {
    background: var(--secondary-color);
    color: var(--accent-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    margin-top: 50px;
}

.footer-bottom p {
    margin-bottom: 0;
    color: rgba(255,255,255,0.6);
}

/* ========== PAGE HEADER ========== */
.page-header {
    background: var(--gradient-hero);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-header h2 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 8px;
    position: relative;
}

.page-header .breadcrumb {
    position: relative;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    color: rgba(255,255,255,0.8);
    font-weight: 500;
}

.page-header .breadcrumb-item.active {
    color: var(--white);
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.6);
}

/* ========== BREADCRUMB ========== */
.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '/';
    color: var(--text-muted);
    padding: 0 8px;
}

.breadcrumb-item a {
    color: var(--primary-color);
    font-weight: 500;
}

.breadcrumb-item.active {
    color: var(--text-muted);
}

/* ========== ALERTS ========== */
.alert {
    border: none;
    border-radius: var(--radius-md);
    padding: 16px 20px;
    font-weight: 500;
}

.alert-success {
    background: var(--success-light);
    color: #155724;
}

.alert-info {
    background: #d1ecf1;
    color: #0c5460;
}

.alert-warning {
    background: #fff3cd;
    color: #856404;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
}

/* ========== TOAST NOTIFICATIONS ========== */
.toast-container {
    z-index: 9999;
}

.toast {
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.toast-header {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 14px 18px;
    font-weight: 600;
}

.toast-header .btn-close {
    filter: invert(1);
}

.toast-body {
    background: var(--white);
    padding: 18px;
}

/* ========== TABLES ========== */
.table {
    margin-bottom: 0;
}

.table thead th {
    background: var(--off-white);
    border-bottom: 2px solid #E8E8E8;
    color: var(--text-primary);
    font-weight: 600;
    padding: 16px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.table tbody td {
    padding: 16px;
    vertical-align: middle;
    border-bottom: 1px solid #F0F0F0;
}

.table tbody tr:hover {
    background: var(--off-white);
}

/* ========== PAGINATION ========== */
.pagination {
    margin: 0;
    gap: 8px;
}

.page-link {
    border: none;
    border-radius: var(--radius-md);
    padding: 10px 16px;
    color: var(--text-secondary);
    font-weight: 500;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.page-link:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.page-item.active .page-link {
    background: var(--gradient-primary);
    color: var(--white);
}

.page-item.disabled .page-link {
    background: var(--off-white);
    color: var(--text-light);
}

/* ========== FILTERS SIDEBAR ========== */
.filter-card {
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.filter-card .card-header {
    background: var(--gradient-primary);
    padding: 16px 20px;
    font-weight: 600;
}

.filter-card .card-body {
    padding: 20px;
}

.category-filter-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: var(--radius-md);
    color: var(--text-primary);
    text-decoration: none;
    border: 1px solid transparent;
    margin-bottom: 8px;
    transition: var(--transition-normal);
}

.category-filter-link:hover,
.category-filter-link.active {
    background: rgba(13, 79, 56, 0.08);
    border-color: rgba(13, 79, 56, 0.2);
    color: var(--primary-color);
}

.price-range-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(11, 81, 58, 0.18);
}

.shop-toolbar-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.shop-toolbar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.shop-toolbar-item .form-select {
    min-width: 80px;
}

.shop-grid-switch {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.shop-grid-switch a {
    width: 34px;
    height: 34px;
    border-radius: var(--radius-sm);
    border: 1px solid #d9e4df;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    background: var(--white);
}

.shop-grid-switch a:hover,
.shop-grid-switch a.active {
    border-color: var(--primary-color);
    color: var(--white);
    background: var(--primary-color);
}

.shop-sort-select {
    min-width: 230px;
}

/* ========== STATS SECTION ========== */
.stats-section {
    background: var(--gradient-dark);
    padding: 80px 0;
    color: var(--white);
}

.stats-item {
    text-align: center;
    padding: 20px;
}

.stats-item h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 8px;
    line-height: 1;
}

.stats-item p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========== SUCCESS PAGE ========== */
.success-icon {
    width: 120px;
    height: 120px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 10px 40px rgba(13, 79, 56, 0.3);
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

.success-icon i {
    font-size: 3.5rem;
    color: var(--white);
}

/* ========== CONTACT PAGE ========== */
.contact-info-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    height: 100%;
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.contact-info-card .icon-wrapper {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-info-card .icon-wrapper i {
    font-size: 1.5rem;
    color: var(--white);
}

.contact-info-card h5 {
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-info-card p {
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Map placeholder */
.map-placeholder {
    background: var(--off-white);
    border-radius: var(--radius-xl);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

.featured-product-card {
    animation: fadeInUp 0.5s ease forwards;
}

.featured-product-card:nth-child(1) { animation-delay: 0.1s; }
.featured-product-card:nth-child(2) { animation-delay: 0.2s; }
.featured-product-card:nth-child(3) { animation-delay: 0.3s; }
.featured-product-card:nth-child(4) { animation-delay: 0.4s; }

/* ========== RESPONSIVE STYLES ========== */

/* Extra small devices (phones, less than 576px) */
@media (max-width: 575.98px) {
    .top-header {
        display: none !important;
    }
    
    .hero-section {
        padding: 80px 0;
    }
    
    .hero-section .display-4 {
        font-size: 1.75rem !important;
    }
    
    .hero-section .lead {
        font-size: 1rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .navbar-brand img {
        height: 40px;
    }
    
    .navbar {
        padding: 10px 0;
    }
    
    .btn {
        padding: 10px 20px;
    }
    
    .btn-lg {
        padding: 14px 28px;
    }
    
    .product-card .card-img-top {
        height: 180px;
    }
    
    .category-card .card-img-top {
        height: 140px;
    }
    
    .footer {
        padding: 60px 0 20px;
    }
    
    .stats-item h2 {
        font-size: 2rem;
    }
    
    /* Banner Responsive - Increased height for better mobile display */
    #heroCarousel .carousel-item,
    #heroCarousel .hero-banner-item {
        min-height: 400px;
    }
    
    #heroCarousel .carousel-caption {
        padding: 15px;
    }
    
    #heroCarousel .carousel-caption .display-4 {
        font-size: 1.5rem !important;
    }
    
    #heroCarousel .carousel-control-prev,
    #heroCarousel .carousel-control-next {
        width: 40px;
        height: 40px;
    }

    .shop-toolbar-item .form-select,
    .shop-sort-select {
        min-width: 100%;
    }

    .shop-toolbar-controls {
        width: 100%;
    }
    
    /* Featured Products - Mobile Optimizations */
    .featured-product-card .product-content {
        padding: 16px;
    }
    
    .featured-product-card .product-title {
        font-size: 0.95rem;
    }
    
    .featured-product-card .current-price {
        font-size: 1.15rem;
    }
    
    /* Add to Cart Button - Mobile Fixed */
    .featured-product-card .add-to-cart-btn {
        padding: 12px 16px;
        font-size: 0.85rem;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }
    
    /* Quantity Selector - Mobile Fixed */
    .featured-product-card .quantity-selector {
        width: 100%;
        justify-content: center;
        margin-bottom: 12px;
    }
    
    .featured-product-card .quantity-btn {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }
    
    .featured-product-card .quantity-input {
        width: 50px;
        font-size: 0.95rem;
    }
    
    /* Stock badge mobile */
    .featured-product-card .stock-badge {
        font-size: 0.7rem;
        padding: 4px 10px;
    }
    
    /* Product category badge mobile */
    .featured-product-card .product-category {
        font-size: 0.65rem;
        padding: 3px 8px;
    }
}

/* Small devices (landscape phones, 576px - 767px) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .hero-section {
        padding: 90px 0;
    }
    
    .hero-section .display-4 {
        font-size: 2.25rem;
    }
    
    section {
        padding: 70px 0;
    }
    
    /* Banner responsive for small tablets */
    #heroCarousel .carousel-item,
    #heroCarousel .hero-banner-item {
        min-height: 420px;
    }
    
    /* Featured Products - 2 columns on small tablets */
    .featured-product-card .product-content {
        padding: 14px;
    }
    
    .featured-product-card .add-to-cart-btn {
        padding: 10px 14px;
        font-size: 0.8rem;
        min-height: 44px;
    }
}

/* Medium devices (tablets, 768px - 991px) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .hero-section {
        padding: 100px 0;
    }
    
    .nav-link {
        padding: 8px 12px !important;
        font-size: 0.85rem;
    }
    
    #heroCarousel .carousel-item,
    #heroCarousel .hero-banner-item {
        min-height: 500px;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .container {
        max-width: 1140px;
    }
}

/* Extra large devices (large desktops) */
@media (min-width: 1200px) {
    .container {
        max-width: 1320px;
    }
}

/* ========== UTILITY CLASSES ========== */
.text-primary { color: var(--primary-color) !important; }
.text-secondary { color: var(--secondary-color) !important; }
.bg-primary { background-color: var(--primary-color) !important; }
.bg-light { background-color: var(--bg-light) !important; }

.shadow-sm { box-shadow: var(--shadow-sm) !important; }
.shadow-md { box-shadow: var(--shadow-md) !important; }
.shadow-lg { box-shadow: var(--shadow-lg) !important; }

.rounded-lg { border-radius: var(--radius-lg) !important; }
.rounded-xl { border-radius: var(--radius-xl) !important; }

.fw-semibold { font-weight: 600 !important; }
.fw-bold { font-weight: 700 !important; }

/* ========== ACCESSIBILITY ========== */
:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .navbar, .footer, .btn, .product-actions {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
    }
}

/* ========== WHATSAPP FLOATING BUTTON ========== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white;
    padding: 14px 24px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 15px;
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
    color: white;
}

.whatsapp-float .whatsapp-icon {
    font-size: 24px;
}

.whatsapp-float .whatsapp-text {
    display: block;
}

.whatsapp-float .whatsapp-label {
    font-size: 11px;
    opacity: 0.9;
    font-weight: 400;
}

.whatsapp-float .whatsapp-number {
    font-size: 14px;
}

/* Pulse animation for WhatsApp button */
.whatsapp-float::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50px;
    background: rgba(37, 211, 102, 0.4);
    animation: whatsappPulse 2s ease-in-out infinite;
    z-index: -1;
}

@keyframes whatsappPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.4;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

/* Mobile responsive */
@media (max-width: 575.98px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .whatsapp-float .whatsapp-icon {
        font-size: 22px;
    }
    
    .whatsapp-float .whatsapp-label {
        display: none;
    }
}

/* ========== 2026 PREMIUM THEME OVERRIDES ========== */
:root {
    --premium-green-900: #073a2a;
    --premium-green-800: #0b513a;
    --premium-green-700: #0f6a4a;
    --premium-green-600: #14875f;
    --premium-lime: #8adf2f;
    --premium-ink: #10231c;
    --premium-mist: #f4f8f6;
}

/* ========== ABOUT GALLERY SECTION ========== */
.about-gallery .gallery-item {
    overflow: hidden;
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
}

.about-gallery .gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.about-gallery .gallery-item:hover img {
    transform: scale(1.08);
}

.about-gallery .gallery-item:hover {
    box-shadow: var(--shadow-lg);
}

.about-content .subtitle-text {
    position: relative;
    display: inline-block;
}

.about-content .subtitle-text::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 40px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.info-box {
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(11, 81, 58, 0.08);
    transition: var(--transition-normal);
    height: 100%;
}

.info-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(11, 81, 58, 0.18);
}

.info-box .info-box-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(13, 79, 56, 0.25);
}

.info-box .info-box-icon i {
    font-size: 1.25rem;
    color: var(--white);
}

.info-box h6 {
    font-weight: 600;
    color: var(--text-primary);
}

.info-box p {
    font-size: 0.875rem;
    line-height: 1.6;
}

/* ========== FOOTER STYLES ========== */
.footer-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 15px;
}

.footer-logo-img {
    width: 80px;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    padding: 8px;
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.footer-logo-img:hover {
    transform: scale(1.1) rotate(5deg);
}

.footer h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.footer h5 {
    color: var(--white);
}

.footer p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
}

.footer ul.list-unstyled li {
    margin-bottom: 10px;
}

.footer ul.list-unstyled li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-normal);
    display: inline-block;
    padding: 2px 0;
    font-size: 0.9rem;
}

.footer ul.list-unstyled li a:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.footer .social-links {
    display: flex;
    gap: 12px;
}

.footer .social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
    color: rgba(255, 255, 255, 0.8);
}

.footer .social-links a:hover {
    background: var(--secondary-color);
    color: var(--accent-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    margin-top: 40px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* wd- classes for footer icons */
.wd-cursor-dark,
.wd-phone-dark,
.wd-envelope-dark {
    color: rgba(255, 255, 255, 0.8);
}

body {
    background:
        radial-gradient(circle at 10% 0%, rgba(138, 223, 47, 0.09) 0%, transparent 30%),
        radial-gradient(circle at 90% 10%, rgba(20, 135, 95, 0.08) 0%, transparent 26%),
        var(--premium-mist);
}

.premium-topbar {
    background: linear-gradient(90deg, var(--premium-green-900) 0%, var(--premium-green-700) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.topbar-contact span {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

.topbar-actions a {
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.08);
}

.navbar {
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(11, 81, 58, 0.1);
}

.navbar .container {
    gap: 20px;
}

.navbar-brand {
    gap: 14px;
}

.navbar-brand img {
    height: 64px;
    filter: drop-shadow(0 6px 12px rgba(7, 58, 42, 0.18));
}

.brand-text-wrap {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.brand-text-wrap strong {
    font-size: 1.25rem;
    letter-spacing: 0.4px;
    color: var(--premium-green-800);
}

.brand-text-wrap small {
    font-size: 0.75rem;
    color: #567a6d;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.navbar-nav {
    background: rgba(7, 58, 42, 0.04);
    border: 1px solid rgba(11, 81, 58, 0.14);
    border-radius: 999px;
    padding: 8px 10px;
    gap: 2px;
}

.nav-link {
    border-radius: 999px;
    font-weight: 600;
    color: #2d4f43 !important;
}

.nav-link:hover,
.nav-link.active {
    background: linear-gradient(120deg, rgba(20, 135, 95, 0.16) 0%, rgba(138, 223, 47, 0.2) 100%);
    color: var(--premium-green-900) !important;
}

.nav-link.cart-btn {
    background: linear-gradient(135deg, var(--premium-green-900) 0%, var(--premium-green-700) 100%) !important;
}

#heroCarousel .carousel-item::before,
#heroCarousel .hero-banner-item::before {
    background: linear-gradient(
        92deg,
        rgba(7, 58, 42, 0.56) 0%,
        rgba(11, 81, 58, 0.34) 42%,
        rgba(11, 81, 58, 0.16) 72%,
        rgba(11, 81, 58, 0.08) 100%
    );
    opacity: 1;
}

#heroCarousel .carousel-item,
#heroCarousel .hero-banner-item {
    background-position: center center;
}

#heroCarousel .carousel-caption {
    text-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

#heroCarousel .carousel-caption {
    left: 0;
    right: 0;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    text-align: left;
    padding: 0 12px;
}

#heroCarousel .carousel-caption .container {
    position: relative;
}

#heroCarousel .carousel-caption .col-lg-7 {
    max-width: 640px;
    background: linear-gradient(140deg, rgba(7, 58, 42, 0.52) 0%, rgba(7, 58, 42, 0.2) 100%);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 18px;
    padding: 28px;
    backdrop-filter: blur(2px);
}

#heroCarousel .carousel-caption .lead {
    margin-bottom: 1.4rem !important;
}

@media (max-width: 991.98px) {
    #heroCarousel .carousel-item,
    #heroCarousel .hero-banner-item {
        background-position: 62% center;
    }

    #heroCarousel .carousel-caption {
        top: 52%;
        padding: 0 8px;
    }

    #heroCarousel .carousel-caption .col-lg-7 {
        max-width: 100%;
        padding: 20px;
        border-radius: 14px;
    }
}

.page-header {
    position: relative;
    overflow: hidden;
    background: linear-gradient(120deg, var(--premium-green-900) 0%, var(--premium-green-700) 100%);
}

.page-header::after {
    content: "";
    position: absolute;
    inset: auto -140px -120px auto;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(138, 223, 47, 0.28) 0%, rgba(138, 223, 47, 0) 68%);
}

.section-title {
    letter-spacing: 0.2px;
}

.section-subtitle {
    max-width: 680px;
}

.category-card,
.product-card,
.featured-product-card,
.why-choose-card,
.contact-info-card {
    border: 1px solid rgba(11, 81, 58, 0.08);
}

.category-card:hover,
.product-card:hover,
.featured-product-card:hover,
.why-choose-card:hover {
    border-color: rgba(11, 81, 58, 0.18);
}

.footer {
    background:
        linear-gradient(145deg, #081a14 0%, #0c3325 54%, #0e4733 100%);
}

@media (max-width: 991.98px) {
    .navbar-nav {
        border-radius: 16px;
        padding: 12px;
    }

    .brand-text-wrap {
        display: none;
    }

    .navbar-brand img {
        height: 52px;
    }
}

/* ========== ENHANCED PRODUCT CARDS ========== */

/* Product Card Base - Required for absolute positioning */
.product-card {
    position: relative;
}

/* Product Badges */
.product-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.product-badges .badge {
    padding: 6px 12px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-sm);
}

.product-badges .badge-new {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(13, 79, 56, 0.3);
}

.product-badges .badge-out {
    background: var(--danger-color);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.3);
}

/* Quick Actions Overlay */
.product-actions-overlay {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(15px);
    transition: var(--transition-normal);
}

.product-card:hover .product-actions-overlay {
    opacity: 1;
    transform: translateX(0);
}

.btn-quick-action {
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background: var(--white);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    cursor: pointer;
    font-size: 0.9rem;
}

.btn-quick-action:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

/* Product Category Badge */
.product-category-badge {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(13, 79, 56, 0.08);
    color: var(--primary-color);
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    align-self: flex-start;
}

/* Stock Indicator */
.stock-indicator {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

.stock-indicator.stock-in {
    background: rgba(40, 167, 69, 0.1);
    color: var(--success-color);
}

.stock-indicator.stock-in::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--success-color);
    border-radius: 50%;
}

.stock-indicator.stock-out {
    background: rgba(220, 53, 69, 0.1);
    color: var(--danger-color);
}

.stock-indicator.stock-out::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--danger-color);
    border-radius: 50%;
}

/* Product Image Link */
.product-image-link {
    display: block;
    overflow: hidden;
}

.product-card .card-img-top {
    height: 220px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.product-card:hover .card-img-top {
    transform: scale(1.08);
}

/* Empty State */
.empty-state {
    padding: 40px 20px;
}

.empty-state i {
    opacity: 0.5;
}

.empty-state h4 {
    font-weight: 600;
    color: var(--text-secondary);
}

.empty-state p {
    max-width: 400px;
    margin: 0 auto;
}

/* Enhanced Pagination */
.pagination {
    margin: 0;
    gap: 6px;
}

.pagination .page-link {
    border: none;
    border-radius: var(--radius-md);
    padding: 10px 14px;
    color: var(--text-secondary);
    font-weight: 500;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    min-width: 42px;
    text-align: center;
}

.pagination .page-link:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.pagination .page-item.active .page-link {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-primary);
}

.pagination .page-item.disabled .page-link {
    background: var(--off-white);
    color: var(--text-light);
    cursor: not-allowed;
    transform: none;
}

.pagination .page-item.disabled .page-link:hover {
    background: var(--off-white);
    color: var(--text-light);
}

/* Responsive adjustments for product cards */
@media (max-width: 575.98px) {
    .product-badges {
        top: 8px;
        left: 8px;
    }
    
    .product-badges .badge {
        padding: 4px 8px;
        font-size: 0.6rem;
    }
    
    .product-actions-overlay {
        top: 8px;
        right: 8px;
    }
    
    .btn-quick-action {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
    
    .product-card .card-img-top {
        height: 160px;
    }
    
    .shop-toolbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .shop-toolbar-controls {
        width: 100%;
        justify-content: space-between;
    }
}

/* ========== SHOP PAGE (REFERENCE STYLE) ========== */
.shop-page-header {
    background:
        linear-gradient(120deg, var(--premium-green-900) 0%, var(--premium-green-700) 100%);
    padding: 68px 0;
}

.shop-page .shop-sidebar {
    background: #fff;
    padding: 0 0 8px;
}

.shop-page .shop-filter-block {
    border-bottom: 1px solid #dfdfdf;
    padding: 0 0 18px;
    margin-bottom: 18px;
}

.shop-page .shop-filter-block h6 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 14px;
    color: #111;
}

.shop-page .shop-price-line {
    height: 4px;
    background: linear-gradient(90deg, #22a667 0%, #22a667 70%, #d9d9d9 70%, #d9d9d9 100%);
    border-radius: 2px;
}

.shop-page .price-range-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.shop-page .shop-filter-block small {
    color: #4e4e4e;
}

.shop-page .shop-check {
    display: block;
    font-size: 14px;
    color: #3f3f3f;
    margin-bottom: 8px;
}

.shop-page .shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #d9d9d9;
    padding-bottom: 10px;
    margin-bottom: 10px;
    gap: 16px;
    flex-wrap: wrap;
}

.shop-page .shop-breadcrumb-mini {
    color: #777;
    font-size: 13px;
}

.shop-page .shop-breadcrumb-mini span {
    margin: 0 8px;
}

.shop-page .shop-toolbar-controls {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.shop-page .shop-toolbar-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: #4f4f4f;
}

.shop-page .shop-toolbar-item a {
    color: #454545;
    text-decoration: none;
}

.shop-page .shop-toolbar-item a.active {
    color: #111;
    font-weight: 600;
}

.shop-page .shop-toolbar-item .sep {
    color: #8a8a8a;
    margin: 0 2px;
}

.shop-page .shop-grid-switch {
    display: inline-flex;
    gap: 4px;
}

.shop-page .shop-grid-switch a {
    width: 24px;
    height: 24px;
    border: 1px solid #cecece;
    color: #666;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    text-decoration: none;
}

.shop-page .shop-grid-switch a.active,
.shop-page .shop-grid-switch a:hover {
    background: #111;
    border-color: #111;
    color: #fff;
}

.shop-page .shop-sort-select {
    min-width: 220px;
    border-radius: 0;
    border: 1px solid #d0d0d0;
    box-shadow: none;
    font-size: 13px;
    padding: 8px 10px;
}

.shop-page .shop-result-count {
    font-size: 13px;
    color: #555;
    margin-bottom: 16px;
}

.shop-page .shop-product-card {
    background: #fff;
    border: 1px solid #e7e7e7;
    text-align: center;
    height: 100%;
}

.shop-page .shop-product-card .card-img-top {
    height: 210px;
    object-fit: contain;
    background: #ffffff;
    padding: 8px;
}

.shop-page .shop-product-content {
    padding: 12px 10px 14px;
}

.shop-page .shop-product-content h6 {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 6px;
    min-height: 34px;
}

.shop-page .shop-product-cat {
    color: #8b8b8b;
    font-size: 12px;
    margin-bottom: 4px;
}

.shop-page .shop-product-price {
    color: #1a9258;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.shop-page .pagination {
    justify-content: center;
    gap: 6px;
}

.shop-page .pagination .page-link {
    border-radius: 0;
    border: 1px solid #d8d8d8;
    box-shadow: none;
    color: #444;
    background: #fff;
}

.shop-page .pagination .page-item.active .page-link,
.shop-page .pagination .page-link:hover {
    background: #111;
    border-color: #111;
    color: #fff;
}

@media (max-width: 991.98px) {
    .shop-page .shop-sort-select {
        min-width: 190px;
    }
}

/* ========================================
   PREMIUM WHY CHOOSE US SECTION
   ======================================== */

.why-choose-section {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(13, 79, 56, 0.2), transparent);
}

.why-choose-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(13, 79, 56, 0.2), transparent);
}

/* Premium Badge */
.premium-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(13, 79, 56, 0.1) 0%, rgba(20, 135, 95, 0.1) 100%);
    border: 1px solid rgba(13, 79, 56, 0.2);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--premium-green-800);
    margin-bottom: 16px;
}

/* Section Title Decoration */
.section-title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.section-title-decoration .decoration-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--premium-green-700), transparent);
}

.section-title-decoration .decoration-dot {
    width: 8px;
    height: 8px;
    background: var(--premium-green-700);
    border-radius: 50%;
    position: relative;
}

.section-title-decoration .decoration-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid var(--premium-green-700);
    border-radius: 50%;
    opacity: 0.3;
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.5); opacity: 0.1; }
}

/* Premium Why Choose Card */
.why-choose-card.premium-card {
    background: #ffffff;
    border: 1px solid rgba(11, 81, 58, 0.08);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.why-choose-card.premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--premium-green-900), var(--premium-green-600), var(--premium-lime));
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-choose-card.premium-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(7, 58, 42, 0.15);
    border-color: rgba(11, 81, 58, 0.2);
}

.why-choose-card.premium-card:hover::before {
    transform: scaleX(1);
}

.why-choose-card.premium-card .card-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

/* Icon Wrapper Premium */
.icon-wrapper-premium {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 24px;
}

.icon-wrapper-premium .icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--premium-green-900) 0%, var(--premium-green-600) 100%);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.why-choose-card.premium-card:hover .icon-wrapper-premium .icon-bg {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(7, 58, 42, 0.4);
}

.icon-wrapper-premium i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.75rem;
    color: #ffffff;
    z-index: 2;
}

/* Card Content */
.why-choose-card.premium-card .card-content {
    flex: 1;
}

.why-choose-card.premium-card .card-content h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    position: relative;
}

.why-choose-card.premium-card .card-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Card Number */
.why-choose-card.premium-card .card-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(11, 81, 58, 0.06);
    font-family: 'Poppins', sans-serif;
    transition: all 0.4s ease;
}

.why-choose-card.premium-card:hover .card-number {
    color: rgba(11, 81, 58, 0.15);
    transform: scale(1.1);
}

/* Card Glow Effect */
.why-choose-card.premium-card .card-glow {
    position: absolute;
    bottom: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    height: 100%;
    background: radial-gradient(ellipse, rgba(138, 223, 47, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: all 0.4s ease;
    pointer-events: none;
}

.why-choose-card.premium-card:hover .card-glow {
    opacity: 1;
    bottom: -30%;
}

/* Stats Row */
.stat-item {
    text-align: center;
    padding: 20px;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 40px;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(11, 81, 58, 0.1), transparent);
}

.stat-item:last-child::after {
    display: none;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--premium-green-800);
    line-height: 1;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* ========================================
   PREMIUM CTA SECTION
   ======================================== */

.premium-cta {
    background: linear-gradient(135deg, #0a3d28 0%, #0f5c3f 50%, #0a3d28 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Background Shapes */
.cta-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.cta-bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.cta-bg-shapes .shape-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #8adf2f 0%, transparent 70%);
    top: -150px;
    right: -100px;
    animation: floatShape 8s ease-in-out infinite;
}

.cta-bg-shapes .shape-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #147a5a 0%, transparent 70%);
    bottom: -100px;
    left: -50px;
    animation: floatShape 10s ease-in-out infinite reverse;
}

.cta-bg-shapes .shape-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #ffffff 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulseShape 6s ease-in-out infinite;
}

@keyframes floatShape {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(5deg); }
}

@keyframes pulseShape {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.05; }
    50% { transform: translate(-50%, -50%) scale(1.5); opacity: 0.1; }
}

/* CTA Badge */
.cta-badge {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(138, 223, 47, 0.2);
    border: 1px solid rgba(138, 223, 47, 0.4);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #8adf2f;
    margin-bottom: 30px;
    animation: badgeFadeIn 0.8s ease forwards;
    opacity: 0;
}

@keyframes badgeFadeIn {
    to { opacity: 1; }
}

/* CTA Title */
.cta-title {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
    animation: titleSlideUp 0.8s ease forwards;
    opacity: 0;
    animation-delay: 0.2s;
}

@keyframes titleSlideUp {
    from { 
        opacity: 0;
        transform: translateY(30px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

/* CTA Subtitle */
.cta-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
    animation: titleSlideUp 0.8s ease forwards;
    opacity: 0;
    animation-delay: 0.4s;
}

/* CTA Features */
.cta-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
    animation: titleSlideUp 0.8s ease forwards;
    opacity: 0;
    animation-delay: 0.6s;
}

.cta-feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cta-feature-pill:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.cta-feature-pill i {
    color: #8adf2f;
    font-size: 0.85rem;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    animation: titleSlideUp 0.8s ease forwards;
    opacity: 0;
    animation-delay: 0.8s;
}

/* Primary CTA Button */
.btn-cta-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: linear-gradient(135deg, #8adf2f 0%, #5bc41a 100%);
    border: none;
    border-radius: 50px;
    color: #0a3d28;
    font-weight: 700;
    font-size: 1rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 30px rgba(138, 223, 47, 0.4);
}

.btn-cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(138, 223, 47, 0.5);
    color: #0a3d28;
}

.btn-cta-primary:hover::before {
    left: 100%;
}

.btn-cta-primary .btn-text {
    position: relative;
    z-index: 1;
}

.btn-cta-primary .btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(10, 61, 40, 0.2);
    border-radius: 50%;
    font-size: 0.9rem;
}

.btn-cta-primary .btn-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.btn-cta-primary:hover .btn-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Secondary CTA Button */
.btn-cta-secondary {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-cta-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-cta-secondary:hover {
    border-color: rgba(255, 255, 255, 0.7);
    color: #ffffff;
    transform: translateY(-3px);
}

.btn-cta-secondary:hover::before {
    opacity: 1;
}

.btn-cta-secondary .btn-text {
    position: relative;
    z-index: 1;
}

.btn-cta-secondary .btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-size: 0.9rem;
}

.btn-cta-secondary .btn-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover .btn-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* CTA Trust */
.cta-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    animation: titleSlideUp 0.8s ease forwards;
    opacity: 0;
    animation-delay: 1s;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-item i {
    color: #8adf2f;
    font-size: 1rem;
}

/* ========================================
   RESPONSIVE CTA
   ======================================== */

@media (max-width: 991.98px) {
    .premium-cta {
        padding: 80px 0;
    }
    
    .cta-title {
        font-size: 2.25rem;
    }
    
    .cta-subtitle {
        font-size: 1.05rem;
    }
    
    .cta-features {
        gap: 10px;
    }
    
    .cta-feature-pill {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .cta-buttons {
        gap: 15px;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        padding: 14px 28px;
        font-size: 0.95rem;
    }
}

@media (max-width: 575.98px) {
    .premium-cta {
        padding: 60px 0;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
    }
    
    .cta-features {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .cta-trust {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-item::after {
        display: none;
    }
}

/* Mobile fixes for hero banner cropping */
@media (max-width: 575.98px) {
    #heroCarousel .carousel-item,
    #heroCarousel .hero-banner-item {
        min-height: 280px;
        background-position: left center;
    }

    #heroCarousel .carousel-item::before,
    #heroCarousel .hero-banner-item::before {
        opacity: 0.35;
    }

    #heroCarousel .carousel-control-prev,
    #heroCarousel .carousel-control-next {
        width: 36px;
        height: 36px;
    }
}

