:root {
    --maroon: #7b1822;
    --gold: #f7ae05;
    --gold-hover: #ffc72c;
    --navbar-bg: #fff;
    --contact-bar-height: 44px;
    --nav-link-bg-hover: #fff7e0;
    --nav-link-bg-hover-dark: #ffe385;
    --footer-bg: #182225;
    --fruit-green: #2e7d32;
    --fruit-yellow: #fdd835;
    --body-bg: #1c393a;
    --text-light: #e0e0e0;
}

* {
    box-sizing: border-box;
}

body {
    background-color: var(--body-bg);
    color: var(--maroon);
    font-family: 'Montserrat', Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overscroll-behavior: none;
    line-height: 1.6;
}

/* Contact Bar Styles */
.contact-bar {
    background: var(--body-bg);
    color: var(--gold);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    border-bottom: 1px solid rgba(192, 177, 125, 0.12);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 3vw;
    max-width: 100vw;
    min-height: var(--contact-bar-height);
    position: sticky;
    top: 0;
    z-index: 1200;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.contact-bar .contact-links {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    flex-wrap: wrap;
}

.contact-bar .contact-links span {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--gold-hover);
}

.contact-bar .contact-links a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 4px;
}

.contact-bar .contact-links a:hover {
    color: #fff;
    text-decoration: underline;
}

.contact-bar .contact-divider {
    width: 1.5px;
    height: 16px;
    background: var(--gold-hover);
    margin: 0 8px;
    border-radius: 2px;
}

/* Currency Notification */
.currency-notification {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
    background: var(--fruit-green);
    color: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    z-index: 1300;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    width: 90%;
    max-width: 400px;
    border: 2px solid var(--gold);
    opacity: 0;
    transition: all 0.4s ease;
    text-align: center;
}

.currency-notification.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.currency-notification button {
    background: none;
    border: none;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    padding: 0;
    transition: color 0.2s ease;
}

.currency-notification button:hover {
    color: var(--gold);
}

/* Currency Selector Styles */
.currency-selector {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, var(--gold), var(--gold-hover));
    padding: 6px 10px;
    border-radius: 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 1500;
    min-height: 40px;
}

