/* ═══════════════════════════════════════════════════════
   Adnaldo Trading — Main Stylesheet
   ═══════════════════════════════════════════════════════ */


:root {
    /* ── Vibrant Mixed Color Branding ── */
    --primary: #0f3d2e;
    --primary-light: #1a5c45;
    --primary-dark: #0a2a1f;
    --accent: #6fc04c;
    --accent-light: #b6e7a0;
    --accent-gold: #d4a017;
    --accent-gold-light: #f0c850;
    --accent-coral: #ff6b6b;
    --accent-blue: #3b82f6;
    --accent-purple: #8b5cf6;
    --accent-teal: #14b8a6;
    --gradient-primary: linear-gradient(135deg, #0f3d2e 0%, #1a5c45 50%, #6fc04c 100%);
    --gradient-warm: linear-gradient(135deg, #d4a017 0%, #ff6b6b 100%);
    --gradient-cool: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    --gradient-hero: linear-gradient(135deg, #0f3d2e 0%, #14b8a6 50%, #6fc04c 100%);
    --beige: #f5f0e8;
    --beige-light: #faf7f2;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --red: #dc2626;
    --green: #6fc04c;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1), 0 4px 6px rgba(0,0,0,0.05);
    --shadow-xl: 0 20px 25px rgba(0,0,0,0.1), 0 10px 10px rgba(0,0,0,0.04);
    --shadow-colored: 0 10px 30px rgba(15,61,46,0.15);
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Inter', sans-serif;
    --text-main: #1a1a2e;
    --text-dark-bg: #fff;
    --text-secondary: #4a5568;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-secondary);
    font-size: 18px;
    color: var(--text-main);
    background: var(--white);
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    color: var(--primary);
    line-height: 1.3;
    font-weight: 700;
}

h1 { font-size: clamp(2rem, 4vw, 3.2rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); }

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 16px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    line-height: 1.4;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: linear-gradient(90deg, #0f3d2e 0%, #1a5c45 50%, #2d8a56 100%);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(15,61,46,0.3);
}

.btn-primary:hover {
    background: var(--primary-light);
    border-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(15,61,46,0.35);
}

.btn-secondary {
    background: rgba(255,255,255,0.15);
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.6);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.btn-white:hover {
    background: var(--beige-light);
    transform: translateY(-1px);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
}

.btn-outline-white:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--white);
}

.btn-block {
    display: flex;
    justify-content: center;
    width: 100%;
}

.btn-lg {
    padding: 14px 36px;
    font-size: 17px;
}

/* ─── Top Bar ─── */
.top-bar {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 10px 0;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.top-bar i {
    margin-right: 6px;
    color: var(--accent-gold-light);
}

/* ─── Header ─── */
.header {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 12px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-name {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 18px;
    color: var(--gray-900);
}

.logo-sub {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--primary);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

.nav-link {
    padding: 8px 16px;
    font-weight: 500;
    font-size: 16px;
    color: var(--text-main);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link:hover {
    color: var(--accent);
    background: rgba(111,192,76,0.08);
}

.nav-link .fa-chevron-down {
    font-size: 10px;
}

.nav-dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-200);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
}

.dropdown-right {
    left: auto;
    right: 0;
}

.nav-dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a,
.dropdown-content .dropdown-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    font-size: 15px;
    color: var(--gray-700);
    border-radius: var(--radius-sm);
    width: 100%;
    background: none;
    border: none;
    font-family: inherit;
    cursor: pointer;
    text-align: left;
}

.dropdown-content a:hover,
.dropdown-content .dropdown-btn:hover {
    background: var(--beige-light);
    color: var(--primary);
}

.search-bar {
    flex: 1;
    max-width: 400px;
    position: relative;
    margin: 0 auto;
}

.search-bar i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
    font-size: 14px;
}

.search-bar input {
    width: 100%;
    padding: 10px 16px 10px 40px;
    border: 1px solid var(--gray-200);
    border-radius: 50px;
    font-size: 15px;
    font-family: var(--font-secondary);
    background: var(--gray-50);
    transition: var(--transition);
}

.search-bar input:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(15,61,46,0.1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

.action-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--gray-600);
    position: relative;
    font-size: 20px;
}

.action-btn:hover {
    background: var(--beige-light);
    color: var(--primary);
}

.badge {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 20px;
    height: 20px;
    background: var(--accent-coral);
    color: var(--white);
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(255,107,107,0.4);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 20px;
    color: var(--gray-700);
    cursor: pointer;
    padding: 8px;
}

/* Mobile-only elements hidden on desktop */
.mobile-menu-header,
.mobile-menu-close,
.mobile-menu-search,
.mobile-menu-footer,
.nav-overlay {
    display: none;
}
.nav-links-list {
    display: contents;
}

/* ─── Flash Messages ─── */
.flash-message {
    padding: 12px 0;
    font-size: 15px;
    font-weight: 500;
}

.flash-success {
    background: #ecfdf5;
    color: var(--green);
}

.flash-message .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flash-message button {
    background: none;
    border: none;
    cursor: pointer;
    color: inherit;
    font-size: 18px;
}

/* ─── Hero Section ─── */
.hero {
    position: relative;
    overflow: hidden;
}

.hero-slider {
    position: relative;
}

.hero-slide {
    min-height: 600px;
    display: none;
    align-items: center;
    background-size: cover;
    background-position: center;
    position: relative;
    animation: heroFadeIn 0.8s ease;
}

.hero-slide.active {
    display: flex;
}

@keyframes heroFadeIn {
    from { opacity: 0; transform: scale(1.02); }
    to { opacity: 1; transform: scale(1); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,61,46,0.85) 0%, rgba(15,61,46,0.6) 50%, rgba(0,0,0,0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 640px;
    color: var(--white);
}

.hero-badge {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
    opacity: 0.8;
}

.hero-content h1 {
    font-size: clamp(32px, 5vw, 54px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.15;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.hero-content p {
    font-size: clamp(16px, 2vw, 20px);
    opacity: 0.95;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Hero Navigation Arrows */
.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.3);
    background: rgba(0,0,0,0.25);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    z-index: 4;
    transition: var(--transition);
    backdrop-filter: blur(6px);
}

.hero-nav:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.6);
    transform: translateY(-50%) scale(1.1);
}

.hero-prev {
    left: 24px;
}

.hero-next {
    right: 24px;
}

.hero-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 4;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.dot.active {
    background: var(--white);
    width: 28px;
    border-radius: 5px;
}

/* ─── Sections ─── */
.section {
    padding: 80px 0;
}

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 36px;
    gap: 16px;
    flex-wrap: wrap;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 10px;
    background: linear-gradient(135deg, rgba(212,160,23,0.1), rgba(111,192,76,0.1));
    padding: 6px 14px;
    border-radius: 30px;
    width: fit-content;
}

.section-badge i {
    color: var(--accent);
}

.section-header h2 {
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
}

.section-link {
    font-size: 16px;
    font-weight: 600;
    color: var(--accent-gold);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.section-link:hover {
    gap: 10px;
    color: var(--primary);
}

.section-desc {
    font-size: 16px;
    color: var(--gray-500);
    max-width: 480px;
    line-height: 1.6;
}

/* ─── Categories ─── */
.categories-section {
    background: var(--gray-50);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.category-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--grad-from, var(--primary)), var(--grad-to, var(--accent)));
    opacity: 0;
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-colored);
    border-color: var(--primary);
}

