:root {
    --primary: #FFB300;
    --primary-hover: #FFA000;
    --secondary: #0891b2;
    --bg-body: #F3F4F6;
    --bg-card: #FFFFFF;
    --text-main: #111827;
    --text-muted: #6B7280;
    --border: #E5E7EB;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --radius: 12px;
    --font-main: 'Inter', sans-serif;
}

[data-theme="dark"] {
    --bg-body: #0F172A;
    --bg-card: #1E293B;
    --text-main: #F1F5F9;
    --text-muted: #94A3B8;
    --border: #334155;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
}

/* Animations */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideDown { from { transform: translateY(-20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@keyframes pulse { 0% { transform: scale(1); } 50% { transform: scale(1.05); } 100% { transform: scale(1); } }

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-body);
    color: var(--text-main);
    transition: background-color 0.5s ease, color 0.5s ease;
    line-height: 1.5;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

/* UI Components */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    font-size: 15px;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

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

.btn-primary {
    background-color: var(--primary);
    color: #0F172A;
    box-shadow: 0 4px 14px 0 rgba(255, 179, 0, 0.39);
}
.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 179, 0, 0.23);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--border);
    color: var(--text-main);
}
.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* Social Buttons */
.btn-soc {
    width: 44px;
    height: 44px;
    padding: 10px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: all 0.3s;
}
.btn-soc:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--primary); }
.btn-soc img { width: 100%; height: 100%; object-fit: contain; }

/* Header Modernization */
.top-bar {
    background-color: #111827;
    color: #9CA3AF;
    font-size: 13px;
    padding: 8px 0;
    display: block;
}
.top-bar a:hover { color: white; }

.header {
    background-color: var(--bg-card);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.header-main {
    padding: 15px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo img { height: 50px; width: auto; }

.search-wrapper {
    flex: 1;
    max-width: 600px;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 12px 50px 12px 20px;
    border-radius: 50px;
    border: 2px solid var(--border);
    background: var(--bg-body);
    font-size: 16px;
    color: var(--text-main);
    transition: all 0.3s;
}
.search-input:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--bg-card);
    box-shadow: 0 0 0 4px rgba(255, 179, 0, 0.1);
}
.search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}
.search-btn:hover { transform: translateY(-50%) scale(1.1); }

.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-top: 10px;
    box-shadow: var(--shadow-lg);
    display: none;
    z-index: 1000;
    padding: 10px 0;
}
.search-results.active { display: block; animation: slideDown 0.2s ease-out; }
.search-item {
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: background 0.2s;
}
.search-item:hover { background: var(--bg-body); }
.search-item img { width: 40px; height: 40px; object-fit: contain; border-radius: 4px; background: white; }

.actions { display: flex; gap: 15px; align-items: center; }

.icon-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 179, 0, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    padding: 0;
}
.icon-btn:hover {
    background: rgba(255, 179, 0, 0.2);
    color: #FFA000;
    transform: translateY(-2px) scale(1.1);
}
.icon-btn.active i { color: #ef4444; font-weight: 900; animation: pulse 0.3s; }

.badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    font-size: 11px;
    font-weight: 700;
    min-width: 20px;
    height: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.4);
    animation: pulse 0.5s ease-in-out;
}

.theme-toggle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 179, 0, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    padding: 0;
    font-size: 20px;
    transition: all 0.3s;
}
.theme-toggle:hover {
    background: rgba(255, 179, 0, 0.2);
    color: #FFA000;
    transform: scale(1.1);
}
.theme-toggle i { transition: transform 0.5s ease; }
.theme-toggle:hover i { transform: rotate(180deg); }

.header-bottom {
    border-top: 1px solid var(--border);
    padding: 0;
    background: var(--bg-card);
}
.nav-list { display: flex; gap: 40px; height: 50px; align-items: center; justify-content: flex-start; }
.nav-item a {
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 15px 0;
    position: relative;
    color: var(--text-main);
}
.nav-item a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}
.nav-item a:hover::after { width: 100%; }

/* Mobile Menu */
.mobile-toggle { display: none; font-size: 24px; background: none; border: none; color: var(--text-main); }
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 320px;
    height: 100vh;
    background: var(--bg-card);
    z-index: 200;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 30px;
    box-shadow: 10px 0 30px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}
.mobile-menu.active { left: 0; }
.mobile-menu .nav-links {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.mobile-menu .nav-links a {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-main);
    border-bottom: 1px solid var(--border);
    padding-bottom: 10px;
    display: block;
}
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 150;
    display: none;
    opacity: 0;
    transition: opacity 0.3s;
    backdrop-filter: blur(5px);
}
.mobile-overlay.active { display: block; opacity: 1; }

