[x-cloak] { display: none !important; }

:root {
    --primary: #059669;
    --primary-dark: #047857;
    --primary-light: #34d399;
    --accent: #10b981;
    --dark: #111827;
    --dark-soft: #1f2937;
    --gray: #6b7280;
    --gray-light: #9ca3af;
    --gray-lighter: #d1d5db;
    --light: #f9fafb;
    --light-alt: #f3f4f6;
    --white: #ffffff;
    --danger: #ef4444;
    --warning: #f59e0b;
    --info: #3b82f6;
    --success: #10b981;
    --shadow-sm: 0 1px 2px rgba(0,0,0,.05);
    --shadow: 0 1px 3px rgba(0,0,0,.1), 0 1px 2px rgba(0,0,0,.06);
    --shadow-md: 0 4px 6px rgba(0,0,0,.07), 0 2px 4px rgba(0,0,0,.06);
    --shadow-lg: 0 10px 15px rgba(0,0,0,.1), 0 4px 6px rgba(0,0,0,.05);
    --radius: 0.5rem;
    --radius-lg: 0.75rem;
    --transition: 200ms ease;
}

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

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--dark);
    background-color: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }
a.text-white { color: #fff; }
a.text-white:hover { color: #fff; }

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

.container { max-width: 1280px; margin: 0 auto; padding: 0 1rem; }

/* ---- Header ---- */
.site-header {
    background: var(--white);
    border-bottom: 1px solid var(--gray-lighter);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-top {
    background: var(--dark);
    color: var(--white);
    font-size: 0.75rem;
    padding: 0.35rem 0;
}

.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    max-width: 1280px;
    margin: 0 auto;
    gap: 1.5rem;
}

.site-logo img { height: 40px; width: auto; }
.site-logo span { font-size: 1.5rem; font-weight: 700; color: var(--dark); }

.header-search {
    flex: 1;
    max-width: 520px;
    position: relative;
}

.header-search input {
    width: 100%;
    padding: 0.6rem 2.5rem 0.6rem 1rem;
    border: 2px solid var(--gray-lighter);
    border-radius: var(--radius);
    font-size: 0.875rem;
    transition: border-color var(--transition);
    outline: none;
}

.header-search input:focus { border-color: var(--primary); }

.header-search button {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--gray);
    cursor: pointer;
}

.header-actions { display: flex; align-items: center; gap: 1.25rem; }

.header-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.7rem;
    color: var(--dark);
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    transition: color var(--transition);
}

.header-action-btn:hover { color: var(--primary); }

.header-action-btn svg { width: 22px; height: 22px; margin-bottom: 2px; }

.cart-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background: var(--danger);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* ---- Navigation ---- */
.nav-main {
    background: var(--light);
    border-bottom: 1px solid var(--gray-lighter);
}

.nav-main ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.nav-main li a {
    display: block;
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--dark);
    transition: background var(--transition), color var(--transition);
}

.nav-main li a:hover,
.nav-main li.active a {
    background: var(--primary);
    color: var(--white);
}

/* ---- Hero Slider ---- */
.hero-slider { position: relative; overflow: hidden; }

.hero-slider .slide {
    position: relative;
    min-height: 420px;
    background-size: cover;
    background-position: center;
    display: none;
}

.hero-slider .slide.active { display: flex; align-items: center; }

.hero-slider .slide-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 3rem 2rem;
    color: var(--white);
}

.hero-slider .slide-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,.3);
}

.hero-slider .slide-content p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 3px rgba(0,0,0,.3);
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,.85);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: background var(--transition);
    z-index: 5;
}

.slider-nav:hover { background: var(--white); }
.slider-nav.prev { left: 1rem; }
.slider-nav.next { right: 1rem; }

.slider-dots {
    position: absolute;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

.slider-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,.5);
    cursor: pointer;
    transition: background var(--transition);
}

.slider-dots span.active { background: var(--white); }

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.65rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    line-height: 1.4;
}

