/* ============================================
   Kaanha Treasure - B2B Website Styles
   ============================================ */

:root {
    --gold: #d4af37;
    --gold-dark: #b8941f;
    --gold-light: #f0e6c0;
    --text-dark: #1a1a1a;
    --text-medium: #555;
    --text-light: #888;
    --bg-white: #ffffff;
    --bg-warm: #f8f6f0;
    --bg-dark: #1a1a1a;
    --bg-charcoal: #2a2a2a;
    --max-width: 1200px;
    --nav-height: 80px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-white);
}

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

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

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

/* ============================================
   Header & Navigation
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--bg-white);
    border-bottom: 1px solid #e8e8e8;
    height: var(--nav-height);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-height);
}

.logo {
    flex-shrink: 0;
}

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

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--text-dark);
    transition: color 0.3s;
    padding: 0.5rem 0;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

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

.nav-dropdown > a::before {
    display: none;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: -1rem;
    background: var(--bg-white);
    min-width: 240px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    border-radius: 0 0 8px 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    list-style: none;
    padding: 0.5rem 0;
    z-index: 100;
}

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

.dropdown-menu li a {
    display: block;
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
    text-transform: none;
    letter-spacing: 0;
    transition: background 0.2s, color 0.2s;
}

.dropdown-menu li a::after {
    display: none;
}

.dropdown-menu li a:hover {
    background: var(--bg-warm);
    color: var(--gold);
}

/* CTA Button in Nav */
.nav-cta {
    background: var(--gold);
    color: white !important;
    padding: 0.75rem 2.5rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    transition: background 0.3s;
    white-space: nowrap;
}

.nav-cta:hover {
    background: var(--gold-dark);
}

.nav-cta::after {
    display: none !important;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    margin: 5px 0;
    transition: all 0.3s;
}

/* ============================================
   Hero Banner
   ============================================ */
.hero-banner {
    position: relative;
    height: 500px;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-banner::before {
    display: none;
}

.hero-banner--home {
    height: 600px;
}

.hero-banner:has(.hero-banner__img) {
    height: auto;
    display: block;
    padding: 0;
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
}

.hero-banner--home:has(.hero-banner__img) {
    height: auto;
}

.hero-banner__img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 800px;
    padding: 2rem;
}

.hero-banner:has(.hero-banner__img) .hero-content {
    position: static;
    transform: none;
    background: var(--bg-dark);
    max-width: none;
    padding: 2.5rem 3rem;
    border-top: 3px solid var(--gold);
}

.hero-content h1 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 3.2rem;
    font-weight: 400;
    letter-spacing: 0.03em;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content .subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Placeholder labels for missing images */
.placeholder-label {
    color: #999;
    font-size: 0.85rem;
    font-style: italic;
    text-align: center;
    padding: 1rem;
}

.hero-banner .placeholder-label {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255,255,255,0.6);
    font-size: 0.8rem;
}

.card-image .placeholder-label {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: #f0f0f0;
}

.category-card .placeholder-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.btn-gold {
    background: var(--gold);
    color: white;
}

.btn-gold:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212,175,55,0.3);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: var(--text-dark);
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: white;
}

.btn-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* ============================================
   Sections
   ============================================ */
section {
    padding: 5rem 0;
}

.section-warm {
    background: var(--bg-warm);
}

