/* =========================================
   1. CORE & PREMIUM THEME
   ========================================= */
:root { 
    --blue: #007aff; 
    --text: #1d1d1f; 
    --grey: #86868b; 
    --light-grey: #f5f5f7;
    --border: #e1e1e3; 
    --bg: #f2f2f2; 
    --white: #ffffff;
    --shadow: 0 10px 40px rgba(0,0,0,0.06);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

img {
    max-width: 100%;
    height: auto;
    display: block;
}

body { 
    font-family: 'Inter', -apple-system, sans-serif; 
    background: var(--bg); 
    color: var(--text); 
    line-height: 1.5; 
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

/* =========================================
   2. SHARED NAVIGATION (Glassmorphism)
   ========================================= */
.navbar { 
    background: var(--glass); 
    backdrop-filter: blur(20px); 
    -webkit-backdrop-filter: blur(20px);
    padding: 16px 0; 
    border-bottom: 1px solid var(--border); 
    position: sticky; 
    top: 0; 
    z-index: 2000; 
}

.navbar-content { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}

.logo { 
    font-size: 22px; 
    font-weight: 700; 
    letter-spacing: -0.5px; 
    text-decoration: none;
    color: var(--text);
    text-transform: none; /* Modern look uses mixed case */
}
.logo span { color: var(--blue); font-weight: 400; }

.search-wrapper { position: relative; width: 300px; }
.search-wrapper input { 
    width: 100%; 
    padding: 10px 40px 10px 15px; 
    border-radius: 20px; 
    border: 1px solid transparent; 
    background: var(--light-grey); 
    outline: none; 
    transition: all 0.3s ease;
}
.search-wrapper input:focus { 
    background: var(--white);
    border-color: var(--blue);
    width: 350px; /* Expands slightly */
}
.search-icon { position: absolute; right: 15px; top: 50%; transform: translateY(-50%); color: var(--grey); pointer-events: none; }


/* =========================================
   3. HERO SECTION (Dynamic & Interesting)
   ========================================= */
.hero-section {
    height: 85vh;
    min-height: 650px;
    /* This gradient uses the deep navy-grey from the image and fades to charcoal */
    background: linear-gradient(135deg, #1e222d 0%, #111318 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-bottom: 60px;
}

/* The Background Phone Image */
.hero-image-bg {
    position: absolute;
    right: 0; /* Align to the far right for a flush look */
    top: 0;
    height: 100%;
    width: 60%; /* Occupies the right half of the screen */
    z-index: 1;
    pointer-events: none;
}

/* The actual image tag inside the box */
.hero-image-bg img {
    height: 100%;
    width: 100%;
    object-fit: cover; /* This makes the image fill the entire right side */
    object-position: left center; /* Keeps the camera lenses in view */
}

/* Optional: Mobile optimization to prevent the phone from being huge on a phone screen */
@media (max-width: 768px) {
    .hero-image-bg {
        height: 60vh; /* Smaller height on mobile screens */
        right: -30%;
        opacity: 0.4;
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    /* Adds a subtle spotlight effect on the left to keep text readable */
    background: radial-gradient(circle at 20% 50%, rgba(30, 34, 45, 0.5) 0%, transparent 70%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: #ffffff;
    padding-left: 10%;
    max-width: 800px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-subtitle { 
    color: var(--blue); 
    font-weight: 600; 
    text-transform: uppercase; 
    letter-spacing: 3px; 
    font-size: 14px; 
    margin-bottom: 15px; 
    display: block; 
}

.hero-content h1 { 
    font-size: clamp(40px, 6vw, 80px); 
    font-weight: 800; 
    line-height: 1; 
    margin-bottom: 25px;
    letter-spacing: -2px;
}

.hero-content p {
    color: #b0b3b8; /* A slightly warmer grey to match the titanium theme */
}

/* Premium CTA Button */
.cta-button {
    background: var(--blue);
    color: white;
    text-decoration: none;
    padding: 20px 45px;
    border-radius: 35px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: inline-block;
    box-shadow: 0 10px 30px rgba(0, 122, 255, 0.3);
}

.cta-button:hover { 
    background: #0084ff;
    transform: translateY(-5px); 
    box-shadow: 0 20px 40px rgba(0, 122, 255, 0.4); 
}

/* Mobile Tweak */
@media (max-width: 768px) {
    .hero-image-bg {
        right: -30%;
        opacity: 0.4;
    }
    .hero-content {
        padding-left: 5%;
        text-align: center;
        margin: 0 auto;
    }
}

/* Brand Showcase Chips */
.brand-showcase { padding: 60px 0; background: var(--light-grey); }
.brand-flex { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; }
.brand-card {
    background: var(--white);
    border: none; /* Cleaner look */
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}
.brand-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--blue); }
.brand-card img { height: 24px; width: auto; }
.brand-card span { font-weight: 600; }
/* =========================================
   BRAND CHIPS (App-Style UI)
   ========================================= */
.brand-showcase {
    padding: 60px 0;
    /* This section remains transparent to show the page background */
}

.brand-flex {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.brand-chip {
    background: var(--white);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 130px;
    height: 130px;
    border-radius: 28px; /* Smooth, modern radius */
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.brand-icon-wrapper {
    height: 40px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.brand-chip img {
    max-height: 100%;
    max-width: 50px;
    object-fit: contain;
    filter: grayscale(1); /* Keeps it minimalist until hovered */
    opacity: 0.6;
    transition: all 0.3s ease;
}

.brand-chip span {
    font-size: 14px;
    font-weight: 600;
    color: var(--grey);
    letter-spacing: -0.2px;
}

/* --- Interactive Hover Effects --- */
.brand-chip:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--blue);
    box-shadow: 0 25px 50px rgba(0, 122, 255, 0.1);
}

.brand-chip:hover img {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.1);
}

.brand-chip:hover span {
    color: var(--blue);
}

/* Mobile Tweak */
@media (max-width: 480px) {
    .brand-chip {
        width: 100px;
        height: 100px;
        border-radius: 20px;
    }
    .brand-icon-wrapper { height: 30px; }
    .brand-chip span { font-size: 12px; }
}

/* =========================================
   4. SHOP LAYOUT (shop.html)
   ========================================= */
.shop-layout { display: flex; gap: 60px; margin: 60px auto; }

.shop-sidebar { width: 280px; position: sticky; top: 120px; height: fit-content; }
.sidebar-header { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 30px; }
.sidebar-header h2 { font-size: 24px; font-weight: 700; }
.reset-link { background: none; border: none; color: var(--blue); cursor: pointer; font-weight: 600; }

.filter-group { margin-bottom: 40px; }
.filter-group h3 { font-size: 14px; color: var(--grey); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; }

.filter-options { display: flex; flex-direction: column; gap: 12px; }

/* Custom Checkbox Styling */
.custom-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
}
.custom-checkbox input { 
    appearance: none; 
    width: 20px; height: 20px; 
    border: 2px solid var(--border); 
    border-radius: 6px; 
    transition: 0.2s; 
}
.custom-checkbox input:checked { background: var(--blue); border-color: var(--blue); position: relative; }
.custom-checkbox input:checked::after {
    content: '✓'; color: white; position: absolute; font-size: 14px; left: 3px; top: -1px;
}

/* =========================================
   5. PRODUCT GRID & CARDS
   ========================================= */
.product-area { flex: 1; }
.results-bar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; color: var(--grey); }

.product-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); 
    gap: 30px; 
}