.category-card:hover::before {
    opacity: 1;
}

.category-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--grad-from, var(--primary)), var(--grad-to, var(--primary-light)));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 22px;
    flex-shrink: 0;
}

.category-info {
    flex: 1;
}

.category-label {
    font-size: 12px;
    color: var(--gray-500);
    font-weight: 500;
}

.category-info h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary);
}

.category-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 13px;
    flex-shrink: 0;
    transition: var(--transition);
    box-shadow: 0 3px 10px rgba(15,61,46,0.25);
}

.category-card:hover .category-arrow {
    transform: translateX(4px);
}

/* ─── Products Grid ─── */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.products-scroll {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-colored);
}

.product-label {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.product-label.featured {
    background: var(--gradient-primary);
    color: var(--white);
}

.product-label.trending {
    background: var(--gradient-warm);
    color: var(--white);
}

.product-label.new {
    background: var(--gradient-cool);
    color: var(--white);
}

.product-label.sale {
    background: var(--red);
    color: var(--white);
}

.product-image {
    position: relative;
    padding-top: 100%;
    background: var(--gray-100);
    overflow: hidden;
    min-height: 120px;
}

.product-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    background: var(--gray-200);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-actions {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition);
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.product-actions button {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: var(--white);
    color: var(--gray-700);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    font-size: 15px;
}

.product-actions button:hover {
    background: var(--primary);
    color: var(--white);
}

.product-info {
    padding: 14px 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-name {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: 600;
    font-size: 16px;
    color: var(--text-main);
    margin-bottom: 8px;
    line-height: 1.4;
}

.product-name:hover {
    color: var(--primary);
}

.product-price-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-price {
    font-weight: 700;
    font-size: 19px;
    color: var(--primary);
    font-family: var(--font-primary);
}

.product-compare-price {
    font-size: 14px;
    color: var(--gray-400);
    text-decoration: line-through;
}

.add-to-cart-btn {
    margin-left: auto;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: var(--gradient-primary);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: var(--transition);
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(15,61,46,0.25);
}

.add-to-cart-btn:hover {
    background: var(--accent-gold);
    transform: scale(1.15);
    box-shadow: 0 5px 15px rgba(212,160,23,0.35);
}

.product-btn-group {
    margin-left: auto;
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}

.buy-now-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #e8860c 0%, #f5a623 100%);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: var(--transition);
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(232,134,12,0.3);
}

.buy-now-btn:hover {
    background: linear-gradient(135deg, #d47800 0%, #e8960c 100%);
    transform: scale(1.15);
    box-shadow: 0 5px 15px rgba(232,134,12,0.4);
}

.product-btn-group .add-to-cart-btn {
    margin-left: 0;
}

/* ─── Fresh Section ─── */
.fresh-section {
    background: var(--beige-light);
}

/* ─── Trust Section ─── */
.trust-section {
    text-align: center;
}

.trust-header {
    max-width: 600px;
    margin: 0 auto 48px;
}

.trust-header h2 {
    font-size: clamp(26px, 3.5vw, 40px);
    margin-bottom: 12px;
    color: var(--primary);
}

.trust-header p {
    color: var(--text-secondary);
    font-size: 17px;
    line-height: 1.7;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.trust-card {
    padding: 40px 32px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.trust-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.trust-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(111,192,76,0.15), rgba(15,61,46,0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--accent);
    font-size: 28px;
}

.trust-card h3 {
    font-size: 21px;
    margin-bottom: 10px;
    color: var(--primary);
}

.trust-card p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ─── CTA Section ─── */
.cta-section {
    padding: 60px 0 80px;
}

.cta-box {
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    padding: 52px 56px;
    display: flex;
    align-items: center;
    gap: 48px;
    color: var(--white);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(15,61,46,0.3);
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
}

.cta-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.cta-badge {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    opacity: 0.7;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}

.cta-content h2 {
    font-size: clamp(24px, 3vw, 34px);
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.3;
}

.cta-content p {
    opacity: 0.9;
    margin-bottom: 24px;
    font-size: 17px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cta-info-card {
    background: var(--beige-light);
    border-radius: var(--radius-lg);
    padding: 32px;
    color: var(--gray-800);
    min-width: 280px;
    position: relative;
    z-index: 2;
}

.cta-info-badge {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--primary);
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.cta-info-card h3 {
    font-size: 20px;
    margin-bottom: 16px;
}

.cta-info-details p {
    font-size: 15px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-600);
}

.cta-info-details i {
    color: var(--primary);
}

/* ─── Footer ─── */
.footer {
    background: var(--gray-900);
    color: var(--gray-400);
}

.footer-newsletter {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary), var(--primary-light));
    padding: 64px 0;
    text-align: center;
    color: var(--white);
}

.newsletter-inner {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 22px;
}

.footer-newsletter h3 {
    font-size: clamp(22px, 3vw, 30px);
    color: var(--white);
    margin-bottom: 8px;
}

.footer-newsletter p {
    font-size: 15px;
    opacity: 0.8;
    margin-bottom: 24px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
    max-width: 420px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 20px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    font-size: 15px;
    font-family: var(--font-secondary);
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.5);
}

.newsletter-form input:focus {
    outline: none;
    border-color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.15);
}

.newsletter-form button {
    padding: 12px 28px;
    background: var(--accent-gold);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    font-family: var(--font-primary);
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(212,160,23,0.35);
}

.newsletter-form button:hover {
    background: var(--accent-gold-light);
}

.footer-main {
    padding: 64px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-logo .logo-icon {
    background: var(--primary);
}

.footer-logo .logo-name {
    color: var(--white);
}

.footer-logo .logo-sub {
    color: var(--primary-light);
}

.footer-brand > p {
    font-size: 15px;
    margin-bottom: 16px;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gray-800);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    font-size: 15px;
}

.social-links a:hover {
    background: var(--gradient-primary);
    color: var(--white);
    transform: translateY(-2px);
}

.contact-info p {
    font-size: 14px;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-col h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-gold);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 15px;
    color: var(--gray-400);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-col ul li a::before {
    content: '›';
    font-size: 17px;
    color: var(--gray-600);
}

.footer-col ul li a:hover {
    color: var(--accent-gold-light);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
}

/* ─── Page Header ─── */
.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, rgba(15,61,46,0.85) 100%);
    padding: 48px 0 40px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
    pointer-events: none;
}

.page-header h1 {
    font-size: clamp(26px, 3.5vw, 36px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
}

.page-header .breadcrumb a,
.page-header .breadcrumb span {
    color: rgba(255,255,255,0.7);
}

.page-header .breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: var(--gray-500);
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb span:not(:last-child) {
    color: var(--gray-400);
}

/* ─── Shop Layout ─── */
.shop-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 32px;
}

.shop-sidebar {
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    height: fit-content;
    position: sticky;
    top: 100px;
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), opacity 0.3s;
}

.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.sidebar-header h3 {
    font-size: 20px;
}

.sidebar-close {
    display: none;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
}

