/* ==================================================================
    OT RESOURCE HUB - MAIN STYLESHEET (Updated Colour Pallete)
   ================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');

/* ==================== CORE COLOUR PALETTE ==================== */
:root {
    --cream:        #FFF8F0;    /* main background */
    --peach:        #FFB68A;    /* warm accent */
    --mustard:      #F9E2AF;    /* soft yellow highlight */
    --sage:         #A8B5A2;    /* gentle green */
    --terracotta:   #D97757;    /* main CTA colour */
    --warm-brown:   #8B6F47;    /* secondary text */
    --deep-brown:   #6D4C41;    /* headings */
    --light-beige:  #FDF3EA;    /* section backgrounds */
    --soft-peach:   #FFEBDB;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', Arial, sans-serif;
    line-height: 1.7;
    color: #5D4037;
    background-color: var(--cream);
    font-size: 17px;
    font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--deep-brown);
    margin-top: 0;
    line-height: 1.3;
    font-weight: 700;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

/* ==================== 2. LAYOUT CONTAINERS ==================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* ==================== 3. HEADER & NAVIGATION ==================== */
header {
    background-color: white;
    box-shadow: 0 6px 25px rgba(139, 111, 71, 0.12);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(12px);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
    max-width: 1300px;
    margin: 0 auto;
}

.logo-link {
    display: flex;
    align-items: center;
    color: var(--deep-brown);
    font-weight: 700;
    transition: opacity 0.3s ease;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
}

.logo-link:hover {
    opacity: 0.9;
}

.logo-img {
    height: 56px;
    width: auto;
    max-width: 160px;
    margin-right: 14px;
    object-fit: contain;
}

.logo-text {
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--deep-brown);
}

.nav-links {
    display: flex;
    gap: 2.8rem;
}

.nav-links li a {
    color: var(--warm-brown);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.4s ease;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    background-color: var(--terracotta);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: width 0.4s ease;
    border-radius: 2px;
}

.nav-links li a:hover {
    color: var(--terracotta);
}

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

/* ==================== 4. HERO SECTION ==================== */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, var(--soft-peach) 0%, var(--mustard) 100%);
    border-radius: 30px;
    overflow: hidden;
    margin: 3rem auto;
    box-shadow: 0 20px 50px rgba(139, 111, 71, 0.18);
    max-width: 1300px;
}

.hero-content {
    flex: 1;
    padding: 4rem 3rem;
}

.hero h1 {
    font-size: 3.6rem;
    color: var(--deep-brown);
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.3rem;
    color: #6D4C41;
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2.4rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    box-shadow: 0 6px 20px rgba(217, 119, 87, 0.3);
}

