:root {
    --primary-blue: #007bff;
    --light-bg: #f8f9fa;
    --dark-blue: #003366;
}

body {
    font-family: 'Inter', sans-serif;
    color: #333;
}

.site-logo {
    height: 58px;
    width: auto;
    display: block;
}

.footer-logo {
    height: 48px;
    width: auto;
    display: block;
}

.navbar-top {
    font-size: 0.85rem;
    border-bottom: 1px solid #eee;
}

.nav-link {
    font-weight: 500;
    color: #444 !important;
}

.hero-section {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 260px;
    background: #000;
}

.hero-video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: #000;
}

.hero-video-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 991.98px) {
    .hero-section {
        min-height: 220px;
    }

    .site-logo {
        height: 46px;
    }
}

.category-card {
    border: none;
    transition: transform 0.2s;
    text-align: center;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-img {
    border-radius: 8px;
    padding: 0;
    margin-bottom: 10px;
    overflow: hidden;
}

.category-product-image {
    display: block;
    width: 100%;
    aspect-ratio: 6 / 5;
    object-fit: cover;
}

.member-privilege {
    background: linear-gradient(90deg, #001f3f 0%, #003366 100%);
    color: white;
    padding: 40px 0;
}

.membership-tier-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.rating-box {
    background: #f0f7ff;
    border-radius: 12px;
    padding: 30px;
}

.faq-section {
    padding: 60px 0;
}

.faq-image {
    max-width: 350px;
}

.blog-image {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
}

.footer-top {
    background: #fdfdfd;
    border-top: 1px solid #eee;
    padding: 40px 0;
}

.footer-main {
    background: #eef7ff;
    padding: 60px 0;
}

.btn-primary-custom {
    background-color: var(--primary-blue);
    border: none;
    padding: 8px 24px;
}

.search-bar {
    background: #f1f3f4;
    border: none;
    border-radius: 20px;
    padding-left: 15px;
}

.svg-placeholder {
    background-color: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
    border-radius: 8px;
}
