:root {
    --primary-dark: #0D0D0D;
    --secondary-dark: #111111;
    --third-dark: #2B2B2B;
    --accent-gold: #C89B5E;
    --background-light: #F5F5F5;
    --white: #FFFFFF;
    --wood-brown: #8B5E3C;
    --metal-gray: #C7C7C7;
    --wood-light: #EDEAE3;
    
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-fast: 0.3s ease;
    --transition-normal: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--secondary-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.section-tagline {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--accent-gold);
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition-fast);
    cursor: pointer;
    border: none;
    outline: none;
}

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

.btn-primary:hover {
    background-color: #d4a56a;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(200, 155, 94, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

.btn-outline {
    background-color: transparent;
    color: var(--accent-gold);
    border: 2px solid var(--accent-gold);
}

.btn-outline:hover {
    background-color: var(--accent-gold);
    color: var(--white);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(13, 13, 13, 0.95);
    padding: 15px 0;
    transition: var(--transition-fast);
}

.navbar.scrolled {
    background-color: rgba(13, 13, 13, 0.98);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--white);
}

.nav-brand img {
    height: 40px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
}

.brand-icon {
    font-size: 24px;
    color: var(--accent-gold);
    margin-right: 10px;
}

.brand-text {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition-fast);
    position: relative;
}

.nav-link:hover {
    color: var(--accent-gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-gold);
    transition: var(--transition-fast);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--accent-gold);
}

.nav-link.active::after {
    width: 100%;
}

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

.nav-email {
    color: var(--metal-gray);
    font-size: 12px;
    text-decoration: none;
}

.lang-switcher {
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    background: none;
    border: 1px solid var(--accent-gold);
    padding: 8px 16px;
    border-radius: 4px;
    transition: var(--transition-fast);
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

.lang-switcher:hover {
    background-color: var(--accent-gold);
    color: var(--primary-dark);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 20px;
}

/* Hero Banner */
.hero-banner {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-slides {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(13, 13, 13, 0.6);
}

.hero-dots {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 2;
}

.hero-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dots .dot.active {
    background-color: var(--accent-gold);
    transform: scale(1.2);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.hero-scroll a {
    color: var(--white);
    font-size: 24px;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* Brand Ritual Section */
.brand-ritual {
    padding: 120px 0;
    background-color: var(--background-light);
}

.ritual-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ritual-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-dark);
}

.ritual-text p {
    font-size: 16px;
    color: var(--third-dark);
    margin-bottom: 40px;
    line-height: 1.8;
}

.ritual-features {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--third-dark);
}

.feature-item i {
    color: var(--accent-gold);
    font-size: 18px;
}

.ritual-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Product Series */
.product-series {
    padding: 120px 0;
    background-color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    color: var(--primary-dark);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.product-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition-normal);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.product-info {
    padding: 30px;
}

.product-series-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 10px;
    display: block;
}

.product-info h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.product-info p {
    font-size: 14px;
    color: var(--third-dark);
    margin-bottom: 20px;
}

.product-link {
    display: inline-flex;
    align-items: center;
    color: var(--accent-gold);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-fast);
}

.product-link:hover {
    gap: 10px;
}

/* Core Features */
.core-features {
    padding: 120px 0;
    background-color: var(--primary-dark);
}

.core-features .section-header h2 {
    color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    border-radius: 50%;
    background-color: rgba(200, 155, 94, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.feature-card:hover .feature-icon {
    background-color: var(--accent-gold);
}

.feature-icon i {
    font-size: 32px;
    color: var(--accent-gold);
    transition: var(--transition-fast);
}

.feature-card:hover .feature-icon i {
    color: var(--white);
}

.feature-card h3 {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 14px;
    color: var(--metal-gray);
    line-height: 1.7;
}

/* Lifestyle Section */
.lifestyle {
    padding: 120px 0;
    background-color: var(--background-light);
}

.lifestyle-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 15px;
}

.lifestyle-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.lifestyle-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.lifestyle-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

.lifestyle-item:hover img {
    transform: scale(1.1);
}

.lifestyle-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(13, 13, 13, 0.8), transparent);
}

