/* ============================================
   GLOBAL STYLES
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'IBM Plex Mono' !important;
}

:root {
    --bg-white: #ffffff;
    --bg-navy: #021528;
    --accent-pink: #ff3f8c;
    --text-dark: #111111;
    --text-gray: #333333;
    --text-light: #cccccc;
    --mailing-bg: #f0f8ff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'IBM Plex Mono';
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'IBM Plex Mono';
    font-weight: 400;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

/* ============================================
   HERO SECTION WITH NAVIGATION
   ============================================ */

.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-image: url('images/New_Hero_peak2002.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 120px;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 70%, rgba(0, 0, 0, 0.6) 100%);
    pointer-events: none;
    z-index: 1;
}

.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    background-color: rgba(2, 21, 40, 0.75);
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    border-top: 3px solid var(--accent-pink);
    height: 70px;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.brand-logo {
    height: 110px;
    width: auto;
    display: block;
}

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

.nav-links a {
    color: var(--bg-white);
    font-family: 'IBM Plex Mono';
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-pink);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--bg-white);
    transition: all 0.3s ease;
}

.hero-content {
    text-align: center;
    color: var(--bg-white);
    max-width: 900px;
    padding: 0 20px;
    margin-top: 150px;
    position: relative;
    z-index: 2;
}

.hero-headline {
    font-size: 64px;
    font-weight: 400;
    margin-bottom: 30px;
    line-height: 1.2;
}

.hero-subtext {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
    text-align: justify;
    text-align-last: left;
    hyphens: auto;
    hyphenate-limit-chars: 6 3 3;
}

.btn-primary,
a.btn-primary {
    background-color: var(--accent-pink);
    color: var(--bg-white);
    border: none;
    text-decoration: none;
    display: inline-block;
    padding: 15px 40px;
    font-family: 'IBM Plex Mono';
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 63, 140, 0.4);
}

/* ============================================
   PRODUCT BAND (Men's / Women's)
   ============================================ */

