/* Original Header Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: white;
}
body {
    font-family: "Poppins", sans-serif;
    background-color: black !important;
}
#logo-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    background: transparent;
    position: relative;
    padding: 18px 0 0 0;
}

.nav {
    width: 35%;
    min-height: 130px;
    float: right;
    padding-left: 35%;
}

.icon-list {
    display: flex;
    gap: 30px;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}
.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 120px;
    margin: 0 0 24px 0;
    padding: 0;
}

.logo img {
    width: 230px;
    height: auto;
    max-width: 100%;
}

.nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}
.icon-list {
    display: flex;
    gap: 30px;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    margin-top: -200px;
}
.icon-list li a {
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 0;
}
.icon-list li a img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}
.badge {
    background: #fad565;
    color: #181818;
    border-radius: 50%;
    font-size: 12px;
    padding: 2px 7px;
    margin-left: 2px;
    font-weight: bold;
    position: relative;
    top: -8px;
    left: -10px;
}

/* Navbar styles */
.navbar {
    width: 100%;
    padding: 0;
    margin: 0;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: -130px;
}
.navbar nav {
    width: 100%;
}
.navbar nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    padding: 0;
    margin: 0;
    list-style: none;
}
.nav ul li a img {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.nav ul li a img.img2 {
    width: 30px;
    height: 30px;
    cursor: pointer;
}
.nav ul li a img.img3 {
    width: 44px;
    height: 44px;
    cursor: pointer;
    margin-top: 6px;
}


.navbar nav ul li {
    margin: 0;
    position: relative;
}
.navbar nav ul li a {
    color: white;
    font-size: 17px;
    text-decoration: none;
    padding: 8px 0;
    transition: color 0.2s;
}
.navbar nav ul li.active a {
    color: #fad565;
}
.navbar nav ul li.dropdown > a:after {
    content: "";

}
.navbar nav ul li .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fad565 !important;
    min-width: 200px;
    border-radius: 0 0 8px 8px;
    z-index: 100;
    padding: 0;
    overflow: hidden;
    list-style: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.navbar nav ul li.dropdown:hover > .dropdown-menu,
.navbar nav ul li.dropdown:focus-within > .dropdown-menu {
    display: block;
}
.navbar nav ul li .dropdown-menu li {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
}
.navbar nav ul li .dropdown-menu li a {
    background: #fad565 !important;
    color: #181818 !important;
    padding: 12px 24px;
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.2s, color 0.2s;
    width: 100%;
    box-sizing: border-box;
    border: none;
    margin: 0;
}
.navbar nav ul li .dropdown-menu li.active a,
.navbar nav ul li .dropdown-menu li a:hover {
    background: #ffe9a7 !important;
    color: #181818 !important;
}

/* Footer Styles - Exact replica matching the image layout */
.footer {
    background-color: transparent;
    color: #fff;
    padding: 0;
    font-family: 'Poppins', Arial, sans-serif;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 60px 50px 40px 50px;
    gap: 80px;
}

/* Left Column - Logo + Store Address */
.footer-left {
    flex: 1;
    max-width: 280px;
}

.footer-logo {
    margin-bottom: 40px; /* increase or decrease as needed */
}

.footer-logo .logo-section {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.footer-logo .logo-icon {
    font-size: 24px;
    color: #fad565;
}

.footer-logo .logo-text {
    font-size: 24px;
    font-weight: 600;
    color: white !important;
    background: transparent !important;
}

.footer-logo .description {
    font-size: 14px;
    color: #ccc !important;
    line-height: 1.6;
    background: transparent !important;
    margin-bottom: 32px;
}

.store-address {
    background: transparent !important;
    white-space : pre;


}

.store-address h3 {
    font-size: 24px;
    font-weight: 600;
    margin-top: -40px;
    color: white !important;
    background: transparent !important;
}

.store-address .address-content {
    font-size: 14px;
    color: #ccc !important;
    line-height: 1.6;
    background: transparent !important;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: -60px;

}

.store-address .address-icon {
    color: #fad565;
    font-size: 16px;
    margin-top: 19px;
    background: transparent !important;
}

.store-address .address-text {
    background: transparent !important;
    color: #ccc !important;
    margin-top: 15px;

}

/* Middle Column - Newsletter + Contact + Social */
.footer-middle {
    flex: 1;
    max-width: 400px;
    background: transparent !important;
}

.newsletter {
    margin-bottom: 50px;
    background: transparent !important;
}

.newsletter h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    color: white !important;
    background: transparent !important;
}

.newsletter-form {
    display: flex;
    border: 1px solid #333;
    background: #222 !important;
    border-radius: 2px;
    overflow: hidden;
}

.newsletter input[type="email"] {
    background: transparent !important;
    border: none;
    color: #fff !important;
    padding: 15px 20px;
    width: 280px;
    outline: none;
    font-size: 14px;
}

.newsletter input[type="email"]::placeholder {
    color: #888;
}

.newsletter button {
    background: none !important;
    border: none;
    color: #fff !important;
    padding: 0 25px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    border-left: 1px solid #333;
    transition: background 0.2s;
    font-size: 12px;
}

.newsletter button:hover {
    background: #333 !important;
}

.contact-social {
    display: flex;
    gap: 60px;
    background: transparent !important;
    margin-top: 150px;


}

.contact-block, .social-block {
    flex: 1;
    background: transparent;

}

.contact-block h3, .social-block h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: white !important;
    background: transparent ;
}

