/* ============================================
   LTI - TRANSFORMERS PAGE STYLES
   ============================================ */

@font-face {
    font-family: "Arm Flat";
    src: url(./fonts/Arm\ Flat.woff2) format("woff2");
    font-display: swap;
    font-style: normal;
    font-weight: 400;
}

@font-face {
    font-family: "Arm Flat";
    src: url(./fonts/Arm\ Flat\ ExtraBold.woff2) format("woff2");
    font-display: swap;
    font-style: normal;
    font-weight: 800;
}

@font-face {
    font-family: "Calvino-Grande";
    src: url(./fonts/Calvino-Grande-Italic-Variable-trial.woff2) format("woff2");
    font-display: swap;
    font-style: italic;
    font-weight: 400;
}

:root {
    --primary: #FF8B1E;
    --primary-dark: #e57a0c;
    --primary-light: #fff0e0;
    --secondary: #003E57;
    --secondary-dark: #002c3e;
    --text-primary: #303335;
    --text-secondary: #5a6b7c;
    --text-muted: #8a99aa;
    --bg-primary: #FFFFFF;
    --bg-secondary: #F6F6F6;
    --border: #EEEEEE;
    --success: #2ecc71;
    --error: #e74c3c;
    --info: #3498db;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 16px 32px rgba(0, 0, 0, 0.12);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;
    --transition: all 0.3s ease;
}

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

body {
    --font-display: "Arm Flat", 'Playfair Display', serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.5;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

button {
    cursor: pointer;
    font-family: inherit;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.logo {
    font-size: 32px;
    font-weight: 800;
    color: var(--secondary);
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--text-secondary);
    font-weight: 500;
    transition: var(--transition);
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.dropdown-arrow {
    font-size: 10px;
    transition: 0.15s ease;
}

.nav-item:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 100;
    box-shadow: var(--shadow-md);
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 12px 20px;
    color: var(--text-secondary);
    font-size: 14px;
    transition: 0.15s ease;
}

.dropdown-item:hover,
.dropdown-item.active {
    background: var(--primary-light);
    color: var(--primary);
}

.phone-link {
    color: var(--primary);
    font-weight: 700;
    border: 1px solid var(--primary);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.phone-link:hover {
    background: var(--primary);
    color: white;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
}

/* Hero Banner 1900x770 */
.hero-banner {
    position: relative;
    width: 100%;
    height: 770px;
    overflow: hidden;
}

.hero-banner img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay-left {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
    z-index: 1;
}

.hero-overlay-bottom {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 40%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    height: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
    flex-wrap: wrap;
}

.hero-text {
    flex: 1;
    max-width: 640px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 139, 30, 0.2);
    border: 1px solid rgba(255, 139, 30, 0.4);
    backdrop-filter: blur(8px);
    margin-bottom: 24px;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #FF8B1E;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: #FF8B1E;
    color: #171717;
    font-size: 14px;
    font-weight: 600;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 10px 25px -5px rgba(255, 139, 30, 0.4);
}

.hero-btn-primary:hover {
    background: #f9a825;
    transform: translateY(-2px);
}

.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: transparent;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(8px);
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* ============================================
   TV WALL MOUNT STYLES - STABLE POSITION (NO VIBRATION)
   ============================================ */

.tv-wall-mount {
    position: relative;
    flex-shrink: 0;
    margin-right: 20px;
    top: -100px;
}

/* TV Frame */
.tv-frame {
    position: relative;
    background: linear-gradient(145deg, #2c2c2c 0%, #1a1a1a 100%);
    border-radius: 24px;
    padding: 12px 12px 14px 12px;
    box-shadow:
        0 30px 40px -20px rgba(0, 0, 0, 0.5),
        0 0 0 2px rgba(255, 255, 255, 0.1) inset,
        0 0 0 4px rgba(0, 0, 0, 0.3) inset;
    transition: transform 0.3s ease;
}

.tv-frame:hover {
    transform: scale(1.02);
}

/* TV Bezel */
.tv-bezel {
    position: relative;
    background: #0a0a0a;
    border-radius: 16px;
    padding: 8px;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.15) inset;
}

/* TV Screen */
.tv-screen {
    position: relative;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.tv-screen .video-container {
    position: relative;
    width: 298px;
    height: 198px;
    background: #000;
}

.tv-screen iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Screen Glow Effect */
.tv-screen::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    background: radial-gradient(circle at center, transparent 60%, rgba(0, 0, 0, 0.4) 100%);
    border-radius: 12px;
    z-index: 2;
}

/* Screen Reflection */
.tv-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 30%;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.15) 0%,
            rgba(255, 255, 255, 0.05) 40%,
            transparent 100%);
    border-radius: 12px 12px 0 0;
    pointer-events: none;
    z-index: 3;
}

