/* 
   Ceylon Heritage Spices - Advanced Scroll Animation, Preloader & Mobile Nav Stylesheet
*/

:root {
    --bg-dark: #061e14;
    --bg-darker: #04140d;
    --bg-card: #092a1d;
    --bg-header: #04190e;
    --accent-gold: #d4af37;
    --gold-light: #f3e0aa;
    --gold-bright: #e5c158;
    --gold-dark: #b89343;
    --gold-deep: #aa820a;
    --text-light: #f3f7f4;
    --text-muted: #9ab4a7;
    --text-gold: #e5c158;
    --border-gold: rgba(212, 175, 55, 0.4);
    --border-gold-strong: #d4af37;
    --font-heading: 'Cinzel', serif;
    --font-subheading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    --font-sinhala: 'Noto Sans Sinhala', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

.text-gold {
    color: var(--text-gold) !important;
}

.border-gold {
    border-color: var(--border-gold-strong) !important;
}

/* Luxury Preloader Screen */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #04190e;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), visibility 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

#preloader.fade-out {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    display: none !important;
}

.preloader-content {
    text-align: center;
}

.preloader-logo {
    width: 110px;
    height: auto;
    margin-bottom: 24px;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.5));
    animation: floatAnim 3s ease-in-out infinite;
}

.spinner-gold {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(212, 175, 55, 0.2);
    border-top: 3px solid var(--gold-bright);
    border-radius: 50%;
    margin: 0 auto 18px;
    animation: spinSlow 0.9s linear infinite;
}

.preloader-text {
    font-family: var(--font-heading);
    color: var(--gold-bright);
    letter-spacing: 3px;
    font-size: 0.85rem;
    font-weight: 700;
}

/* Brand Logo Image */
.brand-logo-img {
    height: 65px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.brand-logo-wrapper:hover .brand-logo-img {
    transform: scale(1.05);
}

/* Universal Scroll Animation Engine */
[data-animate] {
    opacity: 0;
    will-change: opacity, transform;
    transition: opacity 0.85s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.85s cubic-bezier(0.165, 0.84, 0.44, 1);
}

[data-animate="fade-up"] {
    transform: translateY(45px);
}

[data-animate="fade-down"] {
    transform: translateY(-45px);
}

[data-animate="fade-left"] {
    transform: translateX(-50px);
}

[data-animate="fade-right"] {
    transform: translateX(50px);
}

[data-animate="zoom-in"] {
    transform: scale(0.82);
}

[data-animate="zoom-out"] {
    transform: scale(1.15);
}

[data-animate="flip-up"] {
    transform: perspective(600px) rotateX(-25deg) translateY(30px);
}

[data-animate].animated {
    opacity: 1;
    transform: translate(0, 0) scale(1) rotateX(0deg);
}

@keyframes floatAnim {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}

@keyframes spinSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulseGold {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.6); }
    70% { box-shadow: 0 0 0 16px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

@keyframes bounceCart {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.45); }
}

.hero-image-wrapper {
    animation: floatAnim 6s ease-in-out infinite;
}

.section-flourish-title {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gold-bright);
    position: relative;
    display: inline-block;
    font-size: 1.85rem;
    text-transform: uppercase;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 400;
    margin-top: 5px;
}

/* Header & Navbar */
.header-navbar {
    background-color: var(--bg-header);
    border-bottom: 1px solid var(--border-gold);
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    z-index: 1030;
    transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

.navbar-container {
    max-width: 1240px;
}

.navbar-nav .nav-link {
    color: #e0e6e3;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 8px 14px !important;
    text-transform: uppercase;
    transition: color 0.3s ease, transform 0.2s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--gold-bright) !important;
    transform: translateY(-1px);
}

.style-chevron {
    font-size: 0.65rem;
    vertical-align: middle;
}

.custom-dropdown {
    background-color: var(--bg-header);
    border: 1px solid var(--border-gold-strong);
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    padding: 8px 0;
}

.custom-dropdown .dropdown-item {
    color: #e0e6e3;
    font-size: 0.85rem;
    padding: 8px 20px;
    transition: all 0.2s ease;
}

.custom-dropdown .dropdown-item:hover {
    background-color: rgba(212, 175, 55, 0.15);
    color: var(--gold-bright);
    padding-left: 24px;
}

