@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&display=swap');

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

body {
    font-family: 'Arial', sans-serif;
    background: white;
    color: black;
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
}

.page-transition {
    opacity: 0;
    transition: opacity 0.3s ease-out;
}

.page-transition.fade-out {
    opacity: 0;
}

.page-transition.fade-in {
    opacity: 1;
}

/* Header Styles */
.page-header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1000;
}

.panel.wrapper {
    background: white;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.panel.header {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-store-links ul {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.logo-store-links li {
    margin: 0;
}

.logo-store-links img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.logo-store-links .brand-text {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    white-space: nowrap;
    display: flex;
    align-items: center;
    height: 40px;
}

.header.links {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header.links li {
    margin: 0;
}

.header.links a {
    text-decoration: none;
    color: black;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
}

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

.header-bottom-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    position: relative;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    font-size: 14px;
    position: relative;
    width: 30px;
    height: 30px;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}


.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: #333;
}

.close-menu {
    display: none;
}

.menu-overlay {
    display: none;
}

.logo {
    order: 1;
}

.logo img {
    height: 40px;
    width: auto;
}

/* Navigation */
.v-navigation {
    display: flex;
    gap: 30px;
    align-items: center;
    order: 2;
}

.v-navigation ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.v-navigation__item {
    position: relative;
}

.mobile-only-link {
    display: none;
}

.v-navigation__link {
    text-decoration: none;
    color: black;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    padding: 10px 0;
    display: block;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

/* Dropdown Navigation */
.v-navigation__list--level0 {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.v-navigation__item:hover .v-navigation__list--level0 {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.v-navigation__list--level1 {
    position: absolute;
    top: 0;
    left: 100%;
    background: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.v-navigation__item:hover .v-navigation__list--level1 {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.v-navigation__text {
    font-weight: bold;
    color: #666;
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
}

.v-navigation__list li a {
    padding: 10px 15px;
    display: block;
    color: #333;
    text-decoration: none;
    font-size: 13px;
    border-bottom: 1px solid #f5f5f5;
}

.v-navigation__list li a:hover {
    background: #f8f8f8;
    color: #d2691e;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 60vh;
    overflow: hidden;
}

.hero-background {
    width: 100%;
    height: 100%;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hero Text Section */
.hero-text-section {
    background: #f7f7f7;
    padding: 40px 10px 20px;
    text-align: center;
}

.hero-text-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px;
}

.hero-text-section h1 {
    font-family: 'Orbitron', monospace;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 30px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: black;
}

.hero-text-section p {
    font-size: 18px;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Kayaker Types Section - UPDATED FULL WIDTH VERSION */
.kayaker-types-section {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 60px 0 0 0;
    background: #0f2531;
}

.kayaker-content-full {
    width: 100%;
    max-width: none;
}

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

.kayaker-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.kayaker-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.kayaker-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: white;
}

.kayaker-text .quote {
    font-style: italic;
    font-size: 1.2rem;
    color: white;
    margin-top: 30px;
}

/* Full Width Grid - No max-width constraints */
.kayak-grid-full {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 0;
    width: 100vw;
    height: 80vh;
    min-height: 800px;
}

.kayak-item-large {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.kayak-image-large {
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.3s ease;
}

.kayak-item-large:hover .kayak-image-large {
    transform: scale(1.05);
}

.kayak-overlay-large {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 60px 40px 40px;
    transition: background 0.3s ease;
}

.kayak-item-large:hover .kayak-overlay-large {
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
}

.kayak-label-large {
    color: white;
    font-size: 2rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: block;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.kayak-link {
    display: block;
    text-decoration: none;
    height: 100%;
    width: 100%;
}

/* Original Kayaker Types Section - Keeping for compatibility */
.kayaker-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.kayak-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.kayak-item {
    position: relative;
    height: 350px;
    overflow: hidden;
    border-radius: 8px;
}

.kayak-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.kayak-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(67, 86, 90, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.kayak-item:hover .kayak-overlay {
    background: rgba(67, 86, 90, 0.5);
}

.kayak-label {
    background: rgba(255, 255, 255, 0.95);
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    color: #333;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    border: 2px solid;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.btn-secondary {
    background: transparent;
    color: #d1dae1;
    border-color: #d1dae1;
}

.btn-secondary:hover {
    background: #d1dae1;
    color: #43565a;
}

.quote {
    font-size: 26px;
    color: #d1dae1;
    line-height: 28px;
    font-style: italic;
    font-weight: bold;
    margin-top: 30px;
}

/* Featured Kayak Section */
.featured-kayak-section {
    background: white;
    padding: 120px 0;
}

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

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

.featured-text .category {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.featured-text h2 {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.featured-text p {
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.8;
}

.featured-image {
    text-align: center;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-image img {
    max-width: 100%;
    max-height: 500px;
    height: auto;
    object-fit: contain;
    padding: 20px 0;
}

/* News Section */
.news-section {
    background: white;
    padding: 80px 0;
}

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

.news-section h2 {
    font-family: 'Orbitron', monospace;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.news-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.news-image {
    height: 200px;
    overflow: hidden;
}

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

.news-content {
    padding: 20px;
}

.news-content h3 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.news-content h3 a {
    text-decoration: none;
    color: black;
}

.news-date {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.news-content p {
    font-size: 14px;
    color: #666;
}

.news-footer {
    text-align: center;
}

.news-link-more {
    color: #d2691e;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
}

/* Conversation Section */
.conversation-section {
    background: #0f2531;
    color: #d1dae1;
    text-align: center;
    padding: 60px 0;
}

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

.conversation-section h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hashtag-link {
    color: #d1dae1;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
}

/* Footer */
.page-footer {
    background: white;
    padding: 60px 0 20px;
    border-top: 1px solid #eee;
}

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

.footer-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer__block h3 {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer__block ul {
    list-style: none;
}

.footer__block ul li {
    margin-bottom: 10px;
}

.footer__block ul li a {
    text-decoration: none;
    color: black;
    font-weight: bold;
    font-size: 12px;
    text-transform: uppercase;
}

.footer__block ul li a:hover {
    color: #d2691e;
}

.footer-brand {
    margin-top: 20px;
}

.footer-brand span {
    font-size: 12px;
    color: #666;
    margin-bottom: 10px;
    display: block;
}

.footer-brand img {
    vertical-align: middle;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.newsletter-form button {
    padding: 10px 20px;
    background: #333;
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
}

.social-links {
    margin-top: 20px;
}

.social-links span {
    font-size: 12px;
    color: #666;
    margin-bottom: 10px;
    display: block;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: #f0f0f0;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    font-weight: bold;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.footer-bottom p {
    font-size: 12px;
    color: #666;
}

/* Additional Styles */
.hero-section {
    position: relative;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(transparent, #f7f7f7);
    pointer-events: none;
}

.btn {
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .kayak-grid-full {
        height: 70vh;
        min-height: 600px;
    }
    
    .kayak-label-large {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }
    
    .kayak-overlay-large {
        padding: 40px 30px 30px;
    }
}

@media (max-width: 768px) {
    /* General container optimizations */
    .container {
        padding: 0 15px;
    }

    /* Header optimizations */
    .panel.wrapper {
        padding: 6px 0;
    }

    .panel.header {
        flex-direction: column;
        gap: 10px;
        padding: 0 15px;
    }

    .logo-store-links ul {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }

    .logo-store-links img {
        height: 30px;
    }

    .logo-store-links .brand-text {
        font-size: 11px;
        height: 30px;
    }

    .header.links {
        display: none;
    }

    .mobile-only-link {
        display: block;
    }

    .header.content {
        padding: 0 15px;
    }

    .header-bottom-wrapper {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 12px 0;
    }

    .logo img {
        height: 35px;
    }

    /* Navigation */
    .nav-toggle {
        display: flex;
        order: 2;
        padding: 5px;
        font-size: 16px;
        background: none;
        border: none;
        cursor: pointer;
        width: 30px;
        height: 30px;
    }

    .v-navigation {
        display: block;
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        z-index: 10000;
        overflow-y: auto;
        transition: right 0.3s ease;
        -webkit-overflow-scrolling: touch;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        will-change: right;
    }
    
    .v-navigation.active {
        right: 0;
    }

    .v-navigation .close-menu {
        display: none;
    }

    .v-navigation.active .close-menu {
        display: block;
        position: absolute;
        top: 15px;
        right: 15px;
        background: none;
        border: none;
        font-size: 24px;
        cursor: pointer;
        color: #333;
        width: 30px;
        height: 30px;
        padding: 0;
        line-height: 1;
        z-index: 10001;
    }

    .v-navigation.active .close-menu:hover {
        color: #d2691e;
    }
    
    .v-navigation ul {
        flex-direction: column;
        gap: 0;
        padding: 60px 20px 20px;
        margin: 0;
    }
    
    .v-navigation .v-navigation__item {
        border-bottom: 1px solid #eee;
    }
    
    .v-navigation .v-navigation__link {
        padding: 15px 0;
        font-size: 16px;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
        -webkit-user-select: none;
        user-select: none;
    }

    .v-navigation.active {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    .menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 9999;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .menu-overlay.active {
        display: block;
        opacity: 1;
    }

    /* Hero sections */
    .hero-section {
        height: 40vh;
        min-height: 250px;
    }

    .hero-text-section {
        padding: 30px 15px 20px;
    }

    .hero-text-section h1 {
        font-size: 2rem;
    }

    .hero-text-section p {
        font-size: 14px;
    }

    .hero-content h1 {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    /* Kayak grid */
    .kayak-grid-full {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr 1fr 1fr;
        height: auto;
        min-height: auto;
    }
    
    .kayak-item-large {
        height: 50vh;
        min-height: 300px;
    }
    
    .kayaker-text h2 {
        font-size: 1.8rem;
    }
    
    .kayak-label-large {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }
    
    .kayak-overlay-large {
        padding: 30px 20px 20px;
    }

    /* Content sections */
    .featured-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .featured-image {
        max-height: 400px;
        overflow: hidden;
    }

    .featured-image img {
        max-height: 400px;
        width: auto;
    }

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

    .about-story-section .container {
        padding: 40px 20px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-text p {
        font-size: 16px;
    }

    /* Footer optimizations */
    .page-footer {
        padding: 40px 0 20px;
    }

    .footer.content {
        padding: 0 15px;
    }

    .footer-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer__block {
        text-align: center;
    }

    .footer__block h3 {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .footer__block ul li {
        margin-bottom: 8px;
    }

    .footer__block ul li a {
        font-size: 11px;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 10px;
    }

    .newsletter-form input {
        padding: 12px;
        font-size: 14px;
    }

    .newsletter-form button {
        padding: 12px 20px;
        font-size: 12px;
    }

    .social-icons {
        justify-content: center;
        gap: 10px;
    }

    .social-icon {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }

    .footer-bottom {
        padding-top: 20px;
        margin-top: 20px;
    }

    .footer-bottom p {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    /* General container optimizations */
    .container {
        padding: 0 10px;
    }

    /* Header optimizations for small mobile */
    .panel.header {
        padding: 0 10px;
        gap: 8px;
    }

    .logo-store-links ul {
        gap: 8px;
    }

    .logo-store-links img {
        height: 25px;
    }

    .logo-store-links .brand-text {
        font-size: 10px;
        height: 25px;
        padding: 0 5px;
    }

    .header.links {
        display: none;
    }

    .header.content {
        padding: 0 10px;
    }

    .header-bottom-wrapper {
        padding: 10px 0;
    }

    .logo img {
        height: 30px;
    }

    .nav-toggle {
        padding: 4px;
        font-size: 14px;
        width: 28px;
        height: 28px;
    }

    .v-navigation.active {
        padding: 10px 15px;
    }

    .v-navigation.active .v-navigation__link {
        padding: 12px 0;
        font-size: 13px;
    }

    /* Hero sections */
    .hero-section {
        height: 35vh;
        min-height: 200px;
    }

    .hero-text-section {
        padding: 20px 10px 15px;
    }

    .hero-text-section h1 {
        font-size: 1.5rem;
    }

    .hero-text-section p {
        font-size: 13px;
    }

    .hero-content h1 {
        font-size: 1.5rem;
        letter-spacing: 1px;
        margin-bottom: 15px;
    }

    /* Further reduce all heading sizes on small mobile */
    h1 {
        font-size: 1.5rem !important;
    }

    h2 {
        font-size: 1.3rem !important;
    }

    h3 {
        font-size: 1.1rem !important;
    }

    .section-header-dark h2 {
        font-size: 1.1rem !important;
    }

    .description-content h3 {
        font-size: 1.3rem !important;
    }

    .kayak-info h3 {
        font-size: 1.1rem !important;
    }

    .profile-item h3 {
        font-size: 0.9rem !important;
    }

    .featured-text h2 {
        font-size: 1.3rem !important;
    }

    .news-section h2 {
        font-size: 1.3rem !important;
    }

    .news-content h3 {
        font-size: 1.1rem !important;
    }

    .conversation-section h2 {
        font-size: 1.3rem !important;
    }

    .company-overview-section h2,
    .manufacturing-section h2 {
        font-size: 1.3rem !important;
    }

    .technology-text h2 {
        font-size: 1.3rem !important;
    }

    .products-list h3 {
        font-size: 1.1rem !important;
    }

    .features-section h2 {
        font-size: 1.3rem !important;
    }

    .features-section h3 {
        font-size: 1.1rem !important;
    }

    .features-grid h3 {
        font-size: 1.1rem !important;
    }

    .features-grid h2 {
        font-size: 1.3rem !important;
    }

    .features-grid h1 {
        font-size: 1.5rem !important;
    }

    .product-info h1 {
        font-size: 1.5rem !important;
    }

    .hero-subtitle {
        font-size: 12px;
    }

    /* Kayak grid */
    .kayak-item-large {
        height: 25vh;
        min-height: 180px;
    }
    
    .kayak-label-large {
        font-size: 0.9rem;
        letter-spacing: 0.5px;
    }
    
    .kayak-overlay-large {
        padding: 15px 10px 10px;
    }

    .kayaker-text h2 {
        font-size: 1.5rem;
    }

    /* Content sections */
    .about-story-section {
        padding: 30px 10px 15px;
    }

    .about-story-section .container {
        padding: 30px 15px;
    }

    .about-text p {
        font-size: 14px;
    }

    .featured-content {
        gap: 20px;
    }

    .featured-image {
        max-height: 300px;
        overflow: hidden;
    }

    .featured-image img {
        max-height: 300px;
        width: auto;
    }

    /* Footer optimizations */
    .page-footer {
        padding: 30px 0 15px;
    }

    .footer.content {
        padding: 0 10px;
    }

    .footer-row {
        gap: 25px;
    }

    .footer__block h3 {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .footer__block ul li {
        margin-bottom: 6px;
    }

    .footer__block ul li a {
        font-size: 10px;
    }

    .newsletter-form input {
        padding: 10px;
        font-size: 13px;
    }

    .newsletter-form button {
        padding: 10px 18px;
        font-size: 11px;
    }

    .social-icon {
        width: 32px;
        height: 32px;
        font-size: 11px;
    }

    .footer-bottom p {
        font-size: 10px;
    }
}

/* About Us Page Styles */
.about-hero {
    height: 60vh;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 37, 49, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content h1 {
    font-family: 'Orbitron', monospace;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 30px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 20px;
}

.about-story-section {
    background: #f7f7f7;
    padding: 40px 10px 20px;
}

.about-story-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.about-image img {
    width: 100%;
    height: auto;
}

.brand-quote-section {
    background: #0f2531;
    color: #d1dae1;
    text-align: center;
    padding: 60px 0;
}

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

.quote-content blockquote {
    font-size: 26px;
    color: #d1dae1;
    line-height: 28px;
    font-style: italic;
    font-weight: bold;
    margin: 0 auto;
    max-width: 800px;
}

.company-overview-section {
    background: white;
    padding: 80px 0;
}

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

.company-overview-section h2 {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: center;
}

.overview-text p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.heritage-images-section {
    background: white;
    padding: 80px 0;
}

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

.heritage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.heritage-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
}

.heritage-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.image-caption {
    padding: 20px;
    text-align: center;
    font-size: 14px;
    color: #666;
}

.manufacturing-section {
    background: #f7f7f7;
    padding: 40px 10px 20px;
}

.manufacturing-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px;
}

.manufacturing-section h2 {
    font-family: 'Orbitron', monospace;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.manufacturing-section p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
}

.video-container iframe {
    border-radius: 8px;
    margin-bottom: 15px;
}

.video-caption {
    text-align: center;
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* About Us Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .company-overview-section h2,
    .manufacturing-section h2 {
        font-size: 2rem;
    }

    .about-story-section .container,
    .manufacturing-section .container {
        padding: 60px 20px;
    }
}

/* Technology Page Styles */
.technology-hero {
    height: 60vh;
}

.technology-section {
    background: white;
    padding: 80px 0;
}

.technology-section-alt {
    background: #f7f7f7;
}

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

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

.technology-text h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #0f2531;
}

.technology-text p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.6;
    color: #333;
}

.products-list {
    margin-top: 30px;
    padding: 20px;
    background: rgba(15, 37, 49, 0.05);
    border-left: 4px solid #0f2531;
}

.products-list h3 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #0f2531;
    text-transform: uppercase;
}

.products-list p {
    font-size: 16px;
    margin: 0;
    color: #666;
    font-weight: 500;
}

.technology-image {
    text-align: center;
}

.technology-image img {
    width: 100%;
    height: auto;
    max-width: none;
}

/* Technology Responsive Design */
@media (max-width: 768px) {
    .technology-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .technology-text h2 {
        font-size: 2rem;
    }

    .technology-section .container {
        padding: 0 20px;
    }

    .technology-section {
        padding: 60px 0;
    }
}

/* Kayaks Page Styles */
.kayaks-hero {
    height: 60vh;
}

.filter-section {
    background: #333;
    padding: 20px 0;
}

.filter-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.filter-left {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 14px;
    flex: 0 0 auto;
}

.filter-icon {
    width: 20px;
    height: 20px;
    background: #666;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
}

.filter-dropdowns-container {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.filter-dropdown {
    background: white;
    border: 2px solid transparent;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 36px;
    min-width: 120px;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 35px;
}

.filter-dropdown:hover {
    border-color: #d2691e;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.filter-dropdown:focus {
    outline: none;
    border-color: #d2691e;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.filter-dropdown option {
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    padding: 8px;
}

.brand-filter-dropdown {
    min-width: 140px;
}

.type-filter-dropdown {
    min-width: 140px;
}

.filter-right {
    color: white;
    font-size: 14px;
    flex: 0 0 auto;
    min-width: 100px;
    text-align: right;
}

.breadcrumb-section {
    background: white;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.breadcrumb {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    font-size: 14px;
    color: #666;
}

.breadcrumb a {
    color: #333;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #d2691e;
}

.category-description {
    background: white;
    padding: 40px 0;
}

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

.category-description p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.kayak-models-section {
    background: white;
    padding: 40px 0 80px;
}

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

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

.kayak-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}

.kayak-card-link:hover {
    transform: translateY(-5px);
}

.kayak-card-link:hover .kayak-card {
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-color: #d2691e;
}

.kayak-card {
    background: white;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.kayak-image {
    height: 300px;
    overflow: hidden;
}

.kayak-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 20px 0;
}


.kayak-info {
    padding: 20px;
}

.kayak-tech {
    font-size: 12px;
    color: #666;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.kayak-info h3 {
    font-size: 1.15rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
    line-height: 1.2;
}

.kayak-category {
    display: inline-block;
    background: #f0f0f0;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    color: #333;
    margin-bottom: 8px;
}

.kayak-type {
    display: inline-block;
    background: #e8f4f8;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    color: #43565a;
}

.color-options {
    display: flex;
    gap: 8px;
}

.color-btn {
    padding: 6px 12px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.color-btn.active {
    background: #333;
    color: white;
    border-color: #333;
}

.color-btn:hover {
    background: #f0f0f0;
}

/* Kayaks Responsive Design */
@media (max-width: 768px) {
    .filter-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .filter-left {
        font-size: 12px;
    }

    .filter-dropdowns-container {
        width: 100%;
        justify-content: center;
        gap: 6px;
        position: static;
        transform: none;
        left: auto;
    }

    .filter-dropdown {
        padding: 5px 10px;
        font-size: 10px;
        min-height: 32px;
        min-width: 120px;
        border-radius: 4px;
        padding-right: 30px;
        background-size: 10px;
        background-position: right 8px center;
    }

    .brand-filter-dropdown,
    .type-filter-dropdown {
        min-width: 120px;
        flex: 1;
        max-width: 200px;
    }

    .filter-right {
        font-size: 12px;
    }

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

    .kayak-image {
        height: 250px;
    }

    .kayak-models-section .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .filter-content {
        gap: 12px;
    }

    .filter-left {
        font-size: 11px;
    }

    .filter-icon {
        width: 18px;
        height: 18px;
        font-size: 10px;
    }

    .kayak-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .kayak-image {
        height: 200px;
    }

    .filter-dropdowns-container {
        flex-direction: column;
        gap: 6px;
        width: 100%;
        position: static;
        transform: none;
        left: auto;
    }

    .filter-dropdown {
        padding: 4px 8px;
        font-size: 9px;
        min-height: 30px;
        min-width: 100%;
        padding-right: 28px;
        background-size: 9px;
        background-position: right 6px center;
    }

    .brand-filter-dropdown,
    .type-filter-dropdown {
        min-width: 100%;
        max-width: 100%;
    }

    .filter-right {
        font-size: 11px;
    }
}

/* Product Page Styles */
.product-hero-section {
    background: white;
    padding: 40px 0;
    position: relative;
    z-index: 1;
}

/* Product Page Dark Section Headers */
.section-header-dark {
    background: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin: 0;
}

.section-header-dark h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Description Section */
.description-section {
    background: white;
    padding: 0;
}

.description-content {
    padding: 60px 20px 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.description-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin: 40px 0 20px 0;
    color: #333;
}

.description-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin: 0 auto;
    max-width: 800px;
    text-align: center;
}

/* Kayak Profile Section */
.kayak-profile-section {
    background: #333;
    padding: 0;
}

.profile-content {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.profile-item {
    margin-bottom: 40px;
}

.profile-item h3 {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

/* Progress Bar Styles */
.progress-bar {
    display: flex;
    gap: 1px;
    margin-bottom: 15px;
    justify-content: center;
}

.progress-bar.small {
    margin-bottom: 8px;
}

.progress-segment {
    width: 25px;
    height: 8px;
    border-radius: 0;
}

/* Paddler's Level Specific Progress Bar */
.paddler-progress-bar {
    display: flex;
    gap: 1px;
    margin-bottom: 15px;
    justify-content: center;
}

.paddler-progress-segment {
    width: 60px;
    height: 8px;
    border-radius: 0;
}

.paddler-progress-segment.active {
    background: #e74c3c;
    border: none;
    outline: none;
}

.paddler-progress-segment.inactive {
    background: #666;
    border: none;
    outline: none;
}

.progress-segment.active {
    background: #e74c3c;
    border: none;
    outline: none;
}

.progress-segment.inactive {
    background: #666;
    border: none;
    outline: none;
}

/* Level Labels */
.level-labels {
    display: flex;
    justify-content: space-between;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    width: 360px;
    margin: 0 auto;
}

.level-labels span {
    width: 80px;
    text-align: center;
    padding: 0 15px;
}

/* Activity Grid */
.activity-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px 30px;
    justify-items: center;
    width: 100%;
}

.activity-row {
    display: contents !important;
}

.activity-grid .activity-item {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
    background: none !important;
    border: none !important;
    padding: 0 !important;
    margin: 0;
    width: 100%;
    flex: none !important;
}

.activity-label {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
}

/* Technical Specs Table */
.technical-specs-section {
    background: white;
    padding: 40px 0;
}

.technical-specs-section h2 {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 40px;
    color: #333;
}

.specs-table {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-label {
    font-weight: 600;
    color: #333;
    flex: 1;
}

.spec-value {
    color: #666;
    flex: 1;
    text-align: right;
}

.product-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.product-image {
    text-align: center;
    overflow: visible;
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    box-sizing: border-box;
}

.product-image img {
    width: 100%;
    height: auto;
    max-width: 500px;
    padding: 20px 0;
    display: block;
    margin: 0 auto;
}

.product-info h1 {
    font-family: 'Orbitron', monospace;
    font-size: clamp(1.5rem, 2.5vw + 1.5rem, 2.35rem);
    font-weight: 900;
    margin-bottom: 10px;
    color: #333;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.product-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
}

.product-category {
    display: inline-block;
    background: #f0f0f0;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    color: #333;
    margin-bottom: 30px;
}

.ideal-for h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
}

.ideal-for ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.ideal-for li {
    padding: 5px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.ideal-for li:before {
    content: "•";
    color: #d2691e;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.product-summary {
    margin-bottom: 30px;
}

.product-summary p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

.available-models {
    font-size: 14px;
    margin-bottom: 16px;
    color: #555;
}

.available-models-label {
    margin-right: 6px;
}

.available-models a {
    color: #d2691e;
    text-decoration: none;
}

.available-models a:hover {
    text-decoration: underline;
}

.available-models-sep {
    margin: 0 8px;
    color: #999;
}

/* Available models section with photos (product family pages) */
.available-models-section {
    background: #f8f8f8;
    padding: 40px 0;
}

.available-models-section-title {
    font-size: 1.25rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #333;
    margin: 0 0 1.5rem 0;
    text-align: center;
}

.available-models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
    max-width: 560px;
    margin: 0 auto;
}

.available-model-card {
    display: block;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #d2691e;
    color: inherit;
}

.available-model-image {
    aspect-ratio: 2 / 1;
    overflow: hidden;
    background: #fff;
}

.available-model-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 12px;
}

.available-model-info {
    padding: 12px 14px;
    text-align: center;
}

.available-model-info h3 {
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    margin: 0 0 4px 0;
    color: #333;
}

.available-model-tech {
    font-size: 12px;
    color: #666;
}

/* Available models inside hero (product-info column) */
.available-models-in-hero {
    margin-bottom: 20px;
}

.available-models-in-hero .available-models-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.available-models-grid--in-hero {
    max-width: none;
    margin: 0;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.available-models-grid--in-hero.available-models-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
}

.available-models-grid--in-hero .available-model-card {
    border: 2px solid #d2691e;
    background: #fff;
}

.available-models-grid--in-hero .available-model-image {
    background: #fff;
}

.available-models-grid--in-hero .available-model-image {
    aspect-ratio: 1.8 / 1;
}

.available-models-grid--in-hero .available-model-image img {
    padding: 8px;
}

.available-models-grid--in-hero .available-model-info {
    padding: 8px 10px;
}

.available-models-grid--in-hero .available-model-info h3 {
    font-size: 12px;
}

.available-models-grid--in-hero .available-model-tech {
    font-size: 11px;
}

.product-specs-link {
    margin-bottom: 30px;
}

.product-specs-link strong {
    font-size: 16px;
    color: #333;
}

.specs-link {
    color: #d2691e;
    text-decoration: none;
    font-size: 14px;
}

.specs-link:hover {
    text-decoration: underline;
}

.key-specs {
    background: #f8f8f8;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.spec-item {
    margin-bottom: 10px;
    font-size: 14px;
    color: #333;
}

.spec-item:last-child {
    margin-bottom: 0;
}

.cta-button {
    background: #333;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
}

.cta-button:hover {
    background: #555;
}

.description-section {
    background: white;
    padding: 40px 0;
}

.section-header {
    background: #333;
    padding: 20px 0;
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    margin: 0;
}

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


.key-features-section {
    background: white;
    padding: 0;
}

.key-features-content {
    padding: 60px 20px 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    text-align: center;
}

.feature-item {
    margin-bottom: 30px;
}

.feature-item h4 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #333;
}

.feature-item p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.kayak-profile-section {
    background: #333;
    padding: 40px 0;
}

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

.profile-item {
    margin-bottom: 40px;
}

.profile-item h3 {
    color: white;
    font-size: 18px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.level-bar, .activity-bar {
    display: flex;
    gap: 0;
}

.level-item, .activity-item {
    flex: 1;
    padding: 15px 10px;
    text-align: center;
    background: #555;
    color: white;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    border-right: 1px solid #666;
}

.level-item:last-child, .activity-item:last-child {
    border-right: none;
}

.level-item.active, .activity-item.active {
    background: #777;
}

.technical-specs-section {
    background: white;
    padding: 0;
}

.technical-specs-section .section-header-dark h2 {
    display: block;
    color: white;
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.technical-specs-content {
    padding: 60px 20px 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.specs-table {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.spec-label {
    font-weight: bold;
    color: #333;
    font-size: 14px;
}

.spec-value {
    color: #666;
    font-size: 14px;
}

.product-technology-section {
    background: white;
    padding: 40px 0;
}

.product-technology-section h2 {
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 40px;
    color: #333;
}

.technology-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.technology-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 30px;
}

.technology-diagram {
    background: #f8f8f8;
    padding: 20px;
    border-radius: 8px;
}

.diagram-container {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.diagram-layer {
    background: #ddd;
    padding: 10px;
    text-align: center;
    border-radius: 2px;
}

.layer-label {
    font-size: 12px;
    font-weight: bold;
    color: #333;
}

/* Product Page Responsive Design */
@media (max-width: 768px) {
    .product-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .product-info h1 {
        font-size: 2rem;
    }

    /* Reduce all heading sizes on mobile */
    h1 {
        font-size: 2rem !important;
    }

    h2 {
        font-size: 1.5rem !important;
    }

    h3 {
        font-size: 1.2rem !important;
    }

    .section-header-dark h2 {
        font-size: 1.2rem !important;
    }

    .description-content h3 {
        font-size: 1.5rem !important;
    }

    .kayak-info h3 {
        font-size: 1.2rem !important;
    }

    .profile-item h3 {
        font-size: 1rem !important;
    }

    .featured-text h2 {
        font-size: 1.5rem !important;
    }

    .news-section h2 {
        font-size: 1.5rem !important;
    }

    .news-content h3 {
        font-size: 1.2rem !important;
    }

    .conversation-section h2 {
        font-size: 1.5rem !important;
    }

    .company-overview-section h2,
    .manufacturing-section h2 {
        font-size: 1.5rem !important;
    }

    .technology-text h2 {
        font-size: 1.5rem !important;
    }

    .products-list h3 {
        font-size: 1.2rem !important;
    }

    .features-section h2 {
        font-size: 1.5rem !important;
    }

    .features-section h3 {
        font-size: 1.2rem !important;
    }

    .features-grid h3 {
        font-size: 1.2rem !important;
    }

    .features-grid h2 {
        font-size: 1.5rem !important;
    }

    .features-grid h1 {
        font-size: 2rem !important;
    }

    .features-grid h4 {
        font-size: 1.1rem !important;
    }

    .features-grid h5 {
        font-size: 1rem !important;
    }

    .features-grid h6 {
        font-size: 0.9rem !important;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .activity-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .activity-item {
        min-width: auto;
    }

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

    .technology-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .level-bar, .activity-bar {
        flex-direction: column;
    }

    .level-item, .activity-item {
        border-right: none;
        border-bottom: 1px solid #666;
    }

    .level-item:last-child, .activity-item:last-child {
        border-bottom: none;
    }
}

/* Distributors Page Styles */
.distributors-hero {
    height: 60vh;
}

.distributors-intro {
    background: white;
    padding: 40px 0;
}

.distributors-intro h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.distributors-intro p {
    text-align: center;
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.map-section {
    background: white;
    padding: 40px 0;
}

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

.world-map {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    background: white;
    position: relative;
    aspect-ratio: 1000/684;
    overflow: hidden;
}

.europe-map-svg {
    width: 100%;
    height: 100%;
    display: block;
}

.europe-map-svg path {
    transition: fill 0.3s ease, stroke-width 0.3s ease;
    cursor: default;
}

/* CodePen-style highlighting */
.europe-map-svg path.distributor-country,
.europe-map-svg path.dealer-country {
    fill: #d2691e !important;
    stroke: #b85c17 !important;
    stroke-width: 0.5 !important;
    cursor: pointer !important;
}

.europe-map-svg path.distributor-country:hover,
.europe-map-svg path.dealer-country:hover {
    fill: #b85c17 !important;
    stroke-width: 0.7 !important;
    opacity: 0.9;
}

.europe-map-fallback {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: center;
}

/* Map legend for distributor countries */
.map-legend {
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
}

.map-legend-item {
    display: inline-flex;
    align-items: center;
    margin: 0 15px;
    gap: 8px;
}

.map-legend-color {
    width: 20px;
    height: 20px;
    background: #d2691e;
    border: 2px solid #b85c17;
    border-radius: 2px;
}

.map-legend-text {
    color: #333;
    font-size: 14px;
}

.distributors-list-section {
    background: white;
    padding: 60px 0;
}

.distributors-list-section h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 40px;
    color: #333;
}

.distributors-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.distributor-card {
    background: white;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.distributor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-color: #d2691e;
}

.distributor-card h3 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

.distributor-info {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

.distributor-info a {
    color: #d2691e;
    text-decoration: none;
}

.distributor-info a:hover {
    text-decoration: underline;
}

.distributor-info .distributor-products {
    font-size: 13px;
    color: #888;
    margin-top: 6px;
}

/* Distributors overview (by company, country codes) */
.distributors-overview-section {
    background: #f7f7f7;
    padding: 50px 0 60px;
}

.distributors-overview-section h2 {
    text-align: center;
    font-size: 1.75rem;
    font-weight: bold;
    margin-bottom: 12px;
    color: #333;
}

.distributors-overview-intro {
    text-align: center;
    font-size: 15px;
    color: #666;
    margin-bottom: 28px;
}

.distributors-overview-list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.distributors-overview-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px 20px;
    padding: 14px 20px;
    background: white;
    border-radius: 8px;
    border: 1px solid #eee;
    transition: border-color 0.2s, box-shadow 0.2s;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.distributors-overview-item:hover {
    border-color: #d2691e;
    box-shadow: 0 4px 12px rgba(210, 105, 30, 0.1);
    
}

.distributors-overview-name {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.distributors-overview-name strong {
    font-size: 1.05rem;
    color: #333;
}

.distributors-overview-name a,
.distributors-overview-name .distributors-overview-url {
    font-size: 14px;
    color: #d2691e;
    text-decoration: none;
}

.distributors-overview-name a:hover {
    text-decoration: underline;
}

a.distributors-overview-item:hover .distributors-overview-url {
    text-decoration: underline;
}

.distributors-overview-products {
    font-size: 12px;
    color: #888;
    font-weight: normal;
}

.distributors-overview-countries {
    font-size: 13px;
    font-weight: 600;
    color: #555;
    letter-spacing: 0.04em;
}

.distributors-contact {
    background: #f7f7f7;
    padding: 60px 0;
}

.distributors-contact h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.distributors-contact p {
    text-align: center;
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    max-width: 600px;
    margin: 0 auto 30px;
}

.contact-info {
    text-align: center;
    font-size: 16px;
    color: #333;
    background: white;
    padding: 30px;
    border-radius: 8px;
    max-width: 400px;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.contact-info a {
    color: #d2691e;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Distributors Responsive Design */
@media (max-width: 768px) {
    .map-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .distributors-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .distributors-intro h2,
    .distributors-list-section h2,
    .distributors-contact h2 {
        font-size: 1.5rem;
    }

    .distributors-overview-section h2 {
        font-size: 1.5rem;
    }

    .distributors-overview-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .distributors-overview-countries {
        font-size: 12px;
    }
}

/* Contact Page Styles */
.contact-hero {
    height: 60vh;
    min-height: 400px;
}

.contact-section {
    background: transparent;
    padding: 60px 0;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: block;
}

.contact-info {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-info h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.contact-info p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.contact-item p {
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.contact-item a {
    color: #d2691e;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Contact Form Styles */
.contact-form-container h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #333;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d2691e;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: normal;
    margin-bottom: 0;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
}

.submit-btn {
    background: #333;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

.submit-btn:hover {
    background: #555;
}

/* Contact Page Responsive Design */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info h2,
    .contact-form-container h2 {
        font-size: 1.5rem;
    }
}

/* Warranty Page Styles */
.warranty-section {
    background: white;
    padding: 60px 0;
}

.warranty-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.warranty-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

.warranty-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin: 50px 0 20px 0;
}

.warranty-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.warranty-disclaimer {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666;
    font-style: italic;
    margin-bottom: 40px;
    background: #f9f9f9;
    padding: 20px;
    border-left: 3px solid #d2691e;
}

.warranty-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
}

.warranty-content a {
    color: #d2691e;
    text-decoration: none;
    font-weight: 600;
}

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

.warranty-content strong {
    color: #333;
    font-weight: 700;
}

.warranty-contact-cta {
    text-align: center;
    margin: 50px 0;
    padding: 40px;
    background: #f9f9f9;
    border-radius: 8px;
}

.warranty-contact-cta h2 {
    margin: 0 0 20px 0;
    font-size: 1.8rem;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: #d2691e;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #b85c17;
    text-decoration: none;
}

.warranty-claim-types {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.claim-type {
    padding: 30px;
    background: #f9f9f9;
    border-radius: 8px;
    border-left: 3px solid #d2691e;
}

.claim-type h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.claim-type p {
    color: #666;
    line-height: 1.7;
}

/* Warranty Page Responsive Design */
@media (max-width: 768px) {
    .warranty-content h1 {
        font-size: 2rem;
    }
    
    .warranty-content h2 {
        font-size: 1.5rem;
    }
    
    .warranty-claim-types {
        grid-template-columns: 1fr;
    }
    
    .warranty-contact-cta {
        padding: 30px 20px;
    }
    
    .claim-type {
        padding: 20px;
    }
}

/* Product Carousel Styles */
.product-carousel {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.carousel-main {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 8px;
    background: white;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.carousel-slide {
    display: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: white;
}

.carousel-slide.active {
    display: block;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: rgba(0, 0, 0, 0.7);
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

/* Fixed Square Thumbnails */
.carousel-thumbnails {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 10px 0;
}

.thumbnail-item {
    width: 80px;
    height: 80px;
    aspect-ratio: 1;
    border: 2px solid transparent;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.3s ease, opacity 0.3s ease, transform 0.2s ease;
    opacity: 0.6;
    flex-shrink: 0;
    background: white;
}

.thumbnail-item:hover {
    transform: scale(1.05);
}

.thumbnail-item:hover {
    opacity: 0.8;
}

.thumbnail-item.active {
    border-color: #333;
    opacity: 1;
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .carousel-main {
        aspect-ratio: 1;
    }
    
    .thumbnail-item {
        width: 60px;
        height: 60px;
    }
    
    .carousel-prev,
    .carousel-next {
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
}