.contact-item {
    font-size: 14px;
    color: #ccc !important;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: transparent !important;
}

.contact-item .contact-icon {
    width: 16px;
    color: #fad565;
    background: transparent;
}

.contact-item .contact-text {
    background: transparent !important;
    color: #ccc !important;
}

.social-icons {
    display: flex;
    gap: 12px;
    background: transparent !important ;
}

.social-icons a {
    display: inline-block;
    width: 36px;
    height: 36px;
    background: #fad565 !important;
    color: #181818 !important; /* icon color */
    border-radius: 50%;
    text-align: center;
    line-height: 36px;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.2s;
}

.social-icons a i {
    background: transparent !important;
    color: #181818 !important; /* icon color */
}

.social-icons a:hover {
    background: #fff !important;
    transform: translateY(-2px);
}

/* Right Column - Gallery */
.footer-right {
    flex: 1;
    max-width: 350px;
    background: transparent !important;
}

.gallery {
    background: transparent !important;
}

.gallery h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 25px;
    color: white !important;
    background: transparent !important;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px; /* Reduced gap */
    background: transparent !important;
}

.gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 5px;
    background: transparent !important;
}

.gallery-item img {
    width: 80%;
    height: 80%;
    object-fit: cover;
    transition: transform 0.3s ease;
    background: transparent !important;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    border-top: 1px solid #333;
    font-size: 14px;
    background: transparent !important;
}

.copyright {
    background: transparent !important;
    color: #ccc !important;
}

.footer-links {
    display: flex;
    gap: 30px;
    background: transparent !important;
}

.footer-links a {
    color: #ccc !important;
    text-decoration: none;
    transition: color 0.2s;
    background: transparent !important;
}

.footer-links a:hover {
    color: #fff !important;
}

/* Cart Dropdown Styles */

.cart-dropdown {
    position: relative;
}
.cart-dropdown-menu {
    display: none;
    position: absolute;
    right: 0;
    top: 48px; /* Increase if needed to clear the navbar */
    background: #181818;
    color: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.5);
    z-index: 2000; /* Increase to be above navbars */
    text-align: left;
    padding: 12px 8px;
    min-width: 260px;
    width: auto;           /* Let content define width */
    max-width: 420px;      /* Prevent it from getting too wide */
    height: auto;
    white-space: nowrap;   /* Prevent line breaks for product names */
}