.product-card { 
    background: transparent;
    border: none;
}

.card-img-box { 
    background: var(--white);
    border-radius: 20px;
    
    /* UPDATED: Added fixed height and aspect-ratio to prevent jumping */
    height: 320px; 
    width: 100%;
    aspect-ratio: 1 / 1; 
    
    display: flex; 
    align-items: center; 
    justify-content: center; 
    padding: 30px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.03); 
}
.card-img-box img { 
    max-width: 100%; 
    max-height: 100%; 
    object-fit: contain; 
    width: auto;
    height: auto; 
    transition: 0.5s ease; 
}

.quick-view {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: 0.3s ease;
    opacity: 0;
}

.product-card:hover .quick-view { bottom: 20px; opacity: 1; }
.product-card:hover .card-img-box img { transform: scale(1.1); }

.card-details { 
    padding: 20px 10px;
    background: transparent; 
}
.card-brand { color: var(--blue); font-size: 12px; font-weight: 700; text-transform: uppercase; margin-bottom: 5px; display: block; }
.card-details h3 { font-size: 18px; font-weight: 600; margin-bottom: 10px; }
.price-tag { font-size: 20px; font-weight: 700; color: var(--text); }
.old-price-tag { color: var(--grey); text-decoration: line-through; font-size: 14px; margin-left: 8px; }

/* =========================================
   6. PRODUCT DETAIL PAGE (product.html)
   ========================================= */
.product-main-layout { display: grid; grid-template-columns: 1.2fr 1fr 0.4fr; gap: 60px; margin: 60px 0; }

