/* ==========================================================================
   CSS Variables & Tokens (Premium Marketplace Style)
   ========================================================================== */
:root {
    /* Color Palette */
    --primary-color: #16A34A; /* Modern Green */
    --primary-hover: #166534; /* Dark Green */
    --primary-light: #DCFCE7; /* Light Green */
    --bg-body: #F9FAFB; /* Light background */
    --bg-white: #FFFFFF;
    
    /* Text Colors */
    --text-dark: #111827; /* Charcoal text */
    --text-muted: #6B7280; /* Gray text */
    --text-light: #9CA3AF;
    
    /* Accents */
    --accent-yellow: #FACC15; /* Aksen Promo / COD */
    --accent-red: #EF4444;
    
    /* Borders & Shadows */
    --border-color: #E5E7EB; /* Border gray */
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.03); /* Extremely soft base shadow */
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 16px 32px rgba(0, 0, 0, 0.08); /* Deep, soft float */
    
    /* Typography */
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    
    /* Dimensions */
    --container-width: 1200px;
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-body);
    color: var(--text-dark);
    font-family: var(--font-body);
    font-size: 16px; /* Body text desktop */
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    font-family: var(--font-body);
    border: none;
    background: none;
    transition: all 0.2s ease;
}

input, select {
    font-family: var(--font-body);
    transition: all 0.2s ease;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

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

/* ==========================================================================
   Header Navigation
   ========================================================================== */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 32px;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 10px;
}

.logo-img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    flex-shrink: 0;
}

.logo .logo-text {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.3px;
    white-space: nowrap;
}

.desktop-menu {
    display: flex;
    gap: 20px;
}

.desktop-menu a {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: color 0.2s;
}

.desktop-menu a:hover {
    color: var(--primary-color);
}

.search-bar {
    flex: 1;
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 99px; /* Pill shape */
    overflow: hidden;
    background-color: var(--bg-body);
    transition: border-color 0.2s, background-color 0.2s, box-shadow 0.2s;
}

.search-bar:focus-within {
    border-color: var(--primary-color);
    background-color: var(--bg-white);
    box-shadow: 0 0 0 3px rgba(3, 172, 14, 0.1);
}

.search-bar input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    outline: none;
    font-size: 0.95rem;
    color: var(--text-dark);
    background: transparent;
}

.search-btn {
    padding: 10px 20px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-wa-header {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--bg-white);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 99px; /* Pill shape */
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    overflow: hidden;
    text-decoration: none;
}

.btn-wa-header::before {
    content: '';
    position: absolute;
    top: 0; left: 15%; right: 15%;
    height: 40%;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0) 100%);
    border-radius: 50% 50% 0 0;
    opacity: 0.8;
}

.btn-wa-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #2ae06d 0%, #15a190 100%);
}

.btn-wa-header svg, .btn-wa-header span {
    z-index: 1;
}

.btn-wa-header svg {
    fill: currentColor;
}

/* ==========================================================================
   Hero Section — Clean Light Theme
   ========================================================================== */