.btn-primary {
    background: linear-gradient(135deg, var(--terracotta), #E68A6B);
    color: white;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(217, 119, 87, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--terracotta);
    border: 2.8px solid var(--terracotta);
}

.btn-secondary:hover {
    background-color: var(--terracotta);
    color: white;
    transform: translateY(-4px);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;     
    align-items: center;
    padding-left: 3rem;           
}

.hero-image img {
    width: 100%;
    max-width: 580px;              
    height: auto;
    display: block;
    border-radius: 28px;
    box-shadow: 0 25px 50px rgba(139, 111, 71, 0.22);
    transform: translateX(-60px);  
}

/* ==================== 5. FEATURES SECTION ==================== */
.features {
    text-align: center;
    padding: 6rem 0;
    background: var(--light-beige);
    border-radius: 30px;
    margin: 4rem 0;
}

.features h2 {
    font-size: 2.8rem;
    color: var(--deep-brown);
    margin-bottom: 3.5rem;
}

.feature-cards {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.card {
    background: white;
    border-radius: 28px;
    padding: 2.5rem;
    width: 340px;
    box-shadow: 0 12px 35px rgba(139, 111, 71, 0.12);
    transition: all 0.4s ease;
    border: 1px solid #FFDAC1;
}

.card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(139, 111, 71, 0.2);
    border-color: var(--peach);
}

.card h3 {
    color: var(--deep-brown);
    margin-top: 0;
    font-size: 1.6rem;
}

/* ==================== 6. ABOUT US SECTION ==================== */
.about-us {
    background: linear-gradient(to bottom, #FFFBF5, var(--light-beige));
    padding: 7rem 0;
    border-radius: 30px;
    margin: 5rem 0;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-image,
.about-text {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    max-height: 580px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: 0 25px 50px rgba(139, 111, 71, 0.18);
    display: block;
}

.about-text h2 {
    font-size: 3rem;
    color: var(--deep-brown);
    margin-bottom: 1.8rem;
}

.about-text p {
    font-size: 1.2rem;
    color: #6D4C41;
    margin-bottom: 1.8rem;
    line-height: 1.8;
}

/* ==================== 7. PRODUCTS SECTION ==================== */
.products {
    padding: 6rem 0;
    text-align: center;
    background: var(--light-beige);
    border-radius: 30px;
    margin: 4rem 0;
}

.products h2 {
    font-size: 2.8rem;
    color: var(--deep-brown);
    margin-bottom: 3.5rem;
}

.product-cards {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.product-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 1.2rem 0 0.6rem;
    color: var(--deep-brown);
    line-height: 1.3;
    text-align: center;
}

.product-card {
    background: white;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(139, 111, 71, 0.12);
    transition: all 0.4s ease;
    border: 1px solid #FFDAC1;
}

.product-card:hover {
    transform: translateY(-12px);
    border-color: var(--peach);
}

.product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.product-card h3 {
    font-size: 1.4rem;
    margin: 1.2rem 0 0.6rem;
    color: var(--deep-brown);
}

.product-card p {
    font-weight: 700;
    color: var(--terracotta);
    font-size: 1.3rem;
}

.add-to-cart {
    width: 100%;
    background: linear-gradient(135deg, var(--terracotta), #E68A6B);
    color: white;
    border: none;
    padding: 1.2rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
}

.add-to-cart:hover {
    background: linear-gradient(135deg, #E68A6B, var(--terracotta));
    transform: translateY(-3px);
}

/* ==================== 8. FOOTER – NEW SOFT & WELCOMING VERSION ==================== */
footer {
    background: linear-gradient(135deg, #FFF1EB 0%, #E3F2FD 50%, #F8F0FF 100%);
    background-size: 400% 400%;
    animation: gentleFlow 20s ease infinite;
    color: #5D4037;
    padding: 6rem 0 2.5rem;
    margin-top: 8rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 182, 138, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(173, 216, 230, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 240, 245, 0.2) 0%, transparent 60%);
    pointer-events: none;
}

.footer-content {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2.8rem;
    margin: 2rem 0 3rem;
    flex-wrap: wrap;
    font-size: 1.1rem;
}

.footer-links a {
    color: #8B6F47;
    font-weight: 600;
    padding: 0.6rem 0;
    position: relative;
    transition: all 0.3s ease;
}

.footer-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #FFB68A, #81D4FA);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: width 0.4s ease;
    border-radius: 2px;
}

.footer-links a:hover {
    color: #D97757;
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-content p {
    color: #8B6F47;
    margin: 0;
    font-size: 1.05rem;
    font-weight: 500;
    opacity: 0.9;
}

/* Gentle animated background flow */
@keyframes gentleFlow {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Optional: Add a soft wave at the top */
footer::after {
    content: '';
    position: absolute;
    top: -30px;
    left: 0;
    width: 100%;
    height: 60px;
    background: white;
    border-radius: 50%;
    transform: scaleX(2);
    opacity: 0.7;
}

/* ==================== 9. RESPONSIVE DESIGN ==================== */

@media (max-width: 768px) {
    .navbar { flex-direction: column; padding: 1.2rem; gap: 1rem; }
    .nav-links { gap: 1.8rem; }
    .hero h1 { font-size: 2.5rem; }
}

@media (max-width: 480px) {
    .logo-text { font-size: 1.5rem; }
    .logo-img { height: 48px; }
    .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
}

/* ==================================================================
                    RESOURCE PAGE SPECIFIC STYLES
   ================================================================== */

.resource-hero {
    background: linear-gradient(135deg, var(--soft-peach) 0%, var(--mustard) 70%, #E8F5E9 100%);
    color: var(--deep-brown);
    padding: 7rem 3rem;
    border-radius: 40px;
    margin: 3rem auto;
    text-align: center;
    box-shadow: 0 28px 70px rgba(139, 111, 71, 0.24);
    max-width: 1400px;
    position: relative;
    overflow: hidden;
}

.resource-hero h1 {
    font-size: 3.9rem;
    margin-bottom: 1.2rem;
    font-family: 'Playfair Display', serif;
}

.resource-hero p {
    font-size: 1.35rem;
    max-width: 780px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

/* Main video section container */
.video-resources {
    background: var(--light-beige);
    padding: 6rem 2rem 8rem;
    border-radius: 40px;
    margin: 4rem 0;
}

.video-resources h2 {
    text-align: center;
    font-size: 3rem;
    color: var(--deep-brown);
    margin-bottom: 1rem;
}

.video-resources .intro-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
    color: #6D4C41;
    font-size: 1.2rem;
    line-height: 1.7;
}

/* Alternating layout – this is the magic */
.video-section {
    max-width: 1300px;
    margin: 5rem auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: white;
    border-radius: 36px;
    overflow: hidden;
    box-shadow: 0 20px 55px rgba(139, 111, 71, 0.16);
    border: 1px solid #FFDAC1;
    transition: all 0.4s ease;
}

.video-section:hover {
    transform: translateY(-12px);
    box-shadow: 0 35px 80px rgba(139, 111, 71, 0.26);
    border-color: var(--peach);
}

/* Video container – consistent sizing */
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 ratio */
    height: 0;
    overflow: hidden;
    background: #000;
}

.video-container video {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

/* Text side */
.text-container {
    padding: 3.5rem 3rem;
}

.text-container h3 {
    font-size: 2.1rem;
    color: var(--deep-brown);
    margin-bottom: 1.2rem;
}

.text-container p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #5D4037;
}

/* ALTERNATING DIRECTION – this makes it flow beautifully down the page */
.video-section.odd {
    grid-template-areas: "video text";
}

.video-section.even {
    grid-template-areas: "text video";
}

.video-section.odd .video-container { grid-area: video; }
.video-section.odd .text-container   { grid-area: text; }

.video-section.even .video-container { grid-area: video; }
.video-section.even .text-container   { grid-area: text; }

/* Mobile – stack perfectly */
@media (max-width: 992px) {
    .video-section {
        grid-template-columns: 1fr;
        grid-template-areas: 
            "text"
            "video";
        margin: 3rem auto;
        gap: 0;
    }
    
    .video-section.odd,
    .video-section.even {
        grid-template-areas: 
            "text"
            "video";
    }

    .text-container {
        padding: 3rem 2.5rem;
    }

    .video-container {
        padding-bottom: 56.25%;
    }

    .resource-hero h1 { font-size: 2.9rem; }
    .video-resources h2 { font-size: 2.6rem; }
}
.hero-buttons {
    display: flex;
    justify-content: center;    
    gap: 1.8rem;             
    flex-wrap: wrap;             
    margin-top: 2rem;
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.2rem;
    color: var(--deep-brown);
    border: 2px solid var(--peach);
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(139,111,71,0.15);
}

.btn-secondary:hover {
    background: var(--peach);
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(139,111,71,0.25);
}
/* ==================================================================
                    CONTACT PAGE SPECIFIC STYLES
   ================================================================== */

.contact-hero {
    background: linear-gradient(135deg, var(--soft-peach) 0%, var(--mustard) 60%, #E8F5E9 100%);
    padding: 5rem 2rem;
    text-align: center;
    border-radius: 32px;
    margin: 3rem auto;
    max-width: 800px;                    /* Same width as form */
    box-shadow: 0 20px 50px rgba(139, 111, 71, 0.18);
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(255, 182, 138, 0.2), transparent 60%);
    pointer-events: none;
}

.contact-hero h1 {
    font-size: 3.2rem;
    color: var(--deep-brown);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.contact-hero p {
    font-size: 1.25rem;
    color: #6D4C41;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto 6rem;
    padding: 0 2rem;
}

.contact-form {
    background: white;
    padding: 3.5rem;
    border-radius: 32px;
    box-shadow: 0 20px 50px rgba(139, 111, 71, 0.16);
    border: 1px solid #FFDAC1;
    transition: all 0.4s ease;
}

.contact-form:hover {
    box-shadow: 0 30px 70px rgba(139, 111, 71, 0.22);
    border-color: var(--peach);
}

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

.contact-form label {
    display: block;
    font-weight: 600;
    color: var(--warm-brown);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 1.1rem 1.4rem;
    border: 2px solid #FFEBDB;
    border-radius: 18px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    background: #FFFBF8;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--terracotta);
    background: white;
    box-shadow: 0 0 0 5px rgba(217, 119, 87, 0.15);
}

.contact-form textarea {
    min-height: 190px;
    resize: vertical;
}

.submit-btn {
    background: linear-gradient(135deg, var(--terracotta), #E68A6B);
    color: white;
    padding: 1.2rem 2.8rem;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    width: 100%;
    box-shadow: 0 8px 25px rgba(217, 119, 87, 0.3);
}

.submit-btn:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(217, 119, 87, 0.4);
    background: linear-gradient(135deg, #E68A6B, var(--terracotta));
}

.success-message {
    background: #E8F5E9;
    color: #2e7d32;
    padding: 1.8rem;
    border-radius: 20px;
    text-align: center;
    margin-top: 2rem;
    border: 2px solid #81C784;
    font-weight: 600;
    font-size: 1.1rem;
    display: none;
    box-shadow: 0 10px 30px rgba(129, 196, 132, 0.2);
}

/* ==================================================================
                   THANK YOU PAGE SPECIFIC STYLES
 ================================================================== */

.thankyou-page {
    min-height: calc(100vh - 200px);
    background: linear-gradient(135deg, #FFF1EB 0%, #E8F5E9 50%, #F8F0FF 100%);
    background-size: 400% 400%;
    animation: gentleFlow 20s ease infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.thankyou-card {
    background: white;
    padding: 4.5rem 3rem;
    border-radius: 36px;
    max-width: 660px;
    width: 100%;
    text-align: center;
    box-shadow: 0 30px 70px rgba(139, 111, 71, 0.22);
    border: 1px solid var(--soft-peach);
}

.thankyou-heart {
    font-size: 5rem;
    margin: 1.5rem 0;
    background: linear-gradient(135deg, var(--peach), var(--terracotta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 300;
}

.thankyou-card h1 {
    font-size: 3.4rem;
    color: var(--deep-brown);
    margin: 0.5rem 0 1.2rem;
}

.thankyou-card p {
    font-size: 1.3rem;
    color: #6D4C41;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.thankyou-card .btn-primary {
    padding: 1.1rem 2.8rem;
    font-size: 1.15rem;
}

/* Background decorative blobs */
.thankyou-page::before {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255,182,138,0.18) 0%, transparent 70%);
    border-radius: 50%;
    top: -250px;
    right: -250px;
}

.thankyou-page::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(129,196,132,0.18) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -200px;
    left: -200px;
}

/* ==================================================================
                 SHOP / PRODUCTS PAGE SPECIFIC STYLES – MOBILE-OPTIMIZED
   ================================================================== */

.products-hero {
    background: linear-gradient(135deg, var(--soft-peach) 0%, var(--mustard) 70%, #E8F5E9 100%);
    padding: 5rem 1.5rem;                  /* Reduced padding */
    text-align: center;
    border-radius: 36px;
    margin: 3rem auto;
    max-width: 1300px;
    box-shadow: 0 25px 60px rgba(139, 111, 71, 0.2);
    position: relative;
    overflow: hidden;
}

.products-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255,182,138,0.2), transparent 60%);
    pointer-events: none;
}

.products-hero h1 {
    font-size: 2.8rem;                     /* Smaller on all screens */
    color: var(--deep-brown);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.products-hero p {
    font-size: 1.2rem;                     /* Slightly smaller */
    color: #6D4C41;
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.7;
}

.products-section {
    padding: 3rem 0;                       /* Less vertical space */
}

/* PRODUCTS GRID – Smaller & truly mobile-friendly */
.products-grid {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); /* Desktop: smaller min */
    gap: 2rem;                                     /* Tighter gap overall */
}

/* Mobile overrides – smaller cards, 2 columns, compact everything */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);     /* Exactly 2 columns */
        gap: 1rem;                                 /* Very tight spacing */
        padding: 0 0.8rem;
    }

    .product-card {
        border-radius: 24px;                       /* Slightly smaller corners */
    }

    .product-card img {
        height: 160px;                             /* Much smaller images */
    }

    .product-info {
        padding: 1.2rem 1rem;                      /* Less padding inside card */
    }

    .product-info h3 {
        font-size: 1.15rem;                        /* Compact title */
        margin: 0 0 0.5rem;
    }

    .price {
        font-size: 1.4rem;                         /* Smaller price */
        margin: 0.5rem 0;
    }

    .add-to-cart-btn {
        padding: 0.8rem 1.2rem;                    /* Smaller button */
        border-radius: 40px;
        font-size: 0.95rem;
        box-shadow: 0 6px 18px rgba(217, 119, 87, 0.25);
    }

    .add-to-cart-btn:hover {
        transform: translateY(-4px);
        box-shadow: 0 14px 32px rgba(217, 119, 87, 0.35);
    }
}

/* Extra small phones – even tighter */
@media (max-width: 480px) {
    .products-grid {
        gap: 0.8rem;
        padding: 0 0.5rem;
    }

    .product-card img {
        height: 140px;
    }

    .product-info {
        padding: 1rem 0.8rem;
    }

    .product-info h3 {
        font-size: 1.05rem;
    }

    .price {
        font-size: 1.3rem;
    }

    .add-to-cart-btn {
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
    }
}

/* Keep your existing card styles (just refined) */
.product-card {
    background: white;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(139, 111, 71, 0.14);
    border: 1px solid #FFDAC1;
    transition: all 0.4s ease;
    text-align: center;
}

.product-card:hover {
    transform: translateY(-12px);                  /* Subtler hover */
    box-shadow: 0 30px 70px rgba(139, 111, 71, 0.24);
    border-color: var(--peach);
}

.product-card img {
    width: 100%;
    height: 220px;                                 /* Smaller base height */
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.product-info {
    padding: 1.6rem 1.2rem;                        /* Reduced from original */
}

.product-info h3 {
    font-size: 1.35rem;                            /* Slightly smaller base */
    color: var(--deep-brown);
    margin: 0 0 0.6rem;
    line-height: 1.3;
}

.price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--terracotta);
    margin: 0.6rem 0;
}

.add-to-cart-btn {
    background: linear-gradient(135deg, var(--terracotta), #E68A6B);
    color: white;
    border: none;
    padding: 1rem 1.6rem;                          /* Smaller base button */
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    width: 100%;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(217, 119, 87, 0.3);
}

.add-to-cart-btn:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(217, 119, 87, 0.4);
}

/* Cart button in navbar – smaller on mobile */
@media (max-width: 768px) {
    .cart-button {
        padding: 0.5rem 1rem;
        font-size: 0.95rem;
    }
}

/* ==================================================================
                 HOMEPAGE CONTACT SECTION STYLES
   ================================================================== */
/* HOMEPAGE CONTACT – FINAL CUTE & BALANCED VERSION (keeps your exact HTML) */
.homepage-contact-split {
    background: var(--light-beige);
    padding: 6 5rem 2rem;
    margin: 6rem 0 0;
    border-radius: 40px;
    overflow: hidden;
}

.contact-split-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;   /* form slightly wider */
    gap: 4rem;
    max-width: 1350px;
    margin: 0 auto;
    align-items: stretch;                /* ← forces both sides same height */
    padding: 0 2rem;
}

/* LEFT: Have a question? – perfect height match */
.contact-split-text {
    display: flex;
    align-items: center;
}

.contact-hero-mini {
    background: linear-gradient(135deg, var(--soft-peach) 0%, var(--mustard) 70%);
    padding: 3.2rem 3rem;
    border-radius: 32px;
    box-shadow: 0 20px 50px rgba(139, 111, 71, 0.2);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-hero-mini h1 {
    font-size: 2.75rem;
    margin-bottom: 0.8rem;
    line-height: 1.2;
}

.contact-hero-mini p {
    font-size: 1.3rem;
    line-height: 1.7;
    margin: 0;
}

/* RIGHT: Contact form – same height, shorter message box */
.contact-split-form {
    display: flex;
    align-items: center;
}

/* Re-use your existing .contact-form exactly as on the contact page */
.contact-form {
    background: white;
    padding: 3.2rem 3rem;           /* same padding as main contact page */
    border-radius: 32px;
    box-shadow: 0 20px 50px rgba(139, 111, 71, 0.18);
    border: 1px solid #FFDAC1;
    width: 100%;
    height: 100%;                   /* ← matches left side perfectly */
    box-sizing: border-box;
}

/* Make spacing tighter and message box shorter */
.contact-form .form-group {
    margin-bottom: 1.7rem;
}

.contact-form textarea {
    min-height: 115px !important;    /* ← short & cute message box */
    max-height: 115px;
    resize: none;
}

/* Optional: slightly smaller labels for better balance */
.contact-form label {
    font-size: 1.02rem;
    margin-bottom: 0.4rem;
}

/* Mobile – still gorgeous */
@media (max-width: 992px) {
    .contact-split-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .contact-hero-mini,
    .contact-form {
        padding: 3rem 2.5rem;
    }
    .contact-hero-mini h1 {
        font-size: 2.5rem;
        text-align: center;
    }
    .contact-form {
        height: auto;
    }
}
/* =======================================================
              SOCIAL MEDIA SECTION STYLES
 ========================================================= */
.homepage-social-single {
    background: var(--light-beige);
    padding: 5rem 2rem 6rem;
    margin: 3rem 0 0;
    border-radius: 40px;
}

.social-gradient-card {
    background: linear-gradient(135deg, #E8F5E9 0%, var(--soft-peach) 50%, var(--mustard) 100%);
    padding: 4rem 3.5rem;
    border-radius: 36px;
    box-shadow: 0 25px 60px rgba(139, 111, 71, 0.22);
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.social-gradient-card h1 {
    font-size: 2.8rem;
    color: var(--deep-brown);
    margin-bottom: 0.8rem;
}

.social-gradient-card p {
    font-size: 1.3rem;
    color: #6D4C41;
    max-width: 600px;
    margin: 0 auto 2.8rem;
    line-height: 1.7;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

/* CIRCULAR BUTTONS – IMAGES FILL PERFECTLY */
.social-icon {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    overflow: hidden;                    /* ← forces perfect circle */
    display: block;
    box-shadow: 0 12px 35px rgba(139,111,71,0.28);
    transition: all 0.4s ease;
    background: white;                  /* fallback if image fails */
}

.social-icon:hover {
    transform: translateY(-12px) scale(1.08);
    box-shadow: 0 25px 50px rgba(139,111,71,0.38);
}

/* IMAGES FILL THE ENTIRE CIRCLE */
.social-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;                   /* ← this is the magic */
    display: block;
}

/* Optional: slightly bigger on large screens */
@media (min-width: 992px) {
    .social-icon {
        width: 82px;
        height: 82px;
    }
}

/* Mobile – perfect size */
@media (max-width: 768px) {
    .social-icons {
        gap: 1.6rem;
    }
    .social-icon {
        width: 68px;
        height: 68px;
    }
}
/* ===================================================== */
/*          LEARNING PAGE SPECIFIC STYLES                */
/* ===================================================== */

.learning-page { 
    background: var(--light-beige); 
    min-height: 100vh;
    font-family: 'Poppins', sans-serif;
}

/* Main container – fixes everything being stuck to the left */
.container,
.learning-container {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero */
.learning-hero {
    background: linear-gradient(135deg, var(--soft-peach) 0%, #E8F5E9 50%, var(--mustard) 100%);
    padding: 9rem 2rem 8rem;
    text-align: center;
    border-radius: 40px;
    margin: 3rem auto 5rem;
    max-width: 1400px;
    box-shadow: 0 30px 80px rgba(139,111,71,.25);
}
.learning-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4.2rem;
    color: var(--deep-brown);
    margin-bottom: 1rem;
}
.learning-hero p {
    font-size: 1.4rem;
    max-width: 820px;
    margin: 0 auto;
    line-height: 1.8;
    color: #6D4C41;
}

/* 3-column grid – perfect now and when you add more courses */
.course-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3.5rem;
    max-width: 1480px;
    margin: 4rem auto 8rem;
    padding: 0 2rem;
}
@media (max-width: 1024px) {
    .course-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .course-grid { 
        grid-template-columns: 1fr;
        gap: 2.8rem;
        padding: 0 1.5rem;
    }
    .learning-hero h1 { font-size: 3.2rem; }
    .learning-hero { padding: 7rem 1.5rem; }
}

/* Course cards */
.course-card {
    background: white;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(139,111,71,.16);
    border: 1px solid #FFDAC1;
    transition: all .4s ease;
}
.course-card:hover {
    transform: translateY(-16px);
    box-shadow: 0 35px 80px rgba(139,111,71,.30);
    border-color: var(--peach);
}
.course-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}
.card-body {
    padding: 2.2rem;
}
.card-body h3 {
    font-size: 1.65rem;
    color: var(--deep-brown);
    margin-bottom: .8rem;
}
.card-body p {
    color: #6D4C41;
    line-height: 1.7;
    margin-bottom: 1rem;
}
.card-body strong {
    display: block;
    margin: 1rem 0;
    color: #8D6E63;
    font-weight: 500;
}

/* Buttons */
.btn,
.btn-primary,
.btn-back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    padding: 0.95rem 2.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all .35s ease;
    box-shadow: 0 8px 25px rgba(139,111,71,.15);
    text-decoration: none;
}
.btn-primary {
    background: linear-gradient(135deg, var(--terracotta), #E68A6B);
    color: white;
}
.btn-primary:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 50px rgba(217,119,87,.45);
}
.btn-back {
    background: white;
    color: var(--deep-brown);
    border: 2px solid #FFDAC1;
    margin: 2rem 0;
    display: inline-block;
}
.btn-back:hover {
    background: #FFFBF5;
    border-color: var(--peach);
}

/* Video wrapper (used on individual course pages) */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #000;
    border-radius: 32px;
    box-shadow: 0 25px 70px rgba(139,111,71,.28);
    margin: 2rem 0;
}
.video-wrapper video {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border-radius: 32px;
}
/* FOOTER  */
.site-footer {
    margin-top: 10rem;
    padding: 5rem 2rem;
    background: #FAF4ED;            
    border-top: 6px solid var(--peach);
    color: var(--deep-brown);
    text-align: center;
    font-size: 1.05rem;
}
.site-footer .container {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 2rem;
}
.site-footer p {
    margin: 0;
    font-weight: 500;
}
.site-footer .footer-links {
    margin-top: 1.5rem;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.site-footer .footer-links a {
    color: var(--terracotta);
    text-decoration: none;
    font-weight: 500;
}
.site-footer .footer-links a:hover {
    color: var(--deep-brown);
}
/* ===================================================== */
/*                    LOGIN PAGE                         */
/* ===================================================== */

:root {
  --light-beige: #FFFBF8;
  --deep-brown: #5D4037;
  --terracotta: #D97757;
}

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

body {
  font-family: 'Poppins', sans-serif;
  background: var(--light-beige);
}

.auth-page {
  min-height: 100vh;
  background: var(--light-beige);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.auth-card {
  background: white;
  padding: 3rem 5rem;          
  border-radius: 28px;          
  box-shadow: 0 25px 70px rgba(139, 111, 71, .22);
  border: 1px solid #FFDAC1;
  max-width: 560px;            
  width: 100%;
  text-align: center;
}

.auth-card h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.7rem;       
  color: var(--deep-brown);
  margin-bottom: 0.5rem;
}

.auth-card p {
  color: #6D4C41;
  margin-bottom: 2rem;          
  font-size: 1.1rem;
  line-height: 1.5;
}

.auth-form .form-group {
  margin-bottom: 1.3rem;       
  text-align: left;
}

.auth-form label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--deep-brown);
  font-weight: 600;
  font-size: 0.95rem;
}

.auth-form input {
  width: 100%;
  padding: 1rem 1.4rem;
  border: 2px solid #FFEBDB;
  border-radius: 20px;
  background: #FFFBF8;
  font-size: 1rem;
  transition: all 0.3s;
}

.auth-form input:focus {
  outline: none;
  border-color: var(--terracotta);
  box-shadow: 0 0 0 5px rgba(217, 119, 87, 0.15);
}

.btn-primary:hover {
  background: #c96a4a;
  transform: translateY(-2px);
}

.auth-links {
  margin-top: 1.6rem;
  font-size: 0.95rem;
}

.auth-links a {
  color: var(--terracotta);
  text-decoration: none;
}

.auth-links a:hover {
  text-decoration: underline;
}

/* ===================================================== */
/*          REGISTRATION PAGE – SAME STYLE AS LOGIN      */
/* ===================================================== */
.auth-card h1 {
  font-size: 2.7rem;          
}

.auth-card p {
  margin-bottom: 1.8rem;      
}

.auth-links p {
  color: #8D6E63;
  margin-bottom: 0.5rem;
}

.auth-links a {
  color: var(--terracotta);
  font-weight: 600;
}

.auth-links a:hover {
  text-decoration: underline;
}

@media (max-width: 480px) {
  .auth-card {
    padding: 2.5rem 2.5rem;
    max-width: 90%;
  }
}

/* ======================================== */
/*          2FA VERIFICATION PAGE           */
/* ======================================== */

.auth-card p {
  margin-bottom: 1.8rem;       
}

.code-input-wrapper {
  position: relative;
}

#totp-code {
  font-size: 2rem;             
  font-weight: 600;
  letter-spacing: 1rem;         
  text-align: center;
  padding: 1rem 1rem;
  border: 2px solid #FFEBDB;
  border-radius: 20px;
  background: #FFFBF8;
  transition: all 0.3s;
}