/* Hero Modern */
.hero-modern {
    padding: 60px 0;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 500px;
}
.hero-content h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 900;
    letter-spacing: -1px;
}
.hero-content h1 span { color: var(--primary); }
.hero-badges { display: flex; gap: 20px; margin-bottom: 30px; }
.hero-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-card);
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: var(--shadow);
    font-weight: 500;
}
.hero-image {
    position: relative;
    height: 100%;
}
.hero-image img {
    position: relative;
    z-index: 2;
    transform: perspective(1000px) rotateY(-10deg);
    transition: transform 0.5s;
}
.hero-image:hover img { transform: perspective(1000px) rotateY(0deg); }
.hero-bg-blob {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 179, 0, 0.2) 0%, rgba(0,0,0,0) 70%);
    z-index: 1;
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 20px;
}
.bento-item {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.bento-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.bento-item.large { grid-column: span 2; grid-row: span 2; background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-body) 100%); }
.bento-item.medium { grid-column: span 2; }
.bento-item h3 { font-size: 24px; font-weight: 800; z-index: 2; position: relative; }
.bento-item img {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 60%;
    transition: transform 0.3s;
}
.bento-item:hover img { transform: scale(1.1) rotate(-5deg); }

/* Feature Blur Block */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}
.feature-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 300px;
    cursor: pointer;
    box-shadow: var(--shadow);
}
.feature-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.3s ease, transform 0.5s ease;
}
.feature-card:hover img {
    filter: blur(4px) brightness(0.7);
    transform: scale(1.05);
}
.feature-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 30px;
    text-align: center;
    color: white;
}
.feature-card:hover .feature-overlay { opacity: 1; }
.feature-overlay h3 { font-size: 24px; font-weight: 800; margin-bottom: 10px; transform: translateY(20px); transition: transform 0.3s; }
.feature-overlay p { font-size: 16px; transform: translateY(20px); transition: transform 0.3s 0.1s; }
.feature-card:hover h3, .feature-card:hover p { transform: translateY(0); }

/* Products Grid Modern */
.grid-products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
}
.card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 16px;
    border: 1px solid var(--border);
    transition: all 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}
.card:hover { border-color: var(--primary); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.card-badges { position: absolute; top: 16px; left: 16px; display: flex; flex-direction: column; gap: 8px; z-index: 10; }
.badge-item { padding: 4px 10px; border-radius: 6px; font-size: 11px; font-weight: 700; text-transform: uppercase; color: white; }
.badge-new { background: #10B981; }
.badge-hit { background: var(--primary); color: black; }
.card-img { height: 220px; background: var(--bg-body); border-radius: 12px; margin-bottom: 16px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.card-img img { max-width: 100%; max-height: 100%; object-fit: contain; }
.card-title { font-size: 16px; margin-bottom: 8px; font-weight: 600; line-height: 1.4; height: 44px; overflow: hidden; }
.card-price { font-size: 20px; font-weight: 800; color: var(--text-main); display: flex; align-items: center; gap: 10px; margin-top: auto; }
.card-price span { font-size: 14px; text-decoration: line-through; color: var(--text-muted); font-weight: 400; }
.card-actions { margin-top: 16px; display: flex; gap: 8px; }

/* Cart Fixes */
.qty-btn {
    width: 32px;
    height: 32px;
    border-radius: 50% !important; /* Force circle */
    padding: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-body);
    border: 1px solid var(--border);
    cursor: pointer;
    font-weight: bold;
}
.qty-btn:hover { background: var(--border); }

/* Layouts & Pages (Restored & Modernized) */
.breadcrumbs { padding: 20px 0; color: var(--text-muted); font-size: 14px; }
.section-title { font-size: 36px; font-weight: 800; margin-bottom: 40px; text-align: center; }
.section { padding: 60px 0; }

/* Product Page */
.product-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.gallery-main { height: 500px; background: var(--bg-card); margin-bottom: 20px; display: flex; align-items: center; justify-content: center; border: none; cursor: zoom-in; position: relative; border-radius: 20px; overflow: hidden; }
.gallery-main::before { content: ''; position: absolute; inset: 0; background-image: var(--gallery-bg-image, none); background-size: cover; background-position: center; filter: blur(40px); opacity: 0.3; z-index: 0; }
.gallery-main img { max-height: 100%; max-width: 100%; object-fit: contain; border-radius: 20px; position: relative; z-index: 1; }

/* Gallery Thumbs */
.gallery-thumbs { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 5px; scrollbar-width: thin; scrollbar-color: var(--primary) transparent; }
.gallery-thumbs::-webkit-scrollbar { height: 6px; }
.gallery-thumbs::-webkit-scrollbar-thumb { background-color: var(--primary); border-radius: 3px; }
.thumb-item { min-width: 80px; height: 80px; border-radius: 12px; overflow: hidden; cursor: pointer; border: 2px solid transparent; transition: all 0.2s; flex-shrink: 0; background: var(--bg-card); }
.thumb-item:hover { border-color: var(--primary); transform: translateY(-2px); }
.thumb-item.active { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(255, 179, 0, 0.3); }
.thumb-item img { width: 100%; height: 100%; object-fit: contain; padding: 5px; }

/* Gallery Arrows */
.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.8);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s;
    font-size: 18px;
    color: #000;
}
.gallery-arrow:hover { background: white; box-shadow: var(--shadow); }
.arrow-prev { left: 10px; }
.arrow-next { right: 10px; }

