/* ========================================
    TOPLINE MABATI - GOLDENLINE STYLE
    ======================================== */

/* Mobile-First Global Styles */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
    background: #ffffff;
    color: #222222;
    line-height: 1.65;
    overflow-x: hidden;
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: 72px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
    font-weight: 700;
    line-height: 1.15;
    color: #212121;
}

h1 { font-size: clamp(1.25rem, 3vw, 2rem); font-weight: 800; }
h2 { font-size: clamp(1.1rem, 2.8vw, 1.75rem); font-weight: 800; }
h3 { font-size: clamp(1rem, 2vw, 1.25rem); font-weight: 700; }
h4 { font-size: 1rem; font-weight: 700; }

p, span, li {
    color: #6b7280;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* Goldenline-style Buttons */
button, .btn, a.btn {
    min-height: 44px;
    padding: 13px 24px;
    font-size: 14px;
    font-weight: 700;
    border: none;
    border-radius: 9px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s;
    -webkit-appearance: none;
    appearance: none;
    line-height: 1;
}

button:focus, .btn:focus {
    outline: 2px solid #FFD700;
    outline-offset: 2px;
}

button:active, .btn:active {
    transform: scale(0.98);
}

/* Container - Goldenline Style */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 14px;
}

@media (min-width: 769px) {
    .container {
        padding: 0 28px;
    }
}

/* ========================================
   CSS VARIABLES
   ======================================== */
:root {
    /* Main Brand Colors */
    --primary: #C62828;
    --primary-dark: #B71C1C;
    --primary-light: #E53935;
    --secondary: #212121;
    --accent: #2E7D32;
    --accent-hover: #1B5E20;
    
    /* Backgrounds */
    --bg-main: #FFFFFF;
    --bg-light: #F5F5F5;
    --bg-alt: #EEEEEE;
    
    /* Text */
    --text-main: #222222;
    --text-light: #666666;
    --text-white: #FFFFFF;
    
    /* Neutral Grays */
    --white: #FFFFFF;
    --light-gray: #D9D9D9;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d3;
    --gray-400: #9ca3af;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #2d2d2d;
    --gray-900: #171717;
    
    /* Semantic */
    --success: #2E7D32;
    --danger: #C62828;
    --warning: #F57C00;
    --info: #1565C0;
    
    /* Shadows & Radius */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-md: 0 10px 15px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 25px rgba(0,0,0,0.15);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 16px;
    --transition: all 0.3s ease;
}

/* ========================================
   TOP BAR
   ======================================== */
.top-bar {
    background: var(--primary);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.85rem;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-contact {
    font-weight: 600;
}

.top-bar-links {
    display: none;
    gap: 20px;
}

.top-bar-links a:hover {
    color: var(--primary);
}

/* ========================================
   HEADER
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #0f2a44, #1a3a5c);
    z-index: 10000;
    box-shadow: 0 4px 20px rgba(15, 42, 68, 0.3);
    height: 72px;
    display: flex;
    align-items: center;
    overflow: visible;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #0f2a44, #1a3a5c);
    z-index: -1;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 12px;
    gap: 8px;
    flex-wrap: nowrap;
    overflow: hidden;
}

@media(min-width:769px) {
    .header .container {
        padding: 0 28px;
    }
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    flex-shrink: 0;
    gap: 0;
    height: 100%;
    padding: 0 8px;
}

.logo img {
    height: 48px;
    width: auto;
    display: block;
    object-fit: contain;
}

@media(max-width:640px) {
    .logo img {
        height: 40px;
    }
}
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: #ffffff;
    padding: 8px 16px;
    position: relative;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: #FFD700;
}

.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
}

.dropdown-toggle::after {
    content: ' ▾';
    font-size: 0.7rem;
}

.nav-dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 220px;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-sm);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
    padding: 8px 0;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--gray-700);
    font-size: 0.9rem;
    transition: var(--transition);
}

.dropdown-menu a:hover {
    background: var(--bg-light);
    color: var(--primary);
}

@media (max-width: 768px) {
    .dropdown-menu {
        display: none;
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding-left: 20px;
    }
    
    .nav-dropdown.active .dropdown-menu {
        display: block;
    }
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 200px;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-sm);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--gray-700);
    font-size: 0.9rem;
}

.dropdown-menu a:hover {
    background: var(--bg-light);
    color: var(--primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 10002;
}

.header-icon {
    position: relative;
    color: #ffffff;
    padding: 8px;
}

.header-icon:hover {
    color: #FFD700;
}

.cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--primary);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Goldenline-style Mobile Menu */
.gm-mob-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    color: #ffffff;
}

.gm-mob-toggle svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none !important;
    }
    
    .gm-mob-toggle {
        display: flex !important;
    }
    
    .header-actions {
        gap: 2px;
        flex-shrink: 0;
    }
    
    .header-icon {
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
    }
    
    .header-icon svg {
        width: 20px;
        height: 22px;
    }
    
    .cart-count {
        position: absolute;
        top: 4px;
        right: 0px;
    }
}

#gm-mob-nav {
    display: none;
    background-color: #0d1e35;
    width: 100%;
    position: fixed;
    top: 72px;
    left: 0;
    z-index: 9998;
    box-sizing: border-box;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, opacity 0.3s ease;
    opacity: 0;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

#gm-mob-nav.active {
    display: block;
    max-height: calc(100vh - 60px);
    opacity: 1;
    overflow-y: auto;
}