.lifestyle-overlay h3 {
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* OEM Section */
.oem-section {
    padding: 120px 0;
    background-color: var(--white);
}

.oem-header {
    text-align: center;
    margin-bottom: 80px;
}

.oem-header h2 {
    font-size: 42px;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.oem-header p {
    font-size: 16px;
    color: var(--third-dark);
    max-width: 700px;
    margin: 0 auto 40px;
}

.oem-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.oem-feature {
    text-align: center;
    padding: 30px;
}

.oem-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background-color: rgba(200, 155, 94, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.oem-icon i {
    font-size: 24px;
    color: var(--accent-gold);
}

.oem-feature h3 {
    font-size: 16px;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.oem-feature p {
    font-size: 13px;
    color: var(--third-dark);
}

.oem-process {
    background-color: var(--primary-dark);
    padding: 60px;
    border-radius: 8px;
}

.oem-process h3 {
    text-align: center;
    color: var(--white);
    font-size: 24px;
    margin-bottom: 40px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.process-step {
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background-color: var(--accent-gold);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
}

.process-step h4 {
    color: var(--white);
    font-size: 13px;
    margin-bottom: 10px;
}

.process-step p {
    color: var(--metal-gray);
    font-size: 12px;
    line-height: 1.6;
}

/* Factory Section */
.factory-section {
    padding: 120px 0;
    background-color: var(--third-dark);
}

.factory-section .section-header h2 {
    color: var(--white);
}

.factory-stats {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 13px;
    color: var(--metal-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.factory-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.factory-gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    transition: var(--transition-fast);
}

.factory-gallery img:hover {
    opacity: 0.8;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(13, 13, 13, 0.85);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 16px;
    color: var(--metal-gray);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
footer {
    background-color: var(--primary-dark);
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    color: var(--white);
}

.footer-logo {
    height: 50px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    margin-bottom: 15px;
}

.footer-brand .brand-icon {
    font-size: 32px;
    margin-bottom: 15px;
}

.footer-brand .brand-text {
    display: block;
    font-size: 24px;
    margin-bottom: 15px;
}

.footer-brand p {
    font-size: 14px;
    color: var(--metal-gray);
    line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links ul {
    list-style: none;
}

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

.footer-links a {
    color: var(--metal-gray);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition-fast);
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--metal-gray);
    margin-bottom: 15px;
    font-size: 14px;
}

.contact-item i {
    color: var(--accent-gold);
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: var(--metal-gray);
    font-size: 13px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--primary-dark);
        padding: 20px;
        flex-direction: column;
        gap: 15px;
        z-index: 100;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-actions {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .ritual-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .lifestyle-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 200px);
    }
    
    .lifestyle-item.large {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .oem-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .factory-stats {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .factory-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .lifestyle-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 200px);
    }
    
    .lifestyle-item.large {
        grid-column: span 1;
    }
    
    .oem-features {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .factory-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .factory-gallery {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .factory-stats {
        grid-template-columns: 1fr;
    }
}

/* Product Page Styles */
.product-header {
    padding: 120px 0 30px;
    background-color: var(--background-light);
}

.breadcrumb {
    font-size: 13px;
    color: var(--third-dark);
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--third-dark);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.breadcrumb a:hover {
    color: var(--accent-gold);
}

.breadcrumb span:last-child {
    color: var(--primary-dark);
    font-weight: 500;
}

.product-details {
    padding: 60px 0;
}

.product-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.product-gallery {
    display: flex;
    flex-direction: column;
}

.gallery-slider {
    position: relative;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 500px;
}

.gallery-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.gallery-slide.active {
    opacity: 1;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-prev,
.gallery-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    color: var(--primary-dark);
    transition: var(--transition-fast);
    z-index: 10;
}

.gallery-prev:hover,
.gallery-next:hover {
    background: var(--primary-color);
    color: #fff;
}

.gallery-prev {
    left: 15px;
}

.gallery-next {
    right: 15px;
}

.gallery-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 15px;
}

.gallery-indicators .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    background: transparent;
    cursor: pointer;
    transition: var(--transition-fast);
}

.gallery-indicators .indicator.active {
    background: var(--primary-color);
}

.gallery-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.gallery-thumbnails .thumbnail {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    opacity: 0.7;
    transition: var(--transition-fast);
    border: 2px solid transparent;
}

.gallery-thumbnails .thumbnail:hover {
    opacity: 1;
}

.gallery-thumbnails .thumbnail.active {
    opacity: 1;
    border-color: var(--primary-color);
}

.product-info .product-series {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--accent-gold);
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.product-info .product-title {
    font-size: 48px;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.product-info .product-subtitle {
    font-size: 20px;
    color: var(--third-dark);
    font-weight: 400;
    margin-bottom: 20px;
}

.product-info .product-description {
    font-size: 16px;
    color: var(--third-dark);
    margin-bottom: 30px;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background-color: rgba(200, 155, 94, 0.1);
    border-radius: 20px;
    font-size: 13px;
    color: var(--third-dark);
}

.feature-tag i {
    color: var(--accent-gold);
}

.color-options,
.quantity-selector {
    margin-bottom: 30px;
}

.color-options .label,
.quantity-selector .label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--third-dark);
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.colors {
    display: flex;
    gap: 15px;
}

.color-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid transparent;
    cursor: pointer;
    transition: var(--transition-fast);
}

.color-btn.active {
    border-color: var(--accent-gold);
}

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

.qty-btn {
    width: 40px;
    height: 40px;
    border: 1px solid var(--metal-gray);
    background-color: var(--white);
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.qty-btn:hover {
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--white);
}

.quantity-control input {
    width: 80px;
    height: 40px;
    text-align: center;
    border: 1px solid var(--metal-gray);
    font-size: 16px;
}

.product-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.product-features-detail {
    padding: 80px 0;
    background-color: var(--background-light);
}

.product-features-detail .features-grid {
    grid-template-columns: repeat(4, 1fr);
}

.product-features-detail .feature-item {
    text-align: center;
    padding: 20px;
}

.product-features-detail .feature-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.product-features-detail .feature-item h3 {
    font-size: 16px;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.product-features-detail .feature-item p {
    font-size: 13px;
    color: var(--third-dark);
    line-height: 1.6;
}

.product-specs {
    padding: 80px 0;
}

.specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.specs-left h3,
.specs-right h3 {
    font-size: 18px;
    color: var(--primary-dark);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.specs-left table {
    width: 100%;
}

.specs-left table td {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.specs-left table td:first-child {
    color: var(--third-dark);
    font-weight: 500;
    width: 40%;
}

.specs-left table td:last-child {
    color: var(--secondary-dark);
}

.brew-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.brew-item {
    text-align: center;
}

.brew-item img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}

.brew-item span {
    font-size: 12px;
    font-weight: 600;
    color: var(--third-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-content {
    padding: 80px 0;
    background-color: var(--background-light);
}

.product-content .content-body {
    max-width: 1200px;
    margin: 0 auto;
    line-height: 1.8;
    color: var(--third-dark);
    font-size: 16px;
}

.product-content .content-body p {
    margin-bottom: 20px;
}

.product-content .content-body h3 {
    font-size: 20px;
    color: var(--primary-dark);
    margin: 30px 0 15px;
    font-weight: 600;
}

.product-content .content-body h4 {
    font-size: 18px;
    color: var(--primary-dark);
    margin: 25px 0 12px;
    font-weight: 500;
}

.product-content .content-body ul,
.product-content .content-body ol {
    padding-left: 20px;
    margin-bottom: 20px;
}

.product-content .content-body li {
    margin-bottom: 8px;
}

.product-content .content-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 15px 0;
}

.product-content .content-body a {
    color: var(--primary-color);
    text-decoration: none;
}

.product-content .content-body a:hover {
    color: var(--accent-gold);
    text-decoration: underline;
}

@media (max-width: 992px) {
    .product-main {
        grid-template-columns: 1fr;
    }
    
    .product-features-detail .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .product-info .product-title {
        font-size: 36px;
    }
    
    .product-features-detail .features-grid {
        grid-template-columns: 1fr;
    }
    
    .brew-methods {
        grid-template-columns: 1fr;
    }
}

/* Page Header Styles */
.page-header {
    padding: 120px 0 60px;
    background-color: var(--primary-dark);
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    color: var(--white);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.page-header p {
    font-size: 16px;
    color: var(--metal-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Products Page Styles */
.product-categories {
    padding: 40px 0;
    background-color: var(--background-light);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.category-tabs {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 24px;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    background-color: transparent;
    border: 2px solid var(--metal-gray);
    color: var(--third-dark);
    cursor: pointer;
    transition: var(--transition-fast);
}

.tab-btn:hover,
.tab-btn.active {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.product-list {
    padding: 60px 0;
}

.product-list .grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.product-list .product-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition-fast);
}

.product-list .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-list .product-img {
    height: 220px;
    overflow: hidden;
}

.product-list .product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

.product-list .product-card:hover .product-img img {
    transform: scale(1.05);
}

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

.product-list .series {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--accent-gold);
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.product-list .product-info h3 {
    font-size: 18px;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.product-list .product-info p {
    font-size: 13px;
    color: var(--third-dark);
    margin-bottom: 15px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    background: #f8f9fa;
    border-radius: 12px;
}

.empty-state .empty-icon {
    font-size: 64px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.empty-state h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.empty-state p {
    font-size: 14px;
    color: var(--third-dark);
}

/* OEM Page Styles */
.oem-services {
    padding: 80px 0;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-item {
    text-align: center;
    padding: 30px;
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background-color: rgba(200, 155, 94, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    font-size: 28px;
    color: var(--accent-gold);
}

.service-item h3 {
    font-size: 18px;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.service-item p {
    font-size: 14px;
    color: var(--third-dark);
    line-height: 1.6;
}

.oem-process-section {
    padding: 80px 0;
    background-color: var(--primary-dark);
}

.oem-process-section .section-header h2 {
    color: var(--white);
}

.oem-capabilities {
    padding: 80px 0;
}

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

.capability-item {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.capability-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.capability-item h3 {
    padding: 20px 20px 10px;
    font-size: 18px;
    color: var(--primary-dark);
}

.capability-item p {
    padding: 0 20px 20px;
    font-size: 14px;
    color: var(--third-dark);
    line-height: 1.6;
}

/* About Page Styles */
.our-story {
    padding: 80px 0;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-text h2 {
    font-size: 32px;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.story-text p {
    font-size: 16px;
    color: var(--third-dark);
    margin-bottom: 20px;
    line-height: 1.7;
}

.story-stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.story-stats .stat {
    text-align: center;
}

.story-stats .stat-num {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--accent-gold);
    display: block;
}

.story-stats .stat-label {
    font-size: 13px;
    color: var(--third-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.story-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.our-values {
    padding: 80px 0;
    background-color: var(--background-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-item {
    text-align: center;
    padding: 30px;
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background-color: rgba(200, 155, 94, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon i {
    font-size: 24px;
    color: var(--accent-gold);
}

.value-item h3 {
    font-size: 16px;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.value-item p {
    font-size: 14px;
    color: var(--third-dark);
    line-height: 1.6;
}

.our-team {
    padding: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-member {
    text-align: center;
}

.member-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--accent-gold);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 18px;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.team-member .member-title {
    font-size: 12px;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* News Page Styles */
.news-section {
    padding: 60px 0;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.news-card.featured {
    grid-column: span 2;
}

.news-card.featured .news-image img {
    height: 300px;
}

.news-image {
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition-normal);
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-content {
    padding: 25px;
}

.news-date {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--accent-gold);
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.news-card h2,
.news-card h3 {
    color: var(--primary-dark);
    margin-bottom: 12px;
    transition: var(--transition-fast);
}

.news-card:hover h2,
.news-card:hover h3 {
    color: var(--accent-gold);
}

.news-card h2 {
    font-size: 24px;
}

.news-card h3 {
    font-size: 18px;
}

.news-card p {
    font-size: 14px;
    color: var(--third-dark);
    line-height: 1.6;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.read-more {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-gold);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-fast);
}

.read-more:hover {
    gap: 10px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    font-family: var(--font-body);
    font-size: 14px;
    border: 2px solid rgba(200, 155, 94, 0.3);
    border-radius: 0;
    outline: none;
    transition: var(--transition-fast);
}

.newsletter-form input:focus {
    border-color: var(--accent-gold);
}

.newsletter-form input::placeholder {
    color: var(--metal-gray);
}

/* Contact Page Styles */
.contact-section {
    padding: 60px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info h2,
.contact-form h2 {
    font-size: 24px;
    color: var(--primary-dark);
    margin-bottom: 30px;
}

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

.info-item {
    display: flex;
    gap: 16px;
    padding: 24px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    align-items: flex-start;
}

.info-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(200, 155, 94, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.info-icon i {
    font-size: 18px;
    color: var(--accent-gold);
}

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

.info-text h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-dark);
    margin: 0 0 8px 0;
}

.info-text p {
    font-size: 14px;
    color: var(--third-dark);
    margin: 0;
    line-height: 1.6;
    word-break: break-word;
}

.contact-form form {
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 15px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.form-group select {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 14px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    outline: none;
    transition: var(--transition-fast);
    background-color: var(--white);
    cursor: pointer;
}

.form-group select:focus {
    border-color: var(--accent-gold);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 14px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    outline: none;
    transition: var(--transition-fast);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--accent-gold);
}

.contact-form textarea {
    resize: vertical;
    margin-bottom: 20px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--metal-gray);
}

.contact-form .btn {
    width: 100%;
    padding: 16px 32px;
    font-size: 14px;
    font-weight: 600;
    margin-top: 10px;
}

.map-section {
    margin: 60px 0;
}

.map-placeholder {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--third-dark) 100%);
    height: 400px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.map-placeholder i {
    font-size: 64px;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.map-placeholder p {
    font-size: 18px;
    font-weight: 500;
}

.map-container {
    position: relative;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

.map-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-marker {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

.map-marker i {
    font-size: 20px;
    color: var(--white);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); opacity: 0.8; }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .product-list .grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-grid,
    .values-grid,
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .story-content {
        grid-template-columns: 1fr;
    }
    
    .story-image {
        margin-top: 30px;
    }
    
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .news-card.featured {
        grid-column: span 2;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 32px;
    }
    
    .product-list .grid {
        grid-template-columns: 1fr;
    }
    
    .service-grid,
    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .capabilities-grid {
        grid-template-columns: 1fr;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .news-card.featured {
        grid-column: span 1;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
}

.news-detail-wrap {
    padding: 40px 0;
    min-height: calc(100vh - 400px);
}

.news-detail {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
}

.news-header {
    text-align: center;
    margin-bottom: 35px;
    padding-bottom: 30px;
    border-bottom: 1px solid #f0f0f0;
}

.news-header h1 {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.4;
}

.news-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    color: #888;
    font-size: 14px;
}

.news-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.news-meta i {
    color: var(--accent-gold);
    font-size: 14px;
}

.news-featured-image {
    margin-bottom: 35px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.news-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.news-content {
    font-size: 16px;
    line-height: 1.85;
    color: #4a4a4a;
    margin-bottom: 35px;
}

.news-content p {
    margin-bottom: 20px;
    text-align: justify;
}

.news-content h2 {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 30px 0 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent-gold);
}

.news-content h3 {
    font-size: 19px;
    font-weight: 600;
    color: #34495e;
    margin: 25px 0 12px;
}

.news-content h4 {
    font-size: 17px;
    font-weight: 600;
    color: #34495e;
    margin: 20px 0 10px;
}

.news-content ul,
.news-content ol {
    margin-left: 25px;
    margin-bottom: 20px;
}

.news-content ul {
    list-style-type: disc;
}

.news-content ol {
    list-style-type: decimal;
}

.news-content li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.news-content blockquote {
    border-left: 4px solid var(--accent-gold);
    padding: 15px 20px;
    margin: 25px 0;
    background-color: #f8fafc;
    font-style: normal;
    color: #666;
    border-radius: 0 8px 8px 0;
}

.news-content blockquote p {
    margin-bottom: 0;
}

.news-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 15px 0;
}

.news-content a {
    color: var(--accent-gold);
    text-decoration: none;
}

.news-content a:hover {
    text-decoration: underline;
}

.news-content hr {
    border: none;
    border-top: 1px solid #eee;
    margin: 30px 0;
}

.news-tags {
    margin-bottom: 35px;
    padding: 20px 25px;
    background-color: #f8fafc;
    border-radius: 10px;
}

.tags-label {
    font-weight: 600;
    color: #333;
    margin-right: 12px;
    font-size: 14px;
}

.tag {
    display: inline-block;
    padding: 6px 16px;
    background-color: rgba(200, 155, 94, 0.1);
    color: var(--accent-gold);
    border-radius: 20px;
    font-size: 13px;
    margin-right: 10px;
    margin-bottom: 8px;
    transition: all 0.2s ease;
}

.tag:hover {
    background-color: var(--accent-gold);
    color: #fff;
}

.news-nav {
    display: flex;
    justify-content: space-between;
    padding-top: 30px;
    border-top: 1px solid #f0f0f0;
    gap: 20px;
}

.news-prev,
.news-next {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 22px;
    background-color: #f8fafc;
    border-radius: 10px;
    text-decoration: none;
    color: #444;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 0;
}

.news-prev {
    justify-content: flex-start;
}

.news-next {
    justify-content: flex-end;
}

.news-next .nav-text {
    text-align: right;
}

.news-prev:hover,
.news-next:hover {
    background-color: var(--accent-gold);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(200, 155, 94, 0.3);
}

.nav-icon i {
    font-size: 18px;
    color: var(--accent-gold);
    transition: color 0.3s ease;
    flex-shrink: 0;
}

.news-prev:hover .nav-icon i,
.news-next:hover .nav-icon i {
    color: #fff;
}

.nav-text {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.nav-label {
    font-size: 11px;
    color: #999;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-prev:hover .nav-label,
.news-next:hover .nav-label {
    color: rgba(255, 255, 255, 0.8);
}

.nav-title {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.empty-state {
    text-align: center;
    padding: 80px 40px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.empty-state i {
    font-size: 56px;
    color: #ddd;
    margin-bottom: 20px;
}

.empty-state h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
}

.empty-state p {
    color: #999;
    margin-bottom: 30px;
    font-size: 15px;
}

.empty-state .btn {
    min-width: 160px;
}

@media (max-width: 768px) {
    .news-detail-wrap {
        padding: 20px 0;
    }

    .news-detail {
        padding: 25px 20px;
        box-shadow: none;
        border-radius: 0;
    }

    .news-header h1 {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .news-meta {
        flex-direction: column;
        gap: 8px;
    }

    .news-featured-image {
        margin-bottom: 25px;
        border-radius: 8px;
    }

    .news-content {
        font-size: 15px;
        line-height: 1.8;
        margin-bottom: 25px;
    }

    .news-content h2 {
        font-size: 19px;
        margin: 25px 0 12px;
    }

    .news-content h3 {
        font-size: 17px;
    }

    .news-content blockquote {
        padding: 12px 15px;
        margin: 20px 0;
    }

    .news-tags {
        padding: 15px;
        margin-bottom: 25px;
    }

    .news-nav {
        flex-direction: column;
        gap: 12px;
        padding-top: 20px;
    }

    .news-prev,
    .news-next {
        padding: 15px 18px;
    }

    .nav-title {
        font-size: 12px;
    }

    .empty-state {
        padding: 60px 20px;
    }

    .empty-state h3 {
        font-size: 19px;
    }
}

.news-pagination {
    display: flex;
    justify-content: center;
    margin-top: 50px;
    padding: 20px 0;
}