.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-dark); color: var(--white); }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-dark { background: var(--dark); color: var(--white); }
.btn-dark:hover { background: var(--dark-soft); color: var(--white); }
.btn-danger { background: var(--danger); color: var(--white); }
.btn-danger:hover { background: #dc2626; color: var(--white); }
.btn-sm { padding: 0.4rem 1rem; font-size: 0.8rem; }
.btn-lg { padding: 0.85rem 2rem; font-size: 1rem; }
.btn-block { width: 100%; }

/* ---- Product Card ---- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-lighter);
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
}

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

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

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

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

.product-card-badges {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    z-index: 2;
}

.badge {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 3px;
    letter-spacing: 0.02em;
    color: var(--white);
}

.badge-new { background: var(--info); }
.badge-sale { background: var(--danger); }
.badge-bestseller { background: var(--warning); color: var(--dark); }
.badge-out-of-stock { background: var(--gray); }

.product-card-wishlist {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: rgba(255,255,255,.9);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
    z-index: 2;
}

.product-card-wishlist:hover { background: var(--danger); color: var(--white); }

.product-card-body { padding: 1rem; }

.product-card-brand {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.25rem;
}

.product-card-title {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 0.5rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card-title a { color: inherit; }
.product-card-title a:hover { color: var(--primary); }

.product-card-price { display: flex; align-items: baseline; gap: 0.5rem; }

.price-current {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.price-old {
    font-size: 0.85rem;
    color: var(--gray-light);
    text-decoration: line-through;
}

.price-discount {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--danger);
}

/* ---- Product Detail ---- */
.product-gallery { position: relative; }

.product-gallery-main {
    aspect-ratio: 1/1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--light-alt);
    cursor: crosshair;
    margin-bottom: 0.75rem;
}

.product-gallery-main img { width: 100%; height: 100%; object-fit: cover; }

.product-gallery-thumbs { display: flex; gap: 0.5rem; overflow-x: auto; }

.product-gallery-thumb {
    width: 72px;
    height: 72px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    flex-shrink: 0;
    transition: border-color var(--transition);
}

.product-gallery-thumb.active,
.product-gallery-thumb:hover { border-color: var(--primary); }

.product-gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-gallery-zoom {
    position: absolute;
    top: 0;
    left: 110%;
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: var(--radius-lg);
    background-size: 200%;
    background-repeat: no-repeat;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-lighter);
    display: none;
    z-index: 20;
}

.product-gallery-main:hover + .product-gallery-zoom,
.product-gallery-zoom.visible { display: block; }

/* ---- Quantity Input ---- */
.qty-control {
    display: inline-flex;
    align-items: center;
    border: 2px solid var(--gray-lighter);
    border-radius: var(--radius);
    overflow: hidden;
}

.qty-control button {
    width: 38px;
    height: 38px;
    border: none;
    background: var(--light);
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
}

.qty-control button:hover { background: var(--gray-lighter); }

.qty-control input {
    width: 48px;
    height: 38px;
    text-align: center;
    border: none;
    font-size: 0.9rem;
    font-weight: 600;
    -moz-appearance: textfield;
    outline: none;
}

.qty-control input::-webkit-outer-spin-button,
.qty-control input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* ---- Filter Sidebar ---- */
.filter-sidebar {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-lighter);
    padding: 1.5rem;
}

.filter-group { margin-bottom: 1.5rem; }

.filter-group-title {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.3rem 0;
    font-size: 0.85rem;
    color: var(--dark-soft);
    cursor: pointer;
}

.filter-option input[type="checkbox"] { accent-color: var(--primary); }

.price-range-inputs { display: flex; gap: 0.5rem; align-items: center; }

.price-range-inputs input {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid var(--gray-lighter);
    border-radius: var(--radius);
    font-size: 0.85rem;
    outline: none;
}

.price-range-inputs input:focus { border-color: var(--primary); }
.price-range-inputs span { color: var(--gray); }

/* ---- Cart Sidebar / Page ---- */
.cart-table { width: 100%; border-collapse: collapse; }

.cart-table th {
    text-align: left;
    padding: 0.75rem;
    border-bottom: 2px solid var(--gray-lighter);
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--gray);
}

