/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #1a1a1a;
    color: #e0e0e0;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
ul { list-style: none; }

/* Header */
.site-header {
    background: #1a1a1a;
    border-bottom: 1px solid #2a2a2a;
    position: sticky;
    top: 0;
    z-index: 100;
}
.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    height: 65px;
}
.logo img { height: 40px; }
.main-nav {
    display: flex;
    gap: 25px;
    margin-left: 40px;
}
.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: #ccc;
    transition: color 0.2s;
    white-space: nowrap;
}
.nav-link:hover { color: #fff; }
.header-right {
    margin-left: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}
.top-links {
    display: flex;
    gap: 15px;
    font-size: 11px;
    color: #999;
}
.top-links a:hover { color: #fff; }
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}
.currency-selector select {
    background: #2a2a2a;
    color: #ccc;
    border: 1px solid #444;
    padding: 4px 8px;
    border-radius: 20px;
    font-size: 12px;
    cursor: pointer;
}
.btn-cart {
    background: transparent;
    border: 1px solid #555;
    color: #ccc;
    padding: 6px 18px;
    border-radius: 25px;
    font-size: 13px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}
.btn-cart:hover { border-color: #fff; color: #fff; }
.cart-count {
    background: #c41e1e;
    color: #fff;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}
.btn-shop {
    background: #c41e1e;
    color: #fff;
    padding: 6px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 500;
    transition: background 0.2s;
}
.btn-shop:hover { background: #a01818; }

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #222 100%);
    min-height: 550px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid #c41e1e;
}
.hero-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    width: 100%;
}
.hero-content {
    flex: 1;
    padding-right: 60px;
}
.hero-tag {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #999;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.hero-tag span {
    text-decoration: underline;
}
.hero-tag .explore {
    color: #c41e1e;
    text-decoration: none;
}
.hero h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 52px;
    font-weight: 500;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 20px;
}
.hero h1 sub {
    font-size: 24px;
    bottom: 0;
}
.hero-desc {
    font-size: 14px;
    color: #999;
    margin-bottom: 8px;
    letter-spacing: 1px;
}
.hero-desc .highlight {
    color: #c41e1e;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.hero-desc-text {
    font-size: 14px;
    color: #888;
    margin-bottom: 25px;
}
.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}
.hero-image img {
    max-height: 450px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
}
.hero-badge {
    position: absolute;
    top: 20px;
    right: 40px;
    background: rgba(50,50,50,0.9);
    padding: 20px 25px;
    border-radius: 8px;
}
.hero-badge p {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.3;
}
.hero-badge .red { color: #c41e1e; }
.hero-badge .gold { color: #d4a843; }
.hero-badge .white { color: #fff; }
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid #555;
    color: #ccc;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 14px;
    transition: all 0.2s;
}
.btn-outline:hover { border-color: #fff; color: #fff; }

/* Torches Grid Section */
.section { padding: 80px 0; }
.section-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}
.section-title {
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 30px;
}
.section-title .red { color: #c41e1e; }

/* Torch Tabs */
.torch-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}
.torch-tab {
    border: 1px solid #333;
    border-radius: 8px;
    padding: 12px 10px;
    width: 110px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    background: transparent;
}
.torch-tab:hover, .torch-tab.active {
    border-color: #c41e1e;
}
.torch-tab img {
    height: 60px;
    object-fit: contain;
    margin-bottom: 8px;
    filter: brightness(0.8);
}
.torch-tab.active img { filter: brightness(1); }
.torch-tab-name {
    font-size: 12px;
    color: #999;
    line-height: 1.3;
}
.torch-tab.active .torch-tab-name { color: #fff; }

/* Featured Product */
.featured-product {
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 60px 0;
}
.featured-product-image {
    flex: 1;
    text-align: center;
}
.featured-product-image img {
    max-height: 400px;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
}
.featured-product-info { flex: 1; }
.featured-product-info .category-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.featured-product-info .category-label .red { color: #c41e1e; }
.featured-product-info .category-label .gold { color: #d4a843; }
.featured-product-info h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 42px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 15px;
}
.featured-product-info p {
    font-size: 14px;
    color: #888;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Distributor Section */
.distributor-section {
    padding: 80px 0;
    border-top: 1px solid #2a2a2a;
}
.distributor-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    gap: 80px;
}
.distributor-content { flex: 1; }
.distributor-content .category-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.distributor-content .category-label .red { color: #c41e1e; }
.distributor-content .category-label .gold { color: #d4a843; }
.distributor-content h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 32px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 15px;
}
.distributor-content p {
    font-size: 14px;
    color: #888;
    line-height: 1.7;
    margin-bottom: 15px;
}
.distributor-content ul {
    margin-bottom: 15px;
    padding-left: 20px;
}
.distributor-content li {
    list-style: disc;
    font-size: 14px;
    color: #888;
    margin-bottom: 6px;
}
.distributor-image { flex: 0 0 300px; text-align: center; }

/* Featured Cards */
.featured-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 60px;
}
.featured-card {
    background: #242424;
    border-radius: 10px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}
.featured-card .category-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.featured-card .category-label .red { color: #c41e1e; }
.featured-card .category-label .gold { color: #d4a843; }
.featured-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 15px;
}
.featured-card p {
    font-size: 13px;
    color: #888;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Shop Page */
.shop-header {
    text-align: center;
    padding: 60px 0 20px;
    background: linear-gradient(180deg, #1a1a1a 0%, #222 100%);
    border-bottom: 3px solid #c41e1e;
}
.shop-header h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 42px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 10px;
}
.shop-header p {
    font-size: 14px;
    color: #888;
}
.products-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 50px 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.product-card {
    background: #242424;
    border: 1px solid #333;
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.3s;
    display: flex;
    flex-direction: column;
}
.product-card:hover { border-color: #555; }
.product-card-image {
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background: #1e1e1e;
}
.product-card-image img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
}
.product-card-info {
    padding: 25px 30px 30px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.product-card-category {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.product-card-category .red { color: #c41e1e; }
.product-card-category .gold { color: #d4a843; }
.product-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 8px;
}
.product-card .price {
    font-size: 15px;
    color: #d4a843;
    margin-bottom: 15px;
}
.product-card p {
    font-size: 13px;
    color: #888;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 30px 0 60px;
}
.pagination a, .pagination span {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #444;
    color: #ccc;
    font-size: 14px;
    transition: all 0.2s;
}
.pagination a:hover { border-color: #fff; color: #fff; }
.pagination .active {
    border-color: #d4a843;
    color: #d4a843;
}

/* Product Single Page */
.product-single {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 30px;
    display: flex;
    gap: 60px;
}
.product-single-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    background: #1e1e1e;
    border-radius: 10px;
    padding: 40px;
}
.product-single-image img {
    max-height: 450px;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
}
.product-single-info { flex: 1; }
.product-single-info .category-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.product-single-info .category-label .red { color: #c41e1e; }
.product-single-info .category-label .gold { color: #d4a843; }
.product-single-info h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 48px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 15px;
}
.product-single-info .price {
    font-size: 24px;
    color: #d4a843;
    margin-bottom: 20px;
}
.product-single-info .description {
    font-size: 15px;
    color: #888;
    line-height: 1.8;
    margin-bottom: 30px;
}
.product-single-info .short-desc {
    font-size: 15px;
    color: #aaa;
    line-height: 1.7;
    margin-bottom: 25px;
}
.product-meta {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid #2a2a2a;
}
.product-meta p {
    font-size: 13px;
    color: #888;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.product-meta .meta-icon { display: inline-block; width: 18px; text-align: center; }
.product-meta strong { color: #fff; }
.product-meta a { color: #d4a843; }
.product-meta a:hover { text-decoration: underline; }

/* Product details (specs + overview) */
.product-details {
    background: #161616;
    border-top: 1px solid #2a2a2a;
    border-bottom: 1px solid #2a2a2a;
    padding: 60px 0;
}
.product-details-inner { max-width: 1200px; margin: 0 auto; padding: 0 30px; }
.product-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}
.product-spec-card,
.product-overview-card {
    background: #1e1e1e;
    border: 1px solid #2a2a2a;
    border-radius: 10px;
    padding: 30px;
}
.product-section-heading {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    color: #fff;
    margin-bottom: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    border-bottom: 2px solid #c41e1e;
    padding-bottom: 10px;
    display: inline-block;
}
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table tr { border-bottom: 1px solid #2a2a2a; }
.spec-table tr:last-child { border-bottom: none; }
.spec-table th {
    text-align: left;
    padding: 12px 15px 12px 0;
    color: #d4a843;
    font-size: 12px;
    font-weight: 600;
    width: 38%;
    vertical-align: top;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.spec-table td {
    padding: 12px 0;
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
    vertical-align: top;
}
.product-overview-card p {
    color: #aaa;
    font-size: 14px;
    line-height: 1.8;
}

/* Related products grid - 4 columns */
.related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}
.related-grid .product-card { font-size: 14px; }
.related-grid .product-card h3 { font-size: 22px; }

@media (max-width: 900px) {
    .product-details-grid { grid-template-columns: 1fr; }
    .related-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .related-grid { grid-template-columns: 1fr; }
}

.add-to-cart-form {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}
.qty-input {
    width: 70px;
    padding: 10px;
    background: #2a2a2a;
    border: 1px solid #444;
    color: #fff;
    border-radius: 8px;
    font-size: 16px;
    text-align: center;
}
.btn-add-cart {
    background: #c41e1e;
    color: #fff;
    border: none;
    padding: 12px 35px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}
.btn-add-cart:hover { background: #a01818; }

/* Cart Page */
.cart-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 30px;
}
.cart-page h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 36px;
    color: #fff;
    margin-bottom: 30px;
}
.cart-table {
    width: 100%;
    border-collapse: collapse;
}
.cart-table th {
    text-align: left;
    padding: 12px 15px;
    border-bottom: 1px solid #333;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #888;
}
.cart-table td {
    padding: 20px 15px;
    border-bottom: 1px solid #2a2a2a;
    vertical-align: middle;
}
.cart-item-info {
    display: flex;
    align-items: center;
    gap: 15px;
}
.cart-item-info img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}
.cart-item-info h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    color: #fff;
}
.cart-total {
    text-align: right;
    padding: 20px 0;
    font-size: 20px;
    color: #fff;
    border-top: 2px solid #333;
}
.cart-total .amount {
    color: #d4a843;
    font-weight: 600;
}
.cart-actions {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 25px;
}
.btn-checkout {
    background: #c41e1e;
    color: #fff;
    border: none;
    padding: 14px 40px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}
.btn-checkout:hover { background: #a01818; }
.btn-remove {
    background: none;
    border: none;
    color: #c41e1e;
    cursor: pointer;
    font-size: 13px;
}
.btn-remove:hover { text-decoration: underline; }
.empty-cart {
    text-align: center;
    padding: 80px 0;
    color: #888;
    font-size: 18px;
}

/* Checkout Page */
.checkout-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 30px;
}
.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: start;
}
.checkout-form-col { min-width: 0; }
.checkout-summary-col { position: sticky; top: 90px; }
.checkout-summary {
    background: #242424;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 25px;
}
.checkout-section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    color: #fff;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.summary-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #2a2a2a;
    font-size: 13px;
}
.summary-line-name { display: flex; align-items: center; gap: 12px; }
.summary-line-name img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    background: #1e1e1e;
    border-radius: 6px;
    padding: 4px;
}
.summary-line-name strong { color: #fff; display: block; font-size: 13px; }
.summary-line-name span { color: #888; font-size: 12px; }
.summary-line-amount { color: #d4a843; font-size: 13px; }
.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
    color: #ccc;
}
.summary-row.total {
    border-top: 1px solid #444;
    padding-top: 14px;
    margin-top: 10px;
    font-size: 18px;
    color: #fff;
    font-weight: 600;
}
.summary-row.total span:last-child { color: #d4a843; }
.summary-row.total small { color: #888; font-size: 12px; font-weight: 400; }
.shipping-hint {
    background: rgba(212, 168, 67, 0.1);
    color: #d4a843;
    font-size: 12px;
    padding: 8px 12px;
    border-radius: 6px;
    margin: 8px 0;
    text-align: center;
}
.shipping-info {
    margin-top: 20px;
    padding: 14px;
    background: rgba(40, 167, 69, 0.08);
    border-left: 3px solid #28a745;
    border-radius: 6px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
.shipping-info-icon { font-size: 24px; }
.shipping-info strong { color: #fff; font-size: 13px; }
.shipping-info p { color: #999; font-size: 12px; margin: 4px 0 0; }

@media (max-width: 900px) {
    .checkout-grid { grid-template-columns: 1fr; }
    .checkout-summary-col { position: static; }
}

.checkout-page h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 36px;
    color: #fff;
    margin-bottom: 30px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #999;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.form-group input, .form-group select {
    width: 100%;
    padding: 12px 15px;
    background: #2a2a2a;
    border: 1px solid #444;
    color: #fff;
    border-radius: 8px;
    font-size: 15px;
}
.form-group input:focus, .form-group select:focus {
    outline: none;
    border-color: #c41e1e;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
#stripe-element {
    padding: 12px 15px;
    background: #2a2a2a;
    border: 1px solid #444;
    border-radius: 8px;
}
.checkout-total {
    font-size: 18px;
    color: #fff;
    text-align: right;
    margin: 25px 0;
    padding: 15px 0;
    border-top: 1px solid #333;
}
.checkout-total .amount { color: #d4a843; }

/* Footer */
.site-footer {
    background: #151515;
    border-top: 1px solid #2a2a2a;
    padding: 60px 0 0;
}
.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 0.8fr;
    gap: 40px;
}
.footer-logo { height: 40px; margin-bottom: 20px; }
.footer-col p, .footer-col a {
    font-size: 13px;
    color: #888;
    line-height: 1.8;
}
.footer-col a:hover { color: #fff; }
.footer-col h4 {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #999;
    margin-bottom: 15px;
}
.footer-col h4 a { color: #999; }
.footer-col h4 a:hover { color: #fff; }
.footer-torches ul li {
    margin-bottom: 4px;
}
.footer-torches ul li a {
    font-size: 13px;
    color: #777;
}
.footer-torches ul li a:hover { color: #fff; }
.footer-extra { display: flex; flex-direction: column; gap: 8px; }
.footer-links h4 { margin-bottom: 20px; }
.footer-bottom {
    max-width: 1400px;
    margin: 40px auto 0;
    padding: 20px 30px;
    border-top: 1px solid #2a2a2a;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-bottom p { font-size: 12px; color: #666; }
.footer-social {
    display: flex;
    gap: 15px;
}
.footer-social a { color: #666; transition: color 0.2s; }
.footer-social a:hover { color: #fff; }

/* Alert Messages */
.alert {
    max-width: 1400px;
    margin: 15px auto;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
}
.alert-success { background: rgba(40, 167, 69, 0.15); color: #28a745; border: 1px solid rgba(40,167,69,0.3); }
.alert-error { background: rgba(196, 30, 30, 0.15); color: #c41e1e; border: 1px solid rgba(196,30,30,0.3); }

/* Responsive */
@media (max-width: 900px) {
    .hero-inner { flex-direction: column; text-align: center; }
    .hero-content { padding-right: 0; margin-bottom: 30px; }
    .hero h1 { font-size: 36px; }
    .products-grid { grid-template-columns: 1fr; }
    .product-single { flex-direction: column; }
    .featured-product { flex-direction: column; gap: 30px; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .distributor-inner { flex-direction: column; }
    .featured-cards { grid-template-columns: 1fr; }
    .main-nav { display: none; }
}

/* Info pages (Service, Why Choose, Resources, Gallery, News, Distributor, Contact) */
.info-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 30px;
}
.info-hero {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 2px solid #c41e1e;
}
.info-hero h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 48px;
    color: #fff;
    font-weight: 500;
    margin-bottom: 15px;
}
.info-hero p {
    font-size: 16px;
    color: #aaa;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}
.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}
.info-card {
    background: #242424;
    border: 1px solid #2a2a2a;
    border-radius: 10px;
    padding: 30px;
}
.info-card h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    color: #fff;
    font-weight: 500;
    margin-bottom: 15px;
    border-bottom: 2px solid #c41e1e;
    padding-bottom: 8px;
    display: inline-block;
}
.info-card p {
    color: #aaa;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 12px;
}
.info-card strong { color: #fff; }
.info-card ul, .info-card ol {
    margin: 12px 0 12px 20px;
    color: #aaa;
}
.info-card li {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 6px;
    list-style: disc;
}
.info-card ol li { list-style: decimal; }
.info-card .link, .info-card a:not(.btn) { color: #d4a843; text-decoration: none; }
.info-card .link:hover, .info-card a:not(.btn):hover { text-decoration: underline; }

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.gallery-card {
    background: #242424;
    border: 1px solid #2a2a2a;
    border-radius: 10px;
    overflow: hidden;
}
.gallery-img {
    height: 240px;
    width: 100%;
    background-size: cover;
    background-position: center;
}
.gallery-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    color: #fff;
    padding: 18px 20px 6px;
}
.gallery-card p {
    color: #888;
    font-size: 13px;
    padding: 0 20px 20px;
    line-height: 1.6;
}

/* News */
.news-list { display: flex; flex-direction: column; gap: 20px; }
.news-item {
    background: #242424;
    border: 1px solid #2a2a2a;
    border-left: 3px solid #c41e1e;
    border-radius: 10px;
    padding: 25px 30px;
}
.news-date {
    font-size: 12px;
    color: #d4a843;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}
.news-item h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    color: #fff;
    font-weight: 500;
    margin: 8px 0 10px;
}
.news-item p {
    color: #aaa;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 10px;
}
.news-item .link { color: #d4a843; text-decoration: none; }
.news-item .link:hover { text-decoration: underline; }

@media (max-width: 900px) {
    .info-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .info-hero h1 { font-size: 32px; }
}
@media (max-width: 600px) {
    .gallery-grid { grid-template-columns: 1fr; }
}

/* Variant selector on product page */
.variant-selector { margin-bottom: 18px; }
.variant-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #d4a843;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.variant-selector select {
    width: 100%;
    padding: 12px 16px;
    background: #2a2a2a;
    border: 1px solid #444;
    color: #fff;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
}
.variant-selector select:focus {
    outline: none;
    border-color: #c41e1e;
}
.atc-row { display: flex; gap: 15px; align-items: center; }

/* Info section title (between cards) */
.info-section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    color: #fff;
    text-align: center;
    margin: 50px 0 25px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.info-section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: #c41e1e;
    margin: 12px auto 0;
}

/* Why-Choose features 2x2 grid */
.why-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 18px;
}
.why-feature h4 {
    color: #d4a843;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}
.why-feature p {
    color: #aaa;
    font-size: 14px;
    line-height: 1.7;
}

/* Fuel consumption table */
.fuel-table-wrap { overflow-x: auto; margin-top: 18px; }
.fuel-table {
    width: 100%;
    border-collapse: collapse;
    background: #1e1e1e;
    border-radius: 8px;
    overflow: hidden;
    font-size: 13px;
}
.fuel-table th {
    background: #2a2a2a;
    color: #d4a843;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 11px;
    padding: 12px 14px;
    text-align: left;
}
.fuel-table td {
    padding: 11px 14px;
    color: #ccc;
    border-top: 1px solid #2a2a2a;
}
.fuel-table tr:hover td { background: #232323; }

/* Repair form checkboxes */
.checkbox-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
}
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ccc;
    font-size: 13px;
    padding: 8px 12px;
    background: #1e1e1e;
    border: 1px solid #2a2a2a;
    border-radius: 6px;
    cursor: pointer;
    transition: border-color 0.15s;
}
.checkbox-label:hover { border-color: #444; }
.checkbox-label input { width: auto; margin: 0; }
.checkbox-label input:checked + span { color: #fff; font-weight: 500; }

/* Repair form spacing */
.repair-form .info-card { max-width: 960px; margin: 0 auto 18px; }

@media (max-width: 760px) {
    .why-feature-grid { grid-template-columns: 1fr; }
    .checkbox-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
    .checkbox-grid { grid-template-columns: 1fr; }
}

/* =================================================== */
/* Article-style pages (Service, Why-Choose, etc.)     */
/* Clean typography, no card backgrounds                */
/* =================================================== */
.page-hero {
    background: #1a1a1a;
    border-bottom: 3px solid #c41e1e;
    padding: 80px 30px 100px;
    text-align: center;
}
.page-hero-inner { max-width: 1200px; margin: 0 auto; }
.page-hero h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 56px;
    font-weight: 400;
    color: #fff;
    line-height: 1.1;
    letter-spacing: 0.5px;
}

.article-body {
    max-width: 720px;
    margin: 0 auto;
    padding: 60px 30px 80px;
}
.article-body h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 32px;
    color: #fff;
    font-weight: 400;
    margin: 50px 0 18px;
}
.article-body h2:first-child, .article-body .article-lead {
    margin-top: 0;
}
.article-body h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    color: #fff;
    font-weight: 400;
    margin: 32px 0 12px;
}
.article-body h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 17px;
    color: #d4a843;
    font-weight: 500;
    margin: 28px 0 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.article-body p {
    color: #b8b8b8;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 14px;
}
.article-body ul, .article-body ol {
    margin: 12px 0 18px 22px;
    color: #b8b8b8;
}
.article-body li {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 6px;
    list-style: disc;
}
.article-body ol li { list-style: decimal; }
.article-body strong { color: #fff; }
.article-lead {
    font-family: 'Oswald', sans-serif;
    font-size: 26px !important;
    font-weight: 400 !important;
    color: #fff !important;
    line-height: 1.4 !important;
    margin-bottom: 24px !important;
}
.text-link {
    color: #c41e1e;
    text-decoration: none;
    font-weight: 500;
}
.text-link:hover { text-decoration: underline; }

/* Article forms */
.article-form { margin-top: 30px; }
.article-form h4 {
    border-bottom: 1px solid #2a2a2a;
    padding-bottom: 8px;
    margin-top: 36px;
}
.article-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.article-form .form-group {
    margin-bottom: 14px;
}
.article-form label {
    display: block;
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
    font-weight: 500;
}
.article-form input[type="text"],
.article-form input[type="email"],
.article-form input[type="tel"],
.article-form select,
.article-form textarea,
.article-form input[type="file"] {
    width: 100%;
    padding: 11px 14px;
    background: #2a2a2a;
    border: 1px solid #3a3a3a;
    color: #fff;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
}
.article-form input:focus, .article-form select:focus, .article-form textarea:focus {
    outline: none; border-color: #c41e1e;
}
.checkbox-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 12px;
}
.checkbox-list label {
    display: flex !important;
    align-items: center;
    gap: 8px;
    color: #ccc !important;
    font-size: 14px !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    font-weight: 400 !important;
    margin: 0 !important;
    cursor: pointer;
}
.checkbox-list input { width: auto !important; padding: 0 !important; }

/* Why-choose two-column section */
.why-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 30px;
}
.why-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.why-col h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 32px;
    color: #fff;
    font-weight: 400;
    line-height: 1.25;
    margin-bottom: 18px;
}
.why-col p {
    color: #b8b8b8;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 14px;
}
.flame-illustration {
    text-align: center;
    margin-bottom: 30px;
}
.flame-illustration svg { width: 100%; max-width: 380px; height: auto; }
.testimonial p {
    font-style: italic;
    color: #ddd;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 10px;
}
.testimonial cite {
    color: #888;
    font-style: normal;
    font-size: 13px;
}

@media (max-width: 900px) {
    .page-hero h1 { font-size: 36px; }
    .why-row { grid-template-columns: 1fr; gap: 30px; }
    .article-form .form-row { grid-template-columns: 1fr; }
    .checkbox-list { grid-template-columns: 1fr; }
}
