* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background-color: #F7F4EF; color: #111111; overflow-x: hidden; }
.font-playfair { font-family: 'Playfair Display', serif; }
.font-cormorant { font-family: 'Cormorant Garamond', serif; }
.font-inter { font-family: 'Inter', sans-serif; }

.nav-link { position: relative; transition: color 0.3s ease; cursor: pointer; }
.nav-link::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: #9A6B42; transition: width 0.3s ease; }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link:hover { color: #9A6B42; }

.card-hover { transition: transform 0.3s ease, box-shadow 0.3s ease; cursor: pointer; }
.card-hover:hover { transform: translateY(-6px); box-shadow: 0 15px 30px rgba(154, 107, 66, 0.15); }

.country-circle { transition: transform 0.3s ease; cursor: pointer; }
.country-circle:hover { transform: scale(1.08); }

.btn-primary { background: #9A6B42; color: white; transition: all 0.3s ease; cursor: pointer; border: none; }
.btn-primary:hover { background: #8B5E3C; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(154, 107, 66, 0.3); }
.btn-secondary { border: 1.5px solid #9A6B42; color: #9A6B42; transition: all 0.3s ease; cursor: pointer; background: transparent; }
.btn-secondary:hover { background: #9A6B42; color: white; transform: translateY(-2px); }

.newsletter-glow { box-shadow: 0 0 40px rgba(154, 107, 66, 0.2); transition: box-shadow 0.3s ease; }
.newsletter-glow:hover { box-shadow: 0 0 60px rgba(154, 107, 66, 0.35); }

.category-overlay { position: relative; overflow: hidden; cursor: pointer; }
.category-overlay::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.6) 100%); z-index: 1; }
.category-overlay img { transition: transform 0.4s ease; }
.category-overlay:hover img { transform: scale(1.05); }

.floating { animation: floatAnim 6s ease-in-out infinite; }
@keyframes floatAnim { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

.announcement-bar { background: #111111; color: white; }

.mobile-menu { transform: translateX(100%); transition: transform 0.3s ease; }
.mobile-menu.open { transform: translateX(0); }

.search-overlay { opacity: 0; pointer-events: none; transition: opacity 0.2s ease; }
.search-overlay.open { opacity: 1; pointer-events: all; }

.hero-title { line-height: 1.05; }

@media (max-width: 768px) { .hero-title { font-size: 48px !important; } }
@media (max-width: 480px) { .hero-title { font-size: 36px !important; } }

.img-crop { object-fit: cover; }

.category-icon-item { transition: transform 0.2s ease, color 0.2s ease; cursor: pointer; }
.category-icon-item:hover { transform: translateY(-4px); color: #9A6B42; }

.trending-item { transition: all 0.2s ease; cursor: pointer; }
.trending-item:hover { background: #EFE7DD; }

.toast {
    position: fixed; bottom: 30px; right: 30px;
    background: #111111; color: white;
    padding: 16px 24px; border-radius: 12px;
    font-family: 'Inter', sans-serif; font-size: 14px;
    z-index: 100; opacity: 0; transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2); max-width: 320px;
}
.toast.show { opacity: 1; transform: translateY(0); }

.fade-in { opacity: 0; transform: translateY(20px); }
.fade-in.visible { opacity: 1; transform: translateY(0); transition: all 0.4s ease-out; }

.page-view { display: none; }
.page-view.active { display: block; animation: fadeInPage 0.3s ease forwards; }
@keyframes fadeInPage { from { opacity: 0; } to { opacity: 1; } }

.social-img-icon {
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%; background: rgba(255,255,255,0.1);
    transition: all 0.2s ease; text-decoration: none;
}
.social-img-icon:hover { background: #9A6B42; transform: translateY(-3px); }
.social-img-icon svg { width: 18px; height: 18px; fill: white; }

/* WordPress nav menu styling */
#desktop-nav a {
    position: relative;
    transition: color 0.3s ease;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: #555555;
    text-decoration: none;
}
#desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: #9A6B42;
    transition: width 0.3s ease;
}
#desktop-nav a:hover::after,
#desktop-nav a.active::after { width: 100%; }
#desktop-nav a:hover { color: #9A6B42; }
#desktop-nav .current-menu-item a,
#desktop-nav a.active { color: #111111; }
#desktop-nav .current-menu-item a::after { width: 100%; }