.hero-section {
    background: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.hero-banner {
    display: block;
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    height: auto;
    object-fit: cover;
    border-radius: 0 0 24px 24px;
}

/* CTA Buttons */
.btn-primary {
    display: inline-block;
    padding: 14px 28px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 99px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(3, 172, 14, 0.25);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(3, 172, 14, 0.35);
}

.btn-secondary {
    display: inline-block;
    padding: 14px 28px;
    background-color: var(--bg-white);
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.05rem;
    border: 1px solid var(--border-color);
    border-radius: 99px;
    transition: all 0.2s ease;
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ==========================================================================
   Trust Section
   ========================================================================== */
.trust-section {
    background-color: #F9FAFB;
    padding: 64px 0;
    border-bottom: 1px solid var(--border-color);
}

.trust-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.trust-header {
    text-align: center;
    margin-bottom: 48px;
}

.trust-header h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.trust-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

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

.trust-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.trust-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: transparent;
}

.trust-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background-color: var(--primary-light);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-icon-box.accent-yellow {
    background-color: rgba(250, 204, 21, 0.15);
    color: #CA8A04; /* Dark yellow for visibility */
}

.trust-icon-box svg {
    width: 24px;
    height: 24px;
}

.trust-content h3 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.trust-content p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ==========================================================================
   Main Layout & Filter Bar
   ========================================================================== */
.main-container {
    max-width: var(--container-width);
    margin: 48px auto;
    padding: 0 24px;
}

.filter-bar-section {
    background-color: var(--bg-white);
    border-radius: 16px;
    padding: 20px 24px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 40px;
    border: 1px solid var(--border-color);
}

.filter-container {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: center;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.filter-group label {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.filter-group select {
    padding: 10px 40px 10px 16px;
    border: 1px solid var(--border-color);
    border-radius: 99px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    background-color: var(--bg-body);
    cursor: pointer;
    outline: none;
    appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%2331353B%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpolyline%20points%3D%226%209%2012%2015%2018%209%22%3E%3C%2Fpolyline%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    transition: all 0.2s;
}

.filter-group select:hover, .filter-group select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(3, 172, 14, 0.1);
    background-color: var(--bg-white);
}

/* ==========================================================================
   Social Media Strip
   ========================================================================== */
.social-strip {
    background-color: var(--bg-white);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 12px 24px;
    margin-bottom: 32px;
}

.social-strip-container {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.social-strip-text {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

.social-strip-icons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-strip-icons .social-icon-btn.small {
    width: 32px;
    height: 32px;
    border-radius: 8px;
}

.social-strip-icons .social-icon-btn.small svg {
    width: 16px;
    height: 16px;
}

/* ==========================================================================
   Catalog Section
   ========================================================================== */
.catalog-section {
    min-width: 0;
}

.catalog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.catalog-header h2 {
    font-family: var(--font-heading);
    font-size: 36px; /* Desktop Section Title */
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text-dark);
}

/* ==========================================================================
   Product Grid & Cards (Premium Styling)
   ========================================================================== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px; /* Increased gap for breathing room */
}

.product-card {
    background-color: var(--bg-white);
    border-radius: 16px; /* Softer, larger radius */
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 12px; /* Internal frame for the image */
    height: 100%;
}

.product-card:hover {
    transform: translateY(-4px); /* Hover effect naik 4px */
    box-shadow: var(--shadow-hover);
    border-color: transparent;
}

.badge-cod {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--accent-yellow);
    color: var(--text-dark);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 6px 10px;
    border-radius: 8px;
    z-index: 2;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 6px rgba(250, 204, 21, 0.3);
}

.badge-stock {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--primary-light);
    color: var(--primary-color);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 6px 10px;
    border-radius: 8px;
    z-index: 2;
}

.card-img-wrapper {
    position: relative;
    width: 100%;
    padding-top: 100%; /* 1:1 Aspect Ratio */
    background-color: var(--bg-body);
    border-radius: 12px;
    overflow: hidden;
}

.card-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.card-content {
    padding: 20px 8px 8px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-title {
    font-family: var(--font-body);
    font-size: 16px; /* Desktop Product Name */
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 12px;
    color: var(--text-dark);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 3em;
}

.product-price {
    font-family: var(--font-heading);
    font-size: 22px; /* Desktop Price */
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.product-unit {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
}

.product-meta {
    margin-top: 4px;
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.meta-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.meta-stock {
    color: var(--primary-color);
    font-weight: 700;
}

.card-actions {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-wa-playful {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 44px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #ffffff;
    border: none;
    border-radius: 99px;
    font-weight: 600;
    font-size: 14.5px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden;
}

.btn-wa-playful::before {
    content: '';
    position: absolute;
    top: 0; left: 15%; right: 15%;
    height: 40%;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0) 100%);
    border-radius: 50% 50% 0 0;
    opacity: 0.8;
}

.btn-wa-playful:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #2ae06d 0%, #15a190 100%);
}

.btn-wa-playful svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    z-index: 1;
}

.btn-wa-playful span {
    z-index: 1;
}

.btn-buy {
    width: 100%;
    padding: 12px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 99px; /* Pill shape */
    font-weight: 700;
    font-size: 0.95rem;
    text-align: center;
    transition: all 0.2s ease;
    display: block;
    box-shadow: 0 4px 12px rgba(3, 172, 14, 0.2);
}

.btn-buy:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(3, 172, 14, 0.3);
}

.btn-detail-link {
    width: 100%;
    padding: 8px;
    background-color: transparent;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.85rem;
    text-align: center;
    border: none;
    transition: all 0.2s ease;
}

.btn-detail-link:hover {
    text-decoration: underline;
    background-color: var(--bg-body);
    border-radius: 99px;
}

.empty-state {
    text-align: center;
    padding: 80px 24px;
    background-color: var(--bg-white);
    border-radius: 24px;
    border: 1px dashed var(--border-color);
    margin-top: 24px;
}