.cart-table td { padding: 0.75rem; border-bottom: 1px solid var(--light-alt); vertical-align: middle; }

.cart-item-image { width: 72px; height: 72px; border-radius: var(--radius); object-fit: cover; }

.cart-item-remove {
    background: none;
    border: none;
    color: var(--danger);
    cursor: pointer;
    font-size: 0.8rem;
    padding: 0.25rem;
}

.cart-summary {
    background: var(--light);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    font-size: 0.9rem;
}

.cart-summary-row.total {
    border-top: 2px solid var(--gray-lighter);
    margin-top: 0.5rem;
    padding-top: 0.75rem;
    font-weight: 700;
    font-size: 1.05rem;
}

/* ---- Toast Notifications ---- */
.toast-container {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-width: 360px;
}

.toast {
    padding: 0.85rem 1.25rem;
    border-radius: var(--radius);
    color: var(--white);
    font-size: 0.875rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: slideInRight 0.3s ease forwards;
}

.toast-success { background: var(--success); }
.toast-error { background: var(--danger); }
.toast-warning { background: var(--warning); color: var(--dark); }
.toast-info { background: var(--info); }

.toast-close {
    margin-left: auto;
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    opacity: 0.7;
    font-size: 1.1rem;
    line-height: 1;
}

.toast-close:hover { opacity: 1; }

@keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to   { transform: translateX(0);    opacity: 1; }
}

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

/* ---- Cookie Consent ---- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--white);
    padding: 1.25rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    z-index: 9998;
    box-shadow: 0 -4px 12px rgba(0,0,0,.15);
}

.cookie-banner p { font-size: 0.85rem; line-height: 1.5; flex: 1; }
.cookie-banner p a { color: var(--primary-light); text-decoration: underline; }

.cookie-banner-actions { display: flex; gap: 0.75rem; flex-shrink: 0; }

/* ---- Trust Badges ---- */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    padding: 2.5rem 1rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
}

.trust-badge-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.trust-badge-text { font-size: 0.8rem; font-weight: 600; color: var(--dark); }
.trust-badge-sub { font-size: 0.7rem; color: var(--gray); }

/* ---- Breadcrumbs ---- */
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 1rem 0;
    font-size: 0.8rem;
    color: var(--gray);
    flex-wrap: wrap;
}

.breadcrumbs a { color: var(--gray); }
.breadcrumbs a:hover { color: var(--primary); }
.breadcrumbs .separator { margin: 0 0.15rem; }
.breadcrumbs .current { color: var(--dark); font-weight: 500; }

/* ---- Footer ---- */
.site-footer { background: var(--dark); color: var(--gray-light); padding: 3rem 0 0; }

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem 2.5rem;
}

.footer-col h4 {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-col p { font-size: 0.85rem; line-height: 1.7; margin-bottom: 1rem; }

.footer-col ul { list-style: none; }

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

.footer-col ul li a {
    color: var(--gray-light);
    font-size: 0.85rem;
    transition: color var(--transition);
}

.footer-col ul li a:hover { color: var(--white); }

.footer-social { display: flex; gap: 0.75rem; margin-top: 1rem; }

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-light);
    transition: all var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 1.25rem 1rem;
    text-align: center;
    font-size: 0.8rem;
    max-width: 1280px;
    margin: 0 auto;
}

.footer-payments { display: flex; justify-content: center; gap: 0.75rem; margin-top: 0.75rem; }

.footer-payments img { height: 24px; opacity: 0.6; transition: opacity var(--transition); }
.footer-payments img:hover { opacity: 1; }

/* ---- Mobile Menu ---- */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--dark);
    padding: 0.5rem;
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.open { opacity: 1; visibility: visible; }

.mobile-menu {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100%;
    background: var(--white);
    z-index: 201;
    overflow-y: auto;
    transition: left 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.mobile-menu.open { left: 0; }

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--gray-lighter);
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark);
}

.mobile-menu ul { list-style: none; }