.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s;
}
.sidebar-overlay.active {
    display: block;
    opacity: 1;
}

.filter-group {
    margin-bottom: 24px;
}

.filter-group h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--gray-800);
}

.filter-list {
    list-style: none;
}

.filter-list li a {
    display: block;
    padding: 8px 12px;
    font-size: 15px;
    border-radius: var(--radius-sm);
    color: var(--gray-600);
}

.filter-list li a:hover,
.filter-list li a.active {
    background: var(--beige-light);
    color: var(--primary);
    font-weight: 500;
}

.shop-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.filter-toggle {
    display: none;
    padding: 10px 20px;
    border: 1.5px solid var(--primary);
    border-radius: var(--radius);
    background: var(--white);
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font-secondary);
    color: var(--primary);
    transition: var(--transition);
    gap: 8px;
}

.filter-toggle:hover {
    background: var(--primary);
    color: var(--white);
}

.results-count {
    font-size: 14px;
    color: var(--gray-500);
    font-weight: 500;
}

.pagination-wrapper {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.pagination-wrapper nav {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pagination-wrapper nav > div:first-child {
    display: none;
}

.pagination-wrapper nav > div:last-child {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.pagination-wrapper nav > div:last-child > p {
    font-size: 13px;
    color: var(--gray-500);
}

.pagination-wrapper nav > div:last-child > span {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
    justify-content: center;
}

.pagination-wrapper nav > div:last-child span,
.pagination-wrapper nav > div:last-child a {
    padding: 8px 14px;
    border: 1px solid var(--gray-200);
    font-size: 14px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    text-decoration: none;
    color: var(--gray-700);
}

.pagination-wrapper nav > div:last-child a:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.pagination-wrapper nav > div:last-child span[aria-current] {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.pagination-wrapper nav > div:last-child span[aria-disabled] {
    color: var(--gray-300);
    cursor: not-allowed;
}

/* Fix oversized SVG arrows in Laravel pagination */
.pagination-wrapper svg {
    width: 16px;
    height: 16px;
    display: block;
}

.pagination-wrapper nav > div:last-child span svg,
.pagination-wrapper nav > div:last-child a svg {
    width: 16px;
    height: 16px;
}

.empty-state {
    text-align: center;
    padding: 80px 20px;
    color: var(--gray-500);
}

.empty-state i {
    font-size: 48px;
    margin-bottom: 16px;
    color: var(--gray-300);
}

.empty-state h3 {
    color: var(--gray-700);
    margin-bottom: 8px;
}

.empty-state p {
    margin-bottom: 24px;
}

/* ─── Product Detail ─── */
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 64px;
    align-items: start;
}

.pd-gallery {
    position: sticky;
    top: 100px;
}

.pd-main-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
}

.pd-main-image img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.pd-thumbnails {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.thumb {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 2px solid var(--gray-200);
    cursor: pointer;
    background: none;
    padding: 0;
}

.thumb.active {
    border-color: var(--primary);
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pd-info-top {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 4px;
}

.pd-category {
    font-size: 13px;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.pd-info h1 {
    font-size: 28px;
    margin: 8px 0 16px;
}

.pd-price {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.pd-price .price {
    font-size: 28px;
    font-weight: 700;
    color: var(--gray-900);
    font-family: var(--font-primary);
}

.pd-price .compare-price {
    font-size: 18px;
    color: var(--gray-400);
    text-decoration: line-through;
}

.discount-badge {
    padding: 4px 10px;
    background: #fef2f2;
    color: var(--red);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
}

.pd-description {
    margin-bottom: 16px;
    line-height: 1.7;
}

.qv-stock {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}

.in-stock {
    color: var(--green);
}

.out-stock {
    color: var(--red);
}

.pd-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0 24px;
    flex-wrap: wrap;
}

.pd-actions .btn {
    white-space: nowrap;
}

.pd-actions .add-to-cart-btn {
    flex: 1;
    min-width: 160px;
    max-width: 280px;
    justify-content: center;
    display: flex;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--primary);
    box-shadow: 0 4px 15px rgba(15,61,46,0.3);
    width: auto;
    height: auto;
    font-size: inherit;
}

.btn-buy-now {
    background: linear-gradient(90deg, #e8860c 0%, #f5a623 100%);
    color: var(--white);
    border: none;
    font-weight: 600;
    transition: var(--transition);
}

.btn-buy-now:hover {
    background: linear-gradient(90deg, #d47800 0%, #e8960c 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232,134,12,0.4);
}

.pd-actions .buy-now-btn {
    flex: 1;
    min-width: 160px;
    max-width: 280px;
    justify-content: center;
    display: flex;
    border-radius: var(--radius);
    overflow: hidden;
    width: auto;
    height: auto;
    font-size: inherit;
}

.pd-actions .wishlist-toggle-btn {
    width: 48px;
    height: 48px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.qty-selector {
    display: flex;
    align-items: center;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    overflow: hidden;
}

.qty-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: var(--gray-50);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--gray-600);
    transition: var(--transition);
}

.qty-btn:hover {
    background: var(--gray-200);
}

.qty-input {
    width: 48px;
    height: 40px;
    border: none;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    font-family: var(--font-secondary);
    -moz-appearance: textfield;
}

.qty-input::-webkit-inner-spin-button,
.qty-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
}

.pd-meta {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 24px;
}

.pd-full-description {
    border-top: 1px solid var(--gray-200);
    padding-top: 24px;
}

.pd-full-description h3 {
    margin-bottom: 12px;
}

.related-products {
    margin-top: 64px;
    padding-top: 48px;
    border-top: 1px solid var(--gray-200);
}

.related-products h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 28px;
}

.related-products h2 {
    font-size: 24px;
    margin-bottom: 24px;
}

/* ─── Cart ─── */
.cart-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 32px;
    align-items: start;
}

.cart-header-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 40px;
    gap: 16px;
    padding: 12px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--gray-200);
}

.cart-item {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 40px;
    gap: 16px;
    padding: 20px 16px;
    align-items: center;
    border-bottom: 1px solid var(--gray-100);
    transition: background 0.2s;
}

.cart-item:hover {
    background: var(--gray-50);
}

.cart-product {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cart-product img {
    width: 72px;
    height: 72px;
    border-radius: var(--radius);
    object-fit: cover;
    border: 1px solid var(--gray-200);
}

.cart-product-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cart-product-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--gray-800);
}

.cart-product-price-mobile {
    display: none;
    font-size: 13px;
    color: var(--primary);
    font-weight: 600;
}

.cart-price, .cart-total {
    font-weight: 600;
    font-family: var(--font-primary);
    font-size: 14px;
}

.cart-total {
    color: var(--primary);
}

.cart-remove {
    background: none;
    border: none;
    color: var(--gray-400);
    cursor: pointer;
    font-size: 14px;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.cart-remove:hover {
    color: var(--white);
    background: var(--red);
}

.cart-summary {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 28px;
    position: sticky;
    top: 100px;
}

.cart-summary h3 {
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    gap: 8px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 14px;
}

.text-accent {
    color: var(--accent);
    font-size: 13px;
}

.summary-total {
    font-weight: 700;
    font-size: 16px;
    padding-top: 12px;
    border-top: 1px solid var(--gray-200);
    margin-top: 12px;
    margin-bottom: 24px;
}

.summary-total span:last-child {
    color: var(--primary);
}

.btn-block {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.cart-summary .btn {
    margin-bottom: 8px;
}

/* ─── Checkout ─── */
.checkout-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 40px;
}

.step {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-400);
}

