/* ============================================
   Tivoli Audio Italia - Exact Replica Stylesheet
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-body: #212121;
    --color-heading: #111111;
    --color-nav: #292929;
    --color-muted: #7e7e7e;
    --color-bg: #ffffff;
    --color-cream: #f6f1e4;
    --color-border: #e8e8e8;
    --font-body: 'Avenir Next', 'Avenir', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    --font-heading: 'Figtree', sans-serif;
    --font-hero: 'Figtree', Verdana, sans-serif;
    --header-height: 111px;
    --container-max: 1400px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--color-body);
    background: var(--color-bg);
    line-height: 1.33;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul { list-style: none; }

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

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 50px;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: #fff;
    color: #212121;
}
.btn-primary:hover {
    background: #212121;
    color: #fff;
}

.btn-outline-dark {
    background: transparent;
    color: #212121;
    border: 1.5px solid #212121;
    padding: 12px 30px;
}
.btn-outline-dark:hover {
    background: #212121;
    color: #fff;
}

.btn-dark {
    background: #212121;
    color: #fff;
    padding: 14px 40px;
}
.btn-dark:hover {
    background: #000;
}

.btn-submit {
    background: #212121;
    color: #fff;
    padding: 12px 24px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
}
.btn-submit:hover {
    background: #000;
}

/* --- Announcement Bar --- */
.announcement-bar {
    background: #212121;
    text-align: center;
    padding: 12px 16px;
}

.announcement-bar a {
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.announcement-bar a:hover {
    opacity: 0.8;
}

/* --- Header --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #fff;
    transition: box-shadow 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 50px;
    height: var(--header-height);
}

.header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-svg {
    height: 18px;
    width: 158px;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-item > a {
    display: block;
    font-size: 16px;
    font-weight: 400;
    color: var(--color-nav);
    letter-spacing: 0.4px;
    text-transform: uppercase;
    padding: 44px 18px;
    position: relative;
}

.nav-item > a:hover {
    color: #000;
}

/* Mega Dropdown */
.nav-item.has-dropdown {
    position: relative;
}

.mega-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 400px;
    padding: 30px 40px;
    display: flex;
    gap: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(4px);
    transition: var(--transition);
    z-index: 100;
}

.nav-item.has-dropdown:hover .mega-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

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

.mega-col ul li a {
    font-size: 14px;
    font-weight: 400;
    color: var(--color-muted);
    text-transform: none;
    padding: 0;
    letter-spacing: 0;
}

.mega-col ul li a:hover {
    color: #212121;
}

.mega-col ul li a::after { display: none; }

.header-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.locale-selector {
    font-size: 13px;
    font-weight: 500;
    color: var(--color-nav);
    letter-spacing: 0.5px;
    cursor: pointer;
    padding: 4px 8px;
    border: 1px solid var(--color-border);
}

.header-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--color-nav);
    border: none;
    background: none;
    cursor: pointer;
    transition: var(--transition);
}

.header-icon:hover {
    color: #000;
}

.cart-icon {
    position: relative;
}

.cart-count {
    position: absolute;
    top: 2px;
    right: 0;
    width: 16px;
    height: 16px;
    background: #212121;
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: var(--color-nav);
}

.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 998;
}
.mobile-overlay.active { display: block; }

.c-ico {
    display: block;
}

/* --- Hero Carousel --- */
.home-carousel {
    position: relative;
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
    overflow: hidden;
    margin-top: var(--header-height);
}

.home-carousel__track {
    height: 100%;
    position: relative;
}

.home-carousel__item {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
}

.home-carousel__item.active {
    opacity: 1;
    z-index: 1;
}

.home-carousel__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.home-carousel__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
}

.home-carousel__content {
    position: absolute;
    bottom: 15%;
    left: 8%;
    z-index: 2;
    color: #fff;
    max-width: 550px;
}

.home-carousel__content h1 {
    font-family: var(--font-hero);
    font-size: 46px;
    font-weight: 400;
    color: var(--color-cream);
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.home-carousel__content p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 28px;
    opacity: 0.9;
    color: var(--color-cream);
}

