/*
Theme Name: CP Swing Custom Theme
Author: Alexander Vonderau
Description: Custom informational theme for CP Swing Fishing Lures
Version: 1.5
*/

/* ============ RESET & BASE ============ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ============ TOP BAR ============ */
.top-bar {
    background: #1a1a2e;
    color: #fff;
    padding: 8px 0;
    font-size: 0.85rem;
}

.top-bar-inner {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 25px;
}

.top-bar a {
    color: #ccc;
    transition: color 0.3s ease;
}

.top-bar a:hover {
    color: #e53935;
}

.top-bar i {
    margin-right: 6px;
    color: #e53935;
}

/* ============ HEADER ============ */
.site-header {
    background: linear-gradient(135deg, #1a3a5c 0%, #2c6faa 50%, #1a3a5c 100%);
    padding: 20px 0 0;
    position: relative;
}

.header-branding {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 20px 0;
}

.header-branding img {
    max-height: 80px;
}

.header-branding .brand-text {
    color: #fff;
}

.header-branding .brand-text h1 {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    line-height: 1.1;
}

.header-branding .brand-text p {
    font-size: 0.95rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
}

/* ============ NAVIGATION ============ */
.main-nav-wrapper {
    background: rgba(0, 0, 0, 0.2);
    margin-top: 15px;
}

.nav-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.main-nav ul {
    display: flex;
    gap: 0;
}

.main-nav ul li a {
    display: block;
    color: #fff;
    padding: 15px 30px;
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s ease, color 0.3s ease;
    position: relative;
}

.main-nav ul li a:hover,
.main-nav ul li a.active,
.main-nav ul li.current-menu-item a {
    background: rgba(229, 57, 53, 0.8);
    color: #fff;
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: #e53935;
    transition: width 0.3s ease;
}

.main-nav ul li a:hover::after {
    width: 100%;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 15px 0;
    position: absolute;
    right: 0;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: #fff;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ============ HERO SECTION ============ */
.hero {
    position: relative;
    height: 50vh;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(26, 58, 92, 0.6) 0%,
        rgba(26, 58, 92, 0.8) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-tagline {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.5rem;
    font-style: italic;
    font-weight: 400;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.4;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-top: 15px;
    opacity: 0.9;
    letter-spacing: 1px;
}

.hero-buttons {
    margin-top: 25px;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 14px 35px;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 3px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: #e53935;
    color: #fff;
}

.btn-primary:hover {
    background: #c62828;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(229, 57, 53, 0.4);
}

.btn-outline-white {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-outline-white:hover {
    background: #fff;
    color: #1a3a5c;
}

.btn-outline {
    background: transparent;
    color: #1a3a5c;
    border: 2px solid #1a3a5c;
}

.btn-outline:hover {
    background: #1a3a5c;
    color: #fff;
}

/* ============ PAGE HERO (for inner pages) ============ */
.page-hero {
    position: relative;
    height: 30vh;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
    background: linear-gradient(135deg, #1a3a5c 0%, #2c6faa 50%, #1a3a5c 100%);
}

.page-hero .hero-bg {
    opacity: 0.3;
}

.page-hero h1 {
    position: relative;
    z-index: 2;
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.page-hero .breadcrumb {
    position: relative;
    z-index: 2;
    margin-top: 10px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.page-hero .breadcrumb a {
    color: #fff;
    text-decoration: underline;
}

/* ============ SECTION DEFAULTS ============ */
section {
    padding: 70px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #1a3a5c;
    margin-bottom: 10px;
}

.section-header .divider {
    width: 60px;
    height: 3px;
    background: #e53935;
    margin: 15px auto;
}

.section-header p {
    font-size: 1.05rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* ============ HOME INTRO ============ */
.home-intro {
    background: #fff;
    text-align: center;
}

.home-intro-text {
    max-width: 800px;
    margin: 0 auto;
}

.home-intro-text p {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.9;
    margin-bottom: 15px;
}

.silver-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #e8e8e8, #f8f8f8, #e8e8e8);
    border: 1px solid #ccc;
    padding: 15px 25px;
    border-radius: 5px;
    margin-top: 20px;
}

.silver-badge i {
    font-size: 1.8rem;
    color: #888;
}

.silver-badge span {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
}

/* ============ HIGHLIGHTS SECTION ============ */
.highlights {
    background: #f4f7fa;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.highlight-card {
    background: #fff;
    border-radius: 5px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 3px solid transparent;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-top-color: #e53935;
}

.highlight-card .icon {
    font-size: 2.5rem;
    color: #2c6faa;
    margin-bottom: 18px;
}

.highlight-card h3 {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #1a3a5c;
    margin-bottom: 10px;
}

.highlight-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
}

/* ============ ABOUT SECTION / PAGE ============ */
.about {
    background: #fff;
}

.about-wrapper {
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 0;
}

.about-image {
    position: relative;
    min-height: 400px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.about-text {
    padding: 50px 40px;
}

.about-text h2 {
    font-size: 1.8rem;
    color: #1a3a5c;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.about-text .divider {
    width: 60px;
    height: 3px;
    background: #e53935;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.9;
}

/* About page specific */
.about-full {
    background: #fff;
}

.about-section-block {
    margin-bottom: 60px;
}

.about-section-block:last-child {
    margin-bottom: 0;
}

.about-section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-section-grid.reverse {
    direction: rtl;
}

.about-section-grid.reverse > * {
    direction: ltr;
}

.about-section-text h3 {
    font-size: 1.5rem;
    color: #1a3a5c;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.about-section-text .divider {
    width: 50px;
    height: 3px;
    background: #e53935;
    margin-bottom: 18px;
}

.about-section-text p {
    font-size: 1rem;
    color: #555;
    line-height: 1.9;
    margin-bottom: 12px;
}

.about-section-image {
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.about-section-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Origin badge */
.origin-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #f0f4f8;
    padding: 12px 20px;
    border-radius: 5px;
    margin-top: 10px;
    border-left: 3px solid #2c6faa;
}

.origin-badge i {
    font-size: 1.3rem;
    color: #2c6faa;
}

.origin-badge span {
    font-size: 0.95rem;
    font-weight: 500;
    color: #1a3a5c;
}

/* Specs list */
.specs-list {
    margin-top: 15px;
}

.spec-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.spec-item i {
    color: #e53935;
    margin-top: 4px;
    flex-shrink: 0;
}

.spec-item p {
    margin: 0;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

.spec-item strong {
    color: #1a3a5c;
}

/* ============ SPINNERS / PRODUCT SECTION ============ */
.spinners {
    background: #f4f7fa;
}

.spinners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.spinner-card {
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.spinner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.spinner-card-image {
    height: 220px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #fff;
    padding: 20px;
}

.spinner-card-body {
    padding: 25px;
}

.spinner-card-body h3 {
    font-size: 1.3rem;
    color: #1a3a5c;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.spinner-card-body p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
}

.fish-tags {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.fish-tag {
    display: inline-block;
    background: #1a3a5c;
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Product detail section for spinners page */
.product-detail {
    background: #fff;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.product-detail-image {
    background: #f4f7fa;
    border-radius: 5px;
    padding: 40px;
    text-align: center;
}

.product-detail-image img {
    max-width: 100%;
    margin: 0 auto;
}

.product-detail-info h2 {
    font-size: 1.8rem;
    color: #1a3a5c;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.product-detail-info .divider {
    width: 50px;
    height: 3px;
    background: #e53935;
    margin-bottom: 18px;
}

.product-detail-info p {
    font-size: 1rem;
    color: #555;
    line-height: 1.9;
    margin-bottom: 12px;
}

/* Vendor section */
.vendors {
    background: #f4f7fa;
}

.vendor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    text-align: center;
}

.vendor-card {
    background: #fff;
    padding: 25px 20px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vendor-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.vendor-card i {
    font-size: 2rem;
    color: #2c6faa;
    margin-bottom: 12px;
}

.vendor-card h4 {
    font-size: 1rem;
    color: #1a3a5c;
    margin-bottom: 5px;
}

.vendor-card p {
    font-size: 0.85rem;
    color: #888;
}

.vendor-card a {
    color: #2c6faa;
    font-weight: 500;
    font-size: 0.9rem;
}

.vendor-card a:hover {
    color: #e53935;
}

/* ============ INFO BANNER ============ */
.info-banner {
    background: linear-gradient(135deg, #1a3a5c 0%, #2c6faa 100%);
    color: #fff;
    text-align: center;
    padding: 60px 0;
}

.info-banner h2 {
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.info-banner p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 25px;
    line-height: 1.8;
}

.info-banner .btn {
    border: 2px solid #fff;
    background: transparent;
    color: #fff;
    padding: 14px 40px;
}

.info-banner .btn:hover {
    background: #fff;
    color: #1a3a5c;
}

/* ============ CONTACT SECTION / PAGE ============ */
.contact {
    background: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
}

.contact-info h3 {
    font-size: 1.5rem;
    color: #1a3a5c;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info > p {
    color: #555;
    margin-bottom: 25px;
    line-height: 1.8;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-detail .icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1a3a5c, #2c6faa);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-detail div p {
    margin: 0;
    font-size: 0.95rem;
}

.contact-detail div p:first-child {
    font-weight: 600;
    color: #1a3a5c;
    margin-bottom: 2px;
}

.contact-detail div p:last-child {
    color: #666;
}

.contact-social {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #eee;
}

.contact-social h4 {
    font-size: 1rem;
    color: #1a3a5c;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.contact-social .social-links {
    display: flex;
    gap: 10px;
}

.contact-social .social-links a {
    width: 42px;
    height: 42px;
    background: #1a3a5c;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    font-size: 1rem;
}

.contact-social .social-links a:hover {
    background: #e53935;
}

/* Contact Form */
.contact-form-wrapper {
    background: #f4f7fa;
    padding: 35px;
    border-radius: 5px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
}

.contact-form-wrapper h3 {
    font-size: 1.3rem;
    color: #1a3a5c;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 14px 18px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: #2c6faa;
    box-shadow: 0 0 0 3px rgba(44, 111, 170, 0.1);
}

.contact-form textarea {
    height: 140px;
    resize: vertical;
}

.contact-form .btn-submit {
    display: inline-block;
    padding: 14px 40px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 3px;
    border: none;
    cursor: pointer;
    background: #e53935;
    color: #fff;
    transition: all 0.3s ease;
    width: 100%;
}

.contact-form .btn-submit:hover {
    background: #c62828;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(229, 57, 53, 0.3);
}

.contact-form .btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.form-message {
    padding: 12px 18px;
    border-radius: 3px;
    margin-bottom: 15px;
    display: none;
    font-size: 0.95rem;
}

.form-message.success {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
    display: block;
}

.form-message.error {
    background: #fbe9e7;
    color: #c62828;
    border: 1px solid #ef9a9a;
    display: block;
}

.recaptcha-notice {
    font-size: 0.75rem;
    color: #999;
    margin-top: 10px;
    text-align: center;
}

.recaptcha-notice a {
    color: #2c6faa;
}

/* ============ FOOTER ============ */
.site-footer {
    background: #1a1a2e;
    color: #fff;
    padding: 50px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
    color: #fff;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
    font-size: 0.9rem;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-col ul li a:hover {
    color: #e53935;
}

.footer-col ul li i {
    color: #e53935;
    margin-right: 8px;
    width: 16px;
}

.footer-logo img {
    max-height: 50px;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.social-links a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    font-size: 0.9rem;
}

.social-links a:hover {
    background: #e53935;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
}



/* ============ SPINNER MODELS ============ */
.models-section {
    background: #f4f7fa;
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.model-card {
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.model-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.model-card-image {
    height: 250px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-bottom: 3px solid #e0e0e0;
}

.model-card-image img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.model-card-image.brass { border-bottom-color: #b8860b; }
.model-card-image.silver { border-bottom-color: #c0c0c0; }
.model-card-image.copper { border-bottom-color: #b87333; }

.model-card-body {
    padding: 25px;
}

.model-card-body h3 {
    font-size: 1.2rem;
    color: #1a3a5c;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.model-card-body .model-subtitle {
    font-size: 0.85rem;
    color: #2c6faa;
    font-weight: 600;
    margin-bottom: 10px;
}

.model-card-body p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
}

/* Mustad Badge */
.quality-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    padding: 25px;
    background: #f0f4f8;
    border-radius: 5px;
}

.quality-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
}

.quality-badge img {
    max-height: 50px;
    max-width: 80px;
    object-fit: contain;
}

.quality-badge span {
    font-size: 0.85rem;
    color: #555;
    font-weight: 500;
}









/* ============ RESPONSIVE ============ */
@media (max-width: 992px) {
    .about-grid,
    .about-section-grid,
    .about-section-grid.reverse,
    .product-detail-grid {
        grid-template-columns: 1fr;
    }

    .about-section-grid.reverse {
        direction: ltr;
    }

    .about-image {
        min-height: 300px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-tagline {
        font-size: 2rem;
    }

    .header-branding .brand-text h1 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .top-bar-inner {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
        font-size: 0.8rem;
    }

    .hamburger {
        display: flex;
    }

    .main-nav {
        display: none;
        width: 100%;
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }

    .main-nav ul li a {
        padding: 14px 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .hero-tagline {
        font-size: 1.5rem;
    }

    .hero {
        height: 35vh;
        min-height: 250px;
    }

    .page-hero {
        height: 25vh;
        min-height: 160px;
    }

    .page-hero h1 {
        font-size: 1.8rem;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .about-text {
        padding: 30px 25px;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .vendor-grid {
        grid-template-columns: 1fr 1fr;
    }

    .header-branding {
        gap: 12px;
    }

    .header-branding .brand-text h1 {
        font-size: 1.3rem;
    }

    .header-branding img {
        max-height: 60px;
    }
}

@media (max-width: 480px) {
    .hero-tagline {
        font-size: 1.2rem;
    }

    .contact-form-wrapper {
        padding: 25px 20px;
    }

    .vendor-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .models-grid {
        grid-template-columns: 1fr;
    }
    
    .quality-badges {
        flex-direction: column;
        gap: 15px;
    }
}