* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: #faf7f2;
    color: #222;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Announcement Bar */
.announcement-bar {
    background: #111;
    color: #fff;
    text-align: center;
    padding: 9px 15px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Header Navbar */
.site-header {
    background: #ffffff;
    border-bottom: 1px solid #eaeaea;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid #c59b27;
    color: #c59b27;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 15px;
}

.logo-text {
    font-size: 22px;
    font-weight: 800;
    color: #111;
    letter-spacing: -0.5px;
}

/* Misal logo image (replaces the old "RM" circle) shown to the left of the site title */
.site-logo-img {
    height: 46px;
    width: auto;
    max-width: 90px;
    display: block;
    object-fit: contain;
    flex: 0 0 auto;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 28px;
}

.main-nav a {
    text-decoration: none;
    color: #444;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.main-nav a:hover, .main-nav a.active {
    color: #c59b27;
}

.btn-gold-sm {
    background: #c59b27;
    color: #fff;
    padding: 8px 18px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: transform 0.2s, background 0.2s;
}

.btn-gold-sm:hover {
    background: #a8821d;
    transform: translateY(-2px);
}

/* Hero Banner */
.hero-banner {
    position: relative;
    background: url('https://images.unsplash.com/photo-1522337360788-8b13dee7a37e?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.banner-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out;
}

.badge-animated {
    display: inline-block;
    background: #c59b27;
    color: #fff;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(197, 155, 39, 0.4);
}

.banner-content h1 {
    font-size: 46px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.banner-content p {
    font-size: 18px;
    max-width: 650px;
    margin: 0 auto 30px auto;
    font-weight: 400;
    opacity: 0.95;
}

.btn-primary {
    background: #c59b27;
    color: #fff;
    padding: 14px 32px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
}

.pulse-btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(197, 155, 39, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(197, 155, 39, 0); }
    100% { box-shadow: 0 0 0 0 rgba(197, 155, 39, 0); }
}

/* Features Bar */
.features-bar {
    background: #f4eee2;
    padding: 25px 0;
    border-bottom: 1px solid #e2d7c5;
}

.features-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: #e8d9c2;
    color: #c59b27;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: transform 0.3s;
}

.feature-item:hover .feature-icon {
    transform: rotate(15deg) scale(1.1);
}

.feature-text h4 {
    font-size: 14px;
    font-weight: 700;
    color: #111;
}

.feature-text p {
    font-size: 12px;
    color: #666;
}

/* Single Product Section */
.single-product-section {
    padding: 70px 0;
}

.product-wrapper {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.04);
    border: 1px solid #eee;
    transition: transform 0.3s ease;
}

.product-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.main-product-img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.product-image-container:hover .main-product-img {
    transform: scale(1.05);
}

.floating-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #d9381e;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 6px;
    z-index: 2;
}

.brand-subtitle {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #c59b27;
    text-transform: uppercase;
}

.product-details-container h2 {
    font-size: 28px;
    font-weight: 800;
    margin: 8px 0 15px 0;
    color: #111;
}

.price-box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.current-price {
    font-size: 28px;
    font-weight: 800;
    color: #111;
}

.old-price {
    font-size: 18px;
    color: #999;
    text-decoration: line-through;
}

.discount-badge {
    background: #e6f4ea;
    color: #137333;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
}

.product-short-desc {
    color: #555;
    font-size: 15px;
    margin-bottom: 25px;
}

.quantity-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.quantity-wrapper label {
    font-weight: 700;
    font-size: 14px;
}

.qty-control {
    display: flex;
    align-items: center;
    border: 1.5px solid #ccc;
    border-radius: 25px;
    overflow: hidden;
    background: #fafafa;
}

.qty-btn {
    width: 38px;
    height: 38px;
    background: none;
    border: none;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
}

.qty-btn:hover {
    background: #e0e0e0;
}

.qty-input {
    width: 45px;
    height: 38px;
    border: none;
    text-align: center;
    font-weight: 700;
    font-size: 15px;
    background: transparent;
}