/* Mobile Navigation Styles */
.mobile-nav {
    background: linear-gradient(180deg, #0f2a44 0%, #0d1e35 100%);
}

.mobile-nav ul {
    list-style: none;
    margin: 0;
    padding: 12px 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-nav ul li {
    margin: 0;
    padding: 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.mobile-nav ul li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    color: rgba(255,255,255,0.95);
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
    position: relative;
}

.mobile-nav ul li a:hover,
.mobile-nav ul li a:active,
.mobile-nav ul li a.active {
    background: rgba(255,255,255,0.1);
    color: #FFD700;
    padding-left: 32px;
}

.mobile-nav ul li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: transparent;
    transition: background 0.2s;
}

.mobile-nav ul li a:hover::before,
.mobile-nav ul li a.active::before {
    background: #FFD700;
}

.mobile-nav .mobile-cart-link {
    background: var(--primary);
    margin: 12px 20px;
    border-radius: 10px;
    border: none;
    justify-content: center;
    font-weight: 700;
}

.mobile-nav .mobile-cart-link:hover {
    background: var(--primary-dark);
    padding-left: 24px;
}

/* Active Nav Link */
.nav-link.active,
.mobile-menu-link.active {
    color: var(--primary);
    font-weight: 600;
}

#gm-mob-nav ul li {
    margin: 0;
    padding: 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

#gm-mob-nav ul li:last-child {
    border-bottom: none;
}

#gm-mob-nav ul li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    color: rgba(255,255,255,0.95);
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
    position: relative;
}

#gm-mob-nav ul li a:hover,
#gm-mob-nav ul li a:active,
#gm-mob-nav ul li a.active {
    background: rgba(255,255,255,0.1);
    color: #FFD700;
    padding-left: 32px;
}

#gm-mob-nav ul li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: transparent;
    transition: background 0.2s;
}

#gm-mob-nav ul li a:hover::before,
#gm-mob-nav ul li a.active::before {
    background: #FFD700;
}

#gm-mob-nav .mobile-cart-link {
    background: var(--primary);
    margin: 12px 20px;
    border-radius: 10px;
    border: none;
}

#gm-mob-nav .mobile-cart-link:hover {
    background: var(--primary-dark);
    padding-left: 24px;
}

@media (min-width: 769px) {
    #gm-mob-nav {
        display: none !important;
    }
}

/* ========================================
   SEARCH MODAL
   ======================================== */
.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 3000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 100px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.search-modal.active {
    opacity: 1;
    visibility: visible;
}

.search-container {
    background: var(--white);
    border-radius: var(--radius);
    display: flex;
    width: 90%;
    max-width: 600px;
    overflow: hidden;
}

.search-container input {
    flex: 1;
    padding: 16px 20px;
    border: none;
    font-size: 1rem;
    outline: none;
}

.search-container button {
    padding: 16px 24px;
    background: var(--primary);
    color: var(--white);
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* ========================================
   MOBILE MENU
   ======================================== */
/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
    position: relative;
    min-height: 350px;
    display: flex;
    align-items: center;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    animation: slideShow 15s infinite;
}

@keyframes slideShow {
    0% { opacity: 1; }
    33% { opacity: 1; }
    40% { opacity: 0; }
    100% { opacity: 0; }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(15, 42, 68, 0.7) 0%, rgba(15, 42, 68, 0.85) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: left;
    max-width: 600px;
    margin: auto 0;
    padding: 0 0 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    min-height: 350px;
}

.hero-content h1 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.2;
    background: linear-gradient(135deg, #228B22, #00A856);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: var(--light-gray);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: "Segoe UI", system-ui, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: #e8271a !important;
    color: var(--text-white);
    border: none;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: #dc2626;
    color: var(--text-white);
    border: 2px solid #dc2626;
}

.btn-secondary:hover {
    background: #b91c1c;
    border-color: #b91c1c;
    color: var(--text-white);
}

