/* style.css - Luxury Stark Black & White (Monochrome) & Champagne Gold Theme for Meistersound */

/* Global Typography & Core Reset Class */
.ms-reset {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.ms-page {
    background-color: #ffffff; /* Stark Pure White Canvas */
    color: #000000; /* High-Contrast Solid Black Text */
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Luxury Typography Classes */
.ms-font-serif {
    font-family: 'Cormorant Garamond', Georgia, serif;
}

.ms-font-sans {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.ms-heading-1 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #000000;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.ms-heading-2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    line-height: 1.2;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.ms-heading-3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.45rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.85rem;
    line-height: 1.4;
    letter-spacing: -0.01em;
}

.ms-text {
    font-size: 1.05rem;
    color: #333333; /* Clean Graphite Grey for readable body text */
    margin-bottom: 1.25rem;
    line-height: 1.85;
}

.ms-text-strong {
    font-weight: 700;
    color: #000000;
}

.ms-text-small {
    font-size: 0.9rem;
    color: #666666;
}

.ms-link {
    color: #000000;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 2px solid #000000;
}

.ms-link:hover {
    color: #c5a059; /* Luxury Champagne Gold */
    border-bottom-color: #c5a059;
}

.ms-link-underline {
    text-decoration: underline;
}

/* Layout Classes */
.ms-container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.ms-container-narrow {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.ms-section {
    padding-top: 6.5rem;
    padding-bottom: 6.5rem;
    border-bottom: 1px solid #000000; /* Editorial Hairline division */
}

/* Asymmetrical High-Contrast Editorial Section */
.ms-section-alt {
    background-color: #000000; /* Bold Stark Pitch Black alternate sections */
    color: #ffffff;
    border-top: 2px solid #000000;
    border-bottom: 2px solid #000000;
}

.ms-section-alt .ms-heading-1,
.ms-section-alt .ms-heading-2,
.ms-section-alt .ms-heading-3,
.ms-section-alt .ms-text-strong {
    color: #ffffff;
}

.ms-section-alt .ms-text {
    color: #cccccc;
}

.ms-flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.ms-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3.5rem;
}

/* Interactive Elements & Buttons */
.ms-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.15rem 2.25rem;
    font-size: 1.05rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    border-radius: 0px; /* Stark modern sharp editorial design */
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 2px solid #000000;
    box-sizing: border-box;
    white-space: normal;
    line-height: 1.3;
}

.ms-btn-primary {
    background: linear-gradient(135deg, #c5a059 0%, #a4813f 100%); /* Premium Gold CTA */
    color: #ffffff;
    box-shadow: 6px 6px 0px #000000; /* Asymmetric crisp black solid shadow */
    border: 2px solid #000000;
}

.ms-btn-primary:hover {
    background: #000000; /* Dynamic morph to pure black */
    color: #ffffff;
    transform: translate(-3px, -3px);
    box-shadow: 9px 9px 0px #c5a059; /* Gold offset shadow on hover */
    border-color: #000000;
    text-decoration: none;
}

.ms-btn-full {
    width: 100%;
}

.ms-btn-large {
    font-size: 1.25rem;
    padding: 1.3rem 2.75rem;
}

.ms-btn-large-cta {
    font-size: 1.25rem;
    padding: 1.3rem 3rem;
}

.ms-img-fluid {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 0px; /* Stark sharp editorial borders */
    border: 2px solid #000000; /* Clean picture outline */
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.ms-img-zoom:hover {
    transform: scale(1.02);
}

/* Badges & Accents */
.ms-badge {
    display: inline-block;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 3px;
    color: #000000;
    background: #ffffff;
    border: 2px solid #000000;
    padding: 0.5rem 1.25rem;
    margin-bottom: 1.5rem;
    box-shadow: 4px 4px 0px #c5a059; /* Gold accent offset shadow */
}

/* Header & Disclosure Notice */
.ms-header {
    background-color: #ffffff;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 2px solid #000000; /* Crisp thick hairline divider */
}

.ms-logo {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.15rem;
    font-weight: 800;
    color: #000000;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
}

.ms-logo:hover {
    color: #c5a059;
}

.ms-logo-highlight {
    color: #c5a059;
}

.ms-disclosure {
    background-color: #000000;
    padding: 0.85rem 0;
    text-align: center;
    border-bottom: 1px solid #000000;
}

.ms-disclosure-text {
    font-size: 0.85rem;
    color: #ffffff;
    margin: 0;
    line-height: 1.4;
    letter-spacing: 0.02em;
}

.ms-hero {
    background: #ffffff;
    padding-top: 7rem;
    padding-bottom: 7rem;
    border-bottom: 2px solid #000000;
}

/* Premium Asymmetrical Cards & Containers */
.ms-card {
    background-color: #ffffff;
    border-radius: 0px; /* Sharp corners for modern designer layout */
    padding: 3.5rem;
    box-shadow: 10px 10px 0px #000000; /* Stark black offset shadow */
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 2px solid #000000;
}

.ms-card:hover {
    transform: translate(-5px, -5px);
    box-shadow: 15px 15px 0px #c5a059; /* Gold offset shadow on hover */
}

/* Lists and Guides */
.ms-list {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.ms-list-item {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 0.95rem;
    color: #333333;
    font-size: 1.05rem;
}

.ms-list-item::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #c5a059;
    font-weight: bold;
    font-size: 1.35rem;
    line-height: 1;
}

.ms-section-alt .ms-list-item {
    color: #cccccc;
}

/* Pros and Cons Panels */
.ms-pros-cons-box {
    background-color: #ffffff;
    border: 2px solid #000000;
    border-radius: 0px;
    padding: 3rem;
    box-shadow: 8px 8px 0px #000000;
}

.ms-pros-title {
    color: #2e7d32;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.85rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    border-bottom: 1px solid #2e7d32;
    padding-bottom: 0.5rem;
}

.ms-cons-title {
    color: #c62828;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.85rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    border-bottom: 1px solid #c62828;
    padding-bottom: 0.5rem;
}

.ms-list-pro {
    list-style-type: none;
    padding-left: 0;
}

.ms-list-item-pro {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.85rem;
    color: #333333;
}

.ms-list-item-pro::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2e7d32;
    font-weight: bold;
    font-size: 1.25rem;
}

.ms-list-con {
    list-style-type: none;
    padding-left: 0;
}

.ms-list-item-con {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.85rem;
    color: #555555;
}

.ms-list-item-con::before {
    content: "–";
    position: absolute;
    left: 0;
    color: #c62828;
    font-weight: bold;
    font-size: 1.25rem;
}

/* Pricing Widgets */
.ms-price-box {
    background: #ffffff;
    border: 2px solid #000000;
    border-radius: 0px;
    padding: 1.85rem 2.5rem;
    display: inline-block;
    box-shadow: 6px 6px 0px #000000;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-align: center;
}

.ms-price-box:hover {
    border-color: #c5a059;
    box-shadow: 9px 9px 0px #c5a059;
}

.ms-price-main {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 0.5rem;
    color: #000000;
}

.ms-price-currency {
    font-size: 1.75rem;
    font-weight: 700;
    color: #000000;
    margin-right: 2px;
}

.ms-price-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.85rem;
    font-weight: 800;
    color: #000000;
    line-height: 1;
    letter-spacing: -0.03em;
}

.ms-price-decimal {
    font-size: 1.75rem;
    font-weight: 700;
    color: #000000;
}

.ms-price-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    margin-bottom: 0.5rem;
}