.cart-dropdown-menu.show {
    display: block !important;
}
.cart-btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: #fad565 !important;
    color: #23201e !important;
    border: 1px solid #fad565;
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 15px 35px 13px !important;
    border-radius: 0;
    transition: color 0.3s;
    cursor: pointer;
    display: inline-block;
    outline: none;
    text-decoration: none !important;
    width: auto;
    min-width: unset;
    box-sizing: border-box;
    margin: 0;
}
.cart-btn:last-child {
margin-top:-3px ;
}
.cart-btn:hover {
    background: #fad565;
    color: #fff;
    text-align: center;
}
.cart-btn::before,
.cart-btn::after {
    content: '';
    position: absolute;
    top: 0;
    width: 54%; /* Reduce width to avoid peeking corners */
    height: 100%;
    background: #23201e; /* <-- Use a visible color */
    z-index: 2;
    pointer-events: none;
    opacity: 1;
    transition: transform 0.5s cubic-bezier(.77,0,.18,1);
    transform: skewX(-18deg);
}

.cart-btn::before {
    left: -8px; /* Move slightly left */
    transform: translateX(-100%) skewX(-18deg);
}

.cart-btn::after {
    right: -8px; /* Move slightly right */
    transform: translateX(100%) skewX(-18deg);
}

.cart-btn:hover::before,
.cart-btn:focus::before {
    transform: translateX(0) skewX(-18deg);
}

.cart-btn:hover::after,
.cart-btn:focus::after {
    transform: translateX(0) skewX(-18deg);
}

.cart-btn span {
    display: block;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 3;
    color: #111;
    background: transparent !important;
}

.cart-btn:hover,
.cart-btn:focus {
    color: #23201e !important;
}

.cart-btn:hover span,
.cart-btn:focus span {
    color: #fff !important;
}

/* Side Drawer Styles */
.side-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    background: #181818;
    color: #fff;
    z-index: 40000;
    box-shadow: -2px 0 16px rgba(0,0,0,0.25);
    transition: transform 0.35s cubic-bezier(.77,0,.18,1);
    padding: 32px 24px 24px 24px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    transform: translateX(100%); /* Hide off-canvas by default */
}
.side-drawer.open {
    transform: translateX(0); /* Slide in when open */
}
.drawer-close {
    background: none;
    border: none;
    color: #fad565;
    font-size: 2rem;
    position: absolute;
    top: 18px;
    right: 18px;
    cursor: pointer;
}
.side-drawer nav ul {
    list-style: none;
    padding: 0;
    margin: 40px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.side-drawer nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    padding: 8px 0;
    display: block;
    transition: color 0.2s;
}
.side-drawer nav ul li a:hover,
.side-drawer nav ul li.active > a {
    color: #fad565;
}
.side-drawer nav ul li .dropdown-menu {
    display: none;
    position: static !important;
    background: #23201e;
    margin-top: 6px;
    border-radius: 0 0 8px 8px;
    padding-left: 18px;
    box-shadow: none !important;
}
.side-drawer nav ul li.open > .dropdown-menu {
    display: block;
}
.side-drawer nav ul li .dropdown-menu li a {
    font-size: 1rem;
    color: #fad565;
    padding: 6px 0;
}
.drawer-backdrop {
    display: none;
    position: fixed;
    z-index: 39999;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.3);
    transition: opacity 0.3s;
}
.drawer-backdrop.open {
    display: block;
    opacity: 1;
}

/* Mobile menu toggle - hidden by default */
#mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #fad565;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    margin: 0;
}

/* Prevent horizontal scroll on all devices */
html, body {
    overflow-x: hidden;
}