.btn-outline {
    background: transparent;
    color: var(--secondary);
    border: 2px solid var(--gray-300);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-block {
    width: 100%;
}

.btn-select {
    width: 100%;
    padding: 10px 8px;
    font-size: 0.75rem;
    min-height: 38px;
    margin-top: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: 0;
}

/* ========================================
   CATEGORY SECTION
   ======================================== */
.category-section {
    padding: 40px 0;
    background: var(--bg-light);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.category-card {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.category-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.category-card h3 {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 4px;
}

.category-card p {
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* ========================================
   SECTION HEADERS - Goldenline Style
   ======================================== */
.section-header {
    text-align: center;
    margin-bottom: 36px;
    position: relative;
}

.section-title {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 800;
    color: #0f2a44;
    margin-bottom: 6px;
    line-height: 1.15;
}

.section-subtitle {
    font-size: 14px;
    color: #ffffff;
    line-height: 1.65;
    max-width: 500px;
    margin: 0 auto;
}

.section-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    color: #e8271a;
    font-weight: 700;
    font-size: 13px;
    padding: 9px 18px;
    border: 1.5px solid rgba(232, 39, 26, 0.3);
    border-radius: 8px;
    transition: all 0.2s;
}

.section-link:hover {
    background: rgba(232, 39, 26, 0.05);
    border-color: #e8271a;
    color: #e8271a;
}

/* ========================================
   PRODUCTS SECTION
   ======================================== */
.products-section {
    padding: 60px 0;
    background: #F5F5F5;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

@media (min-width: 769px) {
    .product-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.product-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--bg-light);
}

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

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

.product-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--primary);
    color: var(--white);
    padding: 3px 8px;
    border-radius: 50px;
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    max-width: calc(100% - 16px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.product-actions {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px;
    background: linear-gradient(transparent, rgba(0,0,0,0.6));
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-actions {
    opacity: 1;
}

.quick-view-btn {
    width: 100%;
    padding: 10px;
    background: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

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

.product-content {
    padding: 10px 10px 12px;
}

@media (min-width: 769px) {
    .product-content {
        padding: 18px 18px 16px;
    }
}

.product-category {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    color: #6b7280;
    letter-spacing: 1.5px;
}

.product-name {
    font-size: 13px;
    font-weight: 700;
    margin: 4px 0;
    color: #0f2a44;
    line-height: 1.3;
    transition: color 0.15s;
}

@media (min-width: 769px) {
    .product-name {
        font-size: 14.5px;
        margin: 6px 0;
    }
}

.product-card:hover .product-name {
    color: #e8271a;
}

.product-name a {
    color: #0f2a44;
}

.product-name a:hover {
    color: #e8271a;
}

.product-price {
    margin-bottom: 12px;
}

.product-price .price {
    font-size: 13px;
    font-weight: 800;
    color: #228B22;
}

/* ========================================
   HERO TRUST BADGES (Horizontal on Mobile, Column on Desktop)
   ======================================== */
.hero-trust {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    padding: 0 15px;
}

@media (min-width: 992px) {
    .hero-trust {
        position: absolute;
        right: 30px;
        top: 50%;
        transform: translateY(-50%);
        flex-direction: column;
        gap: 12px;
        margin-top: 0;
        padding: 0;
    }
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 12px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    min-width: auto;
    transition: all 0.3s ease;
}

@media (min-width: 992px) {
    .hero-trust-item {
        gap: 12px;
        padding: 10px 20px;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        min-width: 240px;
    }
}

.hero-trust-item:hover {
    transform: translateX(-5px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.hero-trust-icon {
    font-size: 1.2rem;
    line-height: 1;
}

@media (min-width: 992px) {
    .hero-trust-icon {
        font-size: 1.8rem;
    }
}

.hero-trust-text {
    display: flex;
    flex-direction: column;
}

.hero-trust-text strong {
    font-family: "Segoe UI", system-ui, sans-serif;
    font-size: 1rem;
    color: #d4a017;
    font-weight: 700;
    line-height: 1.2;
}

.hero-trust-text span {
    font-size: 0.75rem;
    color: #666;
    line-height: 1.2;
}

/* ========================================
   TRUST SECTION (Mobile - Below Hero)
   ======================================== */
.trust-section {
    padding: 24px 0;
    background: #f5f5f5;
    border-bottom: 3px solid var(--primary);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

@media (min-width: 640px) {
    .trust-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    padding: 16px 12px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.trust-icon {
    font-size: 2rem;
}

.trust-content h4 {
    font-size: 1rem;
    color: #d4a017;
    margin-bottom: 2px;
    font-weight: 700;
}

.trust-content p {
    font-size: 0.8rem;
    color: var(--text-light);
    margin: 0;
}

/* ========================================
   FEATURED SECTION
   ======================================== */
.featured-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.featured-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 1;
}

.featured-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.featured-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--white);
}

.featured-content h3 {
    font-size: 1.1rem;
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services-section {
    padding: 60px 0;
}

.services-grid {
    display: grid;
    gap: 20px;
}

.service-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-4px);
}

.service-card.featured-service {
    background: var(--primary);
    color: var(--white);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--primary);
}

.service-card.featured-service h3 {
    color: var(--white);
}

.service-card p {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 20px;
}

.service-card.featured-service p {
    color: var(--gray-300);
}

/* ========================================
   WHY CHOOSE US
   ======================================== */
.why-choose-section {
    padding: 60px 0;
    background: var(--primary);
    color: var(--white);
}

.why-choose-section .section-title {
    color: #FFD700;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.why-choose-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

@media (min-width: 992px) {
    .why-choose-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.why-choose-card {
    background: linear-gradient(135deg, #0f2a44, #1a3a5c);
    padding: 15px 12px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.1);
    flex: 1 1 calc(50% - 6px);
    max-width: calc(50% - 6px);
}

@media (min-width: 576px) {
    .why-choose-card {
        flex: 1 1 calc(25% - 9px);
        max-width: calc(25% - 9px);
    }
}

@media (min-width: 992px) {
    .why-choose-card {
        padding: 30px;
        border-radius: var(--radius);
        flex: 1 1 auto;
        max-width: none;
    }
}

.why-choose-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-4px);
}

.why-choose-icon {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.why-choose-card h3 {
    font-size: 0.9rem;
    margin-bottom: 5px;
    color: #FFD700;
    font-weight: 700;
}

.why-choose-card p {
    font-size: 0.75rem;
    line-height: 1.4;
}

@media (min-width: 992px) {
    .why-choose-icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    .why-choose-card h3 {
        font-size: 1.25rem;
        margin-bottom: 10px;
    }
    .why-choose-card p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}

.why-choose-card p {
    font-size: 0.9rem;
    color: var(--gray-300);
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    gap: 20px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    background: var(--bg-alt);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 16px;
}

.testimonial-card p {
    font-style: italic;
    color: var(--gray-600);
    margin-bottom: 16px;
}

.testimonial-card h4 {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 4px;
}

.testimonial-card span {
    font-size: 0.85rem;
    color: var(--gray-500);
}

/* ========================================
   BLOG SECTION
   ======================================== */
.blog-section {
    padding: 60px 0;
}

.blog-grid {
    display: grid;
    gap: 20px;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.blog-image {
    height: 150px;
    background: var(--bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.blog-content {
    padding: 20px;
}

.blog-content h3 {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.blog-content p {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 12px;
}

.blog-date {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 600;
}

/* ========================================
   STATS COUNTER SECTION
   ======================================== */
.stats-section {
    padding: 50px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #1a2744 100%);
    color: white;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

.stats-section.show {
    opacity: 1;
    transform: translateY(0);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.stat-box {
    padding: 20px 10px;
}

.stat-icon {
    font-size: 32px;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.stat-box:hover .stat-icon {
    transform: scale(1.2);
}

.counter {
    font-family: "Segoe UI", system-ui, sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.stat-box p {
    font-size: 14px;
    margin-top: 8px;
    color: rgba(255,255,255,0.85);
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .counter {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .stat-box {
        padding: 15px 8px;
    }
    .stat-icon {
        font-size: 24px;
    }
    .counter {
        font-size: 22px;
    }
    .stat-box p {
        font-size: 11px;
    }
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1rem;
    margin-bottom: 24px;
    color: var(--gray-300);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    gap: 32px;
    margin-bottom: 40px;
}

.footer h4 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-about p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.footer-brand h3 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #e0e0e0;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: var(--gray-800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
}

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

.footer-links a {
    font-size: 0.9rem;
    color: var(--gray-400);
}

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

.footer-contact p {
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.footer-contact .contact-phone {
    color: #fff;
}

.footer-contact a {
    color: var(--primary);
    font-weight: 600;
}

.footer-contact .contact-phone a {
    color: #fff;
}

.footer-contact a {
    color: var(--primary);
    font-weight: 600;
}

.footer-payments {
    padding-top: 30px;
    border-top: 1px solid var(--gray-800);
}

.footer-payments h4 {
    margin-bottom: 16px;
}

.payment-icons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.payment-icons span {
    padding: 8px 16px;
    background: var(--gray-800);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--gray-800);
    font-size: 0.85rem;
}

/* ========================================
   PRODUCT MODAL
   ======================================== */
.product-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
}

.modal-content {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--bg-light);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
}

.modal-grid {
    display: grid;
    grid-template-columns: 1fr;
}

.modal-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.modal-details {
    padding: 30px;
}

.modal-details h2 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.modal-details .product-category {
    display: block;
    margin-bottom: 8px;
}

.option-group {
    margin-bottom: 20px;
}

.option-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--gray-700);
}

.option-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.option-btn {
    padding: 10px 20px;
    background: var(--bg-light);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.option-btn:hover,
.option-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.color-options {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.color-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 3px solid transparent;
    cursor: pointer;
    transition: var(--transition);
}

.color-btn:hover,
.color-btn.active {
    border-color: var(--primary);
    transform: scale(1.1);
}

.modal-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: var(--primary);
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    color: var(--white);
    font-weight: 600;
}

.modal-total .total-price {
    font-size: 1.3rem;
    color: var(--primary);
}

/* ========================================
   FLOATING WHATSAPP & CALL
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

.whatsapp-float-label {
    position: fixed;
    bottom: 85px;
    right: 20px;
    background: #ffffff;
    color: #000000;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    z-index: 9999;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.call-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #67C8FF;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 191, 255, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.call-float-label {
    position: fixed;
    bottom: 85px;
    left: 20px;
    background: #ffffff;
    color: #000000;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    z-index: 9999;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.call-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(34, 139, 34, 0.5);
}

.call-float svg {
    width: 28px;
    height: 28px;
}

/* Back to Home Button (Mobile) */
.back-home-mobile {
    display: none;
    padding: 10px 16px;
    font-size: 14px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

@media (max-width: 768px) {
    .back-home-mobile {
        display: inline-block;
    }
}

/* Active Nav Link */
.nav-link.active,
.mobile-menu-link.active {
    color: var(--primary);
    font-weight: 600;
}

/* Touch Target Improvements */
button, 
a.btn,
.calc-step-btn,
.calc-type-btn,
.calc-product-btn,
.calc-gauge-btn,
.variant-btn,
.color-swatch {
    min-width: 44px;
    min-height: 44px;
}

/* Icon Size Improvements */
.icon,
.feature-icon,
.serve-item .icon {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.button-icon {
    width: 36px;
    height: 36px;
}

/* ========================================
   MEDIA QUERIES - TABLET
   ======================================== */
.quantity-selector {
    display: flex;
    align-items: center;
    gap: 0;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    overflow: hidden;
    width: fit-content;
}

.quantity-selector button {
    width: 40px;
    height: 40px;
    background: var(--bg-alt);
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    transition: var(--transition);
}

.quantity-selector button:hover {
    background: var(--primary);
    color: var(--white);
}

.quantity-selector span {
    width: 50px;
    text-align: center;
    font-weight: 600;
}

/* ========================================
   MEDIA QUERIES - TABLET (769px+)
   ======================================== */
@media (min-width: 769px) {
    .container {
        padding: 0 28px;
    }

    .top-bar-links {
        display: flex;
    }

    .nav-menu {
        display: flex;
    }

    .hero-section {
        min-height: 500px;
    }

    .hero-content h1 {
        font-size: clamp(1.5rem, 4vw, 2.5rem);
    }
    
    .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 24px;
    }

    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .product-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    .trust-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .featured-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .modal-grid {
        grid-template-columns: 1fr 1fr;
    }

    .modal-image img {
        height: 100%;
    }
}

/* ========================================
   MEDIA QUERIES - DESKTOP (1024px+)
   ======================================== */
@media (min-width: 1024px) {
    .container {
        padding: 0 32px;
    }

    .hero-section {
        min-height: 450px;
    }
    
    .hero-content {
        min-height: 450px;
        padding: 0 0 0 50px;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }

    .category-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .product-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .featured-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .why-choose-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }

    .mabati-type-options {
        grid-template-columns: repeat(4, 1fr);
    }
}

.calc-steps-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.calc-steps-wrapper .calc-card {
    display: flex !important;
    flex-direction: column;
}

.calc-card-body {
    flex: 1;
}

@media (min-width: 769px) and (max-width: 1023px) {
    .calc-steps-wrapper {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        margin-bottom: 30px;
    }
    
    .calc-steps-wrapper .calc-card {
        display: flex !important;
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .calc-steps-grid {
        display: none;
    }
    
    .calc-steps-wrapper {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 16px;
    }
    
    .calc-steps-wrapper .calc-card {
        display: flex !important;
        flex-direction: column;
        width: 100%;
        opacity: 1;
        transform: none;
        border-color: #e8ecf4;
    }
    
    .calc-steps-wrapper .calc-card.mobile-active {
        display: flex !important;
        border-color: #FFD700;
        box-shadow: 0 4px 16px rgba(255, 215, 0, 0.3);
    }
    
    .calc-card {
        border-radius: 12px;
    }
    
    .calc-card-body {
        padding: 14px;
        flex: 1;
    }
    
    .calc-card-header {
        padding: 10px 14px;
    }
    
    .calc-card-header h3 {
        font-size: 0.75rem;
    }
    
    .calc-step-footer {
        padding: 0 14px 14px;
    }
    
    .calc-next-btn {
        padding: 10px 14px;
        font-size: 12px;
    }
    
    .calc-type-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .calc-type-btn {
        flex-direction: row;
        padding: 10px 12px;
        justify-content: flex-start;
    }
    
    .calc-type-icon {
        font-size: 1.2rem;
    }
    
    .calc-type-label {
        font-size: 0.8rem;
    }
    
    .calc-form-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .calc-form-group {
        margin-bottom: 10px;
    }
    
    .calc-form-group label {
        font-size: 0.8rem;
    }
    
    .calc-input {
        padding: 12px 14px;
        font-size: 15px;
    }
    
    .calc-product-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .calc-product-btn {
        padding: 10px 12px;
        min-height: auto;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .calc-product-name {
        font-size: 0.85rem;
    }
    
    .calc-product-price {
        font-size: 0.75rem;
    }
    
    .calc-gauge-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .calc-gauge-btn {
        flex-direction: row;
        justify-content: space-between;
        padding: 10px 12px;
    }
    
    .calc-gauge-label {
        font-size: 0.9rem;
    }
    
    .calc-gauge-desc {
        font-size: 0.7rem;
    }
    
    .calc-calculate-btn {
        padding: 0 12px;
    }
    
    .calc-calc-btn {
        width: 100%;
        padding: 16px 24px;
        font-size: 1rem;
    }
    
    .calc-results {
        padding: 16px;
    }
    
    .calc-summary-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .calc-summary-card {
        padding: 14px;
    }
    
    .calc-summary-value {
        font-size: 1.4rem;
    }
    
    .calc-summary-label {
        font-size: 0.75rem;
    }
    
    .calc-breakdown {
        padding: 14px;
    }
    
    .calc-breakdown-row {
        font-size: 0.8rem;
    }
    
    .calc-breakdown-total {
        font-size: 1rem;
    }
    
    .calc-accessories {
        padding: 14px;
    }
    
    .calc-accessories-grid {
        grid-template-columns: 1fr;
    }
    
    .calc-cta {
        flex-direction: column;
    }
    
    .calc-cta-call,
    .calc-cta-share {
        width: 100%;
        max-width: 100%;
    }
}

/* ========================================
   CALCULATOR SECTION
   ======================================== */
.calc-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
    color: #ffffff;
}

.calc-header {
    text-align: center;
    margin-bottom: 40px;
}

.calc-free-badge {
    display: inline-block;
    background: rgba(255, 215, 0, 0.15);
    color: #FFD700;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 16px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.calc-title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: #ffffff;
    margin-bottom: 12px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.calc-accent {
    color: #228B22;
}

.calc-subtitle {
    color: #a0aec0;
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto 24px;
    line-height: 1.6;
}

.calc-stats {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.calc-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.calc-stat-num {
    font-size: 1.5rem;
    font-weight: 800;
    color: #228B22;
}

.calc-stat-label {
    font-size: 0.75rem;
    color: #a0aec0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.calc-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

@media (min-width: 769px) {
    .calc-steps-grid {
        display: none;
    }
}

.calc-step-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px;
    background: #ffffff;
    border: 1.5px solid #e8ecf4;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    color: #0d1f3c;
    text-align: left;
}

.calc-step-btn:hover {
    border-color: #228B22;
    background: #f0fff0;
}

.calc-step-btn.active {
    background: #228B22;
    border-color: #228B22;
    color: #ffffff;
}

.calc-step-btn .step-num {
    width: 28px;
    height: 28px;
    background: #228B22;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
    color: #ffffff;
}

.calc-step-btn.active .step-num {
    background: #ffffff;
    color: #228B22;
}

.calc-step-btn .step-label {
    font-size: 0.85rem;
    font-weight: 600;
}

.calc-card-body {
    padding: 14px;
    flex: 1;
}

@media (max-width: 768px) {
    .calc-steps-grid {
        display: none;
    }
    
    .calc-steps-wrapper {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 16px;
    }
    
    .calc-steps-wrapper .calc-card {
        display: flex !important;
        flex-direction: column;
        width: 100%;
        opacity: 1;
        transform: none;
        border-color: #e8ecf4;
    }
    
    .calc-steps-wrapper .calc-card.mobile-active {
        display: flex !important;
        border-color: #FFD700;
        box-shadow: 0 4px 16px rgba(255, 215, 0, 0.3);
    }
    
    .calc-card {
        border-radius: 12px;
    }
    
    .calc-card-header {
        padding: 10px 14px;
    }
    
    .calc-card-header h3 {
        font-size: 0.75rem;
    }
    
    .calc-step-footer {
        padding: 0 14px 14px;
    }
    
    .calc-next-btn {
        padding: 10px 14px;
        font-size: 12px;
    }
    
    .calc-type-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .calc-type-btn {
        flex-direction: row;
        padding: 10px 12px;
        justify-content: flex-start;
    }
    
    .calc-type-icon {
        font-size: 1.2rem;
    }
    
    .calc-type-label {
        font-size: 0.8rem;
    }
    
    .calc-form-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .calc-form-group {
        margin-bottom: 10px;
    }
    
    .calc-form-group label {
        font-size: 0.8rem;
    }
    
    .calc-input {
        padding: 12px 14px;
        font-size: 15px;
    }
    
    .calc-product-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .calc-product-btn {
        padding: 10px 12px;
        min-height: auto;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .calc-product-name {
        font-size: 0.85rem;
    }
    
    .calc-product-price {
        font-size: 0.75rem;
    }
    
    .calc-gauge-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .calc-gauge-btn {
        flex-direction: row;
        justify-content: space-between;
        padding: 10px 12px;
    }
    
    .calc-gauge-label {
        font-size: 0.9rem;
    }
    
    .calc-gauge-desc {
        font-size: 0.7rem;
    }
    
    .calc-calculate-btn {
        padding: 0 12px;
    }
    
    .calc-calc-btn {
        width: 100%;
        padding: 16px 24px;
        font-size: 1rem;
    }
    
    .calc-results {
        padding: 16px;
    }
    
    .calc-summary-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .calc-summary-card {
        padding: 14px;
    }
    
    .calc-summary-value {
        font-size: 1.4rem;
    }
    
    .calc-summary-label {
        font-size: 0.75rem;
    }
    
    .calc-breakdown {
        padding: 14px;
    }
    
    .calc-breakdown-row {
        font-size: 0.8rem;
    }
    
    .calc-breakdown-total {
        font-size: 1rem;
    }
    
    .calc-accessories {
        padding: 14px;
    }
    
    .calc-accessories-grid {
        grid-template-columns: 1fr;
    }
    
    .calc-cta {
        flex-direction: column;
    }
    
    .calc-cta-call,
    .calc-cta-share {
        width: 100%;
        max-width: 100%;
    }
}

/* Calculator Cards Base Styles */
.calc-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1.5px solid rgba(255,255,255,0.1);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.calc-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: #1a2744;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.calc-card-header .step-number {
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: #FFD700;
}

.calc-card-header h3 {
    font-size: 1rem;
    margin: 0;
    color: #ffffff;
    font-weight: 600;
}

.calc-card-body {
    padding: 24px;
    background: #ffffff;
    color: #333;
}

.calc-step-footer {
    padding: 0 24px 24px;
    background: #ffffff;
}

.calc-next-btn {
    width: 100%;
    padding: 14px 20px;
    background: #228B22;
    color: #ffffff;
    border: none;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}

.calc-next-btn:hover {
    background: #1e7b1e;
    transform: translateY(-2px);
}

.calc-type-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
    background: #f5f7fa;
    padding: 12px;
    border-radius: 9px;
}

.calc-type-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px;
    background: #ffffff;
    border: 1.5px solid #e8ecf4;
    border-radius: 9px;
    cursor: pointer;
    transition: all 0.2s;
    color: #0d1f3c;
    position: relative;
}

.calc-type-btn:hover {
    border-color: #228B22;
    transform: translateY(-2px);
    background: #f0fff0;
}

.calc-type-btn.active {
    background: #228B22;
    border-color: #228B22;
    color: #ffffff;
    transform: translateY(-2px);
}

.calc-type-btn.active::after {
    content: '✓';
    position: absolute;
    top: 6px;
    right: 6px;
    width: 18px;
    height: 18px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #228B22;
}

.calc-type-icon {
    font-size: 1.5rem;
}

.calc-type-label {
    font-size: 0.85rem;
    font-weight: 600;
}

.calc-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 16px;
}

.calc-form-group {
    margin-bottom: 16px;
}

.calc-form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #0d1f3c;
    margin-bottom: 8px;
}

.calc-input {
    width: 100%;
    padding: 13px 16px;
    background: #ffffff;
    border: 1.5px solid #e8ecf4;
    border-radius: 9px;
    color: #0d1f3c;
    font-size: 0.95rem;
    transition: border-color 0.2s;
}

.calc-input:focus {
    outline: none;
    border-color: #228B22;
}

.calc-product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 20px;
    background: #f5f7fa;
    padding: 12px;
    border-radius: 9px;
}

.calc-product-btn {
    padding: 10px 12px;
    background: #ffffff;
    border: 1.5px solid #e8ecf4;
    border-radius: 9px;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    color: #0d1f3c;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 65px;
}

.calc-product-btn:hover {
    border-color: #228B22;
    transform: translateY(-2px);
    background: #f0fff0;
}

.calc-product-btn.active {
    background: #228B22;
    border-color: #228B22;
    color: #ffffff;
}

.calc-product-name {
    display: block;
    font-weight: 600;
    font-size: 0.8rem;
    margin-bottom: 2px;
}

.calc-product-price {
    font-size: 0.7rem;
    color: #6b7280;
}

.calc-product-btn.active .calc-product-price {
    color: rgba(255,255,255,0.9);
}

.calc-gauge-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    background: #f5f7fa;
    padding: 12px;
    border-radius: 9px;
}

.calc-gauge-btn {
    flex: 1;
    padding: 12px 10px;
    background: #ffffff;
    border: 1.5px solid #e8ecf4;
    border-radius: 9px;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    color: #0d1f3c;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 55px;
}

.calc-gauge-btn:hover {
    border-color: #228B22;
    transform: translateY(-2px);
    background: #f0fff0;
}

.calc-gauge-btn.active {
    background: #228B22;
    border-color: #228B22;
    color: #ffffff;
}

.calc-gauge-label {
    display: block;
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 4px;
}

.calc-gauge-desc {
    display: block;
    font-size: 0.65rem;
    color: #6b7280;
    text-align: center;
}

.calc-gauge-btn.active .calc-gauge-desc {
    color: rgba(255,255,255,0.9);
}

.calc-calculate-btn {
    text-align: center;
    margin-bottom: 30px;
}

.calc-calc-btn {
    padding: 16px 50px;
    background: #228B22;
    border: none;
    border-radius: 9px;
    color: white;
    font-family: "Segoe UI", system-ui, sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 18px rgba(34, 139, 34, 0.35);
}

.calc-calc-btn:hover {
    transform: translateY(-2px);
    background: #1e7b1e;
    box-shadow: 0 8px 25px rgba(34, 139, 34, 0.45);
}

.calc-calc-btn.loading {
    pointer-events: none;
    opacity: 0.8;
}

@keyframes spin {
    to { transform: translateY(-50%) rotate(360deg); }
}

/* Results */
.calc-results {
    animation: fadeIn 0.5s ease;
    display: none;
    background: #1a2744;
    border-radius: 16px;
    padding: 24px;
    margin-top: 30px;
    border: 1px solid rgba(255,255,255,0.1);
}

.calc-results.show {
    display: block;
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.calc-summary-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

@media (max-width: 600px) {
    .calc-summary-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

.calc-summary-card {
    background: rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
}

.calc-summary-value {
    font-family: "Segoe UI", system-ui, sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #FFD700;
}

.calc-summary-label {
    font-size: 0.8rem;
    color: #a0aec0;
    margin-top: 4px;
}

.calc-gauge-strength {
    margin-bottom: 24px;
}

.calc-gauge-strength-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #a0aec0;
    margin-bottom: 10px;
}

.calc-gauge-strength-grid {
    display: flex;
    gap: 8px;
}

.calc-gauge-strength-item {
    flex: 1;
    padding: 12px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    text-align: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: #a0aec0;
    border: 1px solid rgba(255,255,255,0.1);
}

.calc-gauge-strength-item.active {
    background: #228B22;
    color: #ffffff;
}

.calc-gauge-strength-sub {
    font-size: 0.65rem;
    font-weight: 400;
    margin-top: 2px;
}

.calc-breakdown {
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
    border: 1px solid rgba(255,255,255,0.1);
}

.calc-breakdown-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #a0aec0;
    margin-bottom: 12px;
}

.calc-breakdown-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 0.9rem;
    color: #e2e8f0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.calc-breakdown-total {
    display: flex;
    justify-content: space-between;
    padding-top: 12px;
    margin-top: 8px;
    border-top: 2px solid rgba(255,255,255,0.2);
    font-family: "Segoe UI", system-ui, sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #FFD700;
}

.calc-accessories {
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
    border: 1px solid rgba(255,255,255,0.1);
}

.calc-accessories-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 4px;
}

.calc-accessories-sub {
    font-size: 0.75rem;
    color: #a0aec0;
    margin-bottom: 16px;
}

.calc-accessories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 12px;
}

@media (max-width: 600px) {
    .calc-accessories-grid {
        grid-template-columns: 1fr;
    }
}

.calc-accessory-card {
    background: rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 14px;
    text-align: center;
}

.calc-accessory-icon {
    font-size: 1.3rem;
    margin-bottom: 6px;
}

.calc-accessory-name {
    font-size: 0.75rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 4px;
}

.calc-accessory-qty {
    font-size: 0.7rem;
    color: #a0aec0;
    margin-bottom: 2px;
}

.calc-accessory-price {
    font-size: 0.85rem;
    font-weight: 700;
    color: #228B22;
}

.calc-accessories-subtotal {
    display: flex;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-weight: 600;
    color: #ffffff;
}

.calc-cta {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 16px;
}

.calc-cta-call {
    flex: 1;
    max-width: 200px;
    padding: 14px;
    background: #228B22;
    border-radius: 8px;
    color: white;
    font-family: "Segoe UI", system-ui, sans-serif;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
}

.calc-cta-share {
    flex: 1;
    max-width: 200px;
    padding: 14px;
    background: #FFD700;
    border: none;
    border-radius: 8px;
    color: #1a2744;
    font-family: "Segoe UI", system-ui, sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.calc-disclaimer {
    text-align: center;
    font-size: 0.75rem;
    color: #a0aec0;
    margin: 0;
}

.calc-cta-share:hover {
    background: var(--primary);
    color: white;
}

.calc-steps {
    display: flex;
    gap: 10px;
    margin-bottom: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.calc-step-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 20px;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
}

.calc-step-btn:hover {
    border-color: var(--primary);
}

.calc-step-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.calc-step-btn .step-num {
    width: 28px;
    height: 28px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.calc-step-btn.active .step-num {
    background: var(--white);
    color: var(--primary);
}

.calculator-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.calc-card {
    background: #2a2a2a;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.calc-card.active {
    border-left: 4px solid var(--accent);
}

.calc-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: #1a2744;
    color: #ffffff;
}

.step-number {
    width: 32px;
    height: 32px;
    background: #1a2744;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: #ffffff;
}

.calc-card-header h3 {
    font-size: 1.1rem;
    margin: 0;
    color: #FFD700;
}

.calc-card-body {
    padding: 24px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--gray-700);
}

.calc-input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    transition: var(--transition);
}

.calc-input:focus {
    outline: none;
    border-color: var(--primary);
}

.mabati-type-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.type-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 12px;
    background: var(--bg-light);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.type-btn:hover {
    border-color: var(--primary);
}

.type-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.type-icon {
    font-size: 1.5rem;
}

.type-name {
    font-weight: 600;
    font-size: 0.9rem;
}

.type-price {
    font-size: 0.75rem;
    opacity: 0.8;
}

.gauge-selector {
    margin-top: 20px;
}

.gauge-selector label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--gray-700);
}