.step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gray-200);
    color: var(--gray-500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
}

.step.active { color: var(--primary); }
.step.active .step-num { background: var(--primary); color: var(--white); }
.step.completed { color: var(--accent); }
.step.completed .step-num { background: var(--accent); color: var(--white); }

.step-line {
    width: 60px;
    height: 2px;
    background: var(--gray-200);
    margin: 0 12px;
}

.step-line.completed { background: var(--accent); }

.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 32px;
    align-items: start;
}

.checkout-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 28px;
    margin-bottom: 20px;
}

.checkout-card h3 {
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-100);
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
}

.checkout-card .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.checkout-card .form-group {
    margin-bottom: 16px;
}

.checkout-card label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 6px;
}

.checkout-card label .required {
    color: var(--red);
}

.checkout-card input,
.checkout-card select,
.checkout-card textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s, box-shadow 0.3s;
    background: var(--gray-50);
    box-sizing: border-box;
}

.checkout-card input:focus,
.checkout-card select:focus,
.checkout-card textarea:focus {
    border-color: var(--accent);
    outline: none;
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(111,192,76,0.1);
}

.form-error {
    color: var(--red);
    font-size: 12px;
    margin-top: 4px;
    display: block;
}

/* Payment Options */
.payment-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.payment-option {
    display: block;
    cursor: pointer;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 16px;
    transition: var(--transition);
}

.payment-option:hover { border-color: var(--gray-300); }
.payment-option.selected { border-color: var(--primary); background: rgba(15,61,46,0.03); }
.payment-option input[type="radio"] { display: none; }

.payment-option-content {
    display: flex;
    align-items: center;
    gap: 14px;
}

.payment-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius);
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--primary);
    flex-shrink: 0;
}

.payment-option.selected .payment-icon {
    background: var(--primary);
    color: var(--white);
}

.payment-details strong {
    display: block;
    font-size: 14px;
    margin-bottom: 2px;
}

.payment-details span {
    font-size: 12px;
    color: var(--gray-500);
}

.payment-recommended {
    margin-left: auto;
    background: linear-gradient(135deg, #0f3d2e, #22c55e);
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

/* Checkout Summary Sidebar */
.checkout-summary {
    position: sticky;
    top: 100px;
}

.checkout-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
    max-height: 300px;
    overflow-y: auto;
}

.checkout-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.checkout-item img {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    border: 1px solid var(--gray-200);
}

.checkout-item-info {
    flex: 1;
    min-width: 0;
}

.checkout-item-name {
    display: block;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.checkout-item-qty {
    font-size: 12px;
    color: var(--gray-500);
}

.checkout-item-price {
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
}

.checkout-totals {
    padding-top: 16px;
    border-top: 1px solid var(--gray-200);
}

.shipping-note {
    font-size: 12px;
    color: var(--accent);
    margin-bottom: 12px;
    padding: 8px 12px;
    background: rgba(111,192,76,0.08);
    border-radius: var(--radius-sm);
}

.checkout-secure {
    text-align: center;
    font-size: 12px;
    color: var(--gray-500);
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* ─── Order Success ─── */
.order-success {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.success-icon {
    font-size: 64px;
    color: var(--accent);
    margin-bottom: 16px;
}

.order-success h2 {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 8px;
}

.success-subtitle {
    color: var(--gray-500);
    font-size: 16px;
    margin-bottom: 32px;
}

.order-details-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 28px;
    text-align: left;
    margin-bottom: 32px;
}

.order-details-header {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-100);
    margin-bottom: 20px;
}

.order-label {
    display: block;
    font-size: 12px;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.order-number {
    color: var(--primary);
    font-size: 15px;
}

.order-total-amount {
    color: var(--primary);
    font-size: 18px;
}

.order-status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.order-status-badge.pending {
    background: #fff3cd;
    color: #856404;
}

.order-items-list {
    margin-bottom: 20px;
}

.order-items-list h4 {
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 12px;
}

.order-item-row {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 14px;
}

.order-item-name { flex: 1; font-weight: 500; }
.order-item-qty { color: var(--gray-500); margin: 0 16px; }
.order-item-price { font-weight: 700; }

.order-summary-footer {
    padding-top: 16px;
    border-top: 1px solid var(--gray-200);
    margin-bottom: 20px;
}

.order-delivery-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-100);
}

.delivery-col h4 {
    font-size: 14px;
    color: var(--primary);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.delivery-col p {
    font-size: 13px;
    color: var(--gray-600);
    margin-bottom: 4px;
}

.success-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ─── Auth ─── */
.auth-section {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: var(--gray-50);
}

.auth-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 48px;
    width: 100%;
    max-width: 440px;
    box-shadow: var(--shadow-lg);
}

.auth-header {
    text-align: center;
    margin-bottom: 32px;
}

.auth-header .logo-icon {
    margin: 0 auto 16px;
}

.auth-header h2 {
    font-size: 24px;
    margin-bottom: 4px;
}

.auth-header p {
    font-size: 14px;
    color: var(--gray-500);
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--gray-700);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"],
.form-group input[type="number"],
.form-group input[type="url"],
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-family: var(--font-secondary);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(15,61,46,0.1);
}

.form-group input.is-invalid {
    border-color: var(--red);
}

.error-text {
    color: var(--red);
    font-size: 13px;
    margin-top: 4px;
    display: block;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    cursor: pointer;
}

.auth-footer {
    text-align: center;
    margin-top: 24px;
    font-size: 14px;
    color: var(--gray-500);
}

.auth-footer a {
    color: var(--primary);
    font-weight: 600;
}

/* ─── Quick View Modal ─── */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
    backdrop-filter: blur(4px);
}

.modal-overlay.open {
    display: flex;
}

.modal-content {
    background: var(--white);
    border-radius: var(--radius-xl);
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlide 0.3s ease;
}