.mobile-menu ul li a {
    display: block;
    padding: 0.85rem 1.25rem;
    color: var(--dark);
    font-size: 0.9rem;
    border-bottom: 1px solid var(--light-alt);
}

.mobile-menu ul li a:hover { background: var(--light); color: var(--primary); }

/* ---- Back to Top ---- */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 50;
}

.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--primary-dark); transform: translateY(-2px); }

/* ---- Section Titles ---- */
.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

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

.section-subtitle {
    font-size: 0.9rem;
    color: var(--gray);
    margin-top: -1rem;
    margin-bottom: 1.5rem;
}

/* ---- Loading / Skeleton ---- */
.skeleton {
    background: linear-gradient(90deg, var(--light-alt) 25%, var(--gray-lighter) 50%, var(--light-alt) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--radius);
}

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

.loading-spinner {
    width: 32px;
    height: 32px;
    border: 3px solid var(--gray-lighter);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ---- RTL Support ---- */
[dir="rtl"] .header-search button { right: auto; left: 0.75rem; }
[dir="rtl"] .product-card-badges { left: auto; right: 0.75rem; }
[dir="rtl"] .product-card-wishlist { right: auto; left: 0.75rem; }
[dir="rtl"] .toast-container { right: auto; left: 1rem; }
[dir="rtl"] .mobile-menu { left: auto; right: -300px; }
[dir="rtl"] .mobile-menu.open { right: 0; left: auto; }
[dir="rtl"] .cart-badge { right: auto; left: -8px; }
[dir="rtl"] .product-gallery-zoom { left: auto; right: 110%; }

@keyframes slideInLeft {
    from { transform: translateX(-100%); opacity: 0; }
    to   { transform: translateX(0);     opacity: 1; }
}

[dir="rtl"] .toast { animation-name: slideInLeft; }

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

@media (max-width: 768px) {
    .product-grid { grid-template-columns: repeat(2, 1fr); gap: 0.625rem; }

    .header-search { display: none; }
    .mobile-menu-toggle { display: flex; }
    .nav-main { display: none; }

    .hero-slider .slide { min-height: 240px; }
    .hero-slider .slide-content { padding: 2rem 1rem; }
    .hero-slider .slide-content h2 { font-size: 1.35rem; }
    .hero-slider .slide-content p { font-size: 0.95rem; margin-bottom: 1rem; }

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

    .filter-sidebar {
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        max-width: 360px;
        height: 100%;
        z-index: 201;
        overflow-y: auto;
        border-radius: 0;
        transition: left 0.3s ease;
    }

    .filter-sidebar.open { left: 0; }

    [dir="rtl"] .filter-sidebar { left: auto; right: -100%; }
    [dir="rtl"] .filter-sidebar.open { right: 0; }

    .cookie-banner {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
        padding: 0.75rem;
    }

    .trust-badges { gap: 1rem; padding: 1.5rem 0.75rem; }
    .trust-badge-icon { width: 44px; height: 44px; }
    .trust-badge-text { font-size: 0.75rem; }
    .trust-badge-sub { font-size: 0.65rem; }

    .slider-nav { width: 36px; height: 36px; }
    .slider-nav.prev { left: 0.5rem; }
    .slider-nav.next { right: 0.5rem; }

    .section-title { font-size: 1.25rem; margin-bottom: 1rem; }
    .section-subtitle { font-size: 0.8rem; margin-top: -0.75rem; margin-bottom: 1rem; }
}

@media (max-width: 480px) {
    .product-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
    .product-card-body { padding: 0.625rem; }
    .product-card-title { font-size: 0.75rem; }
    .product-card-brand { font-size: 0.65rem; }
    .price-current { font-size: 0.875rem; }
    .price-old { font-size: 0.75rem; }

    .hero-slider .slide { min-height: 200px; }
    .hero-slider .slide-content h2 { font-size: 1.15rem; }
    .hero-slider .slide-content p { font-size: 0.85rem; }

    .breadcrumbs { font-size: 0.7rem; padding: 0.75rem 0; }

    .slider-dots span { width: 8px; height: 8px; }

    .container { padding: 0 0.75rem; }
}