/* Hide search modal by default */
/* .search-modal {
    display: none !important;
} */
.search-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.15); /* semi-transparent overlay */
    justify-content: center;
    align-items: center;
}
.search-modal-content {
    background: rgba(255,255,255,0.15); /* transparent glass effect */
    backdrop-filter: blur(8px);
    border: 2px solid #222;
    border-radius: 14px;
    min-width: 480px;
    max-width: 700px;
    width: 60vw;
    box-shadow: 0 4px 32px rgba(0,0,0,0.10);
    position: relative;
    padding: 32px 32px 24px 32px;
    display: flex;
    align-items: center;
    gap: 0;
}
.search-modal-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    font-size: 1.1rem;
    padding: 0 0 0 8px;
    color: #222;
    height: 40px;
}
.search-modal-input::placeholder {
    color: #555;
    opacity: 0.7;
}
.search-modal-btn {
    background: none;
    border: none;
    outline: none;
    font-size: 1.3rem;
    color: #222;
    cursor: pointer;
    margin-left: 8px;
    display: flex;
    align-items: center;
}
.search-modal-close {
    position: absolute;
    top: 18px;
    right: 24px;
    font-size: 2rem;
    color: #222;
    cursor: pointer;
    z-index: 10;
    background: none;
    border: none;
    outline: none;
}
@media (max-width: 700px) {
    .search-modal-content {
        min-width: 0;
        width: 95vw;
        padding: 18px 10px 14px 14px;
    }
    .search-modal-close {
        top: 10px;
        right: 10px;
    }
}

/* Hide navbar links and show menu icon on mobile */
@media (max-width: 900px) {
    .navbar nav ul {
        display: none;
        flex-direction: column;
        background: #000;
        position: absolute;
        top: 60px; /* adjust as needed */
        left: 0;
        width: 100vw;
        z-index: 10000;
        box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    }
    .navbar nav ul.show {
        display: flex;
    }
    #mobile-menu-toggle {
        display: inline-block !important;
    }
    .navbar nav {
        position: relative;
    }
}

/* Hide menu icon on desktop */
#mobile-menu-toggle {
    display: none;
}
/* Responsive: Tablet and below */
@media (max-width: 900px) {
    .navbar nav ul {
        display: none !important;
    }
    #mobile-menu-toggle {
        display: inline-block !important;
        z-index: 30000;
        position: relative;
        background: transparent;
    }
    .logo img {
        width: 160px;
    }
    .nav {
        padding: 0 10px 0 0;
        min-height: 50px;
        margin-top: -40px;
    }
    .icon-list {
        gap: 18px;
        margin-top: 0 !important;
    }
}

/* Mobile view - FIXED HEADER SOLUTION */
@media (max-width: 600px) {
    /* Make header fixed to prevent content overlap */
    #logo-nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 12px 4vw;
        margin-bottom: 0;
        min-height: 60px;
        height: 60px; /* Fixed height */
        width: 100%;
        background: rgba(0, 0, 0, 0.95); /* Semi-transparent background */
        backdrop-filter: blur(10px);
        z-index: 10000;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    /* Logo positioning */
    .logo {
        min-height: 40px;
        width: auto;
        margin: 0;
        justify-content: flex-start;
        align-items: center;
        display: flex;
    }

    .logo img {
        width: 80px !important;
        height: auto;
        max-width: 100%;
        display: block;
    }

    /* Navigation icons positioning */
    .nav {
        width: auto;
        min-height: 40px;
        padding: 0;
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

    .icon-list {
        display: flex !important;
        flex-direction: row;
        gap: 16px;
        align-items: center;
        margin: 0 !important;
        padding: 0;
    }

    .icon-list li a img {
        width: 20px;
        height: 20px;
        cursor: pointer;
    }

    .icon-list li a img.img2 {
        width: 24px;
        height: 24px;
    }

    .icon-list li a img.img3 {
        width: 26px;
        height: 26px;
        margin-top: 0;
    }

    /* Hide regular navbar on mobile */
    .navbar {
        display: none !important;
    }

    /* Ensure main content starts below fixed header */
    body {
        padding-top: 60px !important;
    }

    .main-content,
    main,
    #main,
    .container,
    .page-content,
    .content,
    .woocommerce-page,
    .single-product,
    .shop-page {
        margin-top: 0 !important;
        padding-top: 20px !important;
    }

    /* Cart dropdown adjustments */
    .cart-dropdown-menu {
        right: -10px;
        top: 50px;
        min-width: 240px;
        max-width: 240px;
    }

    /* Side drawer adjustments */
    .side-drawer {
        width: 280px;
        padding-top: 80px; /* Account for fixed header */
    }

    .drawer-close {
        top: 25px;
        right: 15px;
    }
}

/* Additional fixes for very small screens */
@media (max-width: 480px) {
    #logo-nav {
        padding: 10px 3vw;
        height: 55px;
        min-height: 55px;
    }

    body {
        padding-top: 55px !important;
    }

    .logo img {
        width: 75px !important;
    }

    .icon-list {
        gap: 14px;
    }

    .icon-list li a img {
        width: 18px;
        height: 18px;
    }

    .icon-list li a img.img2 {
        width: 22px;
        height: 22px;
    }

    .icon-list li a img.img3 {
        width: 24px;
        height: 24px;
    }
}