.ms-price-original {
    font-size: 1.05rem;
    color: #888888;
    text-decoration: line-through;
}

.ms-price-discount {
    background-color: #000000; /* High contrast B&W discount badge */
    color: #c5a059; /* Gold highlighted discount text */
    font-size: 0.9rem;
    font-weight: 800;
    padding: 0.3rem 0.85rem;
    border-radius: 0px;
    border: 1px solid #000000;
}

.ms-price-tax {
    font-size: 0.85rem;
    color: #666666;
    text-align: center;
}

/* Comparison Tables */
.ms-table-wrapper {
    overflow-x: auto;
    margin-bottom: 3rem;
    border-radius: 0px;
    box-shadow: 10px 10px 0px #000000;
    border: 2px solid #000000;
}

.ms-section-alt .ms-table-wrapper {
    box-shadow: 10px 10px 0px #c5a059; /* Gold offset shadow on dark section table */
}

.ms-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #ffffff;
    overflow: hidden;
}

.ms-section-alt .ms-table {
    background-color: #000000;
}

.ms-th, .ms-td {
    padding: 1.65rem 1.35rem;
    text-align: left;
    border-bottom: 1px solid #e5e5e5;
}

.ms-section-alt .ms-td {
    border-bottom: 1px solid #222222;
    color: #dddddd;
}