/* TV LED Indicator */
.tv-led-indicator {
    position: absolute;
    bottom: 8px;
    right: 15px;
    width: 8px;
    height: 8px;
    background: #ff4444;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(255, 68, 68, 0.8);
    animation: ledBlink 2s ease-in-out infinite;
    z-index: 10;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* LED indicator when sound is ON */
.tv-led-indicator.sound-on {
    background: #44ff44;
    box-shadow: 0 0 12px rgba(68, 255, 68, 0.9);
    animation: ledBlinkGreen 1s ease-in-out infinite;
}

/* TV Speaker Grill */
.tv-speaker-grill {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 8px;
    background: repeating-linear-gradient(90deg,
            #333 0px,
            #333 4px,
            #555 4px,
            #555 8px);
    border-radius: 4px;
    z-index: 10;
    opacity: 0.7;
}

/* Sound Wave Animation */
.sound-wave {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 4px;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 15;
}

.sound-wave.active {
    opacity: 1;
}

.sound-wave span {
    width: 3px;
    height: 12px;
    background: var(--primary);
    border-radius: 2px;
    animation: soundWaveAnim 0.8s ease-in-out infinite;
}

.sound-wave span:nth-child(1) {
    animation-delay: 0s;
    height: 8px;
}

.sound-wave span:nth-child(2) {
    animation-delay: 0.1s;
    height: 16px;
}

.sound-wave span:nth-child(3) {
    animation-delay: 0.2s;
    height: 12px;
}

.sound-wave span:nth-child(4) {
    animation-delay: 0.3s;
    height: 20px;
}

.sound-wave span:nth-child(5) {
    animation-delay: 0.4s;
    height: 10px;
}

.sound-wave span:nth-child(6) {
    animation-delay: 0.5s;
    height: 14px;
}

@keyframes soundWaveAnim {

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

    50% {
        transform: scaleY(1.8);
        opacity: 1;
    }
}

/* Unmute Hint */
.unmute-hint {
    position: absolute;
    bottom: -55px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    color: white;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 20;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.unmute-hint.visible {
    opacity: 1;
}

.unmute-hint svg {
    width: 14px;
    height: 14px;
}

/* TV Stand */
.tv-stand {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 25px;
    background: linear-gradient(180deg, #3a3a3a 0%, #2a2a2a 100%);
    border-radius: 0 0 12px 12px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}

.tv-stand::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 8px;
    background: #4a4a4a;
    border-radius: 4px;
}

.tv-stand::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 8px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
    filter: blur(2px);
}

/* Wall Mount Bracket */
.wall-mount-bracket {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 30px;
    background: linear-gradient(180deg, #5a5a5a 0%, #3a3a3a 100%);
    border-radius: 8px 8px 4px 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 5;
}

.wall-mount-bracket::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 15px;
    background: #4a4a4a;
    border-radius: 4px 4px 0 0;
}

.wall-mount-bracket::after {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 12px;
    background: #6a6a6a;
    border-radius: 2px;
}

/* Wall Reflection */
.wall-reflection {
    position: absolute;
    top: 20px;
    right: -30px;
    width: 80px;
    height: 180px;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0.08) 0%,
            rgba(255, 255, 255, 0.03) 50%,
            transparent 100%);
    border-radius: 20px;
    pointer-events: none;
    z-index: 1;
}

/* TV Shadow */
.tv-shadow {
    position: absolute;
    bottom: -15px;
    left: 10px;
    right: 10px;
    height: 25px;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.4) 0%, transparent 70%);
    filter: blur(8px);
    z-index: -1;
    border-radius: 50%;
}

