/* Moscow GSM - Design Sticlă Lichidă Optimizat */
:root {
    --bg-primary: #050508;
    --bg-secondary: #0a0a10;
    --bg-tertiary: #111118;
    --glass-bg: rgba(20, 20, 30, 0.85);
    --glass-bg-hover: rgba(30, 30, 45, 0.9);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-border-hover: rgba(255, 255, 255, 0.15);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.4);
    --accent-primary: #7c3aed;
    --accent-secondary: #a855f7;
    --accent-cyan: #22d3ee;
    --accent-gradient: linear-gradient(135deg, #9333ea 0%, #7c3aed 30%, #3b82f6 70%, #22d3ee 100%);
    --accent-glow: rgba(124, 58, 237, 0.5);
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.25rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    scroll-padding-top: 140px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Orbe de fundal statice - fără animație pentru performanță */
body::before,
body::after {
    content: '';
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    will-change: transform;
}

body::before {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.25) 0%, transparent 70%);
    top: -150px;
    left: -100px;
    filter: blur(80px);
}

body::after {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.2) 0%, transparent 70%);
    bottom: -100px;
    right: -50px;
    filter: blur(80px);
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--accent-secondary);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul {
    list-style: none;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Top Bar - Info Contact */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    background: linear-gradient(90deg, rgba(124, 58, 237, 0.15) 0%, rgba(10, 10, 16, 0.95) 50%, rgba(124, 58, 237, 0.15) 100%);
    border-bottom: 1px solid rgba(124, 58, 237, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.top-bar-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    height: 40px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.7);
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.top-bar-item svg {
    color: var(--accent-secondary);
    flex-shrink: 0;
}

.top-bar-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.top-bar-item a:hover {
    color: var(--accent-secondary);
}

/* Header - singurul element cu blur pentru performanță */
.header {
    position: fixed;
    top: 52px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 1400px;
    z-index: 1000;
    background: rgba(10, 10, 16, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    gap: 2rem;
    padding: 0 1.5rem;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.4rem;
    font-weight: 700;
}

.site-logo {
    height: 55px;
    width: auto;
    object-fit: contain;
}

.logo-icon {
    display: none;
}

.logo-text {
    display: none;
}

.search-bar {
    flex: 1;
    max-width: 500px;
    position: relative;
}

.search-bar input {
    width: 100%;
    padding: 0.75rem 1.5rem;
    padding-right: 50px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(147, 51, 234, 0.4);
    border-radius: var(--radius-full);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all var(--transition-fast);
    box-shadow: 0 0 20px rgba(147, 51, 234, 0.15);
}

.search-bar input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-bar input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(147, 51, 234, 0.7);
    box-shadow: 0 0 30px rgba(147, 51, 234, 0.3), 0 0 0 4px rgba(147, 51, 234, 0.1);
}

.search-btn {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    border-radius: var(--radius-full);
}

.search-btn:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

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

.phone-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-full);
    border: 1px solid transparent;
    transition: all var(--transition-fast);
}

.phone-link:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--glass-border);
    color: var(--text-primary);
}

.social-header-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-header-link svg {
    width: 20px;
    height: 20px;
}

.social-header-link.instagram svg {
    fill: currentColor;
}

.social-header-link.whatsapp {
    color: #25D366;
    background: rgba(37, 211, 102, 0.08);
    border: 1px solid rgba(37, 211, 102, 0.2);
}

.social-header-link.instagram {
    color: #E1306C;
    background: rgba(225, 48, 108, 0.08);
    border: 1px solid rgba(225, 48, 108, 0.2);
}

.social-header-link.tiktok {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.social-header-link:hover {
    transform: translateY(-2px);
}

.social-header-link.whatsapp:hover {
    background: rgba(37, 211, 102, 0.15);
    border-color: rgba(37, 211, 102, 0.4);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.social-header-link.instagram:hover {
    background: rgba(225, 48, 108, 0.15);
    border-color: rgba(225, 48, 108, 0.4);
    box-shadow: 0 4px 15px rgba(225, 48, 108, 0.3);
}

.social-header-link.tiktok:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 
        0 4px 15px rgba(255, 255, 255, 0.15),
        -2.5px -2.5px 8px rgba(105, 201, 208, 0.45),
        2.5px 2.5px 8px rgba(238, 29, 82, 0.45);
}

.cart-btn {
    position: relative;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    transition: all var(--transition-fast);
}

.cart-btn:hover {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.4);
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-gradient);
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.5);
}