.ms-th {
    background-color: #fafafa;
    font-weight: 800;
    color: #000000;
    font-size: 1rem;
    border-bottom: 2px solid #000000;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ms-section-alt .ms-th {
    background-color: #111111;
    color: #ffffff;
    border-bottom: 2px solid #c5a059;
}

.ms-td {
    color: #333333;
    font-size: 1.05rem;
}

/* Accordeon FAQs styling */
.ms-faq-accordion {
    margin-top: 3.5rem;
}

.ms-faq-item {
    border-bottom: 2px solid #000000; /* Clean heavy borders */
    padding: 1.75rem 0;
}

.ms-faq-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    text-align: left;
    padding: 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.45rem;
    font-weight: 700;
    color: #000000;
    cursor: pointer;
    transition: color 0.25s ease;
}

.ms-faq-trigger:hover {
    color: #c5a059;
}

.ms-faq-icon-arrow {
    font-size: 1.1rem;
    color: #c5a059;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.ms-faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), padding 0.3s ease;
    padding-top: 0;
}

.ms-faq-content-active {
    max-height: 500px;
    padding-top: 1.25rem;
}

.ms-faq-text {
    font-size: 1.05rem;
    color: #333333;
    line-height: 1.8;
    margin: 0;
}

/* Preloader Overlay */
.ms-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff; /* B&W preloader */
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.ms-preloader.ms-hidden {
    opacity: 0;
    visibility: hidden;
}

.ms-loader {
    border: 3px solid #e5e5e5;
    border-top: 3px solid #c5a059;
    border-bottom: 3px solid #c5a059;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    animation: ms-spin 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    margin-bottom: 1.5rem;
}

.ms-preloader-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.45rem;
    color: #000000;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

@keyframes ms-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Cookie Box Drawer (Stark Black & Gold top outline) */
.ms-cookie-box {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background-color: #000000; /* Solid Black drawer */
    z-index: 1000;
    padding: 2.25rem 0;
    box-shadow: 0 -10px 45px rgba(0, 0, 0, 0.3);
    transition: bottom 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-top: 3px solid #c5a059; /* Heavy gold line indicator */
}

.ms-cookie-box.active {
    bottom: 0;
}

.ms-cookie-text {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.ms-cookie-btn-group {
    display: flex;
    gap: 1.25rem;
    justify-content: flex-end;
}

.ms-cookie-btn {
    padding: 0.85rem 2rem;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 0px; /* Stark modern edges */
    cursor: pointer;
    transition: all 0.25s ease;
    border: 2px solid transparent;
}

.ms-cookie-btn-accept {
    background-color: #c5a059;
    color: #ffffff;
    border-color: #c5a059;
}

.ms-cookie-btn-accept:hover {
    background-color: #ffffff;
    color: #000000;
    border-color: #ffffff;
}

.ms-cookie-btn-decline {
    background-color: transparent;
    border: 2px solid #555555;
    color: #aaaaaa;
}

.ms-cookie-btn-decline:hover {
    border-color: #ffffff;
    color: #ffffff;
}

/* Mobile Hamburger Menu */
.ms-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.6rem;
    z-index: 200;
    position: relative;
}

.ms-hamburger-line {
    display: block;
    width: 28px;
    height: 3px;
    background-color: #000000;
    border-radius: 0px;
    margin: 5px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ms-hamburger.active .ms-hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: #000000;
}

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

.ms-hamburger.active .ms-hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: #000000;
}

.ms-nav-desktop {
    display: flex;
    align-items: center;
    gap: 1.75rem;
}

.ms-nav-desktop .ms-link {
    color: #000000;
    font-weight: 700;
    margin-left: 0;
    border: none;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
}

.ms-nav-desktop .ms-link:hover {
    color: #c5a059;
}

.ms-nav-mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 150;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.ms-nav-mobile-overlay.active {
    display: block;
    opacity: 1;
}

.ms-nav-mobile {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100%;
    background-color: #ffffff;
    z-index: 160;
    padding: 6rem 2.5rem 2.5rem;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
    transition: right 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow-y: auto;
    border-left: 3px solid #000000;
}

.ms-nav-mobile.active {
    right: 0;
}