/* Price Block Modern */
.price-block-modern { margin-bottom: 25px; display: flex; align-items: baseline; gap: 15px; }
.price-block-modern .current-price { font-size: 42px; font-weight: 800; color: var(--text-main); line-height: 1; }
.price-block-modern .old-price { font-size: 20px; text-decoration: line-through; color: var(--text-muted); font-weight: 500; }
.discount-badge { background: #ef4444; color: white; padding: 4px 10px; border-radius: 20px; font-size: 14px; font-weight: 700; transform: translateY(-5px); }

/* Tabs */
.tabs-header { display: inline-flex; gap: 5px; background: var(--bg-body); padding: 5px; border-radius: 12px; margin-bottom: 30px; border: none; }
.tab-btn { background: none; border: none; padding: 12px 24px; font-size: 16px; font-weight: 600; color: var(--text-muted); cursor: pointer; border-radius: 8px; transition: all 0.2s; }
.tab-btn:hover { color: var(--text-main); }
.tab-btn.active { background: var(--bg-card); color: var(--text-main); box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
.tab-content { display: none; animation: fadeIn 0.3s ease; line-height: 1.6; background: var(--bg-card); padding: 30px; border-radius: 20px; border: none; box-shadow: var(--shadow-lg); }
.tab-content.active { display: block; }
.tab-content table td { padding: 12px 0; border-bottom: 1px solid var(--border); }
.tab-content table tr:last-child td { border-bottom: none; }

/* Catalog */
.catalog-layout { display: flex; gap: 40px; }
.filters-sidebar { width: 280px; flex-shrink: 0; }
.filter-group { margin-bottom: 24px; }
.filter-title { font-weight: 600; margin-bottom: 12px; display: block; }
.checkbox-label { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; cursor: pointer; color: var(--text-muted); transition: color 0.2s; }
.checkbox-label:hover { color: var(--primary); }

/* Cart & Checkout */
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th { text-align: left; padding: 20px; border-bottom: 1px solid var(--border); color: var(--text-muted); font-weight: 500; }
.cart-table td { padding: 20px; border-bottom: 1px solid var(--border); vertical-align: middle; }
.cart-table img { border-radius: 8px; object-fit: contain; }
.checkout-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; }
.summary-card { background: var(--bg-card); padding: 30px; border-radius: var(--radius); border: 1px solid var(--border); position: sticky; top: 120px; box-shadow: var(--shadow-lg); }

/* Forms */
.form-group { margin-bottom: 20px; }
.form-label { display: block; margin-bottom: 8px; font-weight: 500; }
.form-input { width: 100%; padding: 12px 16px; border-radius: 12px; border: 1px solid var(--border); background: var(--bg-card); color: var(--text-main); font-size: 16px; transition: border-color 0.3s; }
.form-input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px rgba(255, 179, 0, 0.1); }

/* Footer */
.footer { background: var(--bg-card); border-top: 1px solid var(--border); padding: 80px 0 40px; margin-top: 80px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 40px; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: var(--text-muted); transition: all 0.2s; }
.footer-links a:hover { color: var(--primary); padding-left: 5px; }
.meta-disclaimer { font-size: 11px; color: var(--text-muted); margin-top: 10px; line-height: 1.3; opacity: 0.7; }