.main-image-wrapper { 
    background: var(--white); /* Changed from gray to white */
    border-radius: 30px; 
    padding: 60px; 
    position: sticky; 
    top: 120px;
    box-shadow: var(--shadow); /* Adds depth since it's white-on-white */
}
.main-image-wrapper img { width: 100%; height: auto; object-fit: contain; }

.info-header { border-bottom: 1px solid var(--border); padding-bottom: 30px; margin-bottom: 30px; }
.brand-tag { color: var(--blue); font-weight: 700; text-transform: uppercase; font-size: 14px; letter-spacing: 1px; }
.info-header h1 { font-size: 42px; font-weight: 800; margin-top: 10px; }

.price-box { margin-top: 20px; }
.current-price { font-size: 32px; font-weight: 700; color: var(--text); }
.was-price { font-size: 20px; color: var(--grey); text-decoration: line-through; margin-left: 15px; }

.control-group { margin-bottom: 30px; }
.control-group .label { font-weight: 600; margin-bottom: 15px; font-size: 14px; }

.color-palette { display: flex; gap: 12px; }
/* 1. Base style for the color circles */
.swatch {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    
    /* ADD THIS: The subtle black outline for non-selected buttons */
    border: 1px solid rgba(0, 0, 0, 0.2); 
    
    /* This ensures colors like White or Silver don't disappear */
    box-shadow: 0 2px 4px rgba(0,0,0,0.05); 
}

/* 2. Style when the color IS selected */
.swatch.active {
    /* Change the border to your main blue or a solid black */
    border: 2px solid var(--blue); 
    
    /* This creates that premium "ring" effect */
    box-shadow: 0 0 0 2px var(--white), 0 0 0 4px var(--blue);
    
    transform: scale(1.1);
}

/* 3. Hover effect */
.swatch:hover {
    border-color: rgba(0, 0, 0, 0.5);
    transform: scale(1.1);
}

.qty-selector { display: flex; align-items: center; background: var(--light-grey); width: fit-content; border-radius: 12px; padding: 5px; }
.qty-btn { width: 40px; height: 40px; border: none; background: none; font-size: 18px; cursor: pointer; border-radius: 8px; }
.qty-btn:hover { background: var(--white); }
#qtyVal { width: 50px; text-align: center; font-weight: 600; }

.whatsapp-btn {
    width: 100%; background: #25d366; color: white; border: none; padding: 20px; 
    border-radius: 16px; font-size: 18px; font-weight: 700; cursor: pointer; 
    display: flex; align-items: center; justify-content: center; gap: 12px; transition: 0.3s;
}
.whatsapp-btn:hover { background: #1ebe57; transform: translateY(-3px); box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2); }

.trust-card { background: var(--light-grey); padding: 30px; border-radius: 24px; position: sticky; top: 120px; }
.trust-item { display: flex; gap: 15px; margin-bottom: 25px; }
.trust-item i { font-size: 24px; color: var(--blue); }
.trust-item h4 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.trust-item p { font-size: 12px; color: var(--grey); line-height: 1.3; }

.spec-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 25px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: var(--bg);
    border-radius: 12px;
    border: 1px solid var(--border);
}

.spec-icon {
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
    flex-shrink: 0;
}

.spec-icon i {
    font-size: 16px;
    color: var(--blue);
}

.spec-info {
    display: flex;
    flex-direction: column;
}

.spec-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--grey);
    text-transform: uppercase;
}

.spec-value {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
}

/* =========================================
   BACK TO SHOP BUTTON STYLE
   ========================================= */
.back-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--grey);
    font-size: 14px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 20px;
    background: var(--light-grey);
    border: 1px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.back-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

/* Hover State */
.back-link:hover {
    color: var(--blue);
    background: var(--white);
    border-color: var(--border);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transform: translateX(-3px); /* Subtle nudge to the left */
}

/* Animation for the arrow on hover */
.back-link:hover i {
    transform: translateX(-2px);
}

/* Mobile adjustment */
@media (max-width: 480px) {
    .back-link span {
        display: none; /* Shows only the arrow on very small screens to save space */
    }
    .back-link {
        padding: 10px;
        border-radius: 50%;
    }
}

/* =========================================
   GALERIA E PËRDITËSUAR ME MINIATURA VERTIKALE (Nga Fotoja)
   ========================================= */
.product-gallery-section {
    display: flex;
    gap: 15px; /* Spacimi midis thumbs dhe imazhit kryesor */
    flex: 1.2;
}

.thumbnails-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 60px; /* Gjerësia e rreshtit të thumbnails */
    flex-shrink: 0;
}