.nav-icon-link {
    color: var(--gold-light);
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.nav-icon-link:hover {
    color: #ffffff;
    background-color: rgba(212, 175, 55, 0.15);
    transform: scale(1.1);
}

/* Cart Badge Absolute Positioning */
.cart-badge {
    position: absolute;
    top: -5px;
    right: -8px;
    background: linear-gradient(135deg, var(--gold-bright), var(--gold-dark));
    color: var(--bg-darker);
    font-size: 0.65rem;
    font-weight: 800;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.animate-bounce {
    animation: bounceCart 0.4s ease-in-out;
}

.custom-toggler {
    border-color: var(--border-gold-strong);
}

.custom-toggler .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(212, 175, 55, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.btn-gold {
    background: linear-gradient(135deg, #f3e0aa 0%, #d4af37 50%, #aa820a 100%);
    color: #04190e;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    padding: 11px 28px;
    border-radius: 30px;
    border: none;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: pulseGold 3s infinite;
}

.btn-gold:hover {
    background: linear-gradient(135deg, #ffffff 0%, #e5c158 100%);
    color: #04190e;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
}

.btn-gold-card {
    background: linear-gradient(135deg, #e5c158 0%, #b89343 100%);
    color: #04190e;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.5px;
    padding: 8px 18px;
    border-radius: 4px;
    border: none;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-gold-card:hover {
    background: linear-gradient(135deg, #ffffff 0%, #d4af37 100%);
    color: #04190e;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-gold-sub {
    background: linear-gradient(135deg, #e5c158 0%, #b89343 100%);
    color: #04190e;
    font-size: 0.8rem;
    padding: 9px;
    border-radius: 4px;
    border: none;
    transition: all 0.3s ease;
}

.btn-gold-sub:hover {
    background: #ffffff;
    color: #04190e;
    transform: translateY(-2px);
}

.hero-section {
    position: relative;
    background: radial-gradient(circle at 70% 50%, #0a3625 0%, #061e14 70%);
    padding: 60px 0;
    overflow: hidden;
}

.hero-sinhala-text {
    font-family: var(--font-sinhala);
    color: var(--gold-light);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.hero-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 3.4rem;
    line-height: 1.15;
    color: var(--gold-bright);
    letter-spacing: 3px;
    margin: 15px 0;
    text-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
}

.hero-description {
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 520px;
    margin-bottom: 25px;
}

.hero-feature-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
}

.hero-feature-badge:hover {
    transform: translateY(-4px);
}

.badge-icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px stroke var(--gold-bright);
    outline: 1px solid var(--border-gold-strong);
    outline-offset: 2px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-bright);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.hero-feature-badge:hover .badge-icon-circle {
    background: var(--gold-bright);
    color: var(--bg-darker);
}

.badge-text {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--gold-light);
    text-transform: uppercase;
    line-height: 1.2;
}

.hero-img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.6);
    border: 1px solid var(--border-gold);
}

.products-section {
    padding: 70px 0;
    background-color: var(--bg-dark);
}

.product-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-gold-strong);
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease, border-color 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.25);
    border-color: var(--gold-bright);
}

.product-image-box {
    height: 240px;
    overflow: hidden;
    position: relative;
    margin-bottom: 15px;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.product-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--gold-bright);
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 2px;
}

.product-sub {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 10px;
}

.product-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    padding: 0 20px;
    margin-bottom: 20px;
    flex-grow: 1;
}

.feature-strip {
    background-color: var(--bg-card);
    border-top: 1px solid var(--border-gold-strong);
    border-bottom: 1px solid var(--border-gold-strong);
    padding: 22px 0;
}

.feature-strip-item {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.3s ease;
}

.feature-strip-item:hover {
    transform: translateX(5px);
}

.strip-icon-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--border-gold-strong);
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-bright);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feature-strip-item:hover .strip-icon-circle {
    background: var(--gold-bright);
    color: var(--bg-darker);
}

.strip-title {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--gold-bright);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.strip-sub {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin: 0;
}

.about-section {
    padding: 80px 0;
    background-color: var(--bg-dark);
}

.about-img-container {
    position: relative;
    border-radius: 12px;
}

.about-img {
    width: 100%;
    border-radius: 12px;
    border: 1px solid var(--border-gold);
    box-shadow: 0 15px 35px rgba(0,0,0,0.6);
    transition: transform 0.5s ease;
}

.about-img-container:hover .about-img {
    transform: scale(1.02);
}

.product-badge-overlay {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: #04190e;
    border: 2px solid var(--gold-bright);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.8);
    transition: transform 0.4s ease;
}

.product-badge-overlay:hover {
    transform: scale(1.1) rotate(5deg);
}

.badge-text-curved {
    font-family: var(--font-heading);
    font-size: 0.58rem;
    font-weight: 800;
    color: var(--gold-bright);
    letter-spacing: 0.5px;
    text-align: center;
}

.about-tag {
    font-family: var(--font-body);
    font-size: 0.78rem;
    letter-spacing: 2px;
    color: var(--gold-bright);
    font-weight: 700;
    text-transform: uppercase;
}

.about-title {
    font-family: var(--font-heading);
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--text-light);
    margin: 10px 0 20px;
    line-height: 1.25;
}