.btn-cod-full {
    width: 100%;
    background: #111;
    color: #fff;
    padding: 16px;
    border-radius: 30px;
    border: none;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-cod-full:hover {
    background: #333;
    transform: translateY(-2px);
}

.guarantee-box {
    margin-top: 20px;
    font-size: 13px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.guarantee-box i {
    color: #c59b27;
    font-size: 16px;
}

/* Why You'll Love Us */
.why-love-us {
    background: #f6efe4;
    padding: 60px 0;
}

.section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 40px;
    color: #111;
}

.love-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.love-card {
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    transition: transform 0.3s ease;
}

.love-card:hover {
    transform: translateY(-6px);
}

.love-icon {
    width: 65px;
    height: 65px;
    background: #f4eee2;
    color: #c59b27;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 15px auto;
}

.love-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.love-card p {
    font-size: 13px;
    color: #666;
}

/* Reviews */
.reviews-section {
    padding: 70px 0;
    background: #fff;
    text-align: center;
}

.rating-stars {
    color: #c59b27;
    font-size: 22px;
    margin-bottom: 35px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.review-card {
    background: #faf7f2;
    padding: 25px;
    border-radius: 16px;
    text-align: left;
    border: 1px solid #eaeaea;
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
}

.stars {
    color: #c59b27;
    margin-bottom: 12px;
}

.review-text {
    font-size: 14px;
    color: #444;
    font-style: italic;
    margin-bottom: 15px;
}

.reviewer-name {
    font-size: 13px;
    font-weight: 700;
    color: #111;
}

/* Footer */
.site-footer {
    background: #111;
    color: #aaa;
    padding: 50px 0 20px 0;
    font-size: 14px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.brand-col p {
    margin-top: 12px;
    color: #777;
    font-size: 13px;
}

.brand-col .logo-text {
    color: #fff;
}

.footer-col h4 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 700;
}

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

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul a {
    color: #888;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col ul a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 20px;
    font-size: 12px;
    color: #666;
}

/* Modal Popup Styling */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 15px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-box {
    background: #fff;
    border-radius: 16px;
    width: 100%;
    max-width: 440px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    padding: 24px;
    transform: translateY(20px);
    transition: transform 0.3s ease-out;
}

.modal-overlay.active .modal-box {
    transform: translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 12px;
    margin-bottom: 15px;
}

.modal-header h3 {
    font-size: 15px;
    font-weight: 800;
    color: #111;
}

.close-modal {
    background: none;
    border: none;
    font-size: 24px;
    color: #888;
    cursor: pointer;
}

.modal-product-summary {
    background: #f8f8f8;
    padding: 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px dashed #ccc;
}

.form-group-section {
    margin-bottom: 15px;
}

.section-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 6px;
}

.radio-card {
    border: 1.5px solid #111;
    border-radius: 8px;
    padding: 10px 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
}

.radio-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.radio-left input {
    accent-color: #111;
}

.free-text {
    font-weight: 800;
    color: #137333;
}

.form-title {
    font-size: 15px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 15px;
}

.field-group {
    margin-bottom: 12px;
}

.field-group label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 4px;
}

.required {
    color: #d9381e;
}

.input-with-icon {
    display: flex;
    border: 1px solid #ccc;
    border-radius: 6px;
    overflow: hidden;
}

.input-icon {
    background: #f0f0f0;
    padding: 10px 12px;
    color: #666;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #ccc;
}

.form-input {
    flex: 1;
    border: none;
    padding: 10px;
    font-size: 13px;
    outline: none;
}

.btn-complete-order {
    width: 100%;
    background: #111;
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    margin-top: 10px;
}

.success-icon {
    font-size: 48px;
    color: #137333;
    margin-bottom: 10px;
}

.order-details-card {
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 12px;
    margin-top: 12px;
    text-align: left;
    font-size: 12px;
}

/* Utility classes */
.text-center {
    text-align: center;
}

.btn-dark {
    background: #111;
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s ease;
}

.btn-dark:hover {
    background: #333;
}

.success-box {
    padding: 30px 24px;
}

/* Comments (page.php / single.php) */
.comment-list {
    list-style: none;
    margin-top: 30px;
}

.comment-respond input[type="text"],
.comment-respond input[type="email"],
.comment-respond textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    margin-bottom: 12px;
    font-family: inherit;
}

.comment-respond .form-submit input {
    background: #111;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .header-inner {
        flex-direction: column;
        height: auto;
        padding: 15px 0;
        gap: 10px;
    }
    .product-wrapper {
        grid-template-columns: 1fr;
        padding: 20px;
    }
    .banner-content h1 {
        font-size: 32px;
    }
    .hero-banner {
        height: 400px;
    }
}