@keyframes modalSlide {
    from { opacity: 0; transform: translateY(20px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: var(--gray-100);
    cursor: pointer;
    font-size: 16px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: var(--gray-200);
}

.quick-view-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.qv-image {
    border-radius: var(--radius-xl) 0 0 var(--radius-xl);
    overflow: hidden;
}

.qv-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.qv-details {
    padding: 32px;
}

.qv-category {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.qv-details h2 {
    font-size: 22px;
    margin: 8px 0 12px;
}

.qv-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.qv-price .price {
    font-size: 24px;
    font-weight: 700;
    font-family: var(--font-primary);
}

.qv-price .compare-price {
    font-size: 16px;
    color: var(--gray-400);
    text-decoration: line-through;
}

.qv-description {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 16px;
    line-height: 1.7;
}

.qv-actions {
    display: flex;
    gap: 12px;
    margin: 20px 0;
}

.qv-full-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--primary);
    font-weight: 600;
}

.qv-full-link:hover {
    gap: 10px;
}

/* ─── Toast ─── */
.toast-container {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 11000;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.toast {
    background: var(--white);
    border-radius: var(--radius);
    padding: 14px 20px;
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    animation: toastIn 0.3s ease;
    border-left: 4px solid var(--primary);
}

.toast.success { border-left-color: var(--green); }
.toast.error { border-left-color: var(--red); }

@keyframes toastIn {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */

/* ── Tablet landscape / small desktop ── */
@media (max-width: 1024px) {
    .section { padding: 56px 0; }
    .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .products-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
    .products-scroll { grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .cta-box { flex-direction: column; text-align: center; }
    .cta-content { text-align: center; }
    .cta-buttons { justify-content: center; }
    .cta-info-card { min-width: auto; width: 100%; max-width: 420px; margin: 0 auto; }
    .product-detail { grid-template-columns: 1fr; gap: 32px; }
    .pd-gallery { position: static; }
    .pd-info h1 { font-size: 24px; }
    .pd-price .price { font-size: 24px; }
    .cart-layout { grid-template-columns: 1fr; }
    .cart-summary { position: static; }
    .section-header { flex-wrap: wrap; }
    .shop-layout { grid-template-columns: 1fr; }
    .shop-sidebar {
        position: fixed;
        top: 0; left: -300px; bottom: 0;
        width: 280px;
        z-index: 10001;
        border-radius: 0;
        border: none;
        box-shadow: 4px 0 24px rgba(0,0,0,0.12);
        overflow-y: auto;
        transition: left 0.32s cubic-bezier(0.4,0,0.2,1);
    }
    .shop-sidebar.open { left: 0; }
    .sidebar-close { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; }
    .filter-toggle { display: flex; align-items: center; }
}

/* ── Tablet portrait ── */
@media (max-width: 768px) {
    .section { padding: 44px 0; }
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 28px;
    }
    .section-header h2 { font-size: clamp(22px, 5vw, 30px); }
    .section-link { font-size: 14px; }
    .section-desc { text-align: left; max-width: 100%; }

    /* Nav mobile slide panel */
    .mobile-toggle { display: block; }
    .header-inner { gap: 12px; }
    .header-actions { gap: 8px; }
    .search-bar { display: none; }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100%;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        z-index: 10001;
        box-shadow: -4px 0 24px rgba(0,0,0,0.12);
        padding: 0;
        overflow-y: auto;
        transition: right 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .nav-menu.open { right: 0; display: flex; }
    .nav-overlay {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.45);
        z-index: 10000;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s, visibility 0.3s;
    }
    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    .mobile-menu-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 18px 20px;
        border-bottom: 1px solid var(--gray-200);
    }
    .mobile-menu-title {
        font-size: 18px;
        font-weight: 700;
        color: var(--primary);
        font-family: var(--font-primary);
    }
    .mobile-menu-close {
        background: none;
        border: none;
        font-size: 20px;
        color: var(--gray-600);
        cursor: pointer;
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: var(--transition);
    }
    .mobile-menu-close:hover {
        background: var(--gray-100);
        color: var(--primary);
    }
    .mobile-menu-search {
        display: block;
        padding: 14px 20px;
        border-bottom: 1px solid var(--gray-200);
    }
    .mobile-search-form {
        position: relative;
    }
    .mobile-search-form i {
        position: absolute;
        left: 14px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--gray-400);
        font-size: 14px;
    }
    .mobile-search-form input {
        width: 100%;
        padding: 10px 16px 10px 40px;
        border: 1px solid var(--gray-200);
        border-radius: 50px;
        font-size: 14px;
        font-family: var(--font-secondary);
        background: var(--gray-50);
    }
    .mobile-search-form input:focus {
        outline: none;
        border-color: var(--primary);
        background: var(--white);
    }
    .nav-links-list {
        flex: 1;
        padding: 8px 0;
        overflow-y: auto;
    }
    .nav-links-list .nav-link {
        font-size: 15px;
        padding: 13px 24px;
        width: 100%;
        text-align: left;
        font-weight: 500;
        color: var(--text-main);
        border-radius: 0;
        border-bottom: 1px solid var(--gray-100);
        justify-content: flex-start;
    }
    .nav-links-list .nav-link:hover {
        background: var(--beige-light);
        color: var(--accent);
    }
    .nav-links-list .nav-link i:first-child {
        width: 20px;
        text-align: center;
        color: var(--accent);
    }
    .nav-dropdown .dropdown-content {
        position: static;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border: none;
        border-radius: 0;
        padding: 0;
        min-width: auto;
        transform: none;
        background: var(--gray-50);
        display: none;
    }
    .nav-dropdown.open .dropdown-content {
        display: block;
    }
    .nav-dropdown .dropdown-content a {
        padding: 11px 24px 11px 52px;
        font-size: 14px;
        border-bottom: 1px solid var(--gray-100);
    }
    .mobile-menu-footer {
        display: block;
        padding: 16px 20px;
        border-top: 1px solid var(--gray-200);
        text-align: center;
    }
    .mobile-menu-footer p {
        font-size: 12px;
        color: var(--gray-400);
    }

    /* Grids */
    .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .products-scroll { grid-template-columns: repeat(2, 1fr); gap: 14px; overflow-x: visible; }
    .trust-grid { grid-template-columns: 1fr; gap: 20px; }

    /* Hero */
    .hero-content h1 { font-size: clamp(22px, 5vw, 32px); }
    .hero-content p { font-size: 15px; margin-bottom: 24px; }
    .hero-buttons { flex-direction: column; gap: 10px; }
    .hero-buttons .btn { width: 100%; justify-content: center; }
    .hero-nav { display: none; }

    /* Category cards */
    .category-card { padding: 16px 18px; gap: 12px; }
    .category-icon { width: 42px; height: 42px; font-size: 18px; }
    .category-info h3 { font-size: 14px; }
    .category-label { font-size: 10px; }
    .category-arrow { width: 30px; height: 30px; font-size: 11px; }

    /* Product cards */
    .product-info { padding: 12px; }
    .product-name { font-size: 14px; white-space: normal; -webkit-line-clamp: 2; display: -webkit-box; -webkit-box-orient: vertical; }
    .product-price { font-size: 16px; }
    .add-to-cart-btn { width: 34px; height: 34px; font-size: 13px; }
    .buy-now-btn { width: 34px; height: 34px; font-size: 13px; }
    .footer-hide-mobile { display: none !important; }
    .footer-grid { grid-template-columns: 1fr !important; }

    /* Trust section */
    .trust-header { margin-bottom: 32px; }
    .trust-card { padding: 28px 24px; text-align: center; }

    /* CTA */
    .cta-box { padding: 36px 24px; gap: 28px; }
    .cta-content h2 { font-size: clamp(20px, 4vw, 26px); }

    /* Page header */
    .page-header { padding: 36px 0 28px; }
    .page-header h1 { font-size: 22px; }
    .breadcrumb { font-size: 13px; flex-wrap: wrap; }

    /* Product detail */
    .product-detail { grid-template-columns: 1fr; gap: 24px; }
    .pd-gallery { position: static; }
    .pd-info h1 { font-size: 22px; }
    .pd-price .price { font-size: 24px; }
    .pd-price .compare-price { font-size: 15px; }
    .pd-actions { flex-wrap: wrap; gap: 10px; }
    .pd-actions .btn { flex: 1; min-width: 0; }
    .pd-actions .add-to-cart-btn,
    .pd-actions .buy-now-btn { min-width: 0; max-width: none; }
    .pd-actions .wishlist-toggle-btn { width: 100%; height: 44px; }
    .pd-thumbnails { flex-wrap: wrap; }
    .related-products { margin-top: 40px; padding-top: 32px; }
    .related-products h2 { font-size: 20px; }

    /* Contact responsive */
    .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
    .contact-cards { grid-template-columns: 1fr; }
    .contact-form .form-row { grid-template-columns: 1fr; }

    /* Cart responsive - card layout */
    .cart-header-row { display: none; }
    .cart-item {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        padding: 16px;
        border: 1px solid var(--gray-200);
        border-radius: var(--radius);
        margin-bottom: 12px;
        position: relative;
        background: var(--white);
    }
    .cart-product { width: 100%; }
    .cart-product-price-mobile { display: block; }
    .cart-price { display: none; }
    .cart-quantity { flex: 1; }
    .cart-total {
        display: flex;
        align-items: center;
        font-size: 16px;
    }
    .cart-total::before {
        content: attr(data-label) ': ';
        font-weight: 400;
        color: var(--gray-500);
        font-size: 13px;
        margin-right: 6px;
    }
    .cart-remove {
        position: absolute;
        top: 12px;
        right: 12px;
    }
    .cart-summary { padding: 20px; }

    /* Checkout responsive */
    .checkout-layout { grid-template-columns: 1fr; }
    .checkout-summary { position: static; order: -1; }
    .checkout-card .form-row { grid-template-columns: 1fr; }
    .checkout-card { padding: 20px; }
    .checkout-steps { gap: 0; }
    .step { font-size: 12px; }
    .step-line { width: 30px; margin: 0 6px; }
    .order-details-header { grid-template-columns: 1fr 1fr; }
    .order-delivery-info { grid-template-columns: 1fr; }
    .order-success h2 { font-size: 22px; }

    /* Pagination responsive */
    .pagination-wrapper nav > div:last-child span,
    .pagination-wrapper nav > div:last-child a { padding: 6px 10px; min-width: 36px; height: 36px; font-size: 13px; }

}