.gallery-thumb {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    border: 1px solid var(--border);
    overflow: hidden;
    cursor: pointer;
    transition: 0.2s ease;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
}

.gallery-thumb:hover, .gallery-thumb.active {
    border-color: var(--blue);
    box-shadow: 0 0 0 2px rgba(0, 122, 255, 0.1);
}

.gallery-thumb img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.main-image-wrapper {
    flex: 1; /* Merr pjesën tjetër të hapësirës së galerisë */
    background: var(--white);
    border-radius: 30px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
}

/* =========================================
   SEKSIONI I RI I PËRSHKRIMIT ME IKONA TË INTEGRUARA (Nga Fotoja)
   ========================================= */
.përshkrimi-section {
    background: var(--white);
    padding: 50px;
    border-radius: 32px;
    margin-top: 40px;
    border: 1px solid var(--border);
}

.përshkrimi-section h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--text);
}

.përshkrimi-content p {
    font-size: 16px;
    color: var(--text);
    margin-bottom: 30px;
    line-height: 1.7;
}

.përshkrimi-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text);
}

.iconic-specs-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.spec-line-item {
    display: flex;
    align-items: flex-start; /* Alinon ikonen me krye të tekstit */
    gap: 15px;
}

.spec-line-item i {
    font-size: 20px; /* Madhësia e ikonës */
    color: var(--blue);
    margin-top: 3px; /* Zbrit pak ikonen që të përputhet me rreshtin */
    width: 25px; /* Hapësirë e barabartë për të gjitha ikonat */
    text-align: center;
}

.spec-line-info {
    display: flex;
    gap: 10px;
}

.spec-key {
    font-size: 16px; /* Tekst më i madh siç u kërkua */
    font-weight: 600;
    color: var(--grey);
}

.spec-val {
    font-size: 16px; /* Tekst më i madh siç u kërkua */
    font-weight: 700;
    color: var(--text);
}

/* Përshtatja celulare për galerinë */
@media (max-width: 768px) {
    .product-gallery-section {
        flex-direction: column; /* Thumbs sipër imazhit kryesor */
    }
    .thumbnails-container {
        flex-direction: row; /* Rresht horizonal */
        width: 100%;
        justify-content: center;
    }
}

/* =========================================
   7. RESPONSIVE
   ========================================= */
@media (max-width: 1200px) {
    .product-main-layout { grid-template-columns: 1fr 1fr; }
    .trust-sidebar { display: none; }
}

@media (max-width: 768px) {
    .shop-layout { flex-direction: column; }
    .shop-sidebar { width: 100%; position: static; }
    .hero-content h1 { font-size: 40px; }
    .product-main-layout { grid-template-columns: 1fr; }
    .main-image-wrapper { position: static; padding: 30px; }
}
/* =========================================
   MOBILE RESPONSIVE — COMPREHENSIVE FIX
   ========================================= */

/* ── Navbar: prevent search overflow ── */
@media (max-width: 640px) {
    .navbar { padding: 12px 0; }

    .navbar-content { gap: 10px; }

    .logo { font-size: 18px; white-space: nowrap; }

    .search-wrapper { width: 100%; flex: 1; min-width: 0; }
    .search-wrapper input { width: 100% !important; font-size: 14px; padding: 9px 36px 9px 13px; }
    .search-wrapper input:focus { width: 100% !important; }
    .search-icon { right: 10px; }
}

/* ── Hero section ── */
@media (max-width: 768px) {
    .hero-section {
        height: auto;
        min-height: 480px;
        padding: 60px 0 50px;
        margin-bottom: 40px;
    }
    .hero-image-bg {
        width: 100%;
        height: 100%;
        right: 0;
        opacity: 0.18;
    }
    .hero-content {
        padding-left: 0;
        padding: 0 5%;
        text-align: center;
        max-width: 100%;
    }
    .hero-subtitle { font-size: 11px; letter-spacing: 2px; margin-bottom: 10px; }
    .hero-content h1 { font-size: clamp(28px, 8vw, 48px); letter-spacing: -1px; margin-bottom: 16px; }
    .hero-content p { font-size: 14px; }
    .cta-button { padding: 14px 32px; font-size: 15px; margin-top: 20px; }
}

/* ── Brand showcase ── */
@media (max-width: 640px) {
    .brand-showcase { padding: 35px 0; }
    .brand-flex {
        gap: 14px;
        justify-content: center;
    }
    .brand-chip { width: 78px; height: 78px; border-radius: 18px; }
    .brand-icon-wrapper { height: 28px; margin-bottom: 7px; }
    .brand-chip span { font-size: 11px; }
}