/* ==========================================================================
   Product Detail Modal (Premium)
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 32, 44, 0.7);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 24px;
}

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

.modal-content {
    background-color: var(--bg-white);
    border-radius: 24px;
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(40px) scale(0.98);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 24px 48px rgba(0,0,0,0.2);
}

.modal-overlay.active .modal-content {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: var(--bg-body);
    color: var(--text-muted);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s;
}

.modal-close:hover {
    background: var(--border-color);
    color: var(--text-dark);
    transform: rotate(90deg);
}

.modal-body {
    padding: 40px;
}

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

.modal-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    background-color: var(--bg-body);
    padding: 32px;
}

.modal-info h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.modal-price {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 32px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 24px;
}

.modal-specs {
    margin-bottom: 32px;
    background-color: var(--bg-body);
    border-radius: 12px;
    padding: 20px;
}

.modal-specs div {
    display: flex;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.modal-specs div:last-child {
    margin-bottom: 0;
}

.modal-specs div span:first-child {
    width: 140px;
    color: var(--text-muted);
    font-weight: 500;
}

.modal-specs div span:last-child {
    font-weight: 600;
    color: var(--text-dark);
}

.modal-desc h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.modal-desc p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

.modal-benefits {
    background-color: var(--primary-light);
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 24px;
    border: 1px solid rgba(3, 172, 14, 0.1);
}

.modal-benefits h4 {
    font-size: 1.05rem;
    margin-bottom: 12px;
    color: var(--primary-color);
    font-weight: 700;
}

.modal-benefits ul {
    list-style: none;
}

.modal-benefits li {
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 8px;
    display: flex;
    gap: 12px;
    line-height: 1.5;
}

.modal-benefits li::before {
    content: "✓";
    color: var(--primary-color);
    font-weight: 800;
}

.modal-sticky-footer {
    margin-top: 32px;
}

/* ==========================================================================
   Cara Pesan Section
   ========================================================================== */
.how-to-order {
    background-color: var(--bg-white);
    padding: 80px 0;
    margin-top: 64px;
    border-top: 1px solid var(--border-color);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 36px; /* Desktop Section Title */
    font-weight: 800;
    margin-bottom: 48px;
    letter-spacing: -0.5px;
}

.how-to-order-img {
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 1000px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background-color: var(--bg-white);
    border-top: 1px solid var(--border-color);
    padding: 64px 0 0;
    font-family: var(--font-body);
}

.footer-top {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px 48px;
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr 1fr;
    gap: 40px;
}

.footer-col h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-dark);
}

/* Column 1: Brand */
.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.footer-brand h3 {
    font-family: 'Baloo 2', cursive;
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.brand-col p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

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

.footer-badges .badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: #DCFCE7; /* soft green */
    color: #166534;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Column 2: Contact */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.contact-item svg {
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.contact-item a:hover {
    color: var(--primary-hover);
}

/* Column 3: Links */
.link-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.2s;
}

.footer-link svg {
    color: var(--border-color);
    transition: color 0.2s;
}

.footer-link:hover {
    color: var(--primary-color);
    transform: translateX(4px);
}

.footer-link:hover svg {
    color: var(--primary-color);
}

/* Column 4: Socials */
.footer-socials {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: #4b5563;
    transition: all 0.2s ease;
    text-decoration: none;
    background-color: var(--bg-white);
}

.social-icon-btn:hover {
    background-color: #DCFCE7;
    border-color: #DCFCE7;
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 24px;
    background-color: var(--bg-white);
}

.footer-bottom-content {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
}

.footer-bottom-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-note {
    font-size: 0.85rem !important;
    font-style: italic;
    color: #9ca3af !important;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 15px; /* Mobile body text */
    }
    
    
    .section-title, .catalog-header h2 {
        font-size: 26px; /* Mobile Section Title: 24-28px */
    }
    
    .logo .logo-text {
        font-size: 17px;
    }
    
    .product-title {
        font-size: 15px; /* Mobile Product Name: 14-16px */
    }
    
    .product-price {
        font-size: 20px; /* Mobile Price: 18-22px */
    }

    .social-strip-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .social-strip-icons {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
        width: 100%;
    }
    
    .social-strip-icons .social-icon-btn.small {
        width: 100%;
        height: 40px;
    }
    
    .filter-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .filter-group {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .filter-group select {
        width: 100%;
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .nav-container {
        flex-wrap: wrap;
    }
    
    .desktop-menu {
        display: none;
    }
    
    .search-bar {
        order: 3;
        width: 100%;
        margin-top: 12px;
    }
    
    .modal-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .modal-content {
        display: flex;
        flex-direction: column;
        max-height: 90vh;
        overflow: hidden;
        border-radius: 16px;
    }
    
    .modal-body {
        overflow-y: auto;
        padding: 24px;
        padding-bottom: 0;
    }
    
    .modal-image img {
        padding: 16px;
    }
    
    .modal-sticky-footer {
        position: sticky;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: var(--bg-white);
        padding: 16px 0;
        margin-top: 16px;
        border-top: 1px solid var(--border-color);
        z-index: 20;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }
    .section-title, .catalog-header h2 {
        font-size: 24px;
    }
    .product-title {
        font-size: 14px;
    }
    .product-price {
        font-size: 18px;
    }
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-header h2 {
        font-size: 26px;
    }
}