/* Hero */
.hero {
    position: relative;
    padding: 216px 0 60px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-bg::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    top: -200px;
    left: -100px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatOrb1 6s ease-in-out infinite;
    filter: blur(60px);
}

.hero-bg::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    top: -100px;
    right: -150px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatOrb2 8s ease-in-out infinite;
    filter: blur(60px);
}

@keyframes floatOrb1 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(150px, 80px) scale(1.2);
    }

    50% {
        transform: translate(80px, 150px) scale(0.9);
    }

    75% {
        transform: translate(-80px, 80px) scale(1.1);
    }
}

@keyframes floatOrb2 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(-120px, 100px) scale(1.2);
    }

    66% {
        transform: translate(-60px, -60px) scale(0.85);
    }
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(1.75rem, 7vw, 4.5rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    padding: 2rem 3rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.75rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.btn-primary {
    background: var(--accent-gradient);
    color: white;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.5);
    color: white;
}

.btn-secondary {
    background: var(--glass-bg);
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
    background: var(--glass-bg-hover);
    border-color: rgba(124, 58, 237, 0.4);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* Categories */
.categories-section {
    padding: 5rem 0;
}

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
}

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 2rem 1.25rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    color: var(--text-primary);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(124, 58, 237, 0.15), transparent 60%);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.category-card:hover {
    transform: translateY(-6px);
    border-color: rgba(124, 58, 237, 0.4);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.category-card:hover::before {
    opacity: 1;
}

.category-icon {
    font-size: 2.75rem;
    position: relative;
    z-index: 1;
}

.category-name {
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

.category-count {
    font-size: 0.75rem;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    position: relative;
    z-index: 1;
}

/* Products */
.products-section {
    padding: 3rem 0 5rem;
}

.products-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2.5rem;
}

.filters-sidebar {
    position: sticky;
    top: 136px;
    height: fit-content;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--glass-border);
}

.filters-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
}

.clear-filters {
    font-size: 0.8rem;
    color: var(--accent-secondary);
    transition: all var(--transition-fast);
}

.clear-filters:hover {
    color: var(--accent-primary);
}

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

.filter-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0.75rem;
    margin: 0 -0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.filter-option:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.03);
}

.filter-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-primary);
    cursor: pointer;
}