/* LED Animations */
@keyframes ledBlink {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 8px rgba(255, 68, 68, 0.8);
    }

    50% {
        opacity: 0.6;
        box-shadow: 0 0 12px rgba(255, 68, 68, 0.4);
    }
}

@keyframes ledBlinkGreen {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 8px rgba(68, 255, 68, 0.8);
    }

    50% {
        opacity: 0.8;
        box-shadow: 0 0 16px rgba(68, 255, 68, 0.6);
    }
}

.hero-scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    animation: bounce-scroll 2s infinite;
}

.hero-scroll-line {
    width: 1px;
    height: 32px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), transparent);
}

@keyframes bounce-scroll {

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

    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

/* Breadcrumbs */
.breadcrumbs {
    background: var(--bg-secondary);
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.breadcrumbs-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.breadcrumbs-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.breadcrumbs-link {
    color: var(--text-secondary);
    font-size: 14px;
    transition: 0.15s ease;
}

.breadcrumbs-link:hover,
.breadcrumbs-link.active {
    color: var(--primary);
}

.breadcrumbs-separator {
    color: var(--text-muted);
    font-size: 12px;
}

/* Catalog */
.catalog {
    padding: 48px 24px;
}

.catalog-container {
    max-width: 1400px;
    margin: 0 auto;
}

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

.category-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
}

.category-title span {
    color: var(--primary);
}

.category-description {
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.6;
}

/* Controls */
.catalog-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
}

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

.search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.search-input {
    width: 100%;
    padding: 12px 16px 12px 44px;
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 14px;
    transition: 0.15s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px var(--primary-light);
}

.results-info {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Filters */
.filters-panel {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 24px;
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
}

.filter-group {
    flex: 1;
    min-width: 140px;
}

.filter-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-select,
.price-input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--bg-primary);
    font-size: 14px;
    transition: 0.15s ease;
}

.filter-select:focus,
.price-input:focus {
    outline: none;
    border-color: var(--primary);
}

.price-range {
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.filter-reset {
    background: transparent;
    border: 1px solid var(--border);
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-weight: 500;
    align-self: flex-end;
    transition: var(--transition);
}

.filter-reset:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.filter-tag {
    background: var(--primary-light);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-dark);
}

.filter-tag-remove {
    cursor: pointer;
    font-weight: bold;
    transition: 0.15s ease;
}

.filter-tag-remove:hover {
    color: var(--error);
}

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

/* Product Card */
.product-card {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border);
    cursor: pointer;
    position: relative;
}

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

.product-image-wrapper {
    position: relative;
    background: var(--text-secondary);
    padding: 24px;
    text-align: center;
    border-bottom: 1px solid var(--border);
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image {
    max-width: 208px;
    max-height: 182px;
    object-fit: contain;
    transition: var(--transition);
}

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

.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--primary);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    z-index: 5;
}

.product-wishlist {
    position: absolute;
    top: 16px;
    right: 16px;
    cursor: pointer;
    background: var(--bg-primary);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    z-index: 10;
    transition: var(--transition);
}

.product-wishlist:hover {
    transform: scale(1.1);
}

.product-wishlist svg {
    width: 18px;
    fill: none;
    stroke: var(--text-muted);
    transition: var(--transition);
}

.product-wishlist.active svg {
    fill: var(--error);
    stroke: var(--error);
}

.product-info-card {
    padding: 20px;
}

.product-brand {
    font-size: 12px;
    color: var(--secondary);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.product-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.spec-tag {
    background: var(--bg-secondary);
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 500;
    color: var(--text-secondary);
}

.product-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
}

.product-price {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
}

.add-to-cart {
    background: var(--primary);
    border: none;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 13px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 20;
    position: relative;
    transition: var(--transition);
}

.add-to-cart:hover:not(:disabled) {
    background: var(--primary-dark);
    transform: scale(1.02);
}

.add-to-cart:disabled {
    background: #ccc;
    cursor: not-allowed;
    opacity: 0.7;
}

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

.print-product-btn {
    background: transparent;
    border: 1px solid #ddd;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s;
    color: var(--text-secondary);
}