/* Cart Items List Styles */
.cart-items-list {
    max-height: 180px;
    overflow-y: auto;
    margin-bottom: 12px;
    padding: 0 8px;
    text-align: left;
}
.cart-item {
    padding: 8px 0;
    border-bottom: 1px solid #333;
    font-size: 15px;
    color: #fad565;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.cart-item:last-child {
    border-bottom: none;
}
.cart-empty {
    color: #ccc;
    padding: 18px 0 10px 0;
    font-size: 15px;
    text-align: center;
}
.remove-cart-item {
    background: none;
    border: none;
    color: #e57373;
    font-size: 18px;
    cursor: pointer;
    padding: 0 6px;
    transition: color 0.2s;
}
.remove-cart-item:hover {
    color: #ff1744;
}
.cart-subtotal {
    color: #fad565;
    font-size: 16px;
    border-top: 1px solid #333;
    margin-top: 8px;
    padding-top: 8px;
}
.cart-item-name {
    white-space: normal;
    word-break: break-word;
}
.cart-dropdown-actions {
    display: flex;
      flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

/* User Dropdown Styles */
.user-dropdown {
    position: relative;
}

.user-dropdown-menu {
    display: none;
    position: absolute;
    right: 0;
    top: 48px;
    background: #181818;
    color: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.5);
    z-index: 2000;
    min-width: 240px;
    max-width: 320px;
    padding: 18px 18px 12px 18px;
    text-align: center;
}

.user-dropdown-menu .user-dropdown-actions {
    display: flex;
    flex-direction: column;
    gap: 8px; /* Add spacing between each item */
    align-items: stretch;
    margin-top: 10px;
}

.user-btn, .user-link {
    display: block;
    width: 100%;
    background: none;
    border: none;
    color: #fad565;
    text-align: center;      /* Center text */
    padding: 12px 0;         /* Remove left/right padding */
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border-radius: 0;
    transition: background 0.2s, color 0.2s;
}

.user-btn:hover, .user-link:hover {
    background: #fad565;
    color: #181818;
    text-decoration: none;
}

.user-dropdown-menu .user-dropdown-text {
    color: #ccc;
    font-size: 16px;
    margin-bottom: 12px;
    text-align: center;
}

/* Make login/register look like links, not buttons */
.user-dropdown-menu .user-dropdown-actions .user-link {
    display: inline-block;
    color: #fad565;
    background: none;
    border: none;
    padding: 0 8px;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;    /* Remove underline */
    cursor: pointer;
    transition: color 0.2s;
    min-width: unset;
    border-radius: 0;
    margin: 0 4px;
    width: 100%;
}

.user-dropdown-menu .user-dropdown-actions .user-link:hover,
.user-dropdown-menu .user-dropdown-actions .user-link:focus {
    color: #ffe9a7;
    background: none;
    text-decoration: none;    /* Ensure no underline on hover */
}
.user-btn {
    text-align: center;
     justify-content: center !important;
    display: flex !important;
}
.user-dropdown-menu .user-dropdown-actions .user-btn,
.user-dropdown-menu .user-dropdown-actions .user-link {
    display: block;
    width: 100%;
    background: #fad565;
    color: #181818;
    text-align: center;
    padding: 14px 0;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    border: none;
    border-radius: 0;
    margin: 0 0 12px 0;
    transition: background 0.2s, color 0.2s;
}