.products-main {
    min-width: 0;
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.products-count {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.sort-select {
    padding: 0.5rem 1rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 0.9rem;
    cursor: pointer;
}

.sort-select:hover,
.sort-select:focus {
    border-color: rgba(124, 58, 237, 0.4);
    outline: none;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

/* Product Card - optimized */
.product-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    will-change: transform;
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: rgba(124, 58, 237, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.product-image {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.05) 0%, rgba(20, 20, 30, 1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4.5rem;
    position: relative;
}

.product-status {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 1;
}

.status-pe-stoc,
.status-în-stoc {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.status-stoc-limitat {
    background: rgba(245, 158, 11, 0.2);
    color: var(--warning);
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.status-indisponibil {
    background: rgba(239, 68, 68, 0.2);
    color: var(--error);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.product-info {
    padding: 1.25rem;
}

.product-brand {
    font-size: 0.7rem;
    color: var(--accent-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.product-name {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-category {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-size: 1.35rem;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.add-to-cart {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-gradient);
    border-radius: var(--radius-md);
    color: white;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    box-shadow: 0 4px 16px rgba(124, 58, 237, 0.3);
}

.add-to-cart:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.5);
}

.add-to-cart:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3.5rem;
}

.page-btn {
    min-width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-weight: 500;
    transition: all var(--transition-fast);
}

.page-btn:hover:not(.active):not(:disabled) {
    border-color: rgba(124, 58, 237, 0.4);
    color: var(--text-primary);
    background: var(--glass-bg-hover);
}

.page-btn.active {
    background: var(--accent-gradient);
    border-color: transparent;
    color: white;
    box-shadow: 0 4px 16px rgba(124, 58, 237, 0.4);
}

/* Modal - blur only here */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.modal.open {
    display: flex;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.modal-content {
    position: relative;
    background: rgba(15, 15, 22, 0.98);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    width: 100%;
    max-width: 500px;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    animation: modalSlideIn 0.3s ease;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Service Hierarchy Styles */
.service-category-group {
    margin-bottom: 2rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.service-category-title {
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid var(--glass-border);
}

.service-options-list {
    padding: 0.5rem;
}

.service-option-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    margin-bottom: 0.5rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
    border: 1px solid transparent;
}

.service-option-card:last-child {
    margin-bottom: 0;
}

.service-option-card:hover:not(.disabled) {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--glass-border);
}

.service-option-card.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.service-option-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.service-option-name {
    font-size: 1rem;
    font-weight: 500;
}

.service-option-status {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: var(--radius-full);
    width: fit-content;
    background: rgba(255, 255, 255, 0.1);
}

.service-option-status.status-indisponibil {
    color: var(--error);
    background: rgba(239, 68, 68, 0.1);
}

.service-option-status.status-stoc-limitat {
    color: var(--warning);
    background: rgba(245, 158, 11, 0.1);
}

.service-option-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-secondary);
}


.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--glass-border);
}

.modal-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
}

.modal-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-muted);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    transition: background var(--transition-fast);
}

.cart-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.cart-item-image {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
}

.cart-item-info {
    flex: 1;
    min-width: 0;
}

.cart-item-name {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-item-price {
    font-size: 0.9rem;
    color: var(--accent-secondary);
    font-weight: 600;
}

.cart-item-remove {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--error);
    border-radius: var(--radius-md);
    transition: background var(--transition-fast);
}

.cart-item-remove:hover {
    background: rgba(239, 68, 68, 0.15);
}

.cart-empty {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-muted);
}

.cart-empty-icon {
    font-size: 4.5rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.cart-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--glass-border);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
    font-size: 1.1rem;
}

.cart-total-amount {
    font-size: 1.75rem;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Secțiunea Servicii */
.services-section {
    padding: 2.5rem 0;
    background: linear-gradient(180deg, transparent, rgba(124, 58, 237, 0.03), transparent);
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    position: relative;
    background: linear-gradient(145deg, rgba(30, 30, 45, 0.8), rgba(20, 20, 30, 0.9));
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    cursor: default;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(124, 58, 237, 0.15), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    border-color: rgba(168, 85, 247, 0.5);
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(124, 58, 237, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover::after {
    opacity: 1;
}

.service-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(168, 85, 247, 0.1));
    border-radius: 18px;
    border: 1px solid rgba(124, 58, 237, 0.3);
    transition: all 0.3s ease;
}

.service-icon svg {
    width: 42px;
    height: 42px;
    stroke: #a855f7;
    stroke-width: 1.5;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.4), rgba(34, 211, 238, 0.2));
    box-shadow: 0 8px 24px rgba(34, 211, 238, 0.3);
}

.service-card:hover .service-icon svg {
    stroke: #c084fc;
    filter: drop-shadow(0 0 8px rgba(168, 85, 247, 0.5));
}

.service-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    color: #fff;
    position: relative;
    z-index: 1;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    margin: 0;
}