.gauge-buttons {
    display: flex;
    gap: 10px;
}

.gauge-select-btn {
    flex: 1;
    padding: 12px;
    background: var(--bg-light);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.gauge-select-btn:hover,
.gauge-select-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.results-display {
    background: var(--bg-light);
    border-radius: var(--radius);
    padding: 20px;
    margin: 20px 0;
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-200);
}

.result-item:last-child {
    border-bottom: none;
}

.result-label {
    font-size: 0.95rem;
    color: var(--gray-700);
}

.result-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
}

.result-value.highlight {
    color: var(--primary);
    font-size: 1.5rem;
}

.calc-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.selected-type-display {
    padding: 12px 16px;
    background: var(--bg-light);
    border-radius: var(--radius);
    margin-bottom: 20px;
}

.type-badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
}

/* ========================================
    ABOUT GRID CARDS
    ======================================== */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.about-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

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

.about-card .icon {
    font-size: 36px;
    margin-bottom: 15px;
    display: block;
}

.about-card h3,
.about-card h4 {
    font-family: "Segoe UI", system-ui, sans-serif;
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.about-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin: 0;
    line-height: 1.6;
}

/* ========================================
    PRODUCT FILTERS
    ======================================== */
.product-filters {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    overflow-x: auto;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
}

.filter-btn {
    padding: 10px 20px;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.product-card,
.category-card,
.featured-card {
    animation: fadeIn 0.5s ease forwards;
}

/* ========================================
   DESKTOP TYPOGRAPHY & LAYOUT
   ======================================== */
@media (min-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    h4 { font-size: 1.25rem; }
    
    body {
        font-size: 16px;
    }
    
    .container {
        padding: 0 24px;
    }
}

@media (min-width: 1024px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2.25rem; }
    h3 { font-size: 1.75rem; }
}