.section-dark {
    background: var(--bg-dark);
    color: white;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 2.4rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.section-dark .section-header h2 {
    color: white;
}

.section-header .gold-line {
    display: block;
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin: 1rem auto;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.section-dark .section-header p {
    color: #bbb;
}

/* ============================================
   Category Cards (Home Page)
   ============================================ */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.category-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: var(--bg-dark);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.category-card::before {
    display: none;
}

.category-card__img {
    width: 100%;
    height: auto;
    display: block;
}

.category-card-content {
    padding: 1.5rem 2rem;
    color: white;
    border-top: 3px solid var(--gold);
}

.category-card-content h3 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.category-card-content p {
    font-size: 0.9rem;
    opacity: 0.85;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.category-card-content .card-link {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold-light);
    transition: color 0.3s;
}

.category-card-content .card-link:hover {
    color: var(--gold);
}

/* ============================================
   Value Propositions / Feature Grid
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.feature-item {
    text-align: center;
    padding: 2rem 1.5rem;
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--gold);
    border-radius: 50%;
    color: var(--gold);
    font-size: 1.5rem;
}

.feature-item h3 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.section-dark .feature-item h3 {
    color: white;
}

.feature-item p {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.section-dark .feature-item p {
    color: #bbb;
}

/* ============================================
   Category Page - Product Highlights
   ============================================ */
.product-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.product-highlight-card {
    border-radius: 8px;
    overflow: hidden;
    background: var(--bg-dark);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-highlight-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.product-highlight-card .card-image {
    overflow: hidden;
    background: #f5f5f5;
}

.product-highlight-card .card-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

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

.product-highlight-card .card-body {
    padding: 1.5rem 2rem;
    border-top: 3px solid var(--gold);
}

.product-highlight-card .card-body h3 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: white;
}

.product-highlight-card .card-body p {
    font-size: 0.9rem;
    color: var(--gold-light);
    line-height: 1.6;
}

/* ============================================
   Content Sections (About, Bespoke, etc.)
   ============================================ */
.content-block {
    max-width: 800px;
    margin: 0 auto;
}

.content-block h3 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.6rem;
    color: var(--gold);
    margin-bottom: 1rem;
    margin-top: 2.5rem;
}

.content-block h3:first-child {
    margin-top: 0;
}

.content-block p {
    font-size: 1.05rem;
    color: var(--text-medium);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.content-block ul {
    margin: 1rem 0 1.5rem 2rem;
    color: var(--text-medium);
}

.content-block ul li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.content-image {
    margin: 2rem 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.content-image img {
    width: 100%;
    height: auto;
    display: block;
}

.content-image--portrait {
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

.content-media {
    margin: 2rem 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.content-media video {
    width: 100%;
    height: auto;
    display: block;
}

.content-media--portrait {
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
    background: #000;
}

.content-media--portrait video {
    aspect-ratio: 9 / 16;
    object-fit: cover;
}

.content-media-caption {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.75rem;
    font-style: italic;
}

/* Two-column content layout */
.content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.content-split.reverse {
    direction: rtl;
}

.content-split.reverse > * {
    direction: ltr;
}

.content-split-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

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

/* ============================================
   Process Steps
   ============================================ */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.process-step {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--bg-white);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gold);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 1.3rem;
    font-weight: 700;
    font-family: Georgia, 'Times New Roman', serif;
}

.process-step h3 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.15rem;
    margin-bottom: 0.8rem;
}

.process-step p {
    font-size: 0.9rem;
    color: var(--text-medium);
    line-height: 1.6;
}

.bespoke-benefits {
    max-width: 700px;
    margin: 1.5rem auto 0;
    padding-left: 2rem;
    color: var(--text-medium);
    font-size: 1.05rem;
}

.bespoke-benefits li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

/* ============================================
   Bespoke Types Grid
   ============================================ */
.bespoke-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.bespoke-card {
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border-top: 3px solid var(--gold);
}

.bespoke-card h3 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}

.bespoke-card p {
    font-size: 0.9rem;
    color: var(--text-medium);
    line-height: 1.7;
}

/* ============================================
   Product Carousel (Bottom of every page)
   ============================================ */
.product-carousel-section {
    padding: 4rem 0;
    background: var(--bg-warm);
    overflow: hidden;
}

.carousel-header {
    text-align: center;
    margin-bottom: 2rem;
}

.carousel-header h2 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.carousel-header .gold-line {
    display: block;
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin: 0.8rem auto;
}

.carousel-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.carousel-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    /* continuous smooth scroll - no snap */
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding: 1rem 0;
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

.carousel-item {
    flex: 0 0 220px;
    /* no snap for smooth continuous scroll */
    border-radius: 8px;
    overflow: hidden;
    background: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.carousel-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.carousel-item img {
    width: 220px;
    height: 220px;
    object-fit: contain;
    background: #f5f5f5;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: white;
    border: 1px solid #ddd;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-dark);
    transition: all 0.3s;
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--gold);
    color: white;
    border-color: var(--gold);
}

.carousel-btn--prev {
    left: 0;
}

.carousel-btn--next {
    right: 0;
}

/* ============================================
   Contact Section
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
    margin-top: 2rem;
}

.contact-info h3:first-child {
    margin-top: 0;
}

.contact-info p {
    color: var(--text-medium);
    line-height: 1.7;
}

.contact-form {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.form-message {
    padding: 1.5rem 2rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
}

.form-success {
    background: #f0f7f0;
    border: 1px solid #c3dfc3;
    color: #2d5a2d;
}

.form-success h3 {
    margin-bottom: 0.5rem;
    color: #2d5a2d;
}

.form-error {
    background: #fdf0f0;
    border: 1px solid #e0c3c3;
    color: #6b2d2d;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.3s;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212,175,55,0.1);
}

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

/* ============================================
   Footer
   ============================================ */
.site-footer {
    background: var(--bg-dark);
    color: #bbb;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    color: white;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 0.8rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li a {
    font-size: 0.9rem;
    color: #bbb;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--gold);
}

.footer-logo {
    height: 45px;
    margin-bottom: 1rem;
    border-radius: 4px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
    font-size: 0.85rem;
}

/* ============================================
   Call-to-Action Banner
   ============================================ */
.cta-banner {
    background: var(--bg-dark);
    padding: 4rem 0;
    text-align: center;
    color: white;
}

.cta-banner h2 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-banner p {
    font-size: 1.05rem;
    color: #bbb;
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 992px) {
    .content-split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .content-split.reverse {
        direction: ltr;
    }

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

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

    .hero-content h1 {
        font-size: 2.5rem;
    }

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

    .category-card {
        height: auto;
    }
}

@media (max-width: 768px) {
    :root {
        --nav-height: auto;
    }

    .site-header {
        height: auto;
        padding: 0.8rem 0;
    }

    .header-inner {
        flex-wrap: wrap;
        height: auto;
        gap: 0;
    }

    .logo img {
        height: 45px;
    }

    .menu-toggle {
        display: block;
    }

    .main-nav {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 0;
        padding-top: 1rem;
    }

    .main-nav.open {
        display: flex;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    .nav-links li {
        width: 100%;
        border-top: 1px solid #eee;
    }

    .nav-links a {
        display: block;
        padding: 0.8rem 0;
    }

    .nav-links a::after {
        display: none;
    }

    .nav-dropdown > a::before {
        float: right;
        margin-top: 0.5rem;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        background: #f9f9f9;
        border-radius: 0;
    }

    .nav-dropdown.open .dropdown-menu {
        display: block;
    }

    .dropdown-menu li a {
        padding: 0.6rem 1.5rem;
    }

    .nav-cta {
        display: block;
        text-align: center;
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
    }

    .hero-banner {
        min-height: 350px;
        height: auto;
    }

    .hero-banner--home {
        min-height: 400px;
        height: auto;
    }

    .hero-banner:has(.hero-banner__img),
    .hero-banner--home:has(.hero-banner__img) {
        min-height: 0;
    }

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

    .hero-content .subtitle {
        font-size: 1rem;
    }

    section {
        padding: 3rem 0;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

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

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

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

    .carousel-item {
        flex: 0 0 180px;
    }

    .carousel-item img {
        width: 180px;
        height: 180px;
    }

    .carousel-wrapper {
        padding: 0 2.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero-banner {
        min-height: 300px;
        height: auto;
    }

    .hero-banner:has(.hero-banner__img) {
        min-height: 0;
    }

    .hero-content h1 {
        font-size: 1.6rem;
    }

    .carousel-item {
        flex: 0 0 160px;
    }

    .carousel-item img {
        width: 160px;
        height: 160px;
    }
}