/* Secțiunea FAQ */
.faq-section {
    padding: 5rem 0 2.5rem 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(124, 58, 237, 0.3);
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(124, 58, 237, 0.1);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--accent-secondary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Footer */
.footer {
    background: rgba(8, 8, 12, 0.95);
    border-top: 1px solid var(--glass-border);
    padding: 2.5rem 0 2rem;
    margin-top: 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-brand .site-logo {
    height: 60px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    max-width: 280px;
    line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.25rem;
    color: var(--text-muted);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a,
.footer-contact p,
.footer-contact a {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--accent-secondary);
}

.footer-contact p {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    text-align: center;
}

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

/* ANPC Logos în Footer */
.footer-anpc {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.anpc-logo {
    height: 50px;
    width: auto;
    opacity: 0.85;
    transition: all 0.3s ease;
    filter: brightness(1);
}

.anpc-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* States */
.loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5rem;
    color: var(--text-muted);
}

.spinner {
    width: 52px;
    height: 52px;
    border: 3px solid var(--glass-border);
    border-top-color: var(--accent-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1.5rem;
}

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

.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 5rem;
}

.no-results-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.no-results h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.no-results p {
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 1024px) {
    .header {
        width: calc(100% - 24px);
    }

    .products-layout {
        grid-template-columns: 1fr;
    }

    .filters-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .filters-header {
        grid-column: 1 / -1;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .top-bar-content {
        gap: 1rem;
        height: 34px;
        font-size: 0.8rem;
    }

    .top-bar-item:nth-child(2) {
        display: none;
    }

    .container {
        padding: 0 1rem;
    }

    .header {
        top: 34px;
        width: 100%;
        border-radius: 0;
        left: 0;
        transform: none;
    }

    .header-content {
        flex-wrap: wrap;
        height: auto;
        padding: 0.6rem 1rem;
        gap: 0.5rem;
    }

    .header-actions {
        gap: 0.5rem;
    }

    .social-header-link,
    .cart-btn {
        width: 38px;
        height: 38px;
    }

    .social-header-link svg,
    .cart-btn svg {
        width: 18px;
        height: 18px;
    }

    .logo .site-logo {
        height: 38px;
    }

    .search-bar {
        order: 3;
        max-width: 100%;
        flex-basis: 100%;
        height: 40px;
    }

    .search-bar input {
        font-size: 0.85rem;
    }

    .phone-link span {
        display: none;
    }

    .phone-link .whatsapp-icon {
        color: #25D366;
    }

    .hero {
        padding: 180px 0 20px;
    }

    .hero-bg::before,
    .hero-bg::after {
        width: 300px;
        height: 300px;
        filter: blur(80px);
    }

    .categories-section {
        padding: 3rem 0;
    }

    .section-title {
        margin-bottom: 1.5rem;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
        padding: 1rem 1.5rem;
        width: auto;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .filters-sidebar {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 0.75rem;
    }

    .product-card {
        border-radius: 12px;
    }

    .product-info {
        padding: 0.75rem;
    }

    .product-name {
        font-size: 0.9rem;
    }

    .product-price {
        font-size: 1.1rem;
    }

    .services-section {
        padding: 1.5rem 0;
    }

    .faq-section {
        padding: 1.5rem 0;
    }
    .reviews-section {
        padding: 1.5rem 0;
    }
    .footer {
        padding: 1.5rem 0 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-brand .logo {
        justify-content: center;
    }

    .footer-brand p {
        margin: 0 auto;
    }

    .footer-stats {
        justify-content: center;
    }

    .footer-cta {
        width: 100%;
        justify-content: center;
    }

    .modal-content {
        border-radius: 16px;
        max-height: 90vh;
    }
}

@media (max-width: 480px) {
    .header-content {
        padding: 0.5rem 0.75rem;
    }

    .header-actions {
        gap: 0.3rem;
    }

    .social-header-link,
    .cart-btn {
        width: 34px;
        height: 34px;
    }

    .social-header-link svg,
    .cart-btn svg {
        width: 16px;
        height: 16px;
    }

    .logo .site-logo {
        height: 34px;
    }

    .search-bar input {
        padding: 0.5rem 1rem;
        padding-right: 40px;
        font-size: 0.8rem;
    }

    .hero {
        padding: 170px 0 15px;
    }

    .hero-bg::before,
    .hero-bg::after {
        display: none;
    }

    .hero-title {
        font-size: 1.75rem;
        line-height: 1.15;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }

    .hero-stats {
        gap: 0.75rem;
        padding: 0.75rem 1rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .hero-actions .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .categories-grid,
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .service-card {
        padding: 1.5rem 1rem;
    }

    .service-icon {
        width: 60px;
        height: 60px;
    }

    .service-icon svg {
        width: 28px;
        height: 28px;
    }

    .service-card h3 {
        font-size: 0.95rem;
    }

    .service-card p {
        font-size: 0.8rem;
    }

    .faq-question {
        font-size: 0.9rem;
        padding: 1rem;
    }

    .anpc-logo {
        height: 35px;
    }
}

/* 
   Hierarchical Navigation Styles 
   Added for Brand -> Model -> Product flow
*/

/* Breadcrumbs */
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 0;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.crumb {
    cursor: pointer;
    transition: color 0.3s ease;
}

.crumb:hover {
    color: var(--accent-primary);
}

.crumb.active {
    color: var(--text-primary);
    font-weight: 600;
    cursor: default;
}

.separator {
    color: var(--text-muted);
}

/* Grids */
.grid-brands,
.grid-models {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.grid-products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
}

/* Cards */
.brand-card,
.model-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.brand-card:hover,
.model-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-primary);
    background: var(--glass-bg-hover);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.15);
}

.brand-icon,
.model-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 0%, #a5a5a5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-name,
.model-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.brand-count,
.model-arrow {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.model-arrow {
    font-size: 1.25rem;
    color: var(--accent-primary);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.model-card:hover .model-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Request Offer Box */
.request-offer-box {
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    text-align: center;
}

.request-offer-box h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.request-offer-box p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.btn-offer {
    font-size: 1.1rem;
    padding: 0.75rem 2rem;
}

/* Animations */
.fade-in {
    animation: fadeIn 0.4s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Header */
.section-header {
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.section-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
}

/* Fix product thumb */
.product-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

/* Main Container */
.main-container {
    min-height: 50vh;
}

/* 
   Model Detail Hero Styles 
*/
.model-hero {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 3rem;
    margin-bottom: 3rem;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.model-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-gradient);
}

.model-hero-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.model-hero-image {
    flex-shrink: 0;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
}

.model-hero-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.large-icon {
    font-size: 5rem;
    filter: drop-shadow(0 0 20px rgba(124, 58, 237, 0.3));
}

.model-hero-info {
    flex: 1;
}

.model-hero-info h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #fff, #ccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.model-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
}

.model-hero-actions {
    display: flex;
    gap: 1rem;
}

@media (max-width: 768px) {
    .model-hero-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .model-description {
        margin: 0 auto 2rem;
    }

    .model-hero-actions {
        justify-content: center;
    }
}

/* Service Hierarchy Styles */
.service-category-group {
    margin-bottom: 2rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.service-category-title {
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid var(--glass-border);
}

.service-options-list {
    padding: 0.5rem;
}

.service-option-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    margin-bottom: 0.5rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
    border: 1px solid transparent;
}

.service-option-card:last-child {
    margin-bottom: 0;
}

.service-option-card:hover:not(.disabled) {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--glass-border);
}

.service-option-card.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.service-option-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.service-option-name {
    font-size: 1rem;
    font-weight: 500;
}

.service-option-status {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: var(--radius-full);
    width: fit-content;
    background: rgba(255, 255, 255, 0.1);
}

.service-option-status.status-indisponibil {
    color: var(--error);
    background: rgba(239, 68, 68, 0.1);
}

.service-option-status.status-stoc-limitat {
    color: var(--warning);
    background: rgba(245, 158, 11, 0.1);
}

.service-option-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-secondary);
}

/* Product Details Styles */
.product-main-price {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--accent-primary);
    background: rgba(124, 58, 237, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(124, 58, 237, 0.3);
}

.product-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    white-space: pre-line;
    font-size: 0.95rem;
}