/* Toast */
.toast { position: fixed; bottom: 20px; right: 20px; background: var(--text-main); color: var(--bg-body); padding: 16px 24px; border-radius: 12px; z-index: 1000; animation: slideIn 0.3s ease; box-shadow: var(--shadow-lg); }
@keyframes slideIn { from { transform: translateY(100%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

/* Lightbox Arrows */
.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    border: 2px solid white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2002;
    transition: all 0.3s;
    font-size: 24px;
    color: white;
    backdrop-filter: blur(10px);
}
.lightbox-arrow:hover { background: rgba(255,255,255,0.4); transform: translateY(-50%) scale(1.1); }
.lb-prev { left: 30px; }
.lb-next { right: 30px; }

/* Categories Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.category-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 40px 30px;
    border: 2px solid var(--border);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.category-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.category-card.service-card {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(255, 179, 0, 0.05) 100%);
}

.category-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 179, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 20px;
    transition: all 0.3s;
}

.category-card:hover .category-icon {
    background: var(--primary);
    color: #000;
    transform: scale(1.1) rotate(5deg);
}

.category-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-main);
}

.category-card p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.category-badge {
    background: var(--bg-body);
    color: var(--text-muted);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-badge.service {
    background: var(--primary);
    color: #000;
}

@media (max-width: 1024px) {
    .bento-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
    .bento-item.large { grid-column: span 2; }
    .hero-modern { grid-template-columns: 1fr; text-align: center; }
    .hero-badges { justify-content: center; }
    .nav-list { display: none; }
    .mobile-toggle { display: block; }
    .header-main { gap: 15px; }
    .search-wrapper { display: none; }
    .top-bar { display: none; }
    .product-layout, .catalog-layout, .checkout-grid { grid-template-columns: 1fr; flex-direction: column; }
    .filters-sidebar { width: 100%; }
    .gallery-main { height: 300px; }
    .grid-products { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px; }
    .card-title { font-size: 14px; height: auto; }
    .card-img { height: 180px; }
}

@media (max-width: 768px) {
    .hero-content h1 { font-size: 36px; }
    .section-title { font-size: 28px; }
    .product-layout { gap: 30px; }
    .gallery-main { height: 250px; }
    .gallery-thumbs { gap: 8px; }
    .thumb-item { min-width: 60px; height: 60px; }
    .price-block-modern .current-price { font-size: 32px; }
    .tab-content { padding: 20px; }
    .grid-products { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 15px; }
    .card { padding: 12px; }
    .card-img { height: 150px; }
    .card-title { font-size: 13px; }
    .card-price { font-size: 18px; }
    .btn { padding: 10px 20px; font-size: 14px; }
    
    .cart-table { display: block; overflow-x: auto; }
    .cart-table thead { display: none; }
    .cart-table tbody, .cart-table tr, .cart-table td { display: block; width: 100%; }
    .cart-table tr { margin-bottom: 20px; padding: 15px; background: var(--bg-card); border-radius: 12px; border: 1px solid var(--border); }
    .cart-table td { padding: 10px 0 !important; border: none !important; }
    .cart-table td:before { content: attr(data-label); font-weight: 600; display: inline-block; width: 100px; color: var(--text-muted); }
    
    .summary-card { position: static; margin-top: 20px; }
    .checkout-grid { gap: 20px; }
    
    #oneClickModal > div { margin: 20px; padding: 30px !important; max-width: calc(100% - 40px) !important; }
    .actions { gap: 10px; }
    .icon-btn { width: 40px; height: 40px; font-size: 18px; }
    .theme-toggle { width: 40px; height: 40px; font-size: 18px; }
    .lightbox-arrow { width: 40px; height: 40px; font-size: 18px; }
    .lb-prev { left: 10px; }
    .lb-next { right: 10px; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .tabs-header { width: 100%; overflow-x: auto; }
    .tab-btn { white-space: nowrap; }
}

/* Защищенные контакты */
.protected-contact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.blur-text {
    filter: blur(5px);
    user-select: none;
    transition: filter 0.3s ease;
}

.protected-contact.revealed .blur-text {
    filter: blur(0);
    user-select: text;
}

.reveal-btn {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.reveal-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
}

.protected-contact.revealed .reveal-btn {
    display: none;
}

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

@media (max-width: 480px) {
    .hero-content h1 { font-size: 28px; }
    .section-title { font-size: 24px; }
    .price-block-modern .current-price { font-size: 28px; }
    .grid-products { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 12px; }
    .card-img { height: 130px; }
    .btn { padding: 8px 16px; font-size: 13px; }
}