#totp-code:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 5px rgba(217, 119, 87, 0.15);
  outline: none;
}

#totp-code::placeholder {
  color: #D7CCC8;
  letter-spacing: normal;
  font-size: 1rem;
}

/* Resend link styling */
#resend-btn {
  color: var(--terracotta);
  text-decoration: none;
  font-weight: 600;
}

#resend-btn:hover {
  text-decoration: underline;
}

/* ======================================== */
/*    BACK BUTTON Login and Registration    */
/* ======================================== */
.back-link {
  position: absolute;
  top: 2rem;                 
  left: 2.5rem;                
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #A1887F;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.25s ease;
  z-index: 10;
}

.back-link:hover {
  color: var(--terracotta);
  gap: 0.7rem;
}

.back-link svg {
  transition: transform 0.25s ease;
}

.back-link:hover svg {
  transform: translateX(-4px);
}

.auth-card {
  position: relative; 
}
/* ===================================================== */
/*                UPDATE PASSWORD PAGE                    */
/* ===================================================== */

.auth-page {
  min-height: 100vh;
  background: var(--light-beige);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.auth-card {
  background: white;
  padding: 3rem 5rem;
  border-radius: 28px;
  box-shadow: 0 25px 70px rgba(139, 111, 71, .22);
  border: 1px solid #FFDAC1;
  max-width: 560px;
  width: 100%;
  text-align: center;
}

.auth-card h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.7rem;
  color: var(--deep-brown);
  margin-bottom: 0.5rem;
  margin-top: 2rem;
}

