/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Prevent horizontal scroll - Global fix */
*,
*::before,
*::after {
    max-width: 100%;
}

html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

:root {
    --primary-color: #4ade80;
    --primary-dark: #22c55e;
    --primary-light: #86efac;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-dark: #111827;
    --bg-light: #f9fafb;
    --white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-lg: rgba(0, 0, 0, 0.2);
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Header Styles */
.main-header {
    background: var(--bg-dark);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px var(--shadow-lg);
    margin: 0;
}

.navbar {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 100%;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--white);
}

.logo-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 4px solid var(--primary-color);
    position: relative;
    background: transparent;
    box-shadow: 0 4px 8px rgba(74, 222, 128, 0.3);
}

.logo-inner {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--white);
    position: absolute;
    top: 8px;
    right: 10px;
}

.logo-arrow {
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 15px solid var(--primary-color);
    position: absolute;
    bottom: -8px;
    left: 8px;
    transform: rotate(-45deg);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--primary-color);
    text-shadow: 0 2px 4px rgba(74, 222, 128, 0.3);
}

.logo-on {
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

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

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
    position: relative;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
    display: block;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Banner Section */
.main-content {
    margin: 0;
    padding: 0;
}

.hero-banner {
    position: relative;
    height: 600px;
    overflow: hidden;
    margin: 0 !important;
    padding: 0 !important;
    width: 100%;
    max-width: 100vw;
}

.banner-slider {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.banner-slide.active {
    opacity: 1;
    z-index: 1;
}

.banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    object-fit: cover;
    margin: 0;
    padding: 0;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.banner-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.banner-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.banner-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.banner-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Banner Navigation */
.banner-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 10;
    pointer-events: none;
}

.banner-prev,
.banner-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: var(--white);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    font-size: 2.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    box-shadow:
        0 4px 8px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: translateY(0);
}

.banner-prev {
    left: 20px;
}

.banner-next {
    right: 20px;
}

.banner-prev:hover,
.banner-next:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px) scale(1.05);
    box-shadow:
        0 8px 16px rgba(74, 222, 128, 0.5),
        0 4px 8px rgba(74, 222, 128, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.banner-prev:active,
.banner-next:active {
    transform: translateY(-1px) scale(1.02);
}

/* Banner Indicators */
.banner-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.banner-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--white);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.banner-indicator.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.2);
}

.banner-indicator:hover {
    background: rgba(74, 222, 128, 0.5);
    border-color: var(--primary-color);
}