.user-dropdown-menu .user-dropdown-actions .user-btn:last-child,
.user-dropdown-menu .user-dropdown-actions .user-link:last-child {
    margin-bottom: 0;
}

.user-dropdown-menu .user-dropdown-actions .user-btn:hover,
.user-dropdown-menu .user-dropdown-actions .user-link:hover {
    background: #fad565;
    color: #181818;
    text-decoration: none;
}

.user-dropdown-menu .user-dropdown-actions .user-link {
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: #fad565 !important;
    color: #23201e !important;
    border: 1px solid #fad565;
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 15px 35px 16px !important;
    border-radius: 0;
    transition: color 0.3s;
    cursor: pointer;
    display: block;
    outline: none;
    text-decoration: none !important;
    margin-bottom: 12px;
    text-align: center;
}

.user-dropdown-menu .user-dropdown-actions .user-link:last-child {
    margin-bottom: 0;
}

.user-dropdown-menu .user-dropdown-actions .user-link::before,
.user-dropdown-menu .user-dropdown-actions .user-link::after {
    content: '';
    position: absolute;
    top: 0;
    width: 58%;
    height: 100%;
    background: #23201e;
    z-index: 2;
    pointer-events: none;
    opacity: 1;
    transition: transform 0.5s cubic-bezier(.77,0,.18,1);
    transform: skewX(-18deg);
}

.user-dropdown-menu .user-dropdown-actions .user-link::before {
    left: -8px;
    transform: translateX(-100%) skewX(-18deg);
}

.user-dropdown-menu .user-dropdown-actions .user-link::after {
    right: -8px;
    transform: translateX(100%) skewX(-18deg);
}

.user-dropdown-menu .user-dropdown-actions .user-link:hover::before,
.user-dropdown-menu .user-dropdown-actions .user-link:focus::before {
    transform: translateX(0) skewX(-18deg);
}

.user-dropdown-menu .user-dropdown-actions .user-link:hover::after,
.user-dropdown-menu .user-dropdown-actions .user-link:focus::after {
    transform: translateX(0) skewX(-18deg);
}

.user-dropdown-menu .user-dropdown-actions .user-link span {
    position: relative;
    z-index: 3;
    color: #111;
    background: transparent !important;
}

.user-dropdown-menu .user-dropdown-actions .user-link:hover,
.user-dropdown-menu .user-dropdown-actions .user-link:focus {
    color: #23201e !important;
}

.user-dropdown-menu .user-dropdown-actions .user-link:hover span,
.user-dropdown-menu .user-dropdown-actions .user-link:focus span {
    color: #fff !important;
    z-index: 3;
}