.auth-card > p {
  color: #6D4C41;
  margin-bottom: 2rem;
  font-size: 1.1rem;
  line-height: 1.5;
}

/* Back Link */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--terracotta);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 2rem;
  transition: color 0.3s;
}

.back-link:hover {
  color: #c96a4a;
}

.back-link svg {
  width: 18px;
  height: 18px;
}

/* Form Styling */
.auth-form .form-group {
  margin-bottom: 1.3rem;
  text-align: left;
}

.auth-form label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--deep-brown);
  font-weight: 600;
  font-size: 0.95rem;
}

.auth-form input {
  width: 100%;
  padding: 1rem 1.4rem;
  border: 2px solid #FFEBDB;
  border-radius: 20px;
  background: #FFFBF8;
  font-size: 1rem;
  transition: all 0.3s;
}

.auth-form input:focus {
  outline: none;
  border-color: var(--terracotta);
  box-shadow: 0 0 0 5px rgba(217, 119, 87, 0.15);
}

/* Primary Button */
.btn-primary {
  background: var(--terracotta);
  color: white;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  width: 100%;
  margin-top: 1rem;
}

.btn-primary:hover {
  background: #c96a4a;
  transform: translateY(-2px);
}

/* Message Feedback */
#message {
  margin: 0;
  min-height: 0;
}