.currency-selector:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.currency-selector label {
    color: var(--maroon);
    font-size: 0.85rem;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.currency-selector .dropdown-toggle {
    background: transparent;
    color: var(--maroon);
    border: 1px solid var(--maroon);
    border-radius: 8px;
    padding: 4px 20px 4px 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    width: 100px;
    text-align: left;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.currency-selector .dropdown-toggle::after {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%237b1822"%3E%3Cpath d="M7 10l5 5 5-5z"/%3E%3C/svg%3E');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: none;
    margin-left: auto;
}

.currency-selector .dropdown-menu {
    background: #fff;
    border: 1px solid var(--maroon);
    border-radius: 8px;
    min-width: 100px;
    width: 100px;
    margin-top: 2px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1600;
    position: absolute;
    top: 100%;
    left: 0;
}

.currency-selector .dropdown-item {
    color: var(--maroon);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 4px 8px;
    text-align: left;
}

.currency-selector .dropdown-item:hover {
    background: var(--nav-link-bg-hover-dark);
    color: var(--maroon);
}

.currency-selector-mobile {
    position: relative;
    margin: 12px 0;
    padding: 8px 12px;
    border-top: 1px solid rgba(247, 174, 5, 0.2);
    border-bottom: 1px solid rgba(247, 174, 5, 0.2);
    max-height: none; /* Remove max-height constraint */
    overflow: visible;
    z-index: 1600; /* Increased z-index */
}

.currency-selector-mobile .currency-notification {
    font-size: 0.75rem;
    padding: 4px 8px;
    background: rgba(247, 174, 5, 0.1);
    color: var(--gold-hover);
    border-radius: 4px;
    margin-bottom: 8px;
}

.currency-selector-mobile .currency-select-wrapper {
    position: relative;
    width: 100%;
    z-index: 1600; /* Ensure wrapper is above other elements */
}

.currency-selector-mobile .dropdown-toggle {
    width: 100%;
    padding: 8px 30px 8px 10px;
    font-size: 0.9rem;
    background: #fff;
    color: var(--maroon);
    border: 1px solid var(--gold);
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1601; /* Ensure toggle is clickable */
}

.currency-selector-mobile .dropdown-toggle::after {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%237b1822"%3E%3Cpath d="M7 10l5 5 5-5z"/%3E%3C/svg%3E');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: none;
    margin-left: auto;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.currency-selector-mobile .dropdown-menu {
    background: #fff;
    border: 1px solid var(--gold);
    border-radius: 6px;
    width: 100%;
    max-width: 100%; /* Ensure full width */
    margin-top: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1602; /* Ensure menu is above toggle */
    position: absolute;
    top: 100%;
    left: 0;
    transform: translateY(2px);
}

.currency-selector-mobile .dropdown-item {
    color: var(--maroon);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 8px 12px;
    cursor: pointer; /* Explicit cursor */
    transition: all 0.2s ease;
}

.currency-selector-mobile .dropdown-item:hover {
    background: var(--nav-link-bg-hover-dark);
    color: var(--maroon);
}

/* Mobile Top Bar */
.mobile-topbar {
    display: none;
    background: #f5f5f5;
    padding: 0.6rem 2vw;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid var(--gold);
    position: sticky;
    top: 0;
    z-index: 1031;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.mobile-topbar .logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.mobile-topbar .logo img {
    height: 44px;
    width: auto;
    display: inline-block;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.mobile-topbar .top-icons {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
}

.mobile-topbar .icon-btn {
    background: none;
    border: none;
    color: var(--maroon);
    font-size: 1.2rem;
    padding: 3px;
    margin: 0;
    position: relative;
    transition: color 0.2s;
    line-height: 1;
}

.mobile-topbar .icon-btn:hover {
    color: var(--gold);
}

.mobile-topbar .cart-qty {
    background: var(--gold);
    color: var(--maroon);
    border-radius: 50%;
    width: 14px;
    height: 14px;
    font-size: 0.75rem;
    font-weight: bold;
    position: absolute;
    top: -3px;
    right: -3px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Offcanvas Mobile Menu */
.offcanvas.offcanvas-start {
    background: var(--body-bg);
    color: var(--gold);
    width: 300px;
    border-right: 2px solid var(--gold);
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease-in-out;
    overflow: visible;
}

.offcanvas.show {
    transform: translateX(0);
}

.offcanvas .offcanvas-header {
    border-bottom: 1.5px solid var(--gold);
    padding: 1rem 1.2rem;
    background: #fff;
    border-radius: 0 0 8px 8px;
}

.offcanvas .offcanvas-title {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--maroon);
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
}

.offcanvas .offcanvas-title img {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.offcanvas .offcanvas-close {
    color: var(--maroon);
    font-size: 1.5rem;
    opacity: 0.8;
    background: none;
    border: none;
    transition: all 0.3s ease;
}

.offcanvas .offcanvas-close:hover {
    opacity: 1;
    color: var(--fruit-yellow);
    transform: scale(1.1);
}

.offcanvas-body {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 1rem;
    overflow-y: auto;
}

.offcanvas-user-section {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    margin-bottom: 1rem;
    transition: background 0.2s;
}

.offcanvas-user-section:hover {
    background: rgba(255, 255, 255, 0.1);
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--maroon);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.user-info {
    display: flex;
    flex-direction: column;
}

.user-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: #fff;
}

.user-actions {
    font-size: 0.8rem;
}

.user-actions a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.2s;
}

.user-actions a:hover {
    color: #fff;
    text-decoration: underline;
}

.offcanvas-links {
    margin-top: 0;
    padding-left: 0;
    list-style: none;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.offcanvas-link,
.offcanvas-dropdown-toggle {
    color: var(--gold);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    padding: 10px 12px;
    border-radius: 6px;
    background: none;
    transition: all 0.2s ease;
    justify-content: space-between;
    width: 100%;
    text-align: left;
}

.offcanvas-link:hover,
.offcanvas-dropdown-toggle:hover {
    background: rgba(247, 174, 5, 0.2);
    color: #fff;
    transform: translateX(4px);
}

.offcanvas-link i,
.offcanvas-dropdown-toggle i {
    width: 24px;
    text-align: center;
    margin-right: 8px;
    font-size: 1rem;
}

.dropdown-indicator {
    transition: transform 0.3s ease;
}

.offcanvas-dropdown-toggle[aria-expanded="true"] .dropdown-indicator {
    transform: rotate(180deg);
}

.offcanvas-dropdown-menu {
    display: none;
    flex-direction: column;
    padding-left: 16px;
    margin: 4px 0;
    background: transparent;
    gap: 4px;
    transition: all 0.3s ease;
}

.offcanvas-dropdown-menu.show {
    display: flex;
}

.offcanvas-dropdown-item {
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 5px;
    background: none;
    border: none;
    text-align: left;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
}

.offcanvas-dropdown-item:hover {
    background: rgba(247, 174, 5, 0.15);
    color: #fff;
    transform: translateX(4px);
}

.offcanvas-dropdown-item i {
    width: 20px;
    text-align: center;
    margin-right: 8px;
    font-size: 0.95rem;
    opacity: 0.8;
}

.offcanvas-quick-actions {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid rgba(247, 174, 5, 0.2);
}

.quick-action-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.2s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.quick-action-btn:hover {
    background: rgba(247, 174, 5, 0.15);
    color: #fff;
    transform: translateX(4px);
}

.quick-action-btn i {
    font-size: 1.1rem;
    width: 24px;
    text-align: center;
}

/* Desktop Navbar */
.navbar-custom {
    background-color: var(--navbar-bg);
    border-radius: 12px 12px 0 0;
    position: sticky;
    top: var(--contact-bar-height);
    z-index: 1100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    padding: 0.5rem 1rem;
    overflow: visible;
}

.navbar-custom .navbar-brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.navbar-custom .navbar-brand img {
    height: 58px;
    width: auto;
    display: inline-block;
    object-fit: contain;
    transition: height 0.3s;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.navbar-custom .nav-link, .navbar-custom .dropdown-toggle {
    color: var(--maroon) !important;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    padding: 8px 12px !important;
    border-radius: 5px;
    margin: 0 2px;
    transition: color 0.16s, background 0.16s;
    background: transparent;
}

.navbar-custom .nav-link:hover,
.navbar-custom .dropdown-toggle:hover,
.navbar-custom .nav-item.show > .nav-link,
.navbar-custom .nav-item.show > .dropdown-toggle {
    color: var(--gold) !important;
    background: var(--nav-link-bg-hover-dark) !important;
}

.navbar-custom .dropdown-menu {
    background-color: #fff;
    border-radius: 7px;
    min-width: 160px;
    margin-top: 2px;
    border: 1.5px solid var(--gold);
    padding: 0.25rem 0;
    font-size: 0.9rem;
    box-shadow: 0 6px 18px rgba(28, 57, 58, 0.08);
    z-index: 1500;
}

.navbar-custom .dropdown-item {
    color: var(--maroon);
    padding: 6px 16px;
    font-size: 0.9rem;
    border-radius: 5px;
    transition: background 0.15s, color 0.15s;
}

.navbar-custom .dropdown-item:hover,
.navbar-custom .dropdown-item:focus {
    background-color: var(--nav-link-bg-hover-dark);
    color: var(--maroon);
}

.navbar-custom .dropdown:hover > .dropdown-menu,
.navbar-custom .nav-item.show > .dropdown-menu {
    display: block;
}

.navbar-divider {
    border-left: 2px solid var(--maroon);
    height: 26px;
    margin: 0 14px;
}

.search-bar {
    background: transparent;
    border: none;
    color: var(--maroon);
    border-bottom: 1.25px solid var(--gold);
    outline: none;
    width: 100px;
    font-size: 0.9rem;
    margin-left: 4px;
    padding: 2px 0;
}

.cart-box {
    background: var(--gold);
    color: var(--maroon);
    border-radius: 0 8px 8px 0;
    padding: 4px 10px;
    display: flex;
    align-items: center;
    min-width: 48px;
    gap: 5px;
    font-size: 0.95rem;
    text-decoration: none;
}

.cart-box .bi-cart {
    font-size: 1.2rem;
}

.cart-qty {
    background: var(--maroon);
    color: var(--gold);
    border-radius: 50%;
    width: 14px !important;
    height: 14px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.75rem;
    position: absolute;
    top: -4px;
    right: -8px;
    text-decoration: none;
}

/* Footer Styles */
.footer {
    background: var(--footer-bg);
    color: #fff;
    border-top: 2px solid var(--fruit-green);
    padding: 50px 0 25px;
    margin-top: auto;
    font-size: 0.95rem;
    position: relative;
    background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"%3E%3Cpath fill="%232e7d32" fill-opacity="0.1" d="M0,128L48,138.7C96,149,192,171,288,181.3C384,192,480,192,576,186.7C672,181,768,171,864,149.3C960,128,1056,96,1152,85.3C1248,75,1344,85,1392,90.7L1440,96V320H1392C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320H0V128Z"%3E%3C/path%3E%3C/svg%3E');
    background-size: cover;
}

.footer::before {
    content: "";
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--maroon), var(--fruit-yellow), var(--maroon));
}

.footer-title {
    color: var(--fruit-green);
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 18px;
    font-size: 1.15rem;
    position: relative;
    padding-bottom: 6px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--fruit-yellow);
}

.footer a {
    color: #fff;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    font-size: 0.9rem;
    transition: all 0.25s ease;
    position: relative;
    padding-left: 20px;
}

.footer a:hover {
    color: var(--fruit-yellow);
    transform: translateX(5px);
}

.footer a::before {
    content: "\2022";
    color: var(--fruit-green);
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
    transition: all 0.25s ease;
}

.footer a:hover::before {
    color: var(--fruit-yellow);
    transform: scale(1.3);
}

.footer h3 {
    color: var(--fruit-green);
    font-weight: bold;
    margin-bottom: 0.8rem;
    font-size: 1.6rem;
    line-height: 1.3;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.footer p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.9rem;
}

.footer .brand-info {
    padding-right: 20px;
}

.footer .logo-container {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.footer .logo-container img {
    height: 60px;
    margin-right: 12px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.footer .logo-container .logo-text {
    font-weight: 700;
    font-size: 1.4rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.footer .logo-container .logo-text span {
    color: var(--fruit-yellow);
}

.footer .social-icons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(46, 125, 50, 0.1);
    color: var(--fruit-yellow);
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 2px solid var(--fruit-green);
}

.footer .social-icon:hover {
    background: var(--fruit-yellow);
    color: var(--fruit-green);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(253, 216, 53, 0.3);
}

.footer .contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer .contact-icon {
    color: var(--fruit-green);
    font-size: 1.2rem;
    min-width: 22px;
    padding-top: 3px;
}

.footer .contact-details {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.9rem;
}

.footer .contact-details strong {
    color: #fff;
    font-weight: 600;
}

.footer .payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
    justify-content: center;
}

.footer .payment-card {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    padding: 4px;
    transition: all 0.3s ease;
    border: 2px solid var(--fruit-green);
}

.footer .payment-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    background: var(--fruit-yellow);
}

.footer .payment-card img {
    max-height: 22px;
    max-width: 36px;
    object-fit: contain;
}

.footer .payment-card i {
    font-size: 1.4rem;
    color: #000;
}

.footer .divider {
    height: 1px;
    background: var(--fruit-green);
    margin: 30px 0 20px;
}

.footer .copyright {
    color: #aaa;
    font-size: 0.9rem;
    text-align: center;
    padding-top: 15px;
    border-top: 1px dashed var(--fruit-yellow);
}

.footer .copyright a {
    color: var(--fruit-yellow);
    display: inline;
    padding: 0;
    margin: 0;
}

.footer .copyright a:hover {
    text-decoration: underline;
    transform: none;
}

.footer .copyright a::before {
    content: none;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1201;
    background: var(--fruit-green);
    color: #fff;
    border-radius: 50%;
    width: 54px;
    height: 54px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.19);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
}

.whatsapp-float:hover {
    background: var(--fruit-yellow);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.27);
    color: var(--fruit-green);
    text-decoration: none;
}

/* Offcanvas Search */
.offcanvas-search .input-group-text {
    border: 1px solid var(--gold);
    border-right: none;
    color: var(--gold);
    background: transparent;
}

.offcanvas-search .form-control {
    border: 1px solid var(--gold);
    border-left: none;
    background: transparent;
    color: var(--gold);
}

.offcanvas-search .form-control::placeholder {
    color: rgba(247, 174, 5, 0.7);
}

.offcanvas-search .form-control:focus {
    box-shadow: none;
    background: rgba(255, 255, 255, 0.1);
    color: var(--gold);
}

/* Responsive Styles */
@media (max-width: 1199.98px) {
    .navbar-custom .nav-link, .navbar-custom .dropdown-toggle {
        font-size: 0.9rem;
        padding: 6px 10px !important;
    }
    
    .search-bar {
        width: 90px;
    }
}

@media (max-width: 991.98px) {
    .contact-bar { 
        display: none !important; 
    }
    
    .currency-notification {
        bottom: 15px;
        font-size: 0.85rem;
        padding: 6px 12px;
        max-width: 360px;
    }
    
    .navbar-custom {
        display: none !important;
    }
    
    .mobile-topbar {
        display: flex;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer .brand-info {
        padding-right: 0;
        margin-bottom: 25px;
        text-align: center;
    }
    
    .footer .divider {
        margin: 25px 0;
    }
    
    .footer .payment-methods {
        justify-content: center;
    }
}

@media (max-width: 767.98px) {
    .navbar-custom .navbar-brand img {
        height: 50px;
    }
    
    .footer {
        padding: 30px 0 15px;
    }
    
    .footer-title {
        margin-bottom: 15px;
        font-size: 1.1rem;
    }
    
    .footer .logo-container {
        flex-direction: column;
        text-align: center;
    }
    
    .footer .logo-container img {
        height: 50px;
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .footer h3 {
        font-size: 1.5rem;
    }
    
    .footer p, .footer a, .footer .contact-details {
        font-size: 0.85rem;
    }
    
    .footer .contact-item {
        gap: 10px;
    }
    
    .footer .contact-icon {
        font-size: 1.1rem;
        min-width: 20px;
    }
    
    .footer .social-icon {
        width: 34px;
        height: 34px;
        font-size: 1.1rem;
    }
    
    .footer .payment-card {
        width: 40px;
        height: 40px;
    }
    
    .footer .payment-card img {
        max-height: 20px;
        max-width: 32px;
    }
    
    .footer .payment-card i {
        font-size: 1.3rem;
    }
    
    .whatsapp-float {
        bottom: 70px;
        right: 12px;
        width: 46px;
        height: 46px;
        font-size: 1.8rem;
    }
}

@media (max-width: 575.98px) {
    .mobile-topbar {
        padding: 0.5rem 2vw;
    }
    
    .mobile-topbar .logo img {
        height: 38px;
    }
    
    .mobile-topbar .icon-btn {
        font-size: 1.1rem;
        padding: 2px;
    }
    
    .mobile-topbar .cart-qty {
        width: 12px;
        height: 12px;
        font-size: 0.7rem;
        top: -2px;
        right: -2px;
    }
    
    .offcanvas.offcanvas-start {
        width: 280px;
    }
    
    .offcanvas .offcanvas-title img {
        height: 36px;
    }
    
    .offcanvas .offcanvas-close {
        font-size: 1.4rem;
    }
    
    .offcanvas-link,
    .offcanvas-dropdown-toggle {
        padding: 8px 10px;
        font-size: 0.9rem;
    }
    
    .offcanvas-dropdown-item {
        padding: 6px 10px;
        font-size: 0.85rem;
    }
    
    .offcanvas-quick-actions {
        padding-top: 10px;
    }
    
    .quick-action-btn {
        padding: 6px 10px;
        font-size: 0.85rem;
    }
    
    .user-avatar {
        width: 36px;
        height: 36px;
        font-size: 1.3rem;
    }
    
    .user-name {
        font-size: 0.9rem;
    }
    
    .user-actions {
        font-size: 0.75rem;
    }
    
    .currency-notification {
        bottom: 12px;
        font-size: 0.8rem;
        padding: 5px 10px;
        max-width: 300px;
    }
    
    .currency-selector-mobile {
        margin: 10px 0;
        padding: 6px 10px;
    }
    
    .currency-selector-mobile .dropdown-toggle {
        font-size: 0.85rem;
        padding: 6px 25px 6px 8px;
    }
    
    .currency-selector-mobile .dropdown-toggle::after {
        width: 10px;
        height: 10px;
    }
    
    .currency-selector-mobile .dropdown-item {
        font-size: 0.85rem;
        padding: 6px 8px;
    }
    
    .currency-selector-mobile .currency-notification {
        font-size: 0.7rem;
        padding: 3px 6px;
    }
    
    .navbar-custom .navbar-brand img {
        height: 46px;
    }
    
    .navbar-custom .nav-link, .navbar-custom .dropdown-toggle {
        font-size: 0.85rem;
        padding: 5px 8px !important;
    }
    
    .navbar-custom .dropdown-item {
        font-size: 0.8rem;
        padding: 4px 12px;
    }
    
    .search-bar {
        width: 80px;
        font-size: 0.8rem;
    }
    
    .currency-selector {
        padding: 5px 8px;
    }
    
    .currency-selector label {
        font-size: 0.8rem;
    }
    
    .currency-selector .dropdown-toggle {
        font-size: 0.8rem;
        padding: 3px 18px 3px 6px;
    }
    
    .currency-selector .dropdown-toggle::after {
        width: 9px;
        height: 9px;
    }
    
    .currency-selector .dropdown-item {
        font-size: 0.8rem;
        padding: 3px 6px;
    }
    
    .footer {
        padding: 25px 0 10px;
    }
    
    .footer-title {
        margin-bottom: 12px;
        font-size: 1rem;
    }
    
    .footer .logo-container img {
        height: 45px;
    }
    
    .footer h3 {
        font-size: 1.4rem;
    }
    
    .footer p, .footer a, .footer .contact-details {
        font-size: 0.8rem;
    }
    
    .footer .contact-icon {
        font-size: 1rem;
    }
    
    .footer .social-icon {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
    
    .footer .payment-card {
        width: 38px;
        height: 38px;
    }
    
    .footer .payment-card img {
        max-height: 18px;
        max-width: 30px;
    }
    
    .footer .payment-card i {
        font-size: 1.2rem;
    }
    
    .footer .copyright {
        font-size: 0.8rem;
    }
    
    .whatsapp-float {
        bottom: 65px;
        right: 10px;
        width: 42px;
        height: 42px;
        font-size: 1.6rem;
    }
}

@media (max-width: 359.98px) {
    .mobile-topbar {
        padding: 0.4rem 1.5vw;
    }
    
    .mobile-topbar .logo img {
        height: 34px;
    }
    
    .mobile-topbar .icon-btn {
        font-size: 1rem;
        padding: 1px;
    }
    
    .mobile-topbar .cart-qty {
        width: 11px;
        height: 11px;
        font-size: 0.65rem;
    }
    
    .offcanvas.offcanvas-start {
        width: 260px;
    }
    
    .offcanvas .offcanvas-title img {
        height: 32px;
    }
    
    .offcanvas .offcanvas-close {
        font-size: 1.3rem;
    }
    
    .offcanvas-link,
    .offcanvas-dropdown-toggle {
        padding: 7px 8px;
        font-size: 0.85rem;
    }
    
    .offcanvas-dropdown-item {
        padding: 5px 8px;
        font-size: 0.8rem;
    }
    
    .offcanvas-quick-actions {
        padding-top: 8px;
    }
    
    .quick-action-btn {
        padding: 5px 8px;
        font-size: 0.8rem;
    }
    
    .user-avatar {
        width: 32px;
        height: 32px;
        font-size: 1.2rem;
    }
    
    .user-name {
        font-size: 0.85rem;
    }
    
    .user-actions {
        font-size: 0.7rem;
    }
    
    .currency-notification {
        bottom: 10px;
        font-size: 0.75rem;
        padding: 4px 8px;
        max-width: 260px;
    }
    
    .currency-selector-mobile {
        margin: 8px 0;
        padding: 5px 8px;
    }
    
    .currency-selector-mobile .dropdown-toggle {
        font-size: 0.8rem;
        padding: 5px 20px 5px 6px;
    }
    
    .currency-selector-mobile .dropdown-toggle::after {
        width: 9px;
        height: 9px;
    }
    
    .currency-selector-mobile .dropdown-item {
        font-size: 0.8rem;
        padding: 5px 6px;
    }
    
    .currency-selector-mobile .currency-notification {
        font-size: 0.65rem;
        padding: 3px 6px;
    }
    
    .navbar-custom .navbar-brand img {
        height: 42px;
    }
    
    .navbar-custom .nav-link, .navbar-custom .dropdown-toggle {
        font-size: 0.8rem;
        padding: 4px 6px !important;
    }
    
    .navbar-custom .dropdown-item {
        font-size: 0.75rem;
        padding: 3px 10px;
    }
    
    .search-bar {
        width: 70px;
        font-size: 0.75rem;
    }
    
    .currency-selector {
        padding: 4px 6px;
    }
    
    .currency-selector label {
        font-size: 0.75rem;
    }
    
    .currency-selector .dropdown-toggle {
        font-size: 0.75rem;
        padding: 2px 16px 2px 5px;
    }
    
    .currency-selector .dropdown-toggle::after {
        width: 8px;
        height: 8px;
    }
    
    .currency-selector .dropdown-item {
        font-size: 0.75rem;
        padding: 2px 5px;
    }
    
    .footer {
        padding: 20px 0 8px;
    }
    
    .footer-title {
        margin-bottom: 10px;
        font-size: 0.95rem;
    }
    
    .footer .logo-container img {
        height: 40px;
    }
    
    .footer h3 {
        font-size: 1.3rem;
    }
    
    .footer p, .footer a, .footer .contact-details {
        font-size: 0.75rem;
    }
    
    .footer .contact-icon {
        font-size: 0.95rem;
        min-width: 18px;
    }
    
    .footer .social-icon {
        width: 30px;
        height: 30px;
        font-size: 0.95rem;
    }
    
    .footer .payment-card {
        width: 36px;
        height: 36px;
    }
    
    .footer .payment-card img {
        max-height: 16px;
        max-width: 28px;
    }
    
    .footer .payment-card i {
        font-size: 1.1rem;
    }
    
    .footer .copyright {
        font-size: 0.75rem;
    }
    
    .whatsapp-float {
        bottom: 65px;
        right: 10px;
        width: 42px;
        height: 42px;
        font-size: 1.6rem;
    }
}