@media (max-width: 900px) {
    .footer-content {
        flex-direction: column;
        gap: 40px;
        padding: 40px 20px 30px 20px;
        align-items: stretch;
    }
    .footer-left,
    .footer-middle,
    .footer-right {
        max-width: 100%;
        width: 100%;
    }
    .contact-social {
        flex-direction: column;
        gap: 30px;
        margin-top: 60px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        padding: 16px 20px;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .footer-content {
        padding: 24px 6vw 18px 6vw;
        gap: 24px;
    }
    .footer-left,
    .footer-middle,
    .footer-right {
        max-width: 100%;
        width: 100%;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        padding: 12px 6vw;
        font-size: 12px;
    }
    .footer-links {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .newsletter-form {
        flex-direction: column;
        align-items: stretch;
    }
    .newsletter input[type="email"] {
        width: 100%;
        padding: 12px 10px;
        margin-bottom: 8px;
    }
    .newsletter button {
        width: 100%;
        padding: 10px 0;
        border-left: none;
        border-top: 1px solid #333;
    }
}

/* Hide icon-list except menu icon in mobile */
@media (max-width: 600px) {
    .icon-list {
        display: flex !important;
        justify-content: flex-end;
        align-items: center;
        width: 100%;
    }
    .icon-list li:not(:last-child) {
        display: none !important;
    }
    #logo-nav {
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }
    .logo {
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .nav {
        flex: 0 0 auto;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        width: auto;
        min-width: unset;
        padding: 0;
        margin: 0;
    }
}

/* Drawer icon links styling */
.drawer-icon-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}
.drawer-icon-links a,
.drawer-link-btn {
    color: #fad565;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    padding: 8px 0;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s;
    width: 100%;
    display: block;
}
.drawer-icon-links a:hover,
.drawer-link-btn:hover {
    color: #fff;
}

/* Increase logo size on mobile */
@media (max-width: 600px) {
    .logo img.sathika {
        width: 180px !important;   /* Adjust as needed */
        height: auto !important;
        max-width: 90vw;
    }
}

/* --- Place this at the END of your style.css --- */

/* Mobile view - UPDATED HEADER SOLUTION with larger header */
@media (max-width: 600px) {
    #logo-nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 16px 4vw;
        margin-bottom: 0;
        min-height: 80px;
        height: 80px;
        width: 100%;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        z-index: 10000;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    .logo {
        min-height: 60px;
        width: auto;
        margin: 0;
        justify-content: flex-start;
        align-items: center;
        display: flex;
    }

    .logo img {
        width: 120px !important;
        height: auto;
        max-width: 100%;
        display: block;
    }

    .logo img.sathika {
        width: 140px !important;
        height: auto !important;
        max-width: 70vw;
    }

    .nav {
        width: auto;
        min-height: 60px;
        padding: 0;
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

    .icon-list {
        display: flex !important;
        flex-direction: row;
        gap: 18px;
        align-items: center;
        margin: 0 !important;
        padding: 0;
        width: 100%;
        justify-content: flex-end;
    }

    .icon-list li a img {
        width: 22px;
        height: 22px;
        cursor: pointer;
    }

    .icon-list li a img.img2 {
        width: 26px;
        height: 26px;
    }

    .icon-list li a img.img3 {
        width: 28px;
        height: 28px;
        margin-top: 0;
    }

    /* Hide all icons except menu icon */
    .icon-list li:not(:last-child) {
        display: none !important;
    }

    /* Hide regular navbar on mobile */
    .navbar {
        display: none !important;
    }

    body {
        padding-top: 80px !important;
    }

    .main-content,
    main,
    #main,
    .container,
    .page-content,
    .content,
    .woocommerce-page,
    .single-product,
    .shop-page {
        margin-top: 0 !important;
        padding-top: 20px !important;
    }

    .cart-dropdown-menu {
        right: -10px;
        top: 60px;
        min-width: 240px;
        max-width: 240px;
    }

    .side-drawer {
        width: 280px;
        padding-top: 100px;
    }

    .drawer-close {
        top: 30px;
        right: 15px;
    }
}

/* Additional fixes for very small screens with larger header */
@media (max-width: 480px) {
    #logo-nav {
        padding: 14px 3vw;
        height: 75px;
        min-height: 75px;
    }

    body {
        padding-top: 75px !important;
    }

    .logo img {
        width: 110px !important;
    }

    .logo img.sathika {
        width: 145px !important;
        max-width: 75vw;
    }

    .icon-list {
        gap: 16px;
    }

    .icon-list li a img {
        width: 20px;
        height: 20px;
    }

    .icon-list li a img.img2 {
        width: 24px;
        height: 24px;
    }

    .icon-list li a img.img3 {
        width: 26px;
        height: 26px;
    }

    .cart-dropdown-menu {
        top: 55px;
    }

    .side-drawer {
        padding-top: 95px;
    }

    .drawer-close {
        top: 25px;
    }
}

/* Center logo in mobile header */
@media (max-width: 600px) {
    #logo-nav {
        justify-content: center !important;
    }
    .logo {
        flex: 0 1 auto !important;
        justify-content: center !important;
        align-items: center !important;
        margin: 0 auto !important;
    }
    .nav {
        flex: 0 1 auto !important;
        justify-content: flex-end !important;
        align-items: center !important;
    }
}