.ms-nav-mobile-link {
    display: block;
    padding: 1.35rem 0;
    color: #000000;
    text-decoration: none;
    font-size: 1.15rem;
    font-weight: 700;
    border-bottom: 1px solid #e5e5e5;
    transition: all 0.25s ease;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.ms-nav-mobile-link:hover {
    color: #c5a059;
    padding-left: 0.75rem;
}

/* Page body locks during active navigation */
.ms-no-scroll {
    overflow: hidden;
}

/* Article layouts and figures */
.ms-article-body {
    margin-top: 3.5rem;
}

.ms-article-text {
    font-size: 1.15rem;
    line-height: 1.95;
    color: #333333;
    margin-bottom: 2rem;
}

.ms-figure {
    margin: 3rem 0;
    text-align: center;
}

.ms-figcaption {
    font-size: 0.95rem;
    color: #666666;
    margin-top: 0.85rem;
    font-style: italic;
}

/* Form Elements */
.ms-form-group {
    margin-bottom: 1.75rem;
}

.ms-form-label {
    display: block;
    font-weight: 700;
    margin-bottom: 0.65rem;
    color: #000000;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ms-form-control {
    width: 100%;
    padding: 1.1rem 1.35rem;
    border-radius: 0px; /* Sharp modern form controls */
    border: 2px solid #000000;
    background-color: #ffffff;
    color: #000000;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.ms-form-control:focus {
    outline: none;
    border-color: #c5a059;
    box-shadow: 6px 6px 0px #000000; /* Gold/Black sharp focus indicators */
}

.ms-textarea {
    resize: vertical;
    min-height: 150px;
}

/* Footer layout (Solid Black with high-contrast text) */
.ms-footer {
    background-color: #000000;
    color: #cccccc;
    padding-top: 6rem;
    padding-bottom: 3rem;
    margin-top: 0;
    border-top: 3px solid #c5a059; /* Matching gold indicator */
}

.ms-footer-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 1.95rem;
    margin-bottom: 1.25rem;
    color: #ffffff;
    letter-spacing: 0.02em;
}

.ms-footer-subtitle {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ms-footer-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 3px;
    background-color: #c5a059;
}

.ms-footer-text {
    font-size: 0.95rem;
    line-height: 1.75;
    color: #aaaaaa;
}

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

.ms-footer-link-item {
    margin-bottom: 0.85rem;
}

.ms-footer-link {
    color: #aaaaaa;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.25s ease;
}

.ms-footer-link:hover {
    color: #c5a059;
}

.ms-footer-bottom {
    border-top: 1px solid #222222;
    padding-top: 3rem;
    margin-top: 4rem;
    text-align: center;
}