/* ── Mobile ── */
@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .section { padding: 32px 0; }

    /* Hero */
    .hero-content h1 { font-size: 22px; }
    .hero-content p { font-size: 14px; }
    .hero-badge { font-size: 10px; letter-spacing: 1.5px; }

    /* Category cards - stack to single column */
    .categories-grid { grid-template-columns: 1fr; gap: 10px; }

    /* Products - keep 2 columns but tighter */
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .products-scroll { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .product-info { padding: 10px; }
    .product-name { font-size: 13px; }
    .product-price { font-size: 15px; }
    .product-compare-price { font-size: 11px; }
    .add-to-cart-btn { width: 30px; height: 30px; font-size: 12px; }

    /* Section headers */
    .section-header h2 { font-size: 20px; }
    .section-badge { font-size: 11px; letter-spacing: 1.5px; padding: 5px 10px; }

    /* Buttons */
    .btn { padding: 12px 22px; font-size: 14px; }

    /* Misc */
    .top-bar { font-size: 12px; padding: 8px 0; }
    .top-bar p { font-size: 11px; }
    .footer-newsletter { padding: 36px 0; }
    .footer-newsletter h3 { font-size: 18px; }

    /* CTA */
    .cta-section { padding: 32px 0 40px; }
    .cta-box { padding: 24px 18px; gap: 20px; }
    .cta-content h2 { font-size: 19px; }
    .cta-content p { font-size: 14px; }
    .cta-info-card { padding: 24px 18px; }
    .cta-buttons { flex-direction: column; }
    .cta-buttons .btn { width: 100%; justify-content: center; }

    /* Trust */
    .trust-card { padding: 24px 18px; }
    .trust-icon { width: 52px; height: 52px; font-size: 22px; }
    .trust-card h3 { font-size: 17px; }
    .trust-card p { font-size: 14px; }

    /* Auth */
    .auth-card { padding: 28px 20px; }

    /* Product detail 480 */
    .pd-info h1 { font-size: 19px; }
    .pd-price .price { font-size: 22px; }
    .pd-actions { flex-direction: column; gap: 10px; }
    .pd-actions .btn { width: 100%; justify-content: center; max-width: none; min-width: 0; font-size: 15px; padding: 14px 20px; }
    .pd-actions .add-to-cart-btn { order: 1; }
    .pd-actions .buy-now-btn { order: 2; }
    .pd-actions .wishlist-toggle-btn { order: 3; width: 100%; height: 46px; border-radius: var(--radius); }
    .qty-selector { width: 100%; justify-content: center; order: 0; }
    .qty-input { flex: 1; text-align: center; }

    /* Shop 480 */
    .shop-toolbar { flex-direction: column; gap: 10px; align-items: stretch; }
    .filter-toggle { justify-content: center; }

    /* Cart 480 */
    .cart-product img { width: 56px; height: 56px; }
    .cart-item { padding: 12px; }

    /* Checkout 480 */
    .checkout-card { padding: 16px; }
    .checkout-steps { flex-wrap: wrap; justify-content: center; gap: 4px; }
    .step { font-size: 11px; }
    .step-line { width: 20px; margin: 0 4px; }
    .step-num { width: 28px; height: 28px; font-size: 12px; }
    .payment-option { padding: 12px; }
    .order-details-header { grid-template-columns: 1fr; }
    .success-actions { flex-direction: column; }
    .success-actions .btn { width: 100%; justify-content: center; }

}

/* ─── Value Proposition Banner ─── */
.value-props {
    padding: 24px 0;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
}
.value-props-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.value-prop-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
}
.value-prop-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}
.value-prop-item i {
    font-size: 1.7rem;
    color: var(--accent-gold);
    min-width: 36px;
    text-align: center;
}
.value-prop-item strong {
    display: block;
    font-size: 0.95rem;
    color: var(--primary);
    font-weight: 700;
}
.value-prop-item span {
    font-size: 0.82rem;
    color: var(--text-secondary);
}

@media (max-width: 992px) {
    .value-props-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .value-props-grid { grid-template-columns: 1fr; }
}

/* ─── Founder Story Section (Homepage) ─── */
.founder-story-section {
    background: var(--white);
    padding: 70px 0;
}
.founder-story-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 3.5rem;
    align-items: center;
}
.founder-story-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    object-fit: cover;
    aspect-ratio: 3/4;
}
.founder-story-text h2 {
    font-size: 1.9rem;
    color: var(--primary);
    margin-bottom: 1rem;
}
.founder-story-text p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}
.founder-quote {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #fff;
    padding: 1.5rem 1.75rem;
    border-radius: 14px;
    font-size: 1.05rem;
    font-style: italic;
    line-height: 1.7;
    margin: 1.5rem 0 2rem;
    position: relative;
}
.founder-quote i {
    color: #b8860b;
    font-size: 1.2rem;
    margin-right: 0.4rem;
    opacity: 0.7;
}
@media (max-width: 992px) {
    .founder-story-grid {
        grid-template-columns: 300px 1fr;
        gap: 2.5rem;
    }
}
@media (max-width: 768px) {
    .founder-story-section { padding: 50px 0; }
    .founder-story-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .founder-story-image img {
        max-width: 280px;
        margin: 0 auto;
        display: block;
    }
    .founder-quote {
        text-align: left;
    }
}