.product-specs {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.spec-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.spec-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.spec-value {
    font-weight: 500;
    color: var(--text-primary);
}

.status-pe-stoc,
.status-în-stoc {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.status-stoc-limitat {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
}

.status-indisponibil {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.product-main-price.contact-price {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
    border-color: rgba(245, 158, 11, 0.3);
    font-size: 1.4rem;
}

/* ================================================
   Secțiunea Recenzii Google
   ================================================ */

.reviews-section {
    padding: 2.5rem 0;
    position: relative;
}

.reviews-header {
    text-align: center;
    margin-bottom: 3rem;
}

.google-rating {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    padding: 1rem 2rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    backdrop-filter: blur(10px);
}

.google-icon {
    flex-shrink: 0;
}

.rating-info {
    text-align: left;
}

.rating-stars {
    display: flex;
    align-items: center;
    gap: 0.15rem;
}

.rating-stars .star {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.2);
}

.rating-stars .star.filled {
    color: #fbbf24;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

.rating-value {
    font-size: 1.25rem;
    font-weight: 700;
    margin-left: 0.5rem;
    color: var(--text-primary);
}

.rating-count {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Highlight pentru 200+ recenzii */
.review-count-highlight {
    display: inline-block;
    font-weight: 700;
    font-size: 1.1rem;
    background: linear-gradient(135deg, #9333ea, #22d3ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding: 0 0.25rem;
    animation: pulseHighlight 2s ease-in-out infinite;
}

@keyframes pulseHighlight {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

/* Container Carusel Recenzii */
.reviews-carousel-container {
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
    padding: 1rem 0;
}

.reviews-carousel-container::before,
.reviews-carousel-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.reviews-carousel-container::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-primary), transparent);
}

.reviews-carousel-container::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-primary), transparent);
}