#message:not(:empty) {
  margin: 1rem 0;
  min-height: 1.2em;
}


/* Responsive */
@media (max-width: 480px) {
  .auth-card {
    padding: 2.5rem 2rem;
    max-width: 90%;
  }
  
  .auth-card h1 {
    font-size: 2.3rem;
  }
}
/* ===================================================== */
/*           LANDING SEO/ WEB OPTIMSATION                */
/* ===================================================== */
.seo-contact .contact-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Left: form, Right: text+image */
  gap: 3rem;
  align-items: start;
}

.seo-contact .contact-split-form {
  background: #ffffff;
  padding: 2rem;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(63,69,81,0.18);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.seo-contact .contact-split-right {
  display: flex;
  flex-direction: column;
  gap: 2rem; /* spacing between text and image */
}

.seo-contact .contact-hero-mini h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.seo-contact .contact-hero-mini p {
  font-size: 1.05rem;
  line-height: 1.6;
}

.seo-contact .contact-text-image {
  flex-grow: 1; /* fills remaining vertical space */
  border-radius: 24px;
  overflow: hidden;
}

.seo-contact .contact-text-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Responsive */
@media (max-width: 992px) {
  .seo-contact .contact-split-grid {
    grid-template-columns: 1fr;
  }

  .seo-contact .contact-split-right {
    flex-direction: column;
  }

  .seo-contact .contact-text-image {
    height: 300px;
  }
}
.contact-hero-mini p {
    margin-bottom: 1.5rem; /* adjust the spacing */
}
/* ===================================================== */
/*             INDIVIDUAL PRODUCT DETAILS                */
/* ===================================================== */
.product-detail {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 2.5rem;
    align-items: start;
}

.carousel {
    background: white;
    border-radius: 20px;
    padding: 0.6rem;
    box-shadow: 0 12px 30px rgba(139,111,71,0.08);
    position: relative;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 400ms ease;
    will-change: transform;
}

.carousel-slide {
    flex: 0 0 100%;
    min-width: 100%;
    display: block;
    border-radius: 14px;
    overflow: hidden;
}

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

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.95);
    border: 1px solid rgba(0,0,0,0.06);
    color: var(--deep-brown);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(139,111,71,0.08);
}