.print-product-btn:hover {
    background: #003E57;
    border-color: #003E57;
    color: white;
}

.print-product-btn svg {
    width: 14px;
    height: 14px;
}

/* Load More & No Results */
.load-more-wrapper {
    text-align: center;
    margin: 40px 0 20px;
}

.load-more-btn {
    background: transparent;
    border: 2px solid var(--primary);
    padding: 12px 32px;
    border-radius: var(--radius-full);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    color: var(--primary);
}

.load-more-btn:hover {
    background: var(--primary);
    color: white;
}

.loading-indicator {
    text-align: center;
    padding: 40px;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

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

.no-results {
    text-align: center;
    padding: 60px;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.no-results svg {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.no-results h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

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

/* Modal */
.product-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.product-modal.active {
    display: flex;
}

.modal-container {
    width: 840px;
    max-width: 90vw;
    max-height: 90vh;
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    animation: modalSlideIn 0.3s ease;
    box-shadow: var(--shadow-lg);
}

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

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

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    background: var(--primary);
    color: white;
}

.modal-header h2 {
    font-size: 20px;
    font-weight: 700;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
}

.modal-product-image {
    text-align: center;
    margin-bottom: 20px;
    background: var(--text-secondary);
    padding: 20px;
    border-radius: var(--radius-lg);
}

.modal-product-image img {
    max-width: 325px;
    max-height: 260px;
    object-fit: contain;
}

.modal-product-title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 8px;
}

.modal-product-brand {
    font-size: 14px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.modal-price {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 20px;
}

.modal-specs {
    background: var(--bg-secondary);
    padding: 20px;
    border-radius: var(--radius-lg);
    margin-bottom: 20px;
}

.modal-specs h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dashed var(--border);
    padding-bottom: 6px;
}

.spec-label {
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 13px;
}

.spec-value {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 13px;
    text-align: right;
    max-width: 55%;
}

.modal-description {
    margin-bottom: 20px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.modal-description h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.modal-actions {
    display: flex;
    gap: 16px;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.modal-add-to-cart {
    flex: 1;
    background: var(--primary);
    border: none;
    padding: 14px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 16px;
    color: white;
    cursor: pointer;
    transition: var(--transition);
}

.modal-add-to-cart:hover {
    background: var(--primary-dark);
}

.modal-add-to-wishlist {
    background: transparent;
    border: 2px solid var(--primary);
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-weight: 600;
    cursor: pointer;
    color: var(--primary);
    transition: var(--transition);
}

.modal-add-to-wishlist:hover {
    background: var(--primary-light);
}

.modal-add-to-wishlist.active {
    background: var(--primary);
    color: white;
}

/* Footer */
.footer {
    background: var(--secondary);
    color: white;
    padding: 48px 24px 24px;
    margin-top: 60px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 16px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

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

.footer-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgb(255, 255, 255) !important;
    transition: var(--transition);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

/* Floating Buttons & Sidebar */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1000;
}

.floating-btn {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    color: white;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.floating-btn:hover {
    transform: scale(1.05);
    background: var(--primary-dark);
}

.floating-btn .badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--error);
    color: white;
    font-size: 10px;
    font-weight: 700;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: none;
    align-items: center;
    justify-content: center;
}

.whatsapp-float {
    position: fixed;
    bottom: 145px;
    right: 35px;
    background: #25D366;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.whatsapp-float:hover {
    transform: scale(1.05);
}

.sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 420px;
    max-width: 90vw;
    height: 100vh;
    background: var(--bg-primary);
    box-shadow: var(--shadow-lg);
    z-index: 1100;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.sidebar.active {
    right: 0;
}

.sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1050;
}

.sidebar-overlay.active {
    display: block;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
}

.sidebar-header h3 {
    font-size: 20px;
    font-weight: 700;
}

.sidebar-close {
    font-size: 28px;
    cursor: pointer;
    background: none;
    border: none;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.sidebar-close:hover {
    background: var(--bg-secondary);
}

.sidebar-content {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.sidebar-footer {
    padding: 20px;
    border-top: 1px solid var(--border);
}

.sidebar-total {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cart-item,
.wishlist-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.cart-item-image img,
.wishlist-item-image img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.cart-item-details,
.wishlist-item-details {
    flex: 1;
}

.cart-item-title,
.wishlist-item-title {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cart-item-price,
.wishlist-item-price {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}

.quantity-btn {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    width: 28px;
    height: 28px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.quantity-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.cart-item-remove,
.wishlist-item-remove {
    cursor: pointer;
    font-size: 20px;
    color: var(--text-muted);
    transition: var(--transition);
}

.cart-item-remove:hover,
.wishlist-item-remove:hover {
    color: var(--error);
}

/* Toast & Cookie */
.toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1200;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background: var(--text-primary);
    color: white;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-size: 14px;
    animation: slideInRight 0.3s ease;
    box-shadow: var(--shadow-md);
}

.toast.success {
    background: var(--success);
}

.toast.error {
    background: var(--error);
}

.toast.info {
    background: var(--info);
}

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

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

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-primary);
    border-top: 1px solid var(--border);
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    z-index: 1100;
    box-shadow: var(--shadow-lg);
}

.cookie-consent p {
    font-size: 14px;
    color: var(--text-secondary);
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.cookie-btn {
    padding: 8px 20px;
    border-radius: var(--radius-full);
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

.cookie-btn:first-child {
    background: var(--primary);
    border: none;
    color: white;
}

.cookie-btn:first-child:hover {
    background: var(--primary-dark);
}

.cookie-btn.cookie-decline {
    background: transparent;
    border: 1px solid var(--border);
}

.cookie-btn.cookie-decline:hover {
    border-color: var(--error);
    color: var(--error);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border);
}

.btn-block {
    width: 100%;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-banner {
        height: 550px;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-content {
        padding: 0 32px;
    }

    .category-title {
        font-size: 36px;
    }

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

    .tv-screen .video-container {
        width: 260px;
        height: 173px;
    }

    .tv-frame {
        padding: 10px 10px 12px 10px;
    }

    .tv-bezel {
        padding: 6px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--bg-primary);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 24px 24px;
        transition: left 0.3s ease;
        z-index: 1100;
        box-shadow: var(--shadow-lg);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding-left: 20px;
        display: none;
    }

    .nav-item:hover .dropdown-menu {
        display: block;
    }

    .hero-banner {
        height: 480px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 0 24px;
    }

    .hero-text {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: 100%;
    }

    .tv-wall-mount {
        margin-right: 0;
        margin-top: 20px;
        transform: scale(0.9);
    }

    .tv-screen .video-container {
        width: 240px;
        height: 160px;
    }

    .wall-reflection {
        display: none;
    }

    .catalog {
        padding: 32px 16px;
    }

    .category-title {
        font-size: 28px;
    }

    .filters-panel {
        flex-direction: column;
    }

    .filter-group {
        min-width: 100%;
    }

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

    .specs-grid {
        grid-template-columns: 1fr;
    }

    .modal-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-banner {
        height: 420px;
    }

    .hero-title {
        font-size: 26px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .tv-screen .video-container {
        width: 220px;
        height: 146px;
    }

    .tv-stand {
        width: 60px;
        height: 20px;
        bottom: -20px;
    }

    .tv-frame {
        padding: 8px 8px 10px 8px;
    }

    .tv-bezel {
        padding: 5px;
    }

    .catalog-controls {
        flex-direction: column;
        align-items: stretch;
    }

    .product-bottom {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-consent {
        flex-direction: column;
        text-align: center;
    }
}

@media print {

    .header,
    .footer,
    .floating-buttons,
    .whatsapp-float,
    .sidebar,
    .sidebar-overlay,
    .cookie-consent,
    .filters-panel,
    .catalog-controls,
    .load-more-wrapper,
    .hero-banner,
    .breadcrumbs,
    .product-wishlist,
    .add-to-cart,
    .print-product-btn,
    .product-actions,
    .toast-container {
        display: none !important;
    }

    .product-card {
        break-inside: avoid;
        page-break-inside: avoid;
        border: 1px solid #ddd;
        box-shadow: none;
        transform: none !important;
    }
}