.reviews-carousel {
    display: flex;
    gap: 1.5rem;
    animation: scrollCarousel 20s linear infinite;
    width: max-content;
}

.reviews-carousel:hover {
    animation-play-state: paused;
}

@keyframes scrollCarousel {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Card recenzie în carusel */
.reviews-carousel .review-card {
    flex-shrink: 0;
    width: 320px;
    min-height: 220px;
}

/* Card recenzie */
.review-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    right: 20px;
    font-size: 8rem;
    font-family: Georgia, serif;
    color: rgba(124, 58, 237, 0.1);
    line-height: 1;
    pointer-events: none;
}

.review-card:hover {
    border-color: rgba(124, 58, 237, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(124, 58, 237, 0.1);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.reviewer-info {
    display: flex;
    flex-direction: column;
}

.reviewer-name {
    font-weight: 600;
    color: var(--text-primary);
}

.review-date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.review-stars {
    display: flex;
    gap: 0.1rem;
    margin-bottom: 1rem;
}

.review-stars .star {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.2);
}

.review-stars .star.filled {
    color: #fbbf24;
}

.review-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* CTA Recenzii */
.reviews-cta {
    text-align: center;
}

.btn-review {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #4285F4, #34A853);
    border: none;
    border-radius: var(--radius-full);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
}

.btn-review:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(66, 133, 244, 0.4);
}

.btn-review svg {
    fill: #fff;
}

/* Responsive recenzii */
@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .google-rating {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

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

    .rating-stars {
        justify-content: center;
    }
}

/* Sticky Bottom Navigation Bar on Mobile */
.mobile-floating-actions {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    z-index: 9999;
    background: rgba(18, 18, 24, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 1px solid rgba(124, 58, 237, 0.2);
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.6);
    padding-bottom: env(safe-area-inset-bottom);
}

.floating-btn {
    flex: 1;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    border-radius: 0;
}

.floating-btn.call-btn {
    background: transparent;
}

.floating-btn.call-btn svg {
    color: #a855f7; /* Accent mov */
}

.floating-btn.call-btn:active {
    background: rgba(124, 58, 237, 0.12);
}

.floating-btn.maps-btn {
    background: transparent;
    border-left: 1px solid rgba(124, 58, 237, 0.2);
}

.floating-btn.maps-btn svg {
    color: #22D3EE; /* Accent cyan */
}

.floating-btn.maps-btn:active {
    background: rgba(34, 211, 238, 0.12);
}

.floating-btn svg {
    width: 20px;
    height: 20px;
    fill: none;
}

/* Add padding to body on mobile to prevent content overlap with sticky bar */
@media (max-width: 768px) {
    body {
        padding-bottom: calc(56px + env(safe-area-inset-bottom)) !important;
    }
}

/* Hide on desktop, show only on mobile */
@media (min-width: 769px) {
    .mobile-floating-actions {
        display: none;
    }
}