
    :root {
      --red: #c0392b;
      --red-dark: #96281b;
      --red-light: #e74c3c;
      --black: #0f0f0f;
      --dark: #1a1a1a;
      --dark2: #222;
      --gray: #888;
      --light: #f5f5f5;
      --white: #ffffff;
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    html, body { height: 100%; font-family: 'Barlow', sans-serif; background: var(--black); color: var(--white); scroll-behavior: smooth; }
    h1,h2,h3,h4,h5 { font-family: 'Barlow Condensed', sans-serif; }

    /* NAV */
    .site-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(10,10,10,0.95); backdrop-filter: blur(12px); border-bottom: 2px solid var(--red); }
    .nav-inner { max-width: 1280px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 68px; }
    .nav-logo { font-family: 'Barlow Condensed', sans-serif; font-size: 26px; font-weight: 800; color: var(--white); text-decoration: none; letter-spacing: 1px; }
    .nav-logo span { color: var(--red); }
    .nav-links { display: flex; align-items: center; gap: 8px; list-style: none; }
    .nav-links a { color: #ccc; text-decoration: none; font-size: 15px; font-weight: 500; padding: 8px 14px; border-radius: 4px; transition: all .2s; }
    .nav-links a:hover, .nav-links a.active { color: var(--white); background: var(--red); }
    .nav-cta { background: var(--red) !important; color: var(--white) !important; padding: 9px 20px !important; border-radius: 4px !important; font-weight: 600 !important; }
    .nav-cta:hover { background: var(--red-dark) !important; }
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
    .hamburger span { display: block; width: 26px; height: 2px; background: var(--white); transition: all .3s; border-radius: 2px; }
    .mobile-menu { display: none; flex-direction: column; background: var(--dark); border-top: 1px solid #333; padding: 16px; gap: 4px; }
    .mobile-menu a { color: #ccc; text-decoration: none; font-size: 16px; padding: 12px 16px; border-radius: 4px; display: block; transition: all .2s; }
    .mobile-menu a:hover { color: var(--white); background: var(--red); }
    .mobile-menu.open { display: flex; }

    /* HERO */
    .hero { min-height: 100%; background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(192,57,43,0.35) 60%, rgba(0,0,0,0.9) 100%), url('https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?w=1600&q=80') center/cover no-repeat; display: flex; align-items: center; padding-top: 68px; }
    .hero-inner { max-width: 1280px; margin: 0 auto 0 50px; padding: 80px 24px; }
    .hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(192,57,43,0.2); border: 1px solid var(--red); color: var(--red); font-size: 13px; font-weight: 600; padding: 6px 16px; border-radius: 20px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 24px; }
    .hero h1 { font-size: clamp(44px, 7vw, 88px); font-weight: 800; line-height: 1; text-transform: uppercase; letter-spacing: -1px; }
    .hero h1 .accent { color: var(--red); display: block; }
    .hero p { color: #bbb; font-size: 18px; max-width: 540px; margin: 20px 0 36px; line-height: 1.7; }
    .btn-primary { display: inline-flex; align-items: center; gap: 10px; background: var(--red); color: var(--white); font-family: 'Barlow Condensed', sans-serif; font-size: 17px; font-weight: 700; letter-spacing: 1px; padding: 14px 30px; border-radius: 4px; text-decoration: none; border: none; cursor: pointer; transition: all .25s; text-transform: uppercase; }
    .btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(192,57,43,0.4); }
    .btn-outline { display: inline-flex; align-items: center; gap: 10px; background: transparent; color: var(--white); font-family: 'Barlow Condensed', sans-serif; font-size: 17px; font-weight: 700; letter-spacing: 1px; padding: 13px 30px; border-radius: 4px; text-decoration: none; border: 2px solid rgba(255,255,255,0.3); cursor: pointer; transition: all .25s; text-transform: uppercase; }
    .btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); transform: translateY(-2px); }
    .hero-stats { display: flex; gap: 48px; margin-top: 56px; flex-wrap: wrap; }
    .hero-stat span { display: block; font-family: 'Barlow Condensed', sans-serif; font-size: 44px; font-weight: 800; color: var(--red); }
    .hero-stat p { color: #888; font-size: 14px; font-weight: 500; }

    /* SEARCH */
    .search-section { background: var(--dark); padding: 0; }
    .search-wrapper { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
    .search-box { background: var(--dark2); border: 1px solid #333; border-radius: 8px; padding: 32px; margin: -40px 0 0; position: relative; z-index: 10; box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
    .search-box h3 { font-size: 22px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; color: var(--white); }
    .search-box h3 span { color: var(--red); }
    .search-form { display: grid; grid-template-columns: repeat(4, 1fr) auto; gap: 12px; align-items: end; }
    .search-form .field label { display: block; font-size: 12px; font-weight: 600; color: #888; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
    .search-form .field select, .search-form .field input { width: 100%; background: #111; border: 1px solid #444; color: var(--white); font-family: 'Barlow', sans-serif; font-size: 15px; padding: 12px 14px; border-radius: 4px; outline: none; transition: border .2s; appearance: none; -webkit-appearance: none; }
    .search-form .field select:focus, .search-form .field input:focus { border-color: var(--red); }
    .search-result { display: none; margin-top: 20px; background: rgba(192,57,43,0.1); border: 1px solid rgba(192,57,43,0.4); border-radius: 6px; padding: 16px 20px; }
    .search-result p { color: #eee; font-size: 15px; }
    .search-result strong { color: var(--red); }

    /* SECTION BASE */
    section { padding: 80px 0; }
    .section-inner { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
    .section-label { font-size: 13px; font-weight: 700; color: var(--red); text-transform: uppercase; letter-spacing: 3px; display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
    .section-label::before { content: ''; width: 32px; height: 2px; background: var(--red); }
    .section-title { font-size: clamp(32px, 4vw, 52px); font-weight: 800; text-transform: uppercase; line-height: 1.1; }
    .section-title span { color: var(--red); }

    /* FEATURES */
    .features-section { background: var(--dark); }
    .features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; margin-top: 48px; }
    .feature-card { background: var(--dark2); border: 1px solid #2a2a2a; border-radius: 8px; padding: 32px 28px; transition: all .3s; }
    .feature-card:hover { border-color: var(--red); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(192,57,43,0.15); }
    .feature-icon { width: 56px; height: 56px; background: rgba(192,57,43,0.1); border: 1px solid rgba(192,57,43,0.3); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 22px; color: var(--red); margin-bottom: 20px; }
    .feature-card h4 { font-size: 20px; font-weight: 700; text-transform: uppercase; margin-bottom: 10px; }
    .feature-card p { color: #888; font-size: 14px; line-height: 1.7; }

    /* PRODUCTS */
    .products-section { background: #111; }
    .products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; margin-top: 48px; }
    .product-card { background: var(--dark2); border: 1px solid #2a2a2a; border-radius: 8px; overflow: hidden; transition: all .3s; }
    .product-card:hover { border-color: var(--red); box-shadow: 0 12px 40px rgba(192,57,43,0.2); transform: translateY(-4px); }
    .product-img { width: 100%; height: 200px; object-fit: cover; background: #1a1a1a; display: flex; align-items: center; justify-content: center; font-size: 48px; color: #444; position: relative; overflow: hidden; }
    .product-img img { width: 100%; height: 100%; object-fit: cover; }
    .product-badge { position: absolute; top: 12px; left: 12px; background: var(--red); color: white; font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 3px; text-transform: uppercase; letter-spacing: 1px; }
    .product-body { padding: 20px; }
    .product-body h4 { font-size: 18px; font-weight: 700; text-transform: uppercase; margin-bottom: 6px; }
    .product-body p { color: #888; font-size: 13px; line-height: 1.6; margin-bottom: 16px; }
    .product-meta { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid #333; }
    .product-cat { font-size: 12px; color: var(--red); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
    .btn-sm { font-family: 'Barlow Condensed', sans-serif; font-size: 14px; font-weight: 700; letter-spacing: 1px; padding: 8px 18px; border-radius: 4px; text-decoration: none; border: none; cursor: pointer; transition: all .2s; text-transform: uppercase; display: inline-flex; align-items: center; gap: 6px; }
    .btn-sm.red { background: var(--red); color: white; }
    .btn-sm.red:hover { background: var(--red-dark); }
    .btn-sm.outline { background: transparent; color: #ccc; border: 1px solid #444; }
    .btn-sm.outline:hover { border-color: var(--red); color: var(--white); }

    /* SERVICES STRIP */
    .services-strip { background: var(--red); padding: 60px 0; }
    .services-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; max-width: 1280px; margin: 0 auto; padding: 0 24px; }
    .service-item { text-align: center; }
    .service-item i { font-size: 32px; color: rgba(255,255,255,0.8); margin-bottom: 12px; }
    .service-item h4 { font-size: 18px; font-weight: 700; text-transform: uppercase; }
    .service-item p { font-size: 13px; color: rgba(255,255,255,0.75); margin-top: 4px; }

    /* INQUIRY FORM */
    .inquiry-section { background: var(--dark); }
    .inquiry-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; margin-top: 48px; }
    .inquiry-info h3 { font-size: 32px; font-weight: 800; text-transform: uppercase; margin-bottom: 16px; }
    .inquiry-info p { color: #888; line-height: 1.8; margin-bottom: 28px; }
    .contact-item { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
    .contact-item i { width: 44px; height: 44px; background: rgba(192,57,43,0.1); border: 1px solid rgba(192,57,43,0.3); border-radius: 6px; display: flex; align-items: center; justify-content: center; color: var(--red); font-size: 16px; flex-shrink: 0; }
    .contact-item a { color: #ccc; text-decoration: none; font-size: 16px; }
    .contact-item a:hover { color: var(--red); }
    .inquiry-form-wrap { background: var(--dark2); border: 1px solid #2a2a2a; border-radius: 8px; padding: 36px; }
    .form-group { margin-bottom: 18px; }
    .form-group label { display: block; font-size: 12px; font-weight: 600; color: #888; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 7px; }
    .form-control { width: 100%; background: #111; border: 1px solid #333; color: var(--white); font-family: 'Barlow', sans-serif; font-size: 15px; padding: 12px 16px; border-radius: 4px; outline: none; transition: border .2s; }
    .form-control:focus { border-color: var(--red); }
    .form-control.error { border-color: #e74c3c; }
    .error-msg { color: #e74c3c; font-size: 12px; margin-top: 4px; display: none; }
    .error-msg.show { display: block; }
    textarea.form-control { resize: vertical; min-height: 120px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .form-success { display: none; background: rgba(39,174,96,0.1); border: 1px solid #27ae60; border-radius: 6px; padding: 16px; text-align: center; color: #27ae60; font-weight: 600; margin-top: 16px; }

    /* TESTIMONIALS */
    .testimonials-section { background: #111; }
    .testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; margin-top: 48px; }
    .testimonial-card { background: var(--dark2); border: 1px solid #2a2a2a; border-radius: 8px; padding: 28px; }
    .stars { color: #f39c12; font-size: 14px; margin-bottom: 14px; }
    .testimonial-card p { color: #aaa; font-size: 14px; line-height: 1.8; margin-bottom: 20px; font-style: italic; }
    .reviewer { display: flex; align-items: center; gap: 12px; }
    .reviewer-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--red); display: flex; align-items: center; justify-content: center; font-family: 'Barlow Condensed', sans-serif; font-size: 18px; font-weight: 700; color: white; }
    .reviewer-name { font-weight: 600; font-size: 15px; }
    .reviewer-label { font-size: 12px; color: #666; }

    /* FOOTER */
    .site-footer { background: #080808; border-top: 2px solid var(--red); padding: 60px 0 0; }
    .footer-inner { max-width: 1280px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
    .footer-brand .nav-logo { font-size: 28px; }
    .footer-brand p { color: #666; font-size: 14px; line-height: 1.8; margin: 16px 0 24px; }
    .social-links { display: flex; gap: 10px; }
    .social-links a { width: 38px; height: 38px; border-radius: 4px; border: 1px solid #333; display: flex; align-items: center; justify-content: center; color: #888; font-size: 14px; transition: all .2s; text-decoration: none; }
    .social-links a:hover { background: var(--red); border-color: var(--red); color: white; }
    .footer-col h5 { font-size: 16px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--white); margin-bottom: 20px; }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 10px; }
    .footer-col ul li a { color: #666; text-decoration: none; font-size: 14px; transition: color .2s; }
    .footer-col ul li a:hover { color: var(--red); }
    .footer-contact-item { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; color: #666; font-size: 14px; }
    .footer-contact-item i { color: var(--red); width: 16px; }
    .footer-contact-item a { color: #666; text-decoration: none; }
    .footer-contact-item a:hover { color: var(--red); }
    .footer-bottom { max-width: 1280px; margin: 48px auto 0; padding: 20px 24px; border-top: 1px solid #1a1a1a; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
    .footer-bottom p { color: #444; font-size: 13px; }

    /* ABOUT PAGE */
    .page-hero { background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(192,57,43,0.25) 100%), url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1400&q=80') center/cover no-repeat; padding: 140px 0 80px; text-align: center; }
    .page-hero h1 { font-size: clamp(40px, 6vw, 72px); font-weight: 800; text-transform: uppercase; }
    .page-hero p { color: #aaa; font-size: 18px; margin-top: 12px; }
    .breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 16px; font-size: 14px; color: white; }
    .breadcrumb a { color: var(--red); text-decoration: none; }
    .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-top: 60px; }
    .about-img-wrap { position: relative; border-radius: 8px; overflow: hidden; }
    .about-img-wrap img { width: 100%; border-radius: 8px; }
    .about-img-badge { position: absolute; bottom: 24px; right: 24px; background: var(--red); color: white; border-radius: 8px; padding: 16px 20px; text-align: center; }
    .about-img-badge span { font-family: 'Barlow Condensed', sans-serif; font-size: 40px; font-weight: 800; display: block; }
    .about-img-badge p { font-size: 13px; font-weight: 600; text-transform: uppercase; }
    .about-text p { color: #888; line-height: 1.8; margin-bottom: 16px; }
    .about-checks { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px; }
    .about-check { display: flex; align-items: center; gap: 10px; color: #ccc; font-size: 14px; }
    .about-check i { color: var(--red); }
    .team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; margin-top: 48px; }
    .team-card { background: var(--dark2); border: 1px solid #2a2a2a; border-radius: 8px; padding: 32px 24px; text-align: center; transition: all .3s; }
    .team-card:hover { border-color: var(--red); transform: translateY(-4px); }
    .team-avatar { width: 80px; height: 80px; border-radius: 50%; background: var(--red); display: flex; align-items: center; justify-content: center; font-family: 'Barlow Condensed', sans-serif; font-size: 32px; font-weight: 700; color: white; margin: 0 auto 16px; }
    .team-card h4 { font-size: 20px; font-weight: 700; text-transform: uppercase; }
    .team-card .role { color: var(--red); font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
    .team-card p { color: #888; font-size: 13px; line-height: 1.6; }
    .values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-top: 48px; }
    .value-card { background: var(--dark2); border: 1px solid #2a2a2a; border-radius: 8px; padding: 28px 24px; text-align: center; transition: all .3s; }
    .value-card:hover { border-color: var(--red); }
    .value-card i { font-size: 32px; color: var(--red); margin-bottom: 14px; }
    .value-card h4 { font-size: 18px; font-weight: 700; text-transform: uppercase; margin-bottom: 8px; }
    .value-card p { color: #777; font-size: 13px; line-height: 1.6; }

    /* SERVICES PAGE */
    .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; margin-top: 48px; }
    .service-card { background: var(--dark2); border: 1px solid #2a2a2a; border-radius: 8px; padding: 36px 28px; transition: all .3s; }
    .service-card:hover { border-color: var(--red); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(192,57,43,0.15); }
    .service-num { font-family: 'Barlow Condensed', sans-serif; font-size: 60px; font-weight: 800; color: rgba(192,57,43,0.15); line-height: 1; margin-bottom: 8px; }
    .service-card .svc-icon { width: 60px; height: 60px; background: rgba(192,57,43,0.1); border: 1px solid rgba(192,57,43,0.3); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 24px; color: var(--red); margin-bottom: 20px; }
    .service-card h4 { font-size: 22px; font-weight: 700; text-transform: uppercase; margin-bottom: 10px; }
    .service-card p { color: #888; font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
    .service-features { list-style: none; }
    .service-features li { display: flex; align-items: center; gap: 8px; color: #aaa; font-size: 13px; margin-bottom: 6px; }
    .service-features li i { color: var(--red); font-size: 10px; }
    .process-section { background: #111; }
    .process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 0; margin-top: 48px; position: relative; }
    .process-step { text-align: center; padding: 32px 24px; position: relative; }
    .step-num { width: 56px; height: 56px; border-radius: 50%; background: var(--red); display: flex; align-items: center; justify-content: center; font-family: 'Barlow Condensed', sans-serif; font-size: 22px; font-weight: 800; color: white; margin: 0 auto 16px; }
    .step-num::after { content: ''; position: absolute; top: 60px; left: calc(50% + 28px); width: calc(100% - 56px); height: 2px; background: #333; }
    .process-step:last-child .step-num::after { display: none; }
    .process-step h4 { font-size: 18px; font-weight: 700; text-transform: uppercase; margin-bottom: 8px; }
    .process-step p { color: #777; font-size: 13px; line-height: 1.6; }

    /* SHOP PAGE */
    .shop-layout { display: grid; grid-template-columns: 260px 1fr; gap: 32px; margin-top: 48px; align-items: start; }
    .shop-sidebar { background: var(--dark2); border: 1px solid #2a2a2a; border-radius: 8px; padding: 24px; position: sticky; top: 88px; }
    .sidebar-section { margin-bottom: 28px; }
    .sidebar-section h5 { font-size: 16px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid #333; }
    .filter-option { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; cursor: pointer; color: #aaa; font-size: 14px; transition: color .2s; }
    .filter-option:hover { color: var(--white); }
    .filter-option input[type=checkbox] { accent-color: var(--red); }
    .shop-controls { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; margin-bottom: 24px; }
    .shop-controls span { color: #888; font-size: 14px; }
    .shop-controls select { background: var(--dark2); border: 1px solid #333; color: var(--white); font-family: 'Barlow', sans-serif; font-size: 14px; padding: 8px 14px; border-radius: 4px; outline: none; }
    .shop-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
    .pagination { display: flex; gap: 8px; margin-top: 32px; justify-content: center; }
    .pagination button { width: 36px; height: 36px; border-radius: 4px; border: 1px solid #333; background: var(--dark2); color: #ccc; font-size: 14px; cursor: pointer; transition: all .2s; }
    .pagination button.active, .pagination button:hover { background: var(--red); border-color: var(--red); color: white; }

    /* PRODUCT PAGE */
    .product-detail-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; margin-top: 48px; }
    .gallery-main { width: 100%; border-radius: 8px; overflow: hidden; background: var(--dark2); border: 1px solid #2a2a2a; aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; font-size: 80px; color: #333; }
    .gallery-main img { width: 100%; height: 100%; object-fit: cover; }
    .gallery-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 10px; }
    .gallery-thumb { aspect-ratio: 1; border-radius: 4px; overflow: hidden; background: var(--dark2); border: 2px solid transparent; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 24px; color: #444; transition: border-color .2s; }
    .gallery-thumb.active, .gallery-thumb:hover { border-color: var(--red); }
    .gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
    .product-detail-info .product-cat-label { color: var(--red); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; display: block; margin-bottom: 8px; }
    .product-detail-info h1 { font-size: clamp(30px, 4vw, 48px); font-weight: 800; text-transform: uppercase; margin-bottom: 12px; }
    .product-detail-info .desc { color: #888; line-height: 1.8; margin-bottom: 24px; }
    .product-features-list { list-style: none; margin-bottom: 28px; }
    .product-features-list li { display: flex; align-items: flex-start; gap: 10px; color: #ccc; font-size: 14px; margin-bottom: 10px; border-bottom: 1px solid #1f1f1f; padding-bottom: 10px; }
    .product-features-list li:last-child { border-bottom: none; }
    .product-features-list li i { color: var(--red); margin-top: 2px; flex-shrink: 0; }
    .product-actions { display: flex; flex-wrap: wrap; gap: 12px; }
    .related-section { background: #111; }

    /* CONTACT PAGE */
    .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-top: 60px; }
    .contact-info-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 48px; }
    .contact-info-card { background: var(--dark2); border: 1px solid #2a2a2a; border-radius: 8px; padding: 28px; text-align: center; transition: all .3s; }
    .contact-info-card:hover { border-color: var(--red); transform: translateY(-4px); }
    .contact-info-card i { font-size: 32px; color: var(--red); margin-bottom: 14px; }
    .contact-info-card h4 { font-size: 18px; font-weight: 700; text-transform: uppercase; margin-bottom: 8px; }
    .contact-info-card a, .contact-info-card p { color: #888; text-decoration: none; font-size: 14px; line-height: 1.6; }
    .contact-info-card a:hover { color: var(--red); }
    .contact-form-wrap { background: var(--dark2); border: 1px solid #2a2a2a; border-radius: 8px; padding: 40px; }
    .contact-form-wrap h3 { font-size: 28px; font-weight: 800; text-transform: uppercase; margin-bottom: 6px; }
    .contact-form-wrap p { color: #777; font-size: 14px; margin-bottom: 28px; }
    .callback-card { background: var(--red); border-radius: 8px; padding: 32px; text-align: center; margin-top: 24px; }
    .callback-card h4 { font-size: 24px; font-weight: 800; text-transform: uppercase; margin-bottom: 8px; }
    .callback-card p { color: rgba(255,255,255,0.8); font-size: 14px; margin-bottom: 20px; }
    .btn-white { display: inline-flex; align-items: center; gap: 8px; background: white; color: var(--red); font-family: 'Barlow Condensed', sans-serif; font-size: 16px; font-weight: 700; letter-spacing: 1px; padding: 12px 24px; border-radius: 4px; text-decoration: none; border: none; cursor: pointer; transition: all .25s; text-transform: uppercase; }
    .btn-white:hover { background: #f0f0f0; transform: translateY(-2px); }
    .faq-section { background: #111; }
    .faq-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 16px; margin-top: 48px; }
    .faq-item { background: var(--dark2); border: 1px solid #2a2a2a; border-radius: 8px; overflow: hidden; }
    .faq-q { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; cursor: pointer; font-size: 16px; font-weight: 600; transition: color .2s; }
    .faq-q:hover { color: var(--red); }
    .faq-q i { color: var(--red); transition: transform .3s; flex-shrink: 0; }
    .faq-a { display: none; padding: 0 24px 20px; color: #777; font-size: 14px; line-height: 1.8; }
    .faq-item.open .faq-q i { transform: rotate(180deg); }
    .faq-item.open .faq-a { display: block; }

    /* ANIMATIONS */
    .fade-up { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
    .fade-up.visible { opacity: 1; transform: translateY(0); }

    /* RESPONSIVE */
    @media (max-width: 1024px) {
      .footer-inner { grid-template-columns: 1fr 1fr; }
      .shop-layout { grid-template-columns: 1fr; }
      .shop-sidebar { position: static; }
    }
    @media (max-width: 768px) {
      .nav-links { display: none; }
      .hamburger { display: flex; }
      .hero-stats { gap: 28px; }
      .search-form { grid-template-columns: 1fr 1fr; }
      .inquiry-grid, .about-grid, .product-detail-layout, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
      .form-row { grid-template-columns: 1fr; }
      .footer-inner { grid-template-columns: 1fr; gap: 32px; }
      .footer-bottom { flex-direction: column; text-align: center; }
      .about-checks { grid-template-columns: 1fr; }
      .contact-info-cards { grid-template-columns: 1fr; }
      .faq-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 480px) {
      .search-form { grid-template-columns: 1fr; }
      .gallery-thumbs { grid-template-columns: repeat(4, 1fr); }
    }
  