/* ── Section headers ── */
@media (max-width: 640px) {
    .section-header { flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
    .section-header h2 { font-size: 20px; }
    .main-content { padding-top: 30px !important; }
}

/* ── Product grid: 2 cols on mid mobile, 1 on tiny ── */
@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .card-img-box { height: 200px; padding: 18px; }
    .card-details h3 { font-size: 14px; }
    .price-tag { font-size: 16px; }
    .old-price-tag { font-size: 12px; }
    .card-brand { font-size: 10px; }
}

@media (max-width: 400px) {
    .product-grid { grid-template-columns: 1fr; gap: 14px; }
    .card-img-box { height: 240px; }
}

/* ── Shop layout & sidebar ── */
@media (max-width: 768px) {
    .shop-layout {
        flex-direction: column;
        gap: 0;
        margin: 20px auto;
    }

    /* Sidebar becomes a collapsible panel */
    .shop-sidebar {
        width: 100% !important;
        position: static;
        padding-right: 0 !important;
        flex: none !important;
    }

    .sidebar-header { margin-bottom: 16px; }
    .sidebar-header h2 { font-size: 18px; }

    /* Filter groups: tighter */
    .filter-group { margin-bottom: 0; }
    .filter-header { padding: 12px 0; }

    /* Filter options: 2-column grid already set inline, keep it */
    .filter-options { padding-bottom: 14px !important; }

    .results-bar { font-size: 13px; gap: 8px; flex-wrap: wrap; }
    .sort-mini select { font-size: 13px; }
}

/* ── Product detail page ── */
@media (max-width: 1200px) {
    .product-main-layout {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    .trust-sidebar { display: none; }
}

@media (max-width: 768px) {
    .product-container { padding-top: 20px; }

    .product-main-layout {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 20px 0;
    }

    /* Gallery: horizontal thumbs on top */
    .product-gallery-section {
        flex-direction: column-reverse;
        gap: 12px;
    }
    .thumbnails-container {
        flex-direction: row;
        width: 100%;
        justify-content: flex-start;
        overflow-x: auto;
        gap: 8px;
        padding-bottom: 4px;
    }
    .gallery-thumb { width: 52px; height: 52px; flex-shrink: 0; }

    .main-image-wrapper {
        position: static !important;
        padding: 24px;
        border-radius: 20px;
    }
    #mainImg { max-height: 280px; object-fit: contain; }

    /* Info panel */
    .info-header h1 { font-size: 24px; font-weight: 700; margin-top: 6px; }
    .current-price { font-size: 22px; }
    .was-price { font-size: 15px; margin-left: 10px; }
    .price-box { margin-top: 12px; }
    .info-header { padding-bottom: 20px; margin-bottom: 20px; }

    .control-group { margin-bottom: 20px; }
    .control-group .label { font-size: 13px; margin-bottom: 10px; }

    .whatsapp-btn { font-size: 16px; padding: 16px; border-radius: 14px; }
    .action-note { font-size: 12px; margin-top: 8px; }

    /* Specs description section */
    .përshkrimi-section {
        padding: 28px 20px;
        border-radius: 20px;
        margin-top: 24px;
    }
    .përshkrimi-section h2 { font-size: 20px; margin-bottom: 18px; }
    .përshkrimi-content p { font-size: 14px; margin-bottom: 20px; }
    .përshkrimi-content h3 { font-size: 16px; margin-bottom: 14px; }
    .spec-line-item { gap: 12px; }
    .spec-line-item i { font-size: 17px; }
    .spec-key, .spec-val { font-size: 14px; }
    .iconic-specs-list { gap: 14px; }
}

/* Trust sidebar: show at bottom on mobile as a horizontal strip */
@media (max-width: 1200px) {
    .trust-sidebar { display: block; grid-column: 1 / -1; }
    .trust-card {
        display: flex;
        flex-wrap: wrap;
        gap: 0;
        padding: 20px;
        border-radius: 20px;
        position: static;
    }
    .trust-item {
        flex: 1;
        min-width: 160px;
        margin-bottom: 0;
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .trust-card { flex-direction: column; gap: 12px; }
    .trust-item { padding: 0; }
}

/* ── General touch targets ── */
@media (max-width: 768px) {
    .qty-btn { width: 44px; height: 44px; }
    .swatch { width: 28px; height: 28px; }
    .color-palette { gap: 10px; flex-wrap: wrap; }
}

/* ── index.html main content top spacing ── */
@media (max-width: 640px) {
    .main-content.container { padding-top: 20px; margin-top: 0; }
}