/* ─── Brand Promise Section (Homepage) ─── */
.brand-promise-section {
    background: var(--gray-50);
    padding: 60px 0;
}
.brand-promise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.brand-promise-item {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
    border-bottom: 3px solid transparent;
}
.brand-promise-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-colored);
    border-bottom-color: var(--accent);
}
.brand-promise-icon {
    font-size: 2.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}
.brand-promise-item h3 {
    color: var(--primary);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
}
.brand-promise-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}
.brand-promise-item .section-link {
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .brand-promise-section { padding: 44px 0; }
    .brand-promise-grid { grid-template-columns: 1fr; gap: 1.2rem; }
    .brand-promise-item { padding: 1.8rem 1.5rem; }
}

/* ─── Licensed & Certified Badges Strip ─── */
.cert-badges-section {
    padding: 0;
    margin-top: -1px;
    background: linear-gradient(135deg, var(--primary) 0%, #1a5c45 100%);
}
.cert-badges-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.cert-badge {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 24px;
    color: #fff;
    border-right: 1px solid rgba(255,255,255,0.1);
}
.cert-badge:last-child { border-right: none; }
.cert-badge-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--accent-gold);
    flex-shrink: 0;
}
.cert-badge strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
}
.cert-badge span {
    font-size: 12px;
    opacity: 0.8;
}
@media (max-width: 992px) {
    .cert-badges-grid { grid-template-columns: repeat(2, 1fr); }
    .cert-badge:nth-child(2) { border-right: none; }
}
@media (max-width: 600px) {
    .cert-badges-grid { grid-template-columns: 1fr; }
    .cert-badge { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 16px 20px; }
}

/* ─── Licensed & Certified Section (Homepage) ─── */
.licensed-section {
    background: var(--gray-50);
}
.licensed-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 48px;
    align-items: center;
}
.licensed-content h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
    line-height: 1.3;
}
.licensed-content > p {
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 28px;
}
.licensed-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 28px;
}
.licensed-detail {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid var(--gray-200);
}
.licensed-detail i {
    font-size: 18px;
    color: var(--primary);
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}
.licensed-detail strong {
    display: block;
    font-size: 14px;
    color: var(--primary);
}
.licensed-detail span {
    font-size: 11px;
    color: var(--gray-500);
}

/* Certificate Card Visual */
.licensed-visual {
    display: flex;
    justify-content: center;
}
.licensed-card {
    background: #fff;
    border: 2px solid var(--gray-200);
    border-radius: 20px;
    padding: 32px 28px;
    text-align: center;
    max-width: 380px;
    width: 100%;
    position: relative;
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}
.licensed-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-gold));
    border-radius: 20px 20px 0 0;
}
.licensed-card-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}
.licensed-card-header i {
    color: var(--accent-gold);
    font-size: 16px;
}
.licensed-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
}
.licensed-card > p {
    font-size: 11px;
    color: var(--gray-500);
    margin-bottom: 20px;
}
.licensed-card-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    padding: 14px 0;
    margin: 16px 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ─── AI Chat Widget ─── */
.chat-widget { position: fixed; bottom: 24px; right: 24px; z-index: 9999; font-family: 'Inter', 'Poppins', sans-serif; }