.carousel-btn.prev { left: 12px; }
.carousel-btn.next { right: 12px; }

.carousel-btn:focus { outline: 3px solid var(--mustard); }

.carousel-dots {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 0.8rem;
}

.carousel-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #E9E3E0;
    border: none;
    cursor: pointer;
    padding: 0;
}

.carousel-dots .dot[aria-pressed="true"] { background: var(--terracotta); }

@media (max-width: 740px){
    .carousel-slide img { height: 320px; }
}

.product-side {
    background: white;
    padding: 1.6rem;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(139,111,71,0.08);
}

.price { color: var(--terracotta); font-weight: 800; font-size: 1.6rem; margin: 0.6rem 0; }

.qty-controls { display:flex; align-items:center; gap:0.6rem; margin: 1rem 0; }
.qty-controls button { padding: 0.6rem 1rem; border-radius: 8px; border:1px solid #eee; background:#fff; cursor:pointer; }
.qty-controls input { width:64px; text-align:center; padding:0.6rem; border-radius:8px; border:1px solid #eee; }

.actions { display:flex; gap:0.8rem; align-items:center; margin-top:1rem; }

.btn-continue { background:transparent; border:1px solid var(--terracotta); color:var(--terracotta); padding:0.85rem 1.4rem; border-radius:12px; cursor:pointer; }

/* ==================== CURRENCY SWITCHER ==================== */
.currency-switcher {
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.currency-switcher label {
    margin-right: 10px;
    font-family: 'Poppins', Arial, sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--warm-brown);
}

.currency-switcher select {
    padding: 8px 32px 8px 14px; /* Extra right padding for arrow */
    border-radius: 6px;
    border: 2px solid transparent;
    background-color: white;
    color: var(--warm-brown);
    font-family: 'Poppins', Arial, sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(139, 111, 71, 0.1);

    /* Remove default arrow */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;

    /* Custom terracotta arrow */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23D97757' viewBox='0 0 407.437 407.437'%3E%3Cpolygon points='386.258,91.567 203.718,273.512 21.179,91.567 0,112.815 203.718,407.437 407.437,112.815 '/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 10px;
}

.currency-switcher select:hover {
    border-color: var(--terracotta);
    background-color: #fff9f5; /* Very light peach tint */
}

.currency-switcher select:focus {
    border-color: var(--terracotta);
    box-shadow: 0 0 0 3px rgba(217, 119, 87, 0.2); /* Soft terracotta glow */
}

/* Mobile adjustment */
@media (max-width: 768px) {
    .currency-switcher {
        margin-left: 15px;
    }
    .currency-switcher select {
        padding: 7px 28px 7px 12px;
        font-size: 1rem;
    }
}