/* Mobile responsiveness improvements */
.mobile-menu-toggle { display:none; background:transparent; border:0; width:44px; height:44px; cursor:pointer; padding:10px; }
.mobile-menu-toggle span { display:block; height:2px; width:24px; background:#111; margin:5px auto; transition:transform .25s ease, opacity .25s ease; }

@media (max-width: 768px) {
    html, body { width:100%; overflow-x:hidden; }
    .container { width:100%; padding-left:16px; padding-right:16px; }
    .announcement-bar { padding:8px 12px; font-size:11px; line-height:1.4; }
    .header-inner { flex-direction:row; height:64px; padding:0; gap:8px; position:relative; }
    .logo { min-width:0; }
    .logo-text { font-size:18px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
    .logo-circle { width:38px; height:38px; flex:0 0 38px; }
    .site-logo-img { height:40px; max-width:78px; }
    .mobile-menu-toggle { display:block; margin-left:auto; order:2; }
    .header-actions { order:1; margin-left:auto; }
    .btn-gold-sm { padding:7px 12px; font-size:11px; white-space:nowrap; }
    .main-nav { display:none; position:absolute; top:100%; left:0; right:0; background:#fff; border-bottom:1px solid #eaeaea; box-shadow:0 12px 22px rgba(0,0,0,.08); z-index:101; }
    .main-nav.is-open { display:block; }
    .main-nav ul { flex-direction:column; gap:0; padding:8px 0; }
    .main-nav li { width:100%; }
    .main-nav a { display:block; padding:13px 20px; font-size:14px; }
    .hero-banner { height:auto; min-height:440px; padding:70px 0; background-position:center; }
    .banner-content { width:100%; padding:0 4px; }
    .banner-content h1 { font-size:clamp(30px, 9vw, 38px); line-height:1.15; letter-spacing:.2px; }
    .banner-content p { font-size:15px; line-height:1.6; margin-bottom:24px; }
    .btn-primary { padding:13px 25px; font-size:14px; }
    .features-grid { display:grid; grid-template-columns:1fr; gap:14px; }
    .feature-item { align-items:flex-start; }
    .single-product-section { padding:42px 0; }
    .product-wrapper { grid-template-columns:1fr; padding:18px; gap:28px; border-radius:16px; }
    .product-details-container h2 { font-size:clamp(26px, 8vw, 34px); line-height:1.2; }
    .product-short-desc { font-size:14px; }
    .love-grid, .reviews-grid, .footer-grid { grid-template-columns:1fr; }
    .reviews-grid { gap:16px; }
    .section-title { font-size:28px; line-height:1.2; padding:0 8px; }
    .site-footer { padding-top:42px; }
    .footer-grid { gap:28px; }
    .modal-overlay { padding:10px; align-items:flex-end; }
    .modal-box { max-width:none; max-height:calc(100vh - 20px); padding:18px; border-radius:16px 16px 10px 10px; }
    .modal-product-summary, .radio-card { gap:10px; flex-wrap:wrap; align-items:flex-start; }
    .input-icon { padding:10px; flex:0 0 42px; }
    .form-input { min-width:0; }
}

@media (max-width: 480px) {
    .container { padding-left:14px; padding-right:14px; }
    .header-inner { height:60px; }
    .header-actions { display:none; }
    .mobile-menu-toggle { margin-left:auto; }
    .hero-banner { min-height:420px; padding:55px 0; }
    .badge-animated { font-size:10px; letter-spacing:1px; padding:6px 11px; }
    .feature-icon { flex:0 0 44px; width:44px; height:44px; }
    .product-wrapper { padding:14px; }
    .product-image-container { border-radius:12px; }
    .btn-cod-full, .btn-complete-order { font-size:13px; }
    .modal-header h3 { font-size:14px; }
    .success-box { padding:24px 16px; }
}

/* Version 2.0: targeted header and hero banner fixes only */

/* Keep the complete hero artwork visible instead of cropping it. */
.hero-banner {
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #1b1712;
}

/* Compact, reliable mobile header with the navigation hidden until opened. */
@media (max-width: 768px) {
    .site-header { position: sticky; top: 0; z-index: 1000; width: 100%; }
    .header-inner {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        height: 64px;
        min-height: 64px;
        padding: 0 16px;
        gap: 12px;
    }
    .logo { flex: 1 1 auto; min-width: 0; }
    .logo .custom-logo-link { display: flex; align-items: center; max-height: 46px; }
    .logo .custom-logo { display: block; width: auto; max-width: min(220px, 62vw); height: auto; max-height: 46px; object-fit: contain; }
    .site-logo-img { height: 40px; max-width: 78px; }
    .logo-text { font-size: 18px; }
    .header-actions { display: none !important; }
    .mobile-menu-toggle {
        display: flex !important;
        flex: 0 0 44px;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        margin-left: auto;
        order: initial;
        position: relative;
        z-index: 1002;
    }
    .main-nav {
        display: none !important;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        margin: 0;
        padding: 0;
        background: #fff;
        border-top: 1px solid #eeeeee;
        border-bottom: 1px solid #eaeaea;
        box-shadow: 0 12px 24px rgba(0,0,0,.10);
        z-index: 1001;
    }
    .main-nav.is-open { display: block !important; }
    .main-nav ul {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 0;
        padding: 6px 0;
        margin: 0;
    }
    .main-nav li { width: 100%; }
    .main-nav a { display: block; padding: 14px 20px; text-align: left; }
    .hero-banner {
        height: auto;
        min-height: 0;
        aspect-ratio: 16 / 9;
        padding: 0;
        background-size: contain;
        background-position: center center;
    }
    .banner-content {
        width: 100%;
        padding: 28px 18px;
    }
}

@media (max-width: 480px) {
    .header-inner { height: 60px; min-height: 60px; padding: 0 14px; }
    .logo .custom-logo { max-width: 200px; max-height: 42px; }
    .site-logo-img { height: 36px; max-width: 70px; }
    .hero-banner { aspect-ratio: 4 / 5; }
    .banner-content { padding: 20px 16px; }
}


/* Version 2.2: final fixes — visible mobile menu trigger + no empty hero gaps */
.mobile-menu-toggle .menu-icon {
    display: block;
    font-size: 27px;
    line-height: 1;
    font-weight: 700;
    color: #111;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    /* A clearly visible, tappable menu button on mobile only. */
    .site-header .mobile-menu-toggle {
        display: inline-flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 46px !important;
        height: 46px !important;
        min-width: 46px !important;
        min-height: 46px !important;
        margin-left: auto !important;
        padding: 0 !important;
        align-items: center !important;
        justify-content: center !important;
        background: #c59b27 !important;
        border: 0 !important;
        border-radius: 10px !important;
        color: #fff !important;
        cursor: pointer !important;
        position: relative !important;
        z-index: 1005 !important;
        -webkit-appearance: none;
        appearance: none;
    }
    .site-header .mobile-menu-toggle .menu-icon {
        display: block !important;
        color: #fff !important;
        font-size: 28px !important;
        line-height: 1 !important;
        pointer-events: none;
    }
    .site-header .mobile-menu-toggle span:not(.menu-icon) { display: none !important; }
    .site-header .main-nav {
        z-index: 1004 !important;
    }

    /* Fill the complete banner area: no black/empty bands above or below. */
    .hero-banner {
        display: flex !important;
        width: 100% !important;
        height: auto !important;
        min-height: 500px !important;
        aspect-ratio: auto !important;
        padding: 48px 0 !important;
        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
        background-color: transparent !important;
    }
    .banner-content {
        width: 100% !important;
        padding: 24px 18px !important;
    }
}

@media (max-width: 480px) {
    .hero-banner {
        min-height: 500px !important;
        padding: 42px 0 !important;
        background-size: cover !important;
        background-position: center center !important;
    }
}
@media (max-width: 768px) {
    .site-header .mobile-menu-toggle .menu-icon {
        width: auto !important;
        height: auto !important;
        margin: 0 !important;
        background: transparent !important;
    }
}

/* Version 2.3: desktop hero banner correction only */
@media (min-width: 769px) {
    .hero-banner {
        width: 100% !important;
        height: 480px !important;
        min-height: 480px !important;
        aspect-ratio: auto !important;
        padding: 0 !important;
        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
        background-color: transparent !important;
    }
}

/* Version 2.4: final hero image fill — remove all empty side bands on every screen */
.hero-banner {
    width: 100% !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-color: transparent !important;
}

@media (min-width: 769px) {
    .hero-banner {
        height: clamp(480px, 42vw, 720px) !important;
        min-height: 480px !important;
        padding: 0 !important;
        aspect-ratio: auto !important;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        min-height: 500px !important;
        height: 500px !important;
        padding: 0 !important;
        aspect-ratio: auto !important;
    }
}

@media (max-width: 480px) {
    .hero-banner {
        min-height: 500px !important;
        height: 500px !important;
    }
}