.home-carousel__dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: #fff;
}

/* --- Rich Text Section --- */
.rich-text-section {
    padding: 80px 0;
    text-align: center;
}

.rich-text__heading {
    font-family: var(--font-heading);
    font-size: 55px;
    font-weight: 500;
    color: var(--color-heading);
    letter-spacing: 1px;
    margin-bottom: 16px;
    line-height: 1.15;
}

.rich-text__text {
    font-size: 16px;
    color: var(--color-muted);
    line-height: 1.6;
    max-width: 650px;
    margin: 0 auto;
}

/* --- Product Cards Section --- */
.product-cards-section {
    padding: 40px 0 80px;
    position: relative;
}

.product-cards__slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.product-cards__slider::-webkit-scrollbar { display: none; }

.product-card {
    min-width: 50%;
    scroll-snap-align: start;
    display: flex;
    flex-direction: row;
    background: #f5f5f5;
    transition: var(--transition);
}

.product-card__image {
    width: 55%;
    overflow: hidden;
    background: #e8e4de;
}

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

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

.product-card__info {
    width: 45%;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-card__info h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 600;
    color: var(--color-heading);
    margin-bottom: 14px;
    letter-spacing: 0.5px;
}

.product-card__tagline {
    font-size: 15px;
    color: var(--color-muted);
    margin-bottom: 20px;
    line-height: 1.5;
}

.product-card__tagline strong {
    font-weight: 700;
    color: var(--color-heading);
    letter-spacing: 0.5px;
}

.product-card__features {
    list-style: disc;
    padding-left: 18px;
    margin-bottom: 28px;
}

.product-card__features li {
    font-size: 14px;
    color: var(--color-muted);
    margin-bottom: 6px;
    line-height: 1.5;
}

.product-cards__nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 16px;
    pointer-events: none;
    transform: translateY(-50%);
}

.slider-prev, .slider-next {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    cursor: pointer;
    pointer-events: all;
    transition: var(--transition);
    color: #212121;
}

.slider-prev:hover, .slider-next:hover {
    background: #212121;
    color: #fff;
    border-color: #212121;
}

.product-cards__shopall {
    text-align: center;
    padding-top: 50px;
}

/* --- Details Banner --- */
.details-banner {
    padding: 100px 0;
    text-align: center;
    background: var(--color-cream);
}

.details-banner h2 {
    font-family: var(--font-heading);
    font-size: 55px;
    font-weight: 500;
    color: var(--color-heading);
    margin-bottom: 14px;
    letter-spacing: 1px;
}

.details-banner p {
    font-size: 18px;
    color: var(--color-muted);
    font-weight: 400;
}

/* --- Boutique Feature --- */
.boutique-feature {
    display: flex;
    min-height: 600px;
}

.boutique-feature__image {
    width: 60%;
    overflow: hidden;
}

.boutique-feature__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.boutique-feature__content {
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 60px;
    background: #f5f5f5;
}

.boutique-feature__title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 500;
    color: var(--color-heading);
    margin-bottom: 16px;
    line-height: 1.2;
}

.boutique-feature__text {
    font-size: 16px;
    color: var(--color-muted);
    line-height: 1.7;
}

/* --- Brand Essence --- */
.brand-essence {
    padding: 100px 0;
}

.brand-essence__title {
    font-family: var(--font-heading);
    font-size: 55px;
    font-weight: 500;
    color: var(--color-heading);
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 1px;
}

.brand-essence__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.brand-essence__item h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-heading);
    margin-bottom: 12px;
    letter-spacing: 0.3px;
}

.brand-essence__item p {
    font-size: 14px;
    color: var(--color-muted);
    line-height: 1.65;
}

/* --- World of Tivoli / Blog --- */
.world-of-tivoli {
    padding: 80px 0 100px;
    background: #fafafa;
}

.world-of-tivoli__header {
    margin-bottom: 50px;
}

.world-of-tivoli__header h2 {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 500;
    color: var(--color-heading);
    margin-bottom: 10px;
}

.world-of-tivoli__header p {
    font-size: 16px;
    color: var(--color-muted);
}