.chat-toggle {
    width: 56px; height: 56px; border-radius: 50%; border: none;
    background: var(--primary, #1a1a2e); color: #fff; cursor: pointer;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25); display: flex; align-items: center; justify-content: center;
    font-size: 22px; transition: transform 0.2s, background 0.3s; position: relative;
}
.chat-toggle:hover { transform: scale(1.08); }
.chat-toggle-active { background: var(--accent, #e94560); }
.chat-toggle-close { font-size: 18px; }

.chat-badge {
    position: absolute; top: -3px; right: -3px; width: 18px; height: 18px;
    background: #ef4444; color: #fff; border-radius: 50%; font-size: 10px; font-weight: 700;
    display: flex; align-items: center; justify-content: center; border: 2px solid #fff;
    line-height: 1;
}

.chat-window {
    position: absolute; bottom: 66px; right: 0; width: 340px; max-height: 480px;
    background: #fff; border-radius: 14px; box-shadow: 0 8px 40px rgba(0,0,0,0.18);
    display: flex; flex-direction: column; overflow: hidden;
    animation: chatSlideUp 0.25s ease;
}
@keyframes chatSlideUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

.chat-header {
    background: var(--primary, #1a1a2e); color: #fff; padding: 10px 14px;
    display: flex; align-items: center; justify-content: space-between;
}
.chat-header-info { display: flex; align-items: center; gap: 8px; }
.chat-header-info strong { font-size: 13px; display: block; }
.chat-status { font-size: 10px; color: rgba(255,255,255,0.7); display: flex; align-items: center; gap: 4px; }
.chat-status i { font-size: 6px; color: #4ade80; }

.chat-avatar {
    width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,0.15);
    display: flex; align-items: center; justify-content: center; font-size: 14px;
}

.chat-minimize { background: none; border: none; color: rgba(255,255,255,0.7); cursor: pointer; font-size: 13px; padding: 4px 8px; }
.chat-minimize:hover { color: #fff; }

.chat-messages {
    flex: 1; overflow-y: auto; padding: 12px; display: flex; flex-direction: column; gap: 10px;
    min-height: 250px; max-height: 320px; background: #f9fafb;
}

.chat-msg { display: flex; gap: 6px; align-items: flex-end; max-width: 88%; }
.chat-msg-bot { align-self: flex-start; }
.chat-msg-user { align-self: flex-end; flex-direction: row-reverse; }

.chat-msg-avatar {
    width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 10px; flex-shrink: 0;
}
.chat-msg-bot .chat-msg-avatar { background: var(--primary, #1a1a2e); color: #fff; }
.chat-msg-user .chat-msg-avatar { background: var(--accent, #e94560); color: #fff; }

.chat-msg-bubble {
    padding: 8px 12px; border-radius: 14px; font-size: 12.5px; line-height: 1.45; word-break: break-word;
}
.chat-msg-bot .chat-msg-bubble { background: #fff; color: #1f2937; border: 1px solid #e5e7eb; border-bottom-left-radius: 4px; }
.chat-msg-user .chat-msg-bubble { background: var(--primary, #1a1a2e); color: #fff; border-bottom-right-radius: 4px; }

.chat-input-area {
    display: flex; align-items: center; gap: 6px; padding: 8px 10px;
    border-top: 1px solid #e5e7eb; background: #fff;
}
.chat-input {
    flex: 1; border: 1px solid #d1d5db; border-radius: 20px; padding: 8px 14px;
    font-size: 12.5px; outline: none; transition: border-color 0.2s; background: #f9fafb;
}
.chat-input:focus { border-color: var(--primary, #1a1a2e); background: #fff; }

.chat-send {
    width: 34px; height: 34px; border-radius: 50%; border: none;
    background: var(--primary, #1a1a2e); color: #fff; cursor: pointer;
    display: flex; align-items: center; justify-content: center; font-size: 13px;
    transition: background 0.2s;
}
.chat-send:hover { background: var(--accent, #e94560); }

/* Typing animation */
.typing-dots span { animation: typeBlink 1.4s infinite; font-size: 20px; line-height: 1; font-weight: bold; }
.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typeBlink { 0%, 60%, 100% { opacity: 0.2; } 30% { opacity: 1; } }

/* Chat footer credit */
.chat-footer-credit {
    text-align: center; padding: 3px 8px; font-size: 8px; color: #bbb;
    background: #fff; border-top: 1px solid #f0f0f0; letter-spacing: 0.3px;
    flex-shrink: 0;
}
.chat-footer-credit a { color: #aaa; text-decoration: none; font-weight: 600; }
.chat-footer-credit a:hover { color: var(--primary, #1a1a2e); text-decoration: underline; }

/* Mobile responsive */
@media (max-width: 480px) {
    .chat-widget { bottom: 76px; right: 16px; }
    .chat-window { width: calc(100vw - 32px); right: 0; bottom: 62px; max-height: 60vh; }
    .chat-toggle { width: 48px; height: 48px; font-size: 18px; }
    .chat-badge { width: 16px; height: 16px; font-size: 9px; }
}
.licensed-card-footer {
    display: flex;
    justify-content: space-around;
    margin-top: 16px;
}
.licensed-card-footer div { text-align: center; }
.licensed-card-footer small {
    display: block;
    font-size: 10px;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.licensed-card-footer strong {
    font-size: 13px;
    color: var(--primary);
}
.licensed-card-seal {
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(15,61,46,0.3);
}
.licensed-card-seal i { font-size: 14px; }

@media (max-width: 992px) {
    .licensed-grid { grid-template-columns: 1fr; gap: 32px; }
    .licensed-visual { order: -1; }
}
@media (max-width: 640px) {
    .licensed-details { grid-template-columns: 1fr; }
}

/* ─── About Page Certified Section ─── */
.about-certified-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 40px;
}
.about-certified-header h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}
.about-certified-header p {
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.7;
}
.about-certified-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}
.about-cert-card {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    transition: all 0.3s;
}
.about-cert-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(15,61,46,0.08);
}
.about-cert-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(15,61,46,0.08), rgba(111,192,76,0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--primary);
    margin: 0 auto 16px;
}
.about-cert-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}
.about-cert-card p {
    font-size: 12px;
    color: var(--gray-500);
}
.about-cert-promise {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 28px;
    background: linear-gradient(135deg, var(--primary), #1a5c45);
    border-radius: 16px;
    color: #fff;
}
.about-cert-promise-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}
.about-cert-promise h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.about-cert-promise p {
    font-size: 0.85rem;
    opacity: 0.9;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .about-certified-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .about-certified-grid { grid-template-columns: 1fr; }
    .about-cert-promise { flex-direction: column; text-align: center; }
}

/* ─── Footer Trust Badges ─── */
.footer-trust-badges {
    background: rgba(255,255,255,0.05);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 16px 0;
}
.footer-badges-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
}
.footer-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
}
.footer-badge i {
    color: var(--accent-gold);
    font-size: 14px;
}
@media (max-width: 640px) {
    .footer-badges-grid { gap: 12px 20px; }
    .footer-badge { font-size: 11px; }
}

/* ─── Mobile Bottom Navigation ─── */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #e5e7eb;
    z-index: 1000;
    padding: 6px 0 env(safe-area-inset-bottom, 8px);
    box-shadow: 0 -2px 12px rgba(0,0,0,0.08);
}
@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: flex;
        justify-content: space-around;
        align-items: center;
    }
    body { padding-bottom: 65px; }
}
.mobile-bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    text-decoration: none;
    color: #6b7280;
    font-size: 10px;
    padding: 4px 8px;
    position: relative;
    transition: color 0.2s;
    -webkit-tap-highlight-color: transparent;
}
.mobile-bottom-nav-item i {
    font-size: 20px;
    line-height: 1;
}
.mobile-bottom-nav-item.active {
    color: var(--primary);
}
.mobile-bottom-nav-item.active i {
    color: var(--primary);
}
.mobile-nav-badge {
    position: absolute;
    top: -2px;
    right: 2px;
    background: var(--accent);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

/* ─── Policy Accept Popup ─── */
.policy-popup-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(4px);
}
.policy-popup {
    background: #fff;
    border-radius: 16px;
    max-width: 480px;
    width: 100%;
    padding: 36px 32px 28px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: policySlideUp 0.4s ease;
}
@keyframes policySlideUp {
    from { opacity: 0; transform: translateY(30px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
.policy-popup-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary, #0f3d2e), var(--accent, #2e7d32));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}
.policy-popup-icon i {
    font-size: 28px;
    color: #fff;
}
.policy-popup h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 14px;
}
.policy-popup-text {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 24px;
    max-height: 200px;
    overflow-y: auto;
    text-align: left;
    padding: 0 4px;
}
.policy-popup-text a {
    color: var(--accent, #2e7d32);
    font-weight: 600;
    text-decoration: underline;
}
.policy-popup-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}
.policy-accept-btn {
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--primary, #0f3d2e), var(--accent, #2e7d32));
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.policy-accept-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}
.policy-read-link {
    font-size: 13px;
    color: #888;
    text-decoration: underline;
}
.policy-read-link:hover {
    color: var(--accent, #2e7d32);
}

/* ─── PWA Install Popup ─── */
.pwa-popup {
    position: fixed;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    z-index: 99990;
    width: 92%;
    max-width: 400px;
    padding: 20px;
    animation: pwaSlideUp 0.5s ease;
}
@keyframes pwaSlideUp {
    from { opacity: 0; transform: translateX(-50%) translateY(40px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.pwa-popup-close {
    position: absolute;
    top: 10px;
    right: 14px;
    background: none;
    border: none;
    font-size: 16px;
    color: #999;
    cursor: pointer;
    padding: 4px;
}
.pwa-popup-close:hover { color: #333; }
.pwa-popup-inner {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}
.pwa-popup-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    object-fit: contain;
    flex-shrink: 0;
    border: 1px solid #eee;
}
.pwa-popup-text strong {
    font-size: 15px;
    color: #1a1a1a;
    display: block;
    margin-bottom: 3px;
}
.pwa-popup-text p {
    font-size: 13px;
    color: #777;
    margin: 0;
    line-height: 1.4;
}
.pwa-popup-actions {
    display: flex;
    gap: 10px;
}
.pwa-install-btn {
    flex: 1;
    padding: 11px 16px;
    background: linear-gradient(135deg, var(--primary, #0f3d2e), var(--accent, #2e7d32));
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: transform 0.2s;
}
.pwa-install-btn:hover { transform: translateY(-1px); }
.pwa-later-btn {
    padding: 11px 16px;
    background: #f3f4f6;
    color: #666;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}
.pwa-later-btn:hover { background: #e5e7eb; }

@media (max-width: 480px) {
    .policy-popup {
        padding: 28px 20px 22px;
    }
    .pwa-popup {
        bottom: 80px;
        width: 94%;
    }
}