.ms-footer-bottom-text {
    font-size: 0.85rem;
    color: #666666;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

/* Premium Layout Utilities */
.ms-hero-img-shadow {
    box-shadow: 12px 12px 0px #000000; /* Sharp offset shadow for hero image */
}

.ms-grid-img-shadow {
    box-shadow: 8px 8px 0px #000000;
}

.ms-aside-price {
    color: #c5a059;
    margin-bottom: 0;
}

.ms-aside-original-price {
    text-decoration: line-through;
    margin-left: 0.5rem;
    color: #888888;
}

.ms-conclusion-text {
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2.5rem;
}

.ms-footer-link-underline {
    text-decoration: underline;
}

.ms-cookie-grid {
    align-items: center;
    gap: 2rem;
}

.ms-hero-btns {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
}

.ms-hero-btns .ms-btn {
    flex: 1;
    min-width: 240px;
    max-width: 280px;
    padding: 1.15rem 1.25rem !important;
    font-size: 1.05rem !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    white-space: nowrap;
}

.ms-cookie-link {
    color: #c5a059;
    text-decoration: underline;
}

.ms-header-btn {
    padding: 0.65rem 1.65rem;
    font-size: 0.95rem;
}

.ms-detail-container {
    background-color: #ffffff;
    padding: 4rem;
    border-radius: 0px;
    box-shadow: 12px 12px 0px #000000;
    border: 2px solid #000000;
}

@media (max-width: 768px) {
    .ms-detail-container {
        padding: 2.5rem;
    }
}

@media (max-width: 480px) {
    .ms-detail-container {
        padding: 1.5rem;
    }
}

.ms-detail-main-img {
    width: 100%;
    border-radius: 0px;
    box-shadow: 10px 10px 0px #000000;
    border: 2px solid #000000;
}

.ms-cta-box {
    background-color: #fafafa;
    padding: 3rem;
    border-radius: 0px;
    border: 2px solid #000000;
    box-shadow: 8px 8px 0px #000000;
}

@media (max-width: 480px) {
    .ms-cta-box {
        padding: 1.75rem;
    }
}

.ms-cta-price {
    color: #c5a059;
    margin-bottom: 0;
    font-size: 1.45rem;
}

.ms-cta-original-price {
    text-decoration: line-through;
    margin-left: 0.8rem;
    color: #888888;
}

.ms-detail-conclusion-footer {
    border-top: 2px solid #000000;
    padding-top: 3rem;
    margin-top: 3rem;
}

.ms-cta-conclusion-text {
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
}

.ms-card-contact-details {
    background-color: #ffffff;
    border: 2px solid #000000;
    box-shadow: 6px 6px 0px #000000;
}

.ms-contact-email-link {
    font-weight: 700;
    color: #c5a059;
    text-decoration: underline;
}

.ms-contact-footer-divider {
    border-top: 2px solid #000000;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}

.ms-contact-impressum-link {
    color: #c5a059;
    font-weight: 700;
    text-decoration: underline;
}

.ms-legal-email-link {
    color: #c5a059;
    font-weight: 700;
    text-decoration: underline;
}

.ms-legal-dispute-link {
    color: #c5a059;
    text-decoration: underline;
}

/* ===== Responsive Breakpoints ===== */
@media (max-width: 1080px) {
    .ms-heading-1 {
        font-size: 2.85rem;
    }
    .ms-heading-2 {
        font-size: 2.05rem;
    }
    .ms-section {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
    .ms-grid-2 {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    .ms-grid-3 {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    .ms-hamburger {
        display: block;
    }
    .ms-nav-desktop {
        display: none;
    }
    .ms-nav-mobile {
        display: block;
    }
    .ms-hero {
        padding-top: 5rem;
        padding-bottom: 5rem;
        text-align: center;
    }
    .ms-hero-btns {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.25rem;
        width: 100%;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
        margin-top: 2.5rem;
        margin-bottom: 2rem;
    }
    .ms-hero-btns .ms-btn {
        width: 100% !important;
        max-width: 100% !important;
        display: block;
        box-sizing: border-box;
        text-align: center;
    }
    .ms-btn-large, .ms-btn-large-cta {
        font-size: 1.15rem;
        padding: 1.1rem 2rem;
    }
}

/* Symmetrical CTA buttons & Header adjustments for intermediate viewports (laptops) */
@media (min-width: 1081px) and (max-width: 1200px) {
    .ms-nav-desktop {
        gap: 1.25rem;
    }
    .ms-nav-desktop .ms-link {
        font-size: 0.8rem;
    }
    .ms-header-btn {
        padding: 0.55rem 1.35rem;
        font-size: 0.85rem;
    }
    .ms-hero-btns .ms-btn {
        min-width: 215px;
        max-width: 250px;
        padding: 1.15rem 0.75rem !important;
        font-size: 0.95rem !important;
    }
}

@media (max-width: 768px) {
    .ms-heading-1 {
        font-size: 2.35rem;
    }
    .ms-heading-2 {
        font-size: 1.85rem;
    }
    .ms-heading-3 {
        font-size: 1.3rem;
    }
    .ms-section {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
    .ms-grid-3 {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .ms-card {
        padding: 2.5rem;
    }
    .ms-cookie-box {
        padding: 1.75rem 0;
    }
    .ms-cookie-btn-group {
        justify-content: flex-start;
        margin-top: 1.25rem;
    }
    .ms-pros-cons-box {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .ms-heading-1 {
        font-size: 2rem;
    }
    .ms-heading-2 {
        font-size: 1.55rem;
    }
    .ms-container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    .ms-card {
        padding: 1.75rem;
    }
    .ms-btn {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
        width: 100%;
        text-align: center;
    }
    .ms-hero-btns {
        max-width: 100%;
        gap: 1rem;
    }
    .ms-btn-large, .ms-btn-large-cta {
        font-size: 1.05rem;
        padding: 1rem 1.5rem;
    }
    .ms-price-value {
        font-size: 3rem;
    }
    .ms-price-box {
        padding: 1.5rem 1.75rem;
        width: 100%;
    }
}