.product-band {
    background-color: var(--bg-navy);
    padding: 0;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.product-item {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

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

.product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(to top, rgba(2, 21, 40, 0.9), transparent);
}

.product-title {
    font-family: 'IBM Plex Mono';
    font-size: 48px;
    color: var(--bg-white);
    margin-bottom: 20px;
}

.btn-shop {
    background-color: var(--accent-pink);
    color: var(--bg-white);
    border: none;
    padding: 12px 30px;
    font-family: 'IBM Plex Mono';
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-shop:hover {
    transform: translateY(-2px);
}

/* ============================================
   OUR STORY SECTION
   ============================================ */

.story-section {
    background-color: var(--bg-white);
    padding: 0;
    overflow: visible;
    position: relative;
    margin-top: 0;
    width: 100%;
    display: flex;
}

.story-container {
    max-width: 1200px;
    margin: 0;
    padding: 6rem 2rem 0;
    position: relative;
    z-index: 3;
    flex: 1;
}

.story-text {
    max-width: 520px;
    position: relative;
    z-index: 10;
    background-color: transparent;
    padding: 0;
    text-align: center;
    margin: 0 auto;
}

.section-heading-pink,
.story-paragraph,
.btn-contact {
    position: relative;
    z-index: 10;
}

.section-heading-pink {
    font-family: 'IBM Plex Mono';
    font-size: 36px;
    color: var(--accent-pink);
    margin-bottom: 30px;
}

.story-paragraph {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 40px;
    text-align: justify;
    text-align-last: left;
    hyphens: auto;
    hyphenate-limit-chars: 6 3 3;
}

.btn-contact,
a.btn-contact {
    background-color: var(--bg-white);
    color: var(--accent-pink);
    border: 2px solid var(--accent-pink);
    text-decoration: none;
    display: inline-block;
    padding: 12px 30px;
    font-family: 'IBM Plex Mono';
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 30px;
    display: inline-block;
}

.btn-contact:hover {
    background-color: var(--accent-pink);
    color: var(--bg-white);
}


.story-map {
    position: absolute;
    left: 0;
    top: 30%;
    width: 70vw;
    max-width: none;
    height: auto;
    opacity: 0.25;
    pointer-events: none;
    z-index: 1;
}

.story-ski {
    width: 50%;
    min-width: 420px;
    background: var(--bg-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    flex-shrink: 0;
}

.ski-visual {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.features-section {
    background-color: var(--bg-white);
    padding: 100px 0;
    overflow: visible;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    text-align: center;
    overflow: visible;
}

.features-heading {
    font-family: 'IBM Plex Mono';
    font-size: 48px;
    color: var(--accent-pink);
    text-transform: uppercase;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.features-intro {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.8;
    text-align: justify;
    text-align-last: left;
    hyphens: auto;
    hyphenate-limit-chars: 6 3 3;
}

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

.feature-block {
    text-align: center;
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: -20px auto 20px;
    display: block;
}

.feature-number {
    font-family: 'IBM Plex Mono';
    font-size: 72px;
    color: var(--accent-pink);
    opacity: 0.3;
    margin-bottom: 20px;
    font-weight: 400;
}

.feature-label {
    font-family: 'IBM Plex Mono';
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-description {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.8;
    text-align: justify;
    text-align-last: left;
    hyphens: auto;
    hyphenate-limit-chars: 6 3 3;
}


/* ============================================
   INSTAGRAM SECTION
   ============================================ */

.instagram-section {
    background-color: var(--bg-navy);
    padding: 100px 0;
}

.instagram-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.instagram-heading {
    font-family: 'IBM Plex Mono';
    font-size: 48px;
    color: var(--bg-white);
    margin-bottom: 15px;
    letter-spacing: 2px;
    padding: 0 30px;
}

.instagram-subtitle {
    font-family: 'IBM Plex Mono' !important;
    font-size: 18px !important;
    color: #ffffff !important;
    margin-bottom: 40px !important;
    margin-top: 0 !important;
    text-align: center !important;
    opacity: 1 !important;
    padding: 0 !important;
    display: block !important;
    visibility: visible !important;
    line-height: 1.5 !important;
    position: relative !important;
    z-index: 1 !important;
    width: 100% !important;
    height: auto !important;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    width: 100%;
}

.instagram-item {
    width: 100%;
    overflow: hidden;
    border-radius: 4px;
}

.instagram-item a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

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

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

.instagram-placeholder {
    width: 85px;
    height: 85px;
    background-color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-family: 'IBM Plex Mono';
    font-size: 10px;
    text-align: center;
    border: 2px solid #999;
    transition: all 0.3s ease;
}

.instagram-item:hover .instagram-placeholder {
    background-color: #888;
    border-color: var(--accent-pink);
    transform: scale(1.05);
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-section {
    background-color: var(--bg-white);
    padding: 60px 0 100px;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    text-align: center;
}

.contact-logo {
    display: block !important;
    height: 260px;
    width: auto;
    margin: 0 auto 20px;
    visibility: visible !important;
    opacity: 1 !important;
}

.contact-heading {
    font-family: 'IBM Plex Mono';
    font-size: 48px;
    text-transform: uppercase;
    color: var(--text-dark);
    margin-top: 0;
    margin-bottom: 30px;
    letter-spacing: 2px;
    text-align: left;
}

.contact-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    margin-top: 40px;
    text-align: left;
}

.contact-left {
    width: 100%;
}

.contact-right {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: stretch;
}

.contact-image {
    width: 100%;
    height: 100%;
    min-height: 600px;
    object-fit: cover;
    border-radius: 4px;
}

.contact-info {
    margin-bottom: 40px;
    line-height: 2;
    color: var(--text-gray);
    text-align: justify;
    text-align-last: left;
}

.contact-info a {
    color: var(--accent-pink);
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--text-dark);
}

.contact-form-intro {
    margin-bottom: 40px;
    color: var(--text-gray);
    text-align: justify;
    text-align-last: left;
    hyphens: auto;
    hyphenate-limit-chars: 6 3 3;
}

.contact-form {
    text-align: left;
}

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

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

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-family: 'IBM Plex Mono';
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'IBM Plex Mono';
    font-size: 16px;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    background-color: var(--text-dark);
    color: var(--bg-white);
    border: none;
    padding: 15px;
    font-family: 'IBM Plex Mono';
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

.btn-submit:hover {
    background-color: var(--accent-pink);
}

.form-message {
    margin-top: 20px;
    padding: 12px;
    border-radius: 4px;
    text-align: center;
    font-size: 14px;
    display: none;
}

.form-message.success {
    display: block;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    display: block;
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ============================================
   MAILING LIST SECTION
   ============================================ */

.mailing-section {
    background-color: var(--bg-navy);
    background-image: url('images/Mountain_outline.png');
    background-size: cover;
    background-position: center calc(50% + 50px);
    background-repeat: no-repeat;
    padding: 150px 0 20px 0;
    margin-top: 40px;
    position: relative;
}

.mailing-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 30px;
    text-align: center;
}

.mailing-heading {
    font-family: 'IBM Plex Mono';
    font-size: 36px;
    text-transform: uppercase;
    color: var(--bg-white);
    margin-top: 10px;
    margin-bottom: 40px;
    letter-spacing: 2px;
}

.newsletter-form {
    text-align: left;
}

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

.newsletter-input-group input {
    flex: 1;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'IBM Plex Mono';
    font-size: 16px;
}

.newsletter-input-group input:focus {
    outline: none;
    border-color: var(--accent-pink);
}

.btn-newsletter {
    background-color: var(--bg-white);
    color: var(--text-dark);
    border: none;
    padding: 15px 40px;
    font-family: 'IBM Plex Mono';
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-newsletter:hover {
    background-color: var(--accent-pink);
    color: var(--bg-white);
}

.newsletter-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0;
}

.newsletter-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.newsletter-checkbox label {
    font-size: 14px;
    color: var(--bg-white);
    cursor: pointer;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background-color: var(--bg-navy);
    padding: 25px 0 30px;
    width: 100%;
}

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

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

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-heading {
    font-family: 'IBM Plex Mono';
    font-size: 14px;
    font-weight: 400;
    color: var(--bg-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    font-family: 'IBM Plex Mono';
    font-size: 13px;
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.footer-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.sustainability-text {
    font-family: 'IBM Plex Mono';
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.location-text {
    font-family: 'IBM Plex Mono';
    font-size: 12px;
    color: var(--accent-pink);
    font-weight: 400;
    margin-bottom: 10px;
}

.copyright-text {
    font-family: 'IBM Plex Mono';
    color: var(--text-light);
    font-size: 12px;
    margin: 0;
}

.footer-language {
    display: flex;
    align-items: center;
    gap: 10px;
}

.swiss-flag {
    width: 20px;
    height: 20px;
    display: inline-block;
}

.language-text {
    font-family: 'IBM Plex Mono';
    font-size: 12px;
    color: var(--text-light);
}

/* ============================================
   LEGAL PAGES STYLING
   ============================================ */

.legal-section {
    background-color: var(--bg-white);
    padding: 150px 0 100px;
    min-height: 100vh;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 30px;
}

.legal-heading {
    font-family: 'IBM Plex Mono';
    font-size: 48px;
    color: var(--accent-pink);
    margin-bottom: 10px;
    font-weight: 400;
}

.legal-date {
    font-family: 'IBM Plex Mono';
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.legal-content {
    font-family: 'IBM Plex Mono';
    color: var(--text-dark);
    line-height: 1.8;
}

.legal-content h2 {
    font-family: 'IBM Plex Mono';
    font-size: 24px;
    color: var(--bg-navy);
    margin-top: 40px;
    margin-bottom: 15px;
    font-weight: 400;
}

.legal-content h3 {
    font-family: 'IBM Plex Mono';
    font-size: 18px;
    color: var(--bg-navy);
    margin-top: 25px;
    margin-bottom: 10px;
    font-weight: 400;
}

.legal-content p {
    font-size: 16px;
    margin-bottom: 15px;
    color: var(--text-gray);
}

.legal-content ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.legal-content li {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--text-gray);
    line-height: 1.6;
}

.legal-content a {
    color: var(--accent-pink);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-content a:hover {
    color: var(--bg-navy);
    text-decoration: underline;
}

.legal-content strong {
    color: var(--bg-navy);
    font-weight: 400;
}

.legal-intro {
    font-family: 'IBM Plex Mono';
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(2, 21, 40, 0.1);
}

.legal-intro p {
    font-size: 16px;
    margin-bottom: 15px;
    color: var(--text-gray);
}

.legal-intro strong {
    color: var(--bg-navy);
    font-weight: 400;
}

/* Accordion Styles */
.legal-accordion {
    margin-top: 30px;
}

.accordion-item {
    border-bottom: 1px solid rgba(2, 21, 40, 0.1);
    margin-bottom: 0;
}

.accordion-header {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 0;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'IBM Plex Mono';
    font-size: 16px;
    color: var(--bg-navy);
    transition: color 0.3s ease;
}

.accordion-header:hover {
    color: var(--accent-pink);
}

.accordion-icon {
    font-size: 12px;
    color: var(--accent-pink);
    transition: transform 0.3s ease;
    display: inline-block;
    min-width: 20px;
}

.accordion-title {
    flex: 1;
    font-weight: 400;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding-bottom 0.3s ease;
    padding: 0 0 0 35px;
}

.accordion-item.active .accordion-content {
    padding-bottom: 20px;
}

.accordion-content p {
    font-size: 16px;
    margin-bottom: 15px;
    color: var(--text-gray);
    line-height: 1.8;
}

.accordion-content ul {
    margin-left: 20px;
    margin-bottom: 20px;
    margin-top: 10px;
}

.accordion-content li {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--text-gray);
    line-height: 1.6;
}

.accordion-content a {
    color: var(--accent-pink);
    text-decoration: none;
    transition: color 0.3s ease;
}

.accordion-content a:hover {
    color: var(--bg-navy);
    text-decoration: underline;
}

.accordion-content strong {
    color: var(--bg-navy);
    font-weight: 400;
}

@media (max-width: 640px) {
    .legal-section {
        padding: 120px 0 80px;
    }

    .legal-heading {
        font-size: 36px;
    }

    .accordion-header {
        font-size: 14px;
        padding: 15px 0;
    }

    .accordion-content {
        padding-left: 30px;
    }

    .accordion-content p,
    .accordion-content li {
        font-size: 14px;
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 968px) {
    .top-nav {
        height: 70px;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 70%;
        height: calc(100vh - 70px);
        background-color: rgba(2, 21, 40, 0.85);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 30px;
        gap: 25px;
        display: flex;
        transition: right 0.3s ease-in-out;
        overflow-y: auto;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    }

    .nav-links.mobile-open {
        right: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

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

    .hero-headline {
        font-size: 48px;
    }

    .hero-subtext {
        font-size: 16px;
    }

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

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

    .story-section {
        display: flex;
        flex-direction: column;
        position: relative;
    }
    
    .story-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 15px;
        position: relative;
        z-index: 2;
        order: 1;
    }
    
    .story-text {
        position: relative;
        z-index: 2;
    }
    
    .story-map {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 130%;
        max-width: 130%;
        opacity: 0.15;
        z-index: 1;
    }
    
    .story-ski {
        width: 100%;
        min-width: auto;
        background: transparent;
        padding: 0;
        margin-top: 40px;
        order: 2;
    }
    
    .ski-visual {
        width: 100%;
        max-width: 100%;
        height: auto;
        object-fit: contain;
    }

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

    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .newsletter-input-group {
        flex-direction: column;
    }

    .btn-newsletter {
        width: 100%;
    }

}

@media (max-width: 640px) {
    .footer-content {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px 10px;
        grid-template-areas:
            "navigation social legal"
            "navigation contact legal";
    }
    
    .footer-section:nth-child(1) {
        grid-area: navigation;
    }
    
    .footer-section:nth-child(2) {
        grid-area: social;
    }
    
    .footer-section:nth-child(3) {
        grid-area: legal;
    }
    
    .footer-section:nth-child(4) {
        grid-area: contact;
    }

    .footer {
        padding: 40px 0 20px;
    }

    .footer-bottom {
        padding: 20px 0;
    }

    .footer-bottom-row {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    .hero {
        background-position: center 40% !important;
        background-attachment: scroll !important;
    }
    
    .hero-headline {
        font-size: 36px;
    }

    .hero-content {
        margin-top: 100px;
    }
    
    .webshop-hero {
        min-height: 220px !important;
        padding-top: 90px !important;
    }

    .features-heading,
    .instagram-heading {
        font-size: 36px;
        margin-bottom: 12px;
    }
    
    .instagram-subtitle {
        font-size: 13px;
        margin-bottom: 30px;
    }
    
    .contact-heading {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .contact-info {
        font-size: 12px;
        margin-bottom: 25px;
    }
    
    .contact-info p {
        margin-bottom: 10px;
    }
    
    .contact-form-intro {
        font-size: 12px;
        margin-bottom: 25px;
    }
    
    .form-group label {
        font-size: 11px;
        margin-bottom: 6px;
    }
    
    .form-group input,
    .form-group textarea {
        font-size: 13px;
        padding: 10px;
    }
    
    .form-group textarea {
        min-height: 90px;
    }
    
    .btn-submit {
        font-size: 11px;
        padding: 10px 24px;
        min-height: 40px;
    }
    
    .features-container {
        padding: 0;
    }
    
    .features-heading {
        padding: 0 15px;
        margin-bottom: 20px;
    }
    
    .features-intro {
        padding: 0 15px;
        margin-bottom: 30px;
    }
    
    .features-grid {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 20px;
        padding: 0 15px 20px 15px;
        grid-template-columns: none;
        margin-top: 0;
    }
    
    .feature-block {
        flex: 0 0 280px;
        scroll-snap-align: start;
        padding: 20px;
        text-align: center;
    }
    
    .feature-block:last-child {
        margin-right: 15px;
    }

    .contact-split {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-image {
        display: none;
    }
    
    .contact-logo {
        height: 150px;
        margin-bottom: 15px;
    }

    .instagram-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 10px;
    }

    /* Product Page New Features - Mobile */
    .sustainability-section {
        padding: 60px 0;
    }
    
    .sustainability-container {
        padding: 0;
    }
    
    .sustainability-heading {
        padding: 0 15px;
        margin-bottom: 30px;
    }
    
    .sustainability-content {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 20px;
        padding: 0 15px 20px 15px;
        grid-template-columns: none;
    }
    
    .sustainability-item {
        flex: 0 0 280px;
        scroll-snap-align: start;
        background-color: white;
        padding: 30px 20px;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    .sustainability-item:last-child {
        margin-right: 15px;
    }

    .comparison-selector {
        grid-template-columns: 1fr;
    }

    .comparison-table-wrapper {
        overflow-x: scroll;
    }

    .comparison-table {
        min-width: 600px;
    }

    .comparison-actions {
        flex-direction: column;
    }

    .quiz-option {
        font-size: 14px;
        padding: 15px 20px;
    }

    .product-title {
        font-size: 36px;
    }

    /* Mailing List Section */
    .mailing-section {
        padding: 85px 0 20px 0 !important;
        background-position: center -25px !important;
        background-size: contain !important;
    }
    
    .mailing-heading {
        font-size: 24px !important;
        margin-bottom: 30px !important;
        margin-top: 0 !important;
    }

}

/* ============================================
   WEBSHOP SECTION
   ============================================ */

.webshop-hero {
    position: relative;
    width: 100%;
    min-height: 300px;
    background-image: url('images/New_Hero_peak2002.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 120px;
    margin-top: 70px;
}

.webshop-hero-content {
    text-align: center;
    color: var(--bg-white);
    max-width: 900px;
    padding: 0 30px;
}

.webshop-hero-title {
    font-family: 'IBM Plex Mono';
    font-size: 64px;
    font-weight: 400;
    color: var(--bg-white);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

.webshop-section {
    background-color: var(--bg-white);
    padding: 80px 0 100px;
}

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

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

.product-card {
    background-color: var(--bg-white);
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.product-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 150%; /* Taller aspect ratio for full ski display */
    background-color: #f5f5f5;
    overflow: hidden;
}

.product-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.product-favorite {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.product-favorite:hover {
    background-color: var(--bg-white);
    transform: scale(1.1);
}

.product-favorite svg {
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.product-favorite:hover svg,
.product-favorite.active svg {
    color: var(--accent-pink);
    fill: var(--accent-pink);
}

.product-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-name {
    font-family: 'IBM Plex Mono';
    font-size: 20px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-model {
    font-family: 'IBM Plex Mono';
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 15px;
}

.product-price {
    font-family: 'IBM Plex Mono';
    font-size: 18px;
    font-weight: 400;
    color: var(--text-dark);
    margin-top: auto;
}

.btn-coming-soon {
    font-family: 'IBM Plex Mono';
    font-size: 16px;
    font-weight: 400;
    color: var(--bg-white);
    background-color: var(--bg-navy);
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 15px;
    width: 100%;
}

.btn-coming-soon:hover {
    background-color: var(--accent-pink);
    transform: translateY(-2px);
}

.product-checkout-text {
    font-family: 'IBM Plex Mono';
    font-size: 12px;
    color: var(--text-gray);
    margin-top: 10px;
    text-align: center;
}

/* Responsive Styles for Webshop */
@media (max-width: 1024px) {
    .webshop-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .webshop-hero {
        min-height: 250px;
        padding-top: 100px;
    }

    .webshop-hero-title {
        font-size: 48px;
    }

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

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

/* ============================================
   PRODUCT CARD LINKS
   ============================================ */

.product-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    height: 100%;
}

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

/* ============================================
   PRODUCT DETAIL PAGES
   ============================================ */

.product-detail-section {
    background-color: var(--bg-white);
    padding: 120px 0 100px;
    min-height: 100vh;
}

.product-detail-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.product-breadcrumb {
    font-family: 'IBM Plex Mono';
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 30px;
    text-transform: lowercase;
}

.product-breadcrumb a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.product-breadcrumb span {
    color: var(--text-dark);
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.product-image-section {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.product-main-image {
    width: 100%;
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
}

.product-slideshow {
    width: 100%;
    height: 100%;
    position: relative;
}

.product-slideshow .slide {
    display: none;
    width: 100%;
    height: 100%;
}

.product-slideshow .slide.active {
    display: block;
}

.product-slideshow .slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.slideshow-prev,
.slideshow-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    font-family: 'IBM Plex Mono';
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.slideshow-prev:hover,
.slideshow-next:hover {
    background-color: var(--bg-white);
    color: var(--accent-pink);
}

.slideshow-prev {
    left: 15px;
}

.slideshow-next {
    right: 15px;
}

.slideshow-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

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

.slideshow-dots .dot.active {
    background-color: var(--bg-white);
}

.slideshow-dots .dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

.product-info-section {
    display: flex;
    flex-direction: column;
}

.product-detail-title {
    font-family: 'IBM Plex Mono';
    font-size: 48px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-model-code {
    font-family: 'IBM Plex Mono';
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.product-price {
    font-family: 'IBM Plex Mono';
    font-size: 32px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.product-description-block {
    margin-bottom: 40px;
}

.product-description-block p {
    font-family: 'IBM Plex Mono';
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
}

.product-specs {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
    padding: 20px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    font-family: 'IBM Plex Mono';
    font-size: 14px;
}

.spec-label {
    color: var(--text-gray);
}

.spec-value {
    color: var(--text-dark);
    font-weight: 500;
}

.size-selection {
    margin-bottom: 30px;
}

.size-label {
    display: block;
    font-family: 'IBM Plex Mono';
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.size-options {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.size-btn {
    font-family: 'IBM Plex Mono';
    font-size: 14px;
    padding: 10px 20px;
    background-color: var(--bg-white);
    border: 1px solid #e0e0e0;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.size-btn:hover {
    border-color: var(--accent-pink);
    color: var(--accent-pink);
}

.size-btn.selected {
    background-color: var(--text-dark);
    color: var(--bg-white);
    border-color: var(--text-dark);
}

.size-guide-link {
    font-family: 'IBM Plex Mono';
    font-size: 12px;
    color: var(--text-gray);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.size-guide-link:hover {
    color: var(--accent-pink);
}

.btn-add-to-cart {
    font-family: 'IBM Plex Mono';
    font-size: 14px;
    font-weight: 400;
    padding: 18px 40px;
    background-color: var(--text-dark);
    color: var(--bg-white);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-add-to-cart:hover {
    background-color: var(--accent-pink);
    transform: translateY(-2px);
}

/* Product Tags */
.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.product-tag {
    font-family: 'IBM Plex Mono';
    font-size: 12px;
    padding: 8px 16px;
    background-color: transparent;
    color: var(--text-dark);
    border: 1px solid var(--text-dark);
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.product-tag:hover {
    background-color: var(--text-dark);
    color: var(--bg-white);
}

/* Terrain Recommendations */
.terrain-recommendations {
    margin: 30px 0;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 4px;
}

.terrain-heading {
    font-family: 'IBM Plex Mono';
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.terrain-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.terrain-list li {
    font-family: 'IBM Plex Mono';
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 8px;
    padding-left: 0;
}

/* Mounting Compatibility */
.mounting-compatibility {
    margin: 30px 0;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 4px;
}

.mounting-heading {
    font-family: 'IBM Plex Mono';
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mounting-text {
    font-family: 'IBM Plex Mono';
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.6;
}

.btn-ski-finder {
    font-family: 'IBM Plex Mono';
    font-size: 14px;
    font-weight: 400;
    padding: 18px 40px;
    background-color: transparent;
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 15px;
    text-decoration: none;
    display: block;
    text-align: center;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-ski-finder:hover {
    background-color: var(--text-dark);
    color: var(--bg-white);
    transform: translateY(-2px);
}

/* Size Guide Modal */
.size-guide-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.size-guide-modal-content {
    background-color: var(--bg-white);
    margin: 5% auto;
    padding: 40px;
    border: none;
    width: 90%;
    max-width: 800px;
    position: relative;
    border-radius: 4px;
    max-height: 90vh;
    overflow-y: auto;
}

.ski-finder-modal-content {
    max-width: 900px;
}

.compare-modal-content {
    max-width: 1200px;
}

.size-guide-close {
    color: var(--text-dark);
    float: right;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 20px;
}

.size-guide-close:hover {
    color: var(--accent-pink);
}

.size-guide-modal-content h2 {
    font-family: 'IBM Plex Mono';
    font-size: 32px;
    color: var(--text-dark);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.size-chart-table {
    margin: 30px 0;
    overflow-x: auto;
}

.size-chart-table table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'IBM Plex Mono';
}

.size-chart-table th,
.size-chart-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.size-chart-table th {
    background-color: var(--bg-navy);
    color: var(--bg-white);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
}

.size-chart-table td {
    font-size: 14px;
    color: var(--text-dark);
}

.size-chart-table tr:hover {
    background-color: #f9f9f9;
}

.size-guide-tips {
    margin-top: 30px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 4px;
}

.size-guide-tips h3 {
    font-family: 'IBM Plex Mono';
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.size-guide-tips ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.size-guide-tips li {
    font-family: 'IBM Plex Mono';
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.size-guide-tips li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-pink);
}

/* Webshop CTA Buttons */
.webshop-cta-section {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 60px;
    flex-wrap: wrap;
}

.btn-webshop-cta {
    font-family: 'IBM Plex Mono';
    font-size: 16px;
    font-weight: 400;
    padding: 18px 50px;
    background-color: var(--accent-pink);
    color: var(--bg-white);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border-radius: 0;
}

.btn-webshop-cta:hover {
    background-color: var(--text-dark);
    transform: translateY(-2px);
}

.btn-webshop-cta-secondary {
    font-family: 'IBM Plex Mono';
    font-size: 16px;
    font-weight: 400;
    padding: 18px 50px;
    background-color: transparent;
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border-radius: 0;
}

.btn-webshop-cta-secondary:hover {
    background-color: var(--text-dark);
    color: var(--bg-white);
    transform: translateY(-2px);
}

/* Sustainability Section */
.sustainability-section {
    margin: 60px 0 0 0;
    padding: 80px 0;
    background-color: #f9f9f9;
}

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

.sustainability-heading {
    font-family: 'IBM Plex Mono';
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 40px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.sustainability-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: block;
}

.sustainability-item h3 {
    font-family: 'IBM Plex Mono';
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sustainability-item p {
    font-family: 'IBM Plex Mono';
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.6;
}

/* FAQ Section */
.faq-container-section {
    background-color: var(--bg-white);
    padding: 80px 0;
    width: 100%;
}

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

.faq-heading {
    font-family: 'IBM Plex Mono';
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 40px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 0;
}

.faq-question {
    width: 100%;
    padding: 25px 0;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'IBM Plex Mono';
    font-size: 16px;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--accent-pink);
}

.faq-toggle {
    font-size: 24px;
    font-weight: bold;
    color: var(--text-dark);
    transition: transform 0.3s ease, color 0.3s ease;
}

.faq-question.active .faq-toggle {
    transform: rotate(45deg);
    color: var(--accent-pink);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer.active {
    max-height: 500px;
}

.faq-answer p {
    font-family: 'IBM Plex Mono';
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.6;
    padding: 0 0 25px 0;
}

/* Comparison Section */
.comparison-section {
    margin: 60px 0;
    text-align: center;
}

.btn-compare {
    font-family: 'IBM Plex Mono';
    font-size: 16px;
    font-weight: 400;
    padding: 18px 50px;
    background-color: var(--accent-pink);
    color: var(--bg-white);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-compare:hover {
    background-color: var(--text-dark);
    transform: translateY(-2px);
}

/* ============================================
   COMPARISON TOOL PAGE
   ============================================ */

.comparison-page-section {
    background-color: var(--bg-white);
    padding: 120px 0 100px;
    min-height: 100vh;
}

.comparison-page-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.comparison-page-heading {
    font-family: 'IBM Plex Mono';
    font-size: 48px;
    color: var(--text-dark);
    margin-bottom: 15px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.comparison-page-subtitle {
    font-family: 'IBM Plex Mono';
    font-size: 16px;
    color: var(--text-gray);
    text-align: center;
    margin-bottom: 50px;
}

.comparison-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.comparison-select-item {
    display: flex;
    flex-direction: column;
}

.comparison-select-item label {
    font-family: 'IBM Plex Mono';
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.comparison-select {
    font-family: 'IBM Plex Mono';
    font-size: 14px;
    padding: 15px;
    border: 2px solid #e0e0e0;
    background-color: var(--bg-white);
    color: var(--text-dark);
    border-radius: 4px;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.comparison-select:hover,
.comparison-select:focus {
    border-color: var(--accent-pink);
    outline: none;
}

.comparison-results {
    margin-top: 40px;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-bottom: 40px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'IBM Plex Mono';
}

.comparison-table th {
    background-color: var(--bg-navy);
    color: var(--bg-white);
    padding: 20px;
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
}

.comparison-table td {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
    font-size: 14px;
    color: var(--text-dark);
}

.comparison-table .spec-label {
    background-color: #f9f9f9;
    font-weight: 600;
    text-align: left;
}

.comparison-image {
    width: 120px;
    height: auto;
    margin-bottom: 15px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.comparison-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.comparison-model {
    font-size: 12px;
    color: var(--text-gray);
}

.comparison-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-view-product {
    font-family: 'IBM Plex Mono';
    font-size: 14px;
    font-weight: 400;
    padding: 15px 30px;
    background-color: var(--accent-pink);
    color: var(--bg-white);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-view-product:hover {
    background-color: var(--text-dark);
    transform: translateY(-2px);
}

/* ============================================
   SKI FINDER QUIZ
   ============================================ */

.ski-finder-section {
    background-color: var(--bg-white);
    padding: 120px 0 100px;
    min-height: 100vh;
}

.ski-finder-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 30px;
}

.ski-finder-heading {
    font-family: 'IBM Plex Mono';
    font-size: 48px;
    color: var(--text-dark);
    margin-bottom: 15px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ski-finder-subtitle {
    font-family: 'IBM Plex Mono';
    font-size: 16px;
    color: var(--text-gray);
    text-align: center;
    margin-bottom: 50px;
}

.quiz-container {
    margin-bottom: 40px;
}

.quiz-step {
    display: none;
}

.quiz-step.active {
    display: block;
}

.quiz-question {
    font-family: 'IBM Plex Mono';
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 40px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.quiz-option {
    font-family: 'IBM Plex Mono';
    font-size: 16px;
    padding: 20px 30px;
    background-color: var(--bg-white);
    color: var(--text-dark);
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.quiz-option:hover {
    border-color: var(--accent-pink);
    background-color: #f9f9f9;
    transform: translateX(5px);
}

.quiz-progress {
    margin-top: 40px;
}

.quiz-progress-bar {
    width: 100%;
    height: 4px;
    background-color: #e0e0e0;
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 15px;
}

.quiz-progress-fill {
    height: 100%;
    background-color: var(--accent-pink);
    transition: width 0.3s ease;
    width: 25%;
}

.quiz-progress-text {
    font-family: 'IBM Plex Mono';
    font-size: 14px;
    color: var(--text-gray);
    text-align: center;
    display: block;
}

.quiz-results-heading {
    font-family: 'IBM Plex Mono';
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 40px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.quiz-results-content {
    margin-bottom: 40px;
}

.quiz-result-card {
    text-align: center;
    padding: 40px;
    background-color: #f9f9f9;
    border-radius: 4px;
}

.quiz-result-image {
    width: 200px;
    height: auto;
    margin: 0 auto 30px;
    display: block;
}

.quiz-result-name {
    font-family: 'IBM Plex Mono';
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.quiz-result-description {
    font-family: 'IBM Plex Mono';
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 30px;
}

.quiz-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-view-all {
    font-family: 'IBM Plex Mono';
    font-size: 14px;
    font-weight: 400;
    padding: 15px 30px;
    background-color: var(--accent-pink);
    color: var(--bg-white);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-view-all:hover {
    background-color: var(--text-dark);
    transform: translateY(-2px);
}

.btn-retake-quiz {
    font-family: 'IBM Plex Mono';
    font-size: 14px;
    font-weight: 400;
    padding: 15px 30px;
    background-color: transparent;
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-retake-quiz:hover {
    background-color: var(--text-dark);
    color: var(--bg-white);
    transform: translateY(-2px);
}

.btn-contact-expert {
    font-family: 'IBM Plex Mono';
    font-size: 14px;
    font-weight: 400;
    padding: 18px 40px;
    background-color: var(--accent-pink);
    color: var(--bg-white);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    width: 100%;
    display: block;
    text-align: center;
    text-decoration: none;
}

.btn-contact-expert:hover {
    background-color: var(--text-dark);
    transform: translateY(-2px);
}

.specifications-section {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid #e0e0e0;
}

.specifications-heading {
    font-family: 'IBM Plex Mono';
    font-size: 32px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.spec-detail-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.spec-detail-label {
    font-family: 'IBM Plex Mono';
    font-size: 12px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.spec-detail-value {
    font-family: 'IBM Plex Mono';
    font-size: 18px;
    color: var(--text-dark);
    font-weight: 500;
}

.spec-details-text {
    margin-top: 40px;
}

.spec-details-text h3 {
    font-family: 'IBM Plex Mono';
    font-size: 20px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.spec-details-text ul {
    list-style: none;
    padding: 0;
}

.spec-details-text li {
    font-family: 'IBM Plex Mono';
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
}

.spec-details-text li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-pink);
}

.spec-details-text strong {
    font-weight: 500;
}

/* Product Divider Bar */
.product-divider {
    width: 100%;
    margin: 80px 0;
    height: 200px;
    overflow: hidden;
    background-color: #f5f5f5;
}

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

/* Specifications Layout */
.specifications-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.specifications-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.spec-labels-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 10px;
}

.spec-label-small {
    font-family: 'IBM Plex Mono';
    font-size: 12px;
    color: var(--text-gray);
    text-transform: lowercase;
}

.spec-values-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.spec-value-big {
    font-family: 'IBM Plex Mono';
    font-size: 32px;
    color: var(--text-dark);
    font-weight: 400;
}

.ski-profile-drawing {
    width: 100%;
    max-width: 500px;
    margin: 40px 0;
}

.ski-profile-drawing svg {
    width: 100%;
    height: auto;
}

.spec-details-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 40px;
}

.spec-detail-item-text {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 30px;
    align-items: start;
    padding: 20px 0;
}

.spec-detail-divider {
    width: 100%;
    height: 1px;
    background-color: #e0e0e0;
    margin: 0;
}

.spec-detail-title {
    font-family: 'IBM Plex Mono';
    font-size: 16px;
    font-weight: 400;
    color: var(--text-dark);
    text-transform: lowercase;
    margin: 0;
}

.spec-detail-text {
    font-family: 'IBM Plex Mono';
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-dark);
    margin: 0;
}

.specifications-right {
    display: flex;
    flex-direction: column;
}

.overview-image-single {
    width: 100%;
    height: 100%;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overview-image-single img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Gallery Grid */
.product-gallery-section {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid #e0e0e0;
}

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

.gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
    background-color: #f5f5f5;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.gallery-item.empty {
    background-color: transparent;
}

/* Responsive Styles for Product Detail */
@media (max-width: 1024px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .product-image-section {
        position: relative;
        top: 0;
    }

    .specifications-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

@media (max-width: 768px) {
    .product-detail-section {
        padding: 100px 0 60px;
    }

    .product-detail-title {
        font-size: 36px;
    }

    .specifications-layout {
        grid-template-columns: 1fr;
    }

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

    .spec-detail-item-text {
        grid-template-columns: 1fr;
        gap: 10px;
    }

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

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

    .overview-image-single {
        min-height: 400px;
    }

    .size-options {
        flex-direction: column;
    }

    .size-btn {
        width: 100%;
    }

    .product-divider {
        height: 150px;
        margin: 60px 0;
    }
}

/* ============================================
   ENHANCED MOBILE RESPONSIVE DESIGN
   ============================================ */

/* Extra Small Devices (phones, 480px and down) */
@media (max-width: 480px) {
    /* Typography */
    .hero {
        background-position: center 40% !important;
        background-attachment: scroll !important;
    }
    
    .hero-headline {
        font-size: 28px !important;
        line-height: 1.3;
    }
    
    .hero-subtext {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .hero-content {
        margin-top: 80px;
        padding: 0 15px;
    }
    
    .webshop-hero {
        min-height: 200px !important;
        padding-top: 80px !important;
        margin-top: 0 !important;
    }
    
    .brand-logo {
        height: 60px;
    }
    
    /* Buttons - touch-friendly */
    .btn-primary,
    a.btn-primary,
    .btn-shop,
    .btn-contact {
        padding: 12px 30px;
        font-size: 12px;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Product Band */
    .product-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .product-title {
        font-size: 32px;
    }
    
    /* Story Section */
    .story-section {
        padding: 60px 0;
        display: flex;
        flex-direction: column;
        position: relative;
    }
    
    .story-container {
        padding: 0 15px;
        position: relative;
        z-index: 2;
        order: 1;
    }
    
    .story-text {
        position: relative;
        z-index: 2;
    }
    
    .section-heading-pink {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .story-paragraph {
        font-size: 12px;
        line-height: 1.6;
        margin-bottom: 15px;
    }
    
    .story-map {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        max-width: 100%;
        opacity: 0.15;
        z-index: 1;
        order: 1;
    }
    
    .story-ski {
        width: 100%;
        min-width: auto;
        background: transparent;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        margin-top: 40px;
        order: 2;
    }
    
    .ski-visual {
        width: 100%;
        max-width: 100%;
        height: auto;
        object-fit: contain;
    }
    
    /* Features */
    .features-section {
        padding: 60px 0;
    }
    
    .features-container {
        padding: 0;
    }
    
    .features-heading {
        font-size: 28px;
        padding: 0 15px;
        margin-bottom: 15px;
    }
    
    .features-intro {
        font-size: 12px;
        padding: 0 15px;
        margin-bottom: 25px;
        line-height: 1.6;
    }
    
    .features-grid {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 20px;
        padding: 0 15px 20px 15px;
        grid-template-columns: none;
        margin-top: 0;
    }
    
    .feature-block {
        flex: 0 0 280px;
        scroll-snap-align: start;
        padding: 20px;
        text-align: center;
    }
    
    .feature-block:last-child {
        margin-right: 15px;
    }
    
    .feature-label {
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .feature-description {
        font-size: 11px;
        line-height: 1.5;
    }
    
    /* Webshop - 2 column grid for mobile */
    .webshop-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px;
        padding: 0 15px;
    }
    
    .product-card {
        padding: 10px;
    }
    
    .product-card-image {
        margin-bottom: 10px;
    }
    
    .product-name {
        font-size: 14px;
        margin-bottom: 5px;
    }
    
    .product-model {
        font-size: 11px;
        margin-bottom: 8px;
    }
    
    .product-checkout-text {
        font-size: 11px;
    }
    
    .btn-coming-soon {
        padding: 8px 16px;
        font-size: 10px;
    }
    
    .product-favorite {
        width: 32px;
        height: 32px;
        padding: 6px;
    }
    
    .webshop-hero-title {
        font-size: 36px;
    }
    
    .webshop-section {
        padding: 40px 0;
    }
    
    /* Instagram Grid - Keep 3 columns on small phones */
    .instagram-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 8px;
    }
    
    /* Instagram/Social Section - Compact on mobile */
    .instagram-section {
        padding: 40px 0 !important;
    }
    
    .instagram-container {
        padding: 0 15px !important;
    }
    
    .instagram-heading {
        font-size: 28px;
        margin-bottom: 10px !important;
    }
    
    .instagram-subtitle {
        font-size: 12px !important;
        margin-bottom: 20px !important;
        padding: 0 15px;
    }
    
    .instagram-grid {
        gap: 6px !important;
        padding: 0 !important;
    }
    
    /* Contact Form */
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-heading {
        font-size: 32px;
    }
    
    .features-heading {
        font-size: 24px;
        padding: 0 15px;
        margin-bottom: 12px;
    }
    
    .features-intro {
        font-size: 11px;
        padding: 0 15px;
        margin-bottom: 20px;
        line-height: 1.5;
    }
    
    .features-grid {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 15px;
        padding: 0 15px 15px 15px;
        grid-template-columns: none;
        margin-top: 0;
    }
    
    .feature-block {
        flex: 0 0 250px;
        scroll-snap-align: start;
        padding: 15px;
        text-align: center;
    }
    
    .feature-block:last-child {
        margin-right: 15px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
    }
    
    .feature-label {
        font-size: 13px;
        margin-bottom: 8px;
    }
    
    .feature-description {
        font-size: 10px;
        line-height: 1.4;
    }
    
    .contact-logo {
        display: block !important;
        height: 150px;
        margin-bottom: 15px;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .contact-image {
        display: none;
    }
    
    .contact-split {
        grid-template-columns: 1fr;
    }
    
    .contact-heading {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .contact-info {
        font-size: 11px;
        margin-bottom: 20px;
    }
    
    .contact-info p {
        margin-bottom: 8px;
    }
    
    .contact-form-intro {
        font-size: 11px;
        margin-bottom: 20px;
    }
    
    .form-group label {
        font-size: 10px;
        margin-bottom: 6px;
    }
    
    .form-group input,
    .form-group textarea {
        font-size: 12px;
        padding: 10px;
    }
    
    .form-group textarea {
        min-height: 80px;
    }
    
    .btn-submit {
        font-size: 11px;
        padding: 10px 24px;
        min-height: 40px;
    }
    
    /* Mailing List Section */
    .mailing-section {
        padding: 60px 0 20px 0;
        background-position: center -50px !important;
        background-size: contain !important;
    }
    
    .mailing-heading {
        font-size: 24px;
        margin-bottom: 30px;
        margin-top: 0;
    }
    
    .newsletter-input-group {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-newsletter {
        width: 100%;
        padding: 12px 20px;
    }
    
    /* Footer - 3 columns on mobile */
    .footer-content {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px 8px;
        grid-template-areas:
            "navigation social legal"
            "navigation contact legal";
    }
    
    .footer-section:nth-child(1) {
        grid-area: navigation;
    }
    
    .footer-section:nth-child(2) {
        grid-area: social;
    }
    
    .footer-section:nth-child(3) {
        grid-area: legal;
    }
    
    .footer-section:nth-child(4) {
        grid-area: contact;
    }
    
    .footer-section {
        margin-bottom: 5px;
    }
    
    .footer-heading {
        font-size: 10px;
        margin-bottom: 10px;
    }
    
    .footer-links {
        gap: 6px;
    }
    
    .footer-links li {
        margin-bottom: 6px;
    }
    
    .footer-links a,
    .footer-links li {
        font-size: 9px;
        line-height: 1.4;
    }
    
    /* Product Detail Pages */
    .product-detail-section {
        padding: 100px 0 60px;
    }
    
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .product-image-section {
        position: relative;
        top: 0;
    }
    
    .product-title {
        font-size: 28px !important;
    }
    
    .product-subtitle {
        font-size: 12px;
    }
    
    .product-price {
        font-size: 20px;
    }
    
    .size-selector-heading {
        font-size: 12px;
    }
    
    .size-btn {
        padding: 10px;
        font-size: 13px;
        min-height: 44px;
    }
    
    .btn-add-to-cart,
    .btn-contact-expert,
    .btn-ski-finder {
        font-size: 12px;
        padding: 12px 24px;
        min-height: 44px;
    }
    
    /* Specifications */
    .specifications-heading {
        font-size: 28px;
    }
    
    .spec-label-small {
        font-size: 10px;
    }
    
    .spec-value-big {
        font-size: 20px;
    }
    
    /* Navigation spacing */
    .nav-container {
        padding: 0 15px;
    }
    
    .nav-links {
        padding: 15px 20px;
        gap: 15px;
    }
    
    .nav-links a {
        font-size: 11px;
    }
    
    /* Sustainability horizontal scroll for tiny phones */
    .sustainability-section {
        padding: 50px 0;
    }
    
    .sustainability-content {
        display: flex;
        overflow-x: auto;
        gap: 15px;
        padding: 0 15px 15px 15px;
    }
    
    .sustainability-item {
        flex: 0 0 250px;
        scroll-snap-align: start;
        background-color: white;
        padding: 25px 15px;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }
    
    .sustainability-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    .sustainability-item h3 {
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .sustainability-item p {
        font-size: 12px;
        line-height: 1.5;
    }
    
    /* FAQ Section */
    .faq-container-section {
        padding: 50px 0;
    }
    
    .faq-section {
        padding: 0 15px;
    }
    
    .faq-heading {
        font-size: 24px;
        margin-bottom: 25px;
    }
    
    .faq-question {
        padding: 15px 0;
        font-size: 13px;
    }
    
    .faq-toggle {
        font-size: 20px;
    }
    
    .faq-answer p {
        font-size: 12px;
        line-height: 1.5;
        padding: 0 0 15px 0;
    }
}

/* Small Devices (phones, 481px to 640px) */
@media (min-width: 481px) and (max-width: 640px) {
    .webshop-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px;
    }
    
    .hero-headline {
        font-size: 32px;
    }
    
    .brand-logo {
        height: 70px;
    }
}

/* Tablets Portrait (641px to 768px) */
@media (min-width: 641px) and (max-width: 768px) {
    .webshop-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .hero-headline {
        font-size: 42px;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .brand-logo {
        height: 80px;
    }
}

/* Tablets Landscape (769px to 968px) */
@media (min-width: 769px) and (max-width: 968px) {
    .webshop-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .brand-logo {
        height: 90px;
    }
}

/* Desktop - Ensure Instagram subtitle is visible */
@media (min-width: 969px) {
    .instagram-subtitle {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        font-size: 18px !important;
        color: #ffffff !important;
        margin-bottom: 40px !important;
    }
}

/* General Mobile Improvements (all screens under 968px) */
@media (max-width: 968px) {
    /* Ensure all images are responsive */
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Better spacing for mobile */
    section {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* Touch-friendly elements */
    button,
    a.btn-primary,
    a.btn-shop,
    .product-card {
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
    }
    
    /* Prevent horizontal scroll */
    body {
        overflow-x: hidden;
    }
    
    /* Better product card hover for touch */
    .product-card:active {
        transform: scale(0.98);
    }
    
    /* Sticky navigation improvements */
    .top-nav {
        height: 60px;
    }
    
    .brand-logo {
        transition: height 0.3s ease;
    }
}