.about-desc {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.about-list {
    margin-bottom: 30px;
}

.about-list li {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    transition: transform 0.2s ease;
}

.about-list li:hover {
    transform: translateX(5px);
    color: var(--gold-bright);
}

.process-section {
    padding: 80px 0;
    background-color: var(--bg-darker);
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
}

.process-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 1px solid var(--border-gold-strong);
    background: rgba(212, 175, 55, 0.08);
    color: var(--gold-bright);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 14px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.process-step:hover .process-circle {
    background: var(--gold-bright);
    color: var(--bg-darker);
    transform: scale(1.15) rotate(10deg);
}

.process-title {
    font-family: var(--font-body);
    font-size: 0.76rem;
    font-weight: 700;
    color: var(--gold-bright);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.process-desc {
    font-size: 0.72rem;
    color: var(--text-muted);
    max-width: 140px;
    margin: 0;
}

.process-arrow {
    color: var(--gold-dark);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -30px;
}

.testimonials-section {
    padding: 80px 0;
    background-color: var(--bg-dark);
}

.testimonial-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    padding: 30px 22px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.testimonial-card:hover {
    border-color: var(--border-gold-strong);
    transform: translateY(-6px);
}

.quote-icon {
    font-size: 1.8rem;
    color: var(--gold-bright);
    margin-bottom: 12px;
}

.testimonial-text {
    font-size: 0.85rem;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 18px;
    line-height: 1.6;
}

.stars-rating {
    color: var(--gold-bright);
    font-size: 0.8rem;
    margin-bottom: 12px;
}

.author-name {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--gold-light);
    margin-bottom: 2px;
}

.author-location {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

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

.dot.active {
    background-color: var(--gold-bright);
    width: 24px;
    border-radius: 10px;
}

.delivery-banner {
    position: relative;
    background: linear-gradient(rgba(4, 25, 14, 0.88), rgba(4, 25, 14, 0.88)), url('../images/hero.png');
    background-size: cover;
    background-position: center;
    border-top: 1px solid var(--border-gold-strong);
    border-bottom: 1px solid var(--border-gold-strong);
    padding: 40px 0;
}

.delivery-banner-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--gold-bright);
    letter-spacing: 2px;
    margin-bottom: 4px;
}

.delivery-banner-sub {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.site-footer {
    background-color: var(--bg-header);
    border-top: 1px solid var(--border-gold);
    padding-top: 60px;
}

.footer-heading {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold-bright);
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-desc,
.newsletter-text {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.82rem;
    display: inline-block;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold-bright);
    padding-left: 6px;
}

.footer-contact-info li {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.social-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--border-gold);
    color: var(--gold-bright);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--gold-bright);
    color: var(--bg-darker);
    border-color: var(--gold-bright);
    transform: scale(1.15) rotate(5deg);
}

.newsletter-input {
    background-color: rgba(9, 42, 29, 0.7);
    border: 1px solid var(--border-gold);
    color: #ffffff;
    font-size: 0.82rem;
    padding: 8px 12px;
    transition: border-color 0.3s ease;
}

.newsletter-input:focus {
    background-color: var(--bg-card);
    border-color: var(--gold-bright);
    color: #ffffff;
    box-shadow: none;
}

.newsletter-input::placeholder {
    color: var(--text-muted);
}

.copyright-text,
.made-with-text {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.border-gold-subtle {
    border-color: rgba(212, 175, 55, 0.2) !important;
}

.mobile-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 62px;
    background-color: var(--bg-header);
    border-top: 1px solid var(--border-gold-strong);
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.8);
    z-index: 1040;
    padding: 6px 0;
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    flex: 1;
}

.mobile-nav-item span {
    font-size: 0.65rem;
    font-weight: 600;
    margin-top: 2px;
    letter-spacing: 0.5px;
}

.mobile-nav-item:hover,
.mobile-nav-item.active {
    color: var(--gold-bright);
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 2.4rem;
    }
    .process-arrow {
        display: none;
    }
    .product-badge-overlay {
        right: 10px;
        bottom: 10px;
    }
}

@media (max-width: 767px) {
    body {
        padding-bottom: 65px;
    }
    .hero-title {
        font-size: 1.85rem;
    }
    .section-flourish-title {
        font-size: 1.4rem;
    }
    .delivery-banner-title {
        font-size: 1.5rem;
    }
    .feature-strip-item {
        margin-bottom: 15px;
    }
}

/* Global Footprint Section */
.global-footprint-section {
    background-color: var(--bg-darker);
    position: relative;
    padding: 70px 0;
}

.title-gold-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, #f3e0aa, #d4af37);
    border-radius: 2px;
}

.country-card {
    background: #092a1d;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    padding: 22px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    height: 100%;
}

.country-card:hover {
    border-color: var(--gold-bright);
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(212, 175, 55, 0.25);
    background: #0d3827;
}

.country-flag {
    width: 52px;
    height: 34px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.country-name {
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 600;
    color: #e0e6e3;
    letter-spacing: 0.5px;
}