.world-of-tivoli__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    display: block;
    background: #fff;
    overflow: hidden;
    transition: var(--transition);
}

.blog-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.blog-card__image {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card__image img {
    transform: scale(1.05);
}

.blog-card__content {
    padding: 24px;
}

.blog-card__cat {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--color-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.blog-card__content h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 500;
    color: var(--color-heading);
    line-height: 1.4;
}

/* --- Footer --- */
.site-footer {
    background: #fff;
    border-top: 1px solid var(--color-border);
    padding: 70px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.5fr;
    gap: 50px;
    padding-bottom: 50px;
}

.footer-col h3 {
    font-family: var(--font-heading);
    font-size: 21px;
    font-weight: 600;
    color: var(--color-body);
    letter-spacing: 1px;
    margin-bottom: 20px;
}

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

.footer-col ul li a {
    font-size: 16px;
    color: var(--color-muted);
}

.footer-col ul li a:hover {
    color: #212121;
}

.footer-newsletter p {
    font-size: 14px;
    color: var(--color-muted);
    margin-bottom: 20px;
    line-height: 1.5;
}

.newsletter-form {
    display: flex;
    gap: 0;
    margin-bottom: 14px;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 14px;
    border: 1px solid var(--color-border);
    border-right: none;
    outline: none;
}

.newsletter-form input[type="email"]:focus {
    border-color: #212121;
}

.newsletter-consent {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 12px;
    color: var(--color-muted);
    cursor: pointer;
}

.newsletter-consent input[type="checkbox"] {
    margin-top: 2px;
    cursor: pointer;
}

.newsletter-consent a {
    color: #212121;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid var(--color-border);
    padding: 30px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    color: var(--color-muted);
    display: flex;
    align-items: center;
}

.footer-social a:hover {
    color: #212121;
}

.footer-copyright {
    font-size: 13px;
    color: var(--color-muted);
}

.footer-payments {
    display: flex;
    gap: 8px;
    align-items: center;
}

.footer-payments img {
    height: 24px;
    width: auto;
}

/* --- Collections Page --- */
.page-hero {
    padding: 60px 0 40px;
    text-align: center;
    margin-top: var(--header-height);
}

.page-hero h1 {
    font-family: var(--font-heading);
    font-size: 46px;
    font-weight: 500;
    color: var(--color-heading);
    margin-bottom: 12px;
}

.page-hero p {
    font-size: 16px;
    color: var(--color-muted);
    max-width: 600px;
    margin: 0 auto;
}

.collection-section {
    padding: 60px 0 80px;
}

.collection-section:nth-child(even) {
    background: #fafafa;
}

.collection-section__title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 500;
    color: var(--color-heading);
    margin-bottom: 40px;
    letter-spacing: 0.5px;
}

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

.grid-product-card {
    background: #fff;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid #f0f0f0;
}

.grid-product-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transform: translateY(-3px);
}

.grid-product-card__image {
    aspect-ratio: 1;
    overflow: hidden;
    background: #f5f2ed;
}

.grid-product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.grid-product-card:hover .grid-product-card__image img {
    transform: scale(1.05);
}

.grid-product-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    background: #212121;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.grid-product-card__info {
    padding: 24px;
}

.grid-product-card__info h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--color-heading);
    margin-bottom: 8px;
}

.grid-product-card__info .desc {
    font-size: 14px;
    color: var(--color-muted);
    margin-bottom: 12px;
    line-height: 1.5;
}

.grid-product-card__info .price {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-heading);
    margin-bottom: 16px;
}

/* --- About Page --- */
.about-hero {
    margin-top: var(--header-height);
    padding: 120px 0;
    background: #212121;
    text-align: center;
    color: var(--color-cream);
}

.about-hero h1 {
    font-family: var(--font-heading);
    font-size: 55px;
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.about-hero p {
    font-size: 18px;
    font-weight: 400;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
    opacity: 0.8;
}

.about-section {
    padding: 80px 0;
}

.about-section:nth-child(even) {
    background: #fafafa;
}

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

.about-text h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 500;
    color: var(--color-heading);
    margin-bottom: 20px;
}