/* Buttons - 3D Effect */
.btn {
    padding: 14px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    border: none;
    cursor: pointer;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.btn:hover::before {
    opacity: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    box-shadow:
        0 8px 16px rgba(74, 222, 128, 0.4),
        0 4px 8px rgba(74, 222, 128, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-bottom: 3px solid var(--primary-dark);
    transform: translateY(0);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #16a34a 100%);
    transform: translateY(-3px);
    box-shadow:
        0 12px 24px rgba(74, 222, 128, 0.5),
        0 6px 12px rgba(74, 222, 128, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-bottom: 4px solid #16a34a;
}

.btn-primary:active {
    transform: translateY(-1px);
    box-shadow:
        0 4px 8px rgba(74, 222, 128, 0.4),
        0 2px 4px rgba(74, 222, 128, 0.3),
        inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color) !important;
    border: 2px solid var(--primary-color);
    box-shadow:
        0 4px 8px rgba(74, 222, 128, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-bottom: 3px solid var(--primary-color);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white) !important;
    transform: translateY(-3px);
    box-shadow:
        0 8px 16px rgba(74, 222, 128, 0.4),
        0 4px 8px rgba(74, 222, 128, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-bottom: 4px solid var(--primary-dark);
}

.btn-secondary:active {
    transform: translateY(-1px);
}

.btn-outline {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow:
        0 4px 8px rgba(74, 222, 128, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    border-bottom: 3px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow:
        0 8px 16px rgba(74, 222, 128, 0.4),
        0 4px 8px rgba(74, 222, 128, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-bottom: 4px solid var(--primary-dark);
}

.btn-outline:active {
    transform: translateY(-1px);
}

/* WhatsApp Button */
.btn.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
    color: #ffffff !important;
    box-shadow:
        0 8px 16px rgba(37, 211, 102, 0.4),
        0 4px 8px rgba(37, 211, 102, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-bottom: 3px solid #128C7E !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 10;
    position: relative;
    min-width: 200px;
    text-align: center;
}

.btn.btn-whatsapp span {
    color: #ffffff !important;
    display: inline-block;
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
    transform: translateY(-3px);
    box-shadow:
        0 12px 24px rgba(37, 211, 102, 0.5),
        0 6px 12px rgba(37, 211, 102, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-bottom: 4px solid #075E54;
}

.btn-whatsapp:active {
    transform: translateY(-1px);
    box-shadow:
        0 4px 8px rgba(37, 211, 102, 0.4),
        0 2px 4px rgba(37, 211, 102, 0.3),
        inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.whatsapp-icon {
    font-size: 1.2rem;
    display: inline-block;
    line-height: 1;
    margin: 0;
    padding: 0;
}

/* Product Action Buttons */
.product-action-buttons {
    display: flex !important;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    align-items: center;
    visibility: visible !important;
}

.product-action-buttons .btn {
    margin: 0;
    flex-shrink: 0;
    visibility: visible !important;
    opacity: 1 !important;
    display: inline-flex !important;
}

/* Sections */
section {
    padding: 60px 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px var(--shadow-lg);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: var(--text-light);
}

/* Products Section */
.page-header {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1e3a5f 100%);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.category-filter,
.category-tabs {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn,
.category-tab {
    padding: 12px 28px;
    background: var(--white);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #e5e7eb;
    box-shadow:
        0 2px 4px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border-bottom: 3px solid #d1d5db;
    transform: translateY(0);
}

.filter-btn:hover,
.filter-btn.active,
.category-tab:hover,
.category-tab.active {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow:
        0 6px 12px rgba(74, 222, 128, 0.4),
        0 3px 6px rgba(74, 222, 128, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-bottom: 4px solid var(--primary-dark);
}

.filter-btn:active,
.category-tab:active {
    transform: translateY(0);
}

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

.product-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px var(--shadow-lg);
}

.product-image {
    height: 250px;
    overflow: hidden;
    background: var(--bg-light);
    position: relative;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.product-detail-image {
    height: 400px;
    overflow: hidden;
    border-radius: 12px;
    background: var(--bg-light);
}

.product-detail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.product-detail-image:hover .product-detail-img {
    transform: scale(1.05);
}

.product-info {
    padding: 1.5rem;
}

.product-category {
    display: inline-block;
    background: var(--primary-light);
    color: var(--text-dark);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.product-info h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.product-description-short {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.product-specs {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.product-price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1rem 0;
}

/* Product Detail */
.product-detail {
    margin-top: 2rem;
}

.product-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px var(--shadow);
}

.product-detail-image {
    height: 400px;
}

.product-specifications {
    margin: 2rem 0;
}

.product-specifications h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

.spec-item {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.spec-label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.spec-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.product-features {
    margin: 2rem 0;
}

.product-features h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    font-size: 1rem;
}

/* Parts Section */
.parts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.part-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.part-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px var(--shadow-lg);
}

.part-category {
    display: inline-block;
    background: var(--primary-light);
    color: var(--text-dark);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.part-card h3,
.part-card h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.part-description {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.part-details {
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.part-details p {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.part-compatibility {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.part-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* About Intro Section */
.about-intro-section {
    background: var(--white);
    padding: 60px 0;
}

.about-intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-intro-text h2 {
    color: var(--text-dark);
    margin: 2rem 0 1rem;
    font-size: 2rem;
    font-weight: 700;
}

.about-intro-text h2:first-child {
    margin-top: 0;
}

.about-intro-text p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.about-intro-image {
    height: 400px;
}

.about-image-placeholder {
    height: 100%;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 8px 24px rgba(74, 222, 128, 0.3);
}

.about-image-placeholder span {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.about-image-placeholder p {
    font-size: 1.3rem;
    opacity: 0.9;
    margin: 0;
}

/* Values Section */
.values-section {
    background: var(--bg-light);
    padding: 80px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-item {
    padding: 2rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 12px var(--shadow);
    text-align: center;
    transition: all 0.3s;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px var(--shadow-lg);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.value-item h3 {
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.value-item p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* Owners Section */
.owners-section {
    background: var(--white);
    padding: 80px 0;
}

.owners-section .section-subtitle,
.team-section .section-subtitle {
    color: var(--text-light);
}

.owners-grid {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    max-width: 1000px;
    margin: 0 auto;
}

/* Team Section */
.team-section {
    background: var(--bg-light);
    padding: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.team-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px var(--shadow);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px var(--shadow-lg);
}

.owner-card {
    background: linear-gradient(135deg, var(--white) 0%, var(--bg-light) 100%);
    border: 2px solid var(--primary-light);
}

.owner-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 12px 28px rgba(74, 222, 128, 0.3);
}

.team-image-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: var(--bg-light);
}

.team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.team-card:hover .team-image {
    transform: scale(1.1);
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.9) 0%, rgba(34, 197, 94, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.team-social {
    display: flex;
    gap: 1.5rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.social-link:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.team-info {
    padding: 2rem 1.5rem;
}

.team-name {
    color: var(--text-dark);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.team-position {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-bio {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1e3a5f 100%);
    color: var(--white);
    padding: 60px 0;
}

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

.stat-item {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

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

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h2 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.contact-info>p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-item h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px var(--shadow);
}

.contact-form-wrapper h2 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.main-footer {
    background: var(--bg-dark);
    color: var(--white);
    padding: 60px 0 20px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.footer-logo .logo-circle {
    width: 40px;
    height: 40px;
    border: 3px solid var(--primary-color);
}

.footer-logo .logo-inner {
    width: 14px;
    height: 14px;
    top: 6px;
    right: 8px;
}

.footer-logo .logo-arrow {
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 12px solid var(--primary-color);
    bottom: -6px;
    left: 6px;
}

.footer-logo .logo-text {
    font-size: 1.3rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-section h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

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

/* About Preview Section */
.about-preview {
    background: var(--white);
    padding: 80px 0;
}

.about-preview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-title-left {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: left;
}

.about-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.about-preview-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-highlights {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    padding: 2rem 0;
    border-top: 2px solid var(--bg-light);
    border-bottom: 2px solid var(--bg-light);
}

.highlight-item {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.highlight-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.highlight-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.about-preview-image {
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(74, 222, 128, 0.3);
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.about-preview-image:hover .about-image {
    transform: scale(1.05);
}

/* Offers Section */
.offers-section {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1e3a5f 100%);
    padding: 80px 0;
    color: var(--white);
}

.offers-section .section-title {
    color: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

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

.offer-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.offer-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.offer-content h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.offer-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.offer-discount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.offer-validity {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Testimonials Section */
.testimonials-section {
    background: var(--bg-light);
    padding: 80px 0;
}

.testimonials-section .section-subtitle {
    color: var(--text-light);
}

.testimonials-scroll-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.testimonials-scroll-container {
    flex: 1;
    overflow: hidden;
    position: relative;
    width: 100%;
    max-width: 100%;
}

.testimonials-scroll {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
    padding: 1rem 0;
    scroll-snap-type: x mandatory;
    width: 100%;
    -webkit-overflow-scrolling: touch;
}

.testimonials-scroll::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    min-width: 350px;
    max-width: 350px;
    flex-shrink: 0;
    scroll-snap-align: start;
    box-sizing: border-box;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px var(--shadow-lg);
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1rem;
    border: 3px solid var(--primary-color);
    box-shadow: 0 4px 8px rgba(74, 222, 128, 0.3);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-rating {
    margin-bottom: 1rem;
    text-align: center;
}

.star {
    color: #fbbf24;
    font-size: 1.2rem;
    margin-right: 2px;
}

.testimonial-comment {
    color: var(--text-dark);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    text-align: center;
}

.testimonial-author {
    text-align: center;
}

.testimonial-author h4 {
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.author-location {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.author-product {
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
}

.testimonial-scroll-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border: none;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    font-size: 2.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow:
        0 6px 12px rgba(74, 222, 128, 0.4),
        0 3px 6px rgba(74, 222, 128, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-bottom: 3px solid var(--primary-dark);
    z-index: 2;
    transform: translateY(0);
}

.testimonial-scroll-btn:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #16a34a 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow:
        0 10px 20px rgba(74, 222, 128, 0.5),
        0 5px 10px rgba(74, 222, 128, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-bottom: 4px solid #16a34a;
}

.testimonial-scroll-btn:active {
    transform: translateY(-1px) scale(1.02);
    box-shadow:
        0 4px 8px rgba(74, 222, 128, 0.4),
        0 2px 4px rgba(74, 222, 128, 0.3),
        inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Videos Section */
.videos-section {
    background: var(--white);
    padding: 80px 0;
}

.videos-section .section-subtitle {
    color: var(--text-light);
}

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

.video-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px var(--shadow-lg);
}

.video-thumbnail {
    height: 200px;
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1e3a5f 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-placeholder {
    text-align: center;
    color: var(--white);
}

.play-button {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    cursor: pointer;
    transition: transform 0.3s;
}

.video-card:hover .play-button {
    transform: scale(1.1);
}

.video-placeholder span {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.video-info {
    padding: 1.5rem;
}

.video-info h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.video-info p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Blog Section */
.blog-section {
    background: var(--bg-light);
    padding: 80px 0;
}

.blog-section .section-subtitle {
    color: var(--text-light);
}

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

.blog-card {
    background: var(--white);
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 4px 12px var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.blog-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--bg-light);
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.1);
}

.blog-card .blog-header {
    padding: 1.5rem 1.5rem 0;
}

.blog-card h3 {
    padding: 0 1.5rem;
}

.blog-card .blog-excerpt {
    padding: 0 1.5rem;
}

.blog-card .blog-footer {
    padding: 0 1.5rem 1.5rem;
    margin-top: auto;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px var(--shadow-lg);
}

.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.blog-category {
    background: var(--primary-light);
    color: var(--text-dark);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.blog-date {
    color: var(--text-light);
    font-size: 0.85rem;
}

.blog-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    line-height: 1.4;
}

.blog-excerpt {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--bg-light);
}

.blog-read-time {
    color: var(--text-light);
    font-size: 0.85rem;
}

.blog-read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.blog-read-more:hover {
    color: var(--primary-dark);
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.view-all-products {
    margin-top: 2.625rem;
    /* 42px = default margin + 10px more */
}

.alert {
    background: #fee2e2;
    color: #991b1b;
    padding: 1rem;
    border-radius: 8px;
    margin: 2rem 0;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }

    .hero-banner {
        height: 550px;
    }

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

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

    .about-preview-content {
        gap: 3rem;
    }

    .contact-wrapper {
        gap: 2rem;
    }
}

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

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--bg-dark);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        padding: 2rem 0;
        z-index: 1000;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

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

    .nav-menu li {
        width: 100%;
        margin: 0;
    }

    .nav-menu a {
        display: block;
        padding: 1rem 2rem;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu a:hover {
        background: rgba(74, 222, 128, 0.1);
    }

    .nav-menu a.active::after {
        display: none;
    }

    .nav-menu a.active {
        background: rgba(74, 222, 128, 0.15);
        border-left: 4px solid var(--primary-color);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .product-detail-content {
        grid-template-columns: 1fr;
    }

    .product-action-buttons {
        flex-direction: column;
    }

    .product-action-buttons .btn {
        width: 100%;
        max-width: 100%;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

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

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

    .about-preview-content {
        grid-template-columns: 1fr;
    }

    .about-intro-content {
        grid-template-columns: 1fr;
    }

    .about-intro-image {
        height: 300px;
        margin-top: 2rem;
    }

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

    .team-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 2rem;
    }

    .about-highlights {
        flex-wrap: wrap;
        justify-content: center;
    }

    .offers-grid,
    .testimonials-scroll-wrapper {
        flex-direction: column;
    }

    .testimonial-scroll-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
    }

    .testimonial-scroll-left {
        left: 10px;
    }

    .testimonial-scroll-right {
        right: 10px;
    }

    .testimonial-card {
        min-width: 280px;
        max-width: 280px;
    }

    .videos-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-detail-hero {
        height: 400px;
        padding: 40px 0;
    }

    .blog-detail-hero h1 {
        font-size: 2rem;
    }

    .blog-article-image {
        height: 300px;
    }

    .blog-article-body {
        font-size: 1rem;
    }

    .blog-article-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .section-title-left {
        text-align: center;
        font-size: 2rem;
    }

    .hero-banner {
        height: 500px;
    }

    .banner-title {
        font-size: 2.5rem;
    }

    .banner-subtitle {
        font-size: 1.2rem;
    }

    .banner-description {
        font-size: 1rem;
    }

    .banner-prev,
    .banner-next {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .banner-prev {
        left: 10px;
    }

    .banner-next {
        right: 10px;
    }
}

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

    .banner-title {
        font-size: 2rem;
    }

    .banner-subtitle {
        font-size: 1rem;
    }

    .banner-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .banner-buttons {
        flex-direction: column;
        align-items: center;
    }

    .banner-buttons .btn {
        width: 100%;
        max-width: 250px;
    }

    .banner-prev,
    .banner-next {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }

    .banner-indicators {
        bottom: 15px;
    }

    .testimonials-scroll-wrapper {
        padding: 0 50px;
        gap: 0.5rem;
    }
    
    .testimonials-scroll-container {
        width: 100%;
        max-width: 100%;
    }
    
    .testimonials-scroll {
        gap: 1.5rem;
        padding: 1rem 0;
    }
    
    .testimonial-card {
        min-width: calc(100vw - 120px);
        max-width: calc(100vw - 120px);
        padding: 1.5rem;
    }

    .testimonial-scroll-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
        position: absolute;
        z-index: 10;
    }

    .products-grid,
    .parts-grid {
        grid-template-columns: 1fr;
    }
    
    /* Prevent any element from causing horizontal scroll */
    .container {
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }
    
    /* Ensure all sections don't overflow */
    section {
        max-width: 100vw;
        overflow-x: hidden;
        padding-left: 0;
        padding-right: 0;
    }
    
    section .container {
        padding-left: 15px;
        padding-right: 15px;
    }

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

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

    .team-image-wrapper {
        height: 250px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
        width: 100%;
        max-width: 300px;
    }

    .filter-btn,
    .category-tab {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .banner-prev,
    .banner-next {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
        left: 10px;
        right: 10px;
    }

    .testimonial-scroll-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .testimonial-card {
        min-width: calc(100vw - 100px);
        max-width: calc(100vw - 100px);
        padding: 1.25rem;
    }
    
    /* Additional fixes for small screens */
    .testimonials-scroll-wrapper {
        padding: 0 40px;
    }
    
    .banner-prev,
    .banner-next {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
}

/* Additional responsive improvements */
@media (max-width: 360px) {
    .hero-banner {
        height: 350px;
    }

    .banner-title {
        font-size: 1.75rem;
    }

    .banner-subtitle {
        font-size: 0.9rem;
    }

    .banner-description {
        font-size: 0.85rem;
    }

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

    .btn {
        padding: 10px 18px;
        font-size: 0.8rem;
    }
}

/* Final UI Cleanup and Enhancements */
html {
    scroll-behavior: smooth;
}

/* Improved form inputs */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    border-radius: 10px;
    transition: all 0.3s;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.1);
    outline: none;
}

/* Better card hover effects */
.product-card:hover,
.part-card:hover,
.feature-card:hover,
.testimonial-card:hover,
.offer-card:hover,
.blog-card:hover,
.video-card:hover {
    transform: translateY(-5px);
}

/* Blog Detail Page Styles */
.blog-detail-header {
    margin: 0;
    padding: 0;
}

.blog-detail-hero {
    height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 60px 0;
}

.blog-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(17, 24, 39, 0.9) 0%, rgba(17, 24, 39, 0.5) 50%, transparent 100%);
}

.blog-hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 800px;
}

.blog-hero-category {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.blog-detail-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
    line-height: 1.2;
}

.blog-hero-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.blog-hero-separator {
    color: rgba(255, 255, 255, 0.6);
}

.blog-detail-section {
    padding: 60px 0;
    background: var(--white);
}

.blog-detail-content {
    max-width: 900px;
    margin: 0 auto;
}

.blog-article {
    background: var(--white);
}

.blog-article-image {
    width: 100%;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 3rem;
    box-shadow: 0 8px 24px var(--shadow-lg);
}

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

.blog-article-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.blog-article-body p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.blog-article-body h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 2rem 0 1rem;
}

.blog-article-body h3:first-child {
    margin-top: 0;
}

.blog-article-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--bg-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.blog-tags {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.tag-label,
.share-label {
    font-weight: 600;
    color: var(--text-dark);
}

.blog-tag {
    background: var(--primary-light);
    color: var(--text-dark);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.blog-share {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.share-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.related-blogs-section {
    background: var(--bg-light);
    padding: 80px 0;
}

/* Clean spacing for sections */
section {
    position: relative;
}

/* Improved text contrast */
.section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Better button spacing */
.banner-buttons,
.hero-buttons {
    gap: 1rem;
}

/* Cleaner navigation */
.nav-menu a {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s;
}

.nav-menu a:hover {
    background: rgba(74, 222, 128, 0.1);
}

/* ============================================
   MODERN DESIGN ENHANCEMENTS
   ============================================ */

/* Modern Gradient Backgrounds */
:root {
    --gradient-primary: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    --gradient-secondary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(74, 222, 128, 0.9) 0%, rgba(34, 197, 94, 0.9) 100%);
    --shadow-modern: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 20px 60px rgba(74, 222, 128, 0.3);
}

/* Glassmorphism Effect */
.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Modern Card Enhancements */
.product-card,
.part-card,
.blog-card,
.team-card,
.offer-card,
.testimonial-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

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

.product-card:hover::before,
.part-card:hover::before,
.blog-card:hover::before {
    left: 100%;
}

.product-card:hover,
.part-card:hover,
.blog-card:hover,
.team-card:hover,
.offer-card:hover,
.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

/* Modern Button Enhancements */
.btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-primary);
    box-shadow: 0 4px 15px rgba(74, 222, 128, 0.4);
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(74, 222, 128, 0.6);
    transform: translateY(-2px);
}

/* Modern Section Headers */
.section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* Modern Image Hover Effects */
.product-image,
.blog-image,
.team-image {
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.product-card:hover .product-image img,
.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

/* Modern Banner Enhancements */
.banner-slide {
    position: relative;
}

.banner-overlay {
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.7) 0%, rgba(17, 24, 39, 0.5) 100%);
}

/* Modern Stats/Highlights */
.stat-item,
.highlight-item {
    transition: all 0.3s;
    position: relative;
}

.stat-item:hover,
.highlight-item:hover {
    transform: translateY(-5px);
}

.stat-number,
.highlight-number {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* Modern Form Enhancements */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
textarea,
select {
    transition: all 0.3s;
    border: 2px solid #e5e7eb;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
textarea:focus,
select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.1);
    outline: none;
}

/* Modern Loading Animation */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

.loading-shimmer {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
}

/* Modern Scroll Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Modern Grid Enhancements */
.products-grid,
.parts-grid,
.blogs-grid,
.team-grid {
    gap: 2rem;
}

/* Modern Testimonial Cards */
.testimonial-card {
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    border-left: 4px solid var(--primary-color);
}

/* Modern Feature Cards */
.feature-card {
    transition: all 0.3s;
    border-radius: 16px;
    padding: 2rem;
}

.feature-card:hover {
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.05) 0%, rgba(34, 197, 94, 0.05) 100%);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 4px 8px rgba(74, 222, 128, 0.3));
}

/* ============================================
   COMPREHENSIVE RESPONSIVE DESIGN
   Mobile First Approach
   ============================================ */

/* Large Desktop (1400px and above) */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }

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

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

/* Desktop (1024px - 1399px) */
@media (min-width: 1024px) and (max-width: 1399px) {
    .container {
        max-width: 1200px;
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .parts-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tablet Landscape (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .container {
        padding: 0 30px;
    }

    .hero-banner {
        height: 500px;
    }

    .banner-title {
        font-size: 2.5rem;
    }

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

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

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

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

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

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

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

    .about-preview-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-intro-content {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .product-detail-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Tablet Portrait & Mobile Landscape (481px - 767px) */
@media (min-width: 481px) and (max-width: 767px) {
    .container {
        padding: 0 20px;
    }

    .hero-banner {
        height: 450px;
    }

    .banner-title {
        font-size: 2rem;
    }

    .banner-subtitle {
        font-size: 1.1rem;
    }

    .products-grid,
    .parts-grid,
    .features-grid,
    .blog-grid,
    .team-grid,
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

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

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

    .product-card,
    .part-card,
    .blog-card {
        padding: 1.5rem;
    }
}

/* Mobile (320px - 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    /* Header & Navigation */
    .main-header {
        padding: 0.75rem 0;
    }

    .logo-circle {
        width: 40px;
        height: 40px;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .nav-menu {
        padding: 1.5rem 0;
    }

    .nav-menu a {
        padding: 0.75rem 1rem;
        font-size: 1rem;
    }

    /* Banner */
    .hero-banner {
        height: 400px;
    }

    .banner-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }

    .banner-subtitle {
        font-size: 1rem;
    }

    .banner-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .banner-buttons {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
    }

    .banner-buttons .btn {
        width: 100%;
        max-width: 100%;
    }

    .banner-prev,
    .banner-next {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }

    .banner-indicators {
        bottom: 15px;
        gap: 8px;
    }

    .banner-indicator {
        width: 8px;
        height: 8px;
    }

    /* Sections */
    section {
        padding: 3rem 0;
    }

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

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

    /* Grids - Single Column on Mobile */
    .features-grid,
    .products-grid,
    .parts-grid,
    .blog-grid,
    .team-grid,
    .values-grid,
    .offers-grid,
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    /* Cards */
    .product-card,
    .part-card,
    .blog-card,
    .feature-card,
    .testimonial-card,
    .offer-card,
    .team-card {
        padding: 1.25rem;
    }

    .product-image,
    .blog-image {
        height: 200px;
    }

    /* Product Detail */
    .product-detail-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .product-detail-image {
        height: 300px;
    }

    .product-action-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .product-action-buttons .btn {
        width: 100%;
    }

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

    /* About Page */
    .about-preview-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-preview-image {
        order: -1;
    }

    .about-image {
        height: 250px;
    }

    .about-highlights {
        flex-direction: column;
        gap: 1rem;
    }

    .highlight-item {
        width: 100%;
    }

    .about-intro-content {
        grid-template-columns: 1fr;
    }

    .about-intro-image {
        height: 250px;
        margin-top: 1.5rem;
    }

    .owners-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .team-image-wrapper {
        height: 250px;
    }

    /* Contact Page */
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .contact-details {
        padding: 1.5rem;
    }

    /* Forms */
    .form-group {
        margin-bottom: 1rem;
    }

    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="url"],
    textarea,
    select {
        padding: 12px;
        font-size: 1rem;
    }

    /* Buttons */
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
        min-height: 44px;
        /* Better touch target */
    }

    .btn-sm {
        padding: 8px 16px;
        font-size: 0.85rem;
        min-height: 36px;
    }

    .filter-btn,
    .category-tab {
        padding: 10px 16px;
        font-size: 0.9rem;
        min-height: 40px;
    }

    /* Category Tabs */
    .category-tabs {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .category-filter {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    /* Testimonials */
    .testimonials-scroll-wrapper {
        padding: 0 40px;
    }

    .testimonial-card {
        min-width: 100%;
        max-width: 100%;
        padding: 1.5rem;
    }

    .testimonial-scroll-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .testimonial-scroll-left {
        left: 5px;
    }

    .testimonial-scroll-right {
        right: 5px;
    }

    /* Blog Detail */
    .blog-detail-hero {
        height: 350px;
        padding: 30px 0;
    }

    .blog-hero-content h1 {
        font-size: 1.75rem;
    }

    .blog-article-image {
        height: 250px;
    }

    .blog-article-body {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .blog-article-footer {
        flex-direction: column;
        gap: 1rem;
    }

    /* Footer */
    .main-footer {
        padding: 3rem 0 1.5rem;
    }

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

    .footer-section {
        margin-bottom: 2rem;
    }

    /* Page Header */
    .page-header {
        padding: 3rem 0;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    /* Tables (for admin) */
    .admin-table {
        font-size: 0.85rem;
    }

    .admin-table th,
    .admin-table td {
        padding: 0.5rem;
    }

    /* Utility Classes */
    .text-center {
        text-align: center;
    }

    .view-all-products {
        margin-top: 2rem;
    }

    .view-all-products .btn {
        width: 100%;
        max-width: 100%;
    }
}

/* Small Mobile (320px - 360px) */
@media (max-width: 360px) {
    .container {
        padding: 0 12px;
    }

    .hero-banner {
        height: 350px;
    }

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

    .banner-subtitle {
        font-size: 0.9rem;
    }

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

    .btn {
        padding: 10px 18px;
        font-size: 0.85rem;
    }

    .product-card,
    .part-card {
        padding: 1rem;
    }

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

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {

    /* Better touch targets */
    .btn,
    .filter-btn,
    .category-tab,
    a {
        min-height: 44px;
        min-width: 44px;
    }

    /* Remove hover effects on touch devices */
    .product-card:hover,
    .part-card:hover,
    .blog-card:hover {
        transform: none;
    }

    /* Better spacing for touch */
    .nav-menu a {
        padding: 1rem;
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-banner {
        height: 350px;
    }

    .banner-title {
        font-size: 2rem;
    }
}

/* Print Styles */
@media print {

    .main-header,
    .main-footer,
    .banner-nav,
    .banner-indicators,
    .btn {
        display: none;
    }

    body {
        background: white;
        color: black;
    }
}

/* Modern Responsive Enhancements */
@media (max-width: 768px) {

    .product-card:hover,
    .part-card:hover,
    .blog-card:hover {
        transform: translateY(-5px) scale(1.01);
    }

    .section-title::after {
        width: 40px;
    }

    /* Ensure images are responsive */
    img {
        max-width: 100%;
        height: auto;
    }

    /* Better form inputs on mobile */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="url"],
    textarea,
    select {
        font-size: 16px;
        /* Prevents zoom on iOS */
    }
}

/* Modern Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Modern Focus States */
*:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Modern Selection */
::selection {
    background: var(--primary-color);
    color: white;
}

::-moz-selection {
    background: var(--primary-color);
    color: white;
}

/* ============================================
   ADDITIONAL RESPONSIVE FIXES & OPTIMIZATIONS
   ============================================ */

/* Ensure all images are responsive */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Additional overflow prevention - consolidated */
.main-header,
.navbar,
.nav-wrapper,
.hero-banner,
.banner-slider,
section,
main {
    max-width: 100vw;
    overflow-x: hidden;
    width: 100%;
}

/* Better table responsiveness */
table {
    width: 100%;
    border-collapse: collapse;
}

/* Responsive iframes (for videos) */
iframe,
video {
    max-width: 100%;
    height: auto;
}

/* Better text readability on mobile */
@media (max-width: 768px) {
    body {
        font-size: 16px;
        /* Prevents zoom on iOS */
    }

    /* Better form inputs - prevent zoom on iOS */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="url"],
    input[type="date"],
    textarea,
    select {
        font-size: 16px;
    }

    /* Better card spacing */
    .product-card,
    .part-card,
    .blog-card {
        margin-bottom: 1.5rem;
    }

    /* Better form layout */
    .form-row {
        flex-direction: column;
        gap: 1rem;
    }

    .form-row .form-group {
        width: 100%;
    }

    /* Better testimonial scroll on mobile */
    .testimonials-scroll-wrapper {
        padding: 0 50px;
        width: 100%;
        max-width: 100vw;
        overflow: hidden;
    }
    
    .testimonials-scroll-container {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
        width: 100%;
        max-width: 100%;
    }
    
    .testimonials-scroll-container::-webkit-scrollbar {
        display: none;
    }
    
    .testimonials-scroll {
        width: max-content;
        min-width: 100%;
    }
    
    .testimonial-card {
        scroll-snap-align: start;
        min-width: calc(100vw - 120px);
        max-width: calc(100vw - 120px);
    }

    /* Better spacing for sections */
    section {
        padding: 2.5rem 0;
    }

    /* Better footer on mobile */
    .main-footer {
        text-align: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Tablet specific optimizations */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding-left: 30px;
        padding-right: 30px;
    }

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

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

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

/* Large screens optimization */
@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

/* Landscape orientation fixes */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-banner {
        height: 350px;
    }

    .banner-title {
        font-size: 2rem;
    }

    .nav-menu {
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}