/* ========================================
   RESPONSIVE GRID SYSTEMS
   ======================================== */
.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 640px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

/* ========================================
   SMOOTH ANIMATIONS
   ======================================== */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Prevent body scroll when mobile menu is open */
body.menu-open {
    overflow: hidden;
}

/* ========================================
    ANIMATIONS
    ======================================== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.calc-card.mobile-active {
    animation: slideDown 0.4s ease-out;
}

/* Mobile section padding (under 768px) */
@media (max-width: 768px) {
    .products-section,
    .category-section,
    .trust-section,
    .services-section,
    .why-choose-section,
    .testimonials-section,
    .featured-section {
        padding: 40px 0;
    }
    
    .product-grid {
        gap: 12px;
    }
    
    .category-grid {
        gap: 12px;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

/* Tablet section padding (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .product-grid {
        gap: 16px;
    }
    
    .category-grid {
        gap: 16px;
    }
}

/* Mobile small screens (under 480px) */
@media (max-width: 480px) {
    h1 { font-size: 1.1rem; }
    h2 { font-size: 1rem; }
    h3 { font-size: 0.95rem; }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .product-content {
        padding: 10px;
    }
    
    .product-name {
        font-size: 12px;
    }
    
    .product-price .price {
        font-size: 11px;
    }
    
    .section-title {
        font-size: 1rem;
    }
    
    .hero-content h1 {
        font-size: 1.25rem;
    }
}

/* ========================================
   GOLDENLINE-STYLE TYPOGRAPHY
   ======================================== */

/* Body text sizes */
.gml-body {
    font-size: 15px;
    line-height: 1.65;
    color: #666666;
}

/* Eyebrow text (uppercase labels) */
.gml-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #e8271a;
    display: block;
    margin-bottom: 6px;
}

/* Card description */
.gml-desc {
    font-size: 12.5px;
    color: #6b7280;
    line-height: 1.6;
}

/* Price text */
.gml-price {
    font-size: 13px;
    font-weight: 800;
    color: #0f2a44;
}

/* ========================================
   GOLDENLINE-STYLE CARD STYLES
   ======================================== */

.gml-card {
    background: #fff;
    border-radius: 14px;
    border: 1.5px solid #e8ecf4;
    overflow: hidden;
    transition: all 0.22s;
}

.gml-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(6,15,30,0.1);
    border-color: #c8d4e8;
}

/* ========================================
   GOLDENLINE-STYLE BUTTONS
   ======================================== */

.gml-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 24px;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
    line-height: 1;
}

.gml-btn-primary {
    background: #e8271a;
    color: #fff;
    box-shadow: 0 5px 18px rgba(232,39,26,0.35);
}

.gml-btn-primary:hover {
    background: #c41f14;
    transform: translateY(-2px);
}

.gml-btn-secondary {
    background: #0f2a44;
    color: #fff;
}

.gml-btn-secondary:hover {
    background: #e8271a;
}