.about-text p {
    font-size: 16px;
    color: var(--color-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-image {
    height: 420px;
    overflow: hidden;
}

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

.partners-section {
    padding: 80px 0;
    background: #212121;
    text-align: center;
    color: var(--color-cream);
}

.partners-section h2 {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 500;
    margin-bottom: 16px;
}

.partners-section > p {
    font-size: 16px;
    opacity: 0.7;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.partners-logos {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.partners-logos span {
    color: rgba(255,255,255,0.35);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 3px;
}

/* --- Support Page --- */
.support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 60px 0;
}

.support-card {
    padding: 40px 30px;
    background: #fafafa;
    text-align: center;
    transition: var(--transition);
}

.support-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transform: translateY(-3px);
}

.support-card__icon {
    color: var(--color-muted);
    margin-bottom: 20px;
}

.support-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--color-heading);
    margin-bottom: 10px;
}

.support-card p {
    font-size: 14px;
    color: var(--color-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.faq-section {
    padding: 60px 0 80px;
    background: #fafafa;
}

.faq-section h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 500;
    color: var(--color-heading);
    text-align: center;
    margin-bottom: 40px;
}

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

.faq-item {
    border-bottom: 1px solid var(--color-border);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    color: var(--color-heading);
    cursor: pointer;
    text-align: left;
    padding: 20px 0;
}

.faq-question svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--color-muted);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 0 20px;
    font-size: 15px;
    color: var(--color-muted);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    display: block;
}

/* --- Responsive --- */
@media (max-width: 1200px) {
    .brand-essence__grid { grid-template-columns: repeat(3, 1fr); }
    .product-card { min-width: 70%; }
}

@media (max-width: 1024px) {
    .container { padding: 0 30px; }
    .header-inner { padding: 0 20px; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .world-of-tivoli__grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .rich-text__heading, .details-banner h2, .brand-essence__title { font-size: 38px; }
    .boutique-feature { flex-direction: column; }
    .boutique-feature__image, .boutique-feature__content { width: 100%; }
    .about-grid { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 768px) {
    :root { --header-height: 65px; }

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

    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        max-width: 360px;
        height: 100vh;
        background: #fff;
        z-index: 999;
        overflow-y: auto;
        padding: 80px 30px 30px;
        transition: left 0.3s ease;
    }
    .main-nav.active { left: 0; }

    .nav-list {
        flex-direction: column;
        width: 100%;
    }

    .nav-item > a {
        padding: 16px 0;
        border-bottom: 1px solid #f0f0f0;
        font-size: 15px;
    }

    .mega-dropdown {
        position: static;
        box-shadow: none;
        min-width: auto;
        padding: 0 0 10px 16px;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        flex-direction: column;
        gap: 10px;
    }

    .nav-item.has-dropdown.open .mega-dropdown { display: flex; }

    .home-carousel {
        height: 70vh;
        min-height: 400px;
    }

    .home-carousel__content {
        bottom: 12%;
        left: 5%;
        right: 5%;
    }

    .home-carousel__content h1 { font-size: 28px; }

    .product-card { min-width: 90%; }
    .product-card__info { padding: 30px 24px; }
    .product-card__info h3 { font-size: 22px; }

    .brand-essence__grid { grid-template-columns: repeat(2, 1fr); }
    .products-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .world-of-tivoli__grid { grid-template-columns: 1fr; }
    .support-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }

    .newsletter-form { flex-direction: column; }
    .newsletter-form input[type="email"] { border-right: 1px solid var(--color-border); }

    .header-right { gap: 8px; }
    .locale-selector { display: none; }

    .rich-text__heading, .details-banner h2, .brand-essence__title {
        font-size: 28px;
    }

    .page-hero h1 { font-size: 32px; }
    .about-hero h1 { font-size: 36px; }
}

@media (max-width: 480px) {
    .products-grid { grid-template-columns: 1fr; }
    .brand-essence__grid { grid-template-columns: 1fr; }
    .product-card { min-width: 95%; flex-direction: column; }
    .product-card__image { width: 100%; height: 250px; }
    .product-card__info { width: 100%; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
}
