
/* ============================================ */
/* REMOVE BORDER FROM HERO SECTION */
/* ============================================ */

.hero {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    margin: 0 !important;
    padding: 4rem 1rem !important;
}

/* Remove any borders from hero content */
.hero-content, .hero-badges, .hero-badge {
    border: none !important;
}

/* ============================================ */
/* FIX PC NAVBAR - Clean and modern */
/* ============================================ */

@media (min-width: 992px) {
    .header {
        padding: 0.8rem 5% !important;
        background: var(--bg-color) !important;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05) !important;
    }
    
    .navbar {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 1.5rem !important;
        position: static !important;
        width: auto !important;
        height: auto !important;
        background: transparent !important;
        box-shadow: none !important;
        padding: 0 !important;
        overflow: visible !important;
    }
    
    .navbar a {
        padding: 0.5rem 0 !important;
        border-bottom: none !important;
        font-size: 0.95rem !important;
        font-weight: 500 !important;
        transition: color 0.3s !important;
    }
    
    .navbar a:hover {
        color: #ff2b2b !important;
    }
    
    /* Dropdown for PC */
    .dropdown {
        position: relative !important;
    }
    
    .dropdown-content {
        position: absolute !important;
        top: 100% !important;
        right: 0 !important;
        background: var(--bg-color) !important;
        min-width: 200px !important;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1) !important;
        border-radius: 0.5rem !important;
        display: none !important;
        z-index: 1000 !important;
    }
    
    .dropdown:hover .dropdown-content {
        display: block !important;
    }
}

/* ============================================ */
/* MODERN MOBILE NAVBAR - Like modern apps */
/* ============================================ */

@media (max-width: 768px) {
    /* Modern header */
    .header {
        padding: 0.8rem 1rem !important;
        background: var(--bg-color) !important;
        backdrop-filter: blur(10px) !important;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05) !important;
    }
    
    /* Modern menu icon */
    #menu-icon {
        font-size: 28px !important;
        cursor: pointer !important;
        transition: all 0.3s !important;
        background: rgba(255, 43, 43, 0.1) !important;
        padding: 8px !important;
        border-radius: 10px !important;
    }
    
    #menu-icon:hover {
        background: rgba(255, 43, 43, 0.2) !important;
    }
    
    /* Modern sidebar menu */
    .navbar {
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
        left: auto !important;
        width: 80% !important;
        max-width: 320px !important;
        height: 100vh !important;
        background: var(--bg-color) !important;
        flex-direction: column !important;
        align-items: stretch !important;
        padding: 70px 0 2rem 0 !important;
        transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        z-index: 1000 !important;
        box-shadow: -5px 0 30px rgba(0,0,0,0.15) !important;
        gap: 0 !important;
        overflow-y: auto !important;
    }
    
    .navbar.active {
        right: 0 !important;
        left: auto !important;
    }
    
    /* Modern menu items */
    .navbar a {
        padding: 16px 20px !important;
        margin: 0 !important;
        border-bottom: 1px solid var(--border-color) !important;
        font-size: 16px !important;
        font-weight: 500 !important;
        text-align: left !important;
        transition: all 0.3s !important;
        display: flex !important;
        align-items: center !important;
        gap: 12px !important;
    }
    
    .navbar a i {
        font-size: 20px !important;
        width: 24px !important;
    }
    
    .navbar a:hover {
        background: rgba(255, 43, 43, 0.05) !important;
        padding-left: 24px !important;
    }
    
    /* Active link style */
    .navbar a.active {
        background: rgba(255, 43, 43, 0.1) !important;
        border-left: 3px solid #ff2b2b !important;
        color: #ff2b2b !important;
    }
    
    /* Close button for the menu (X icon) */
    .navbar::before {
        content: '\f00d';
        font-family: 'boxicons';
        position: absolute;
        top: 15px;
        right: 20px;
        font-size: 24px;
        cursor: pointer;
        color: var(--text-color);
        display: block;
    }
    
    /* Overlay when menu is open */
    body.menu-open::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 999;
        pointer-events: none;
    }
    
    /* Dropdown in mobile */
    .dropdown {
        width: 100% !important;
    }
    
    .dropdown-toggle {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
    }
    
    .dropdown-content {
        background: rgba(0,0,0,0.03) !important;
        padding-left: 20px !important;
        display: none !important;
    }
    
    .dropdown.active .dropdown-content {
        display: block !important;
    }
    
    /* Cart badge fix */
    .cart-count {
        position: absolute !important;
        top: -5px !important;
        right: -8px !important;
        background: #ff2b2b !important;
        color: white !important;
        font-size: 11px !important;
        padding: 2px 6px !important;
        border-radius: 50% !important;
    }
}

/* Add close button functionality with JavaScript */@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    scroll-behavior: smooth;
    font-family: 'Poppins', sans-serif;
}

:root {
    --main-color: #ff2b2b;
    --bg-color: #ffffff;
    --text-color: #1a1a2e;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --border-color: #e0e0e0;
    --card-bg: #ffffff;
    --hover-color: #e01f1f;
}

[data-theme="dark"] {
    --bg-color: #1a1a2e;
    --text-color: #ffffff;
    --shadow-color: rgba(0, 0, 0, 0.3);
    --border-color: #2d2d44;
    --card-bg: #16213e;
}
/* Increase base font size */
html {
    font-size: 18px !important;
}

@media (max-width: 768px) {
    html {
        font-size: 16px !important;
    }
}

/* Make all text bigger */
body, p, span, li, a, .text, .description {
    font-size: 1.1rem !important;
    line-height: 1.6 !important;
}

/* Make headings much bigger */
h1, .hero h1 {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
}

h2, .section-title {
    font-size: 2rem !important;
    font-weight: 700 !important;
}

h3, .product-title {
    font-size: 1.5rem !important;
    font-weight: 600 !important;
}

h4 {
    font-size: 1.3rem !important;
}

h5 {
    font-size: 1.2rem !important;
}

h6 {
    font-size: 1.1rem !important;
}

@media (max-width: 768px) {
    h1, .hero h1 {
        font-size: 2rem !important;
    }
    
    h2, .section-title {
        font-size: 1.6rem !important;
    }
    
    h3, .product-title {
        font-size: 1.3rem !important;
    }
    
    body, p, span, li, a {
        font-size: 1rem !important;
    }
}

/* Make buttons bigger */
button, .btn, .btn-primary, .btn-submit, .btn-add-to-cart,
.register-btn, .login-btn, .verify-btn, .btn-reset {
    font-size: 1rem !important;
    padding: 0.8rem 1.5rem !important;
    border-radius: 0.75rem !important;
}

@media (max-width: 768px) {
    button, .btn, .btn-primary, .btn-submit, .btn-add-to-cart,
    .register-btn, .login-btn, .verify-btn, .btn-reset {
        font-size: 0.95rem !important;
        padding: 0.7rem 1.2rem !important;
    }
}

/* Make form inputs bigger */
input, select, textarea {
    font-size: 1rem !important;
    padding: 0.8rem !important;
    border-radius: 0.75rem !important;
}

/* Make labels bigger */
label {
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    margin-bottom: 0.5rem !important;
}

/* Stats numbers bigger */
.stat-number {
    font-size: 2rem !important;
    font-weight: 800 !important;
}

.stat-label {
    font-size: 0.9rem !important;
    font-weight: 600 !important;
}

/* Product prices bigger */
.product-price, .giftcard-price {
    font-size: 1.2rem !important;
    font-weight: 800 !important;
}

/* Category names bigger */
.category-name {
    font-size: 0.9rem !important;
    font-weight: 600 !important;
}

.product-title {
    font-size: 1.1rem !important;
}

/* Hero text bigger */
.hero p {
    font-size: 1.2rem !important;
}

/* Badges bigger */
.hero-badge, .giftcard-badge, .status-badge {
    font-size: 0.85rem !important;
    padding: 0.4rem 0.8rem !important;
}

/* Navigation links bigger */
.navbar a {
    font-size: 1rem !important;
    padding: 0.5rem 1rem !important;
}

/* Footer text bigger */
.footer-section p, .footer-section li, .footer-section a {
    font-size: 0.9rem !important;
}

.footer-section h3 {
    font-size: 1.2rem !important;
}

/* Product cards */
.product-card, .giftcard-card, .category-card {
    padding: 0.5rem !important;
}

.product-info {
    padding: 0.8rem !important;
}

/* Review text bigger */
.review-text, .message-body {
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
}

/* Table text bigger */
table td, table th {
    font-size: 0.9rem !important;
    padding: 0.8rem !important;
}

/* Alert messages bigger */
.alert {
    font-size: 0.95rem !important;
    padding: 1rem !important;
}

/* Breadcrumbs and small text */
small, .small-text, .message-time, .review-title {
    font-size: 0.8rem !important;
}

/* Pagination links bigger */
.pagination a, .pagination span {
    font-size: 0.9rem !important;
    padding: 0.5rem 0.8rem !important;
}

/* Cart items bigger */
.cart-item-name, .cart-item-price {
    font-size: 1rem !important;
}

/* Ticket messages bigger */
.message-sender, .ticket-title {
    font-size: 1rem !important;
}

/* Dashboard stats bigger */
.dashboard-stat-number {
    font-size: 2rem !important;
}

.dashboard-stat-label {
    font-size: 0.9rem !important;
}
/* Make product grid items larger */
.products-grid {
    gap: 1.5rem !important;
}

.product-card {
    border-radius: 1rem !important;
}

.product-image {
    height: 220px !important;
}

@media (max-width: 768px) {
    .product-image {
        height: 180px !important;
    }
    
    .products-grid {
        gap: 1rem !important;
    }
}

/* Make icons bigger */
.category-icon i, .giftcard-image i {
    font-size: 2.2rem !important;
}

.hero-badge i {
    font-size: 1.2rem !important;
}

/* Make buttons have more padding */
.btn-add-to-cart, .btn-submit {
    margin-top: 0.5rem !important;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--bg-color);
    color: var(--text-color);
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--border-color);
}

::-webkit-scrollbar-thumb {
    background: var(--main-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--hover-color);
}

*::selection {
    background: var(--main-color);
    color: var(--white-color);
}

.dark-mode {
    --bg-color: #000000;
    --text-color: #ffffff;
    --shadow-color: rgba(0, 0, 0, .9);
    --navbar-bg: #1a1a1a;   /* Dark navbar background */
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
}

body {
    background: var(--bg-color);
    color: var(--text-color);
}

/* ===== FIXED HEADER/NAVBAR STYLES ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 7%;
    background: var(--navbar-bg);  /* SOLID BACKGROUND */
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 100;
    transition: .5s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);  /* Added shadow for depth */
}

.header.sticky {
    background: var(--navbar-bg);
    box-shadow: 0 .1rem 1rem var(--shadow-color);
}

.logo {
    font-size: 2.5rem;
    color: var(--main-color);
    font-weight: 600;
    margin-right: auto;
}

/* NAVBAR LINKS - FIXED VISIBILITY */
.navbar {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.navbar a {
    position: relative;
    font-size: 1.7rem;
    color: var(--white-color) !important;  /* WHITE text for visibility */
    font-weight: 500;
    transition: 0.3s;
    padding: 0.5rem 0;
}

.navbar a:hover {
    color: var(--main-color) !important;
}

.navbar a.active {
    color: var(--main-color) !important;
}

.navbar a.active::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: .2rem;
    background: var(--main-color);
}

.header.sticky .navbar a {
    color: var(--white-color) !important;
}

.header.sticky .navbar a:hover,
.header.sticky .navbar a.active {
    color: var(--main-color) !important;
}

/* Dark mode icon */
#darkMode-icon {
    font-size: 2.4rem;
    color: var(--white-color);
    cursor: pointer;
    margin-left: 2rem;
    transition: 0.3s;
}

#darkMode-icon:hover {
    color: var(--main-color);
}

.header.sticky #darkMode-icon {
    color: var(--white-color);
    opacity: .9;
}

/* Menu icon for mobile */
#menu-icon {
    font-size: 3.6rem;
    color: var(--white-color);
    display: none;
    cursor: pointer;
}

/* ===== REST OF YOUR STYLES (KEEP THE SAME) ===== */
section {
    min-height: 100vh;
    padding: 10rem 7% 2rem;
}

.home {
    display: flex;
    align-items: center;
}

.home .home-content {
    max-width: 44rem;
}

.home-content h3 {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: .3;
    color: var(--text-color);
}

.home-content h1 {
    font-size: 5.6rem;
    font-weight: 700;
    margin-bottom: .3rem;
    color: var(--text-color);
}

.home-content p {
    font-size: 1.6rem;
    color: var(--text-color);
}

.circular_image {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    position: absolute;
    top: 36%;
    right: 0;
    overflow: hidden;
    background-color: rgb(255, 0, 0);
    display: inline-block;
    vertical-align: middle;
}

.circular_image img {
    width: 100%;
}

.circularw_image {
    border-radius: 10%;
    overflow: hidden;
    background-color: rgb(255, 0, 0);
    display: inline-block;
    vertical-align: middle;
}

.circularw_image img {
    width: 100%;
}

.home-content .social-media a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 4rem;
    height: 4rem;
    background: transparent;
    border: .2rem solid var(--main-color);
    border-radius: 50%;
    box-shadow: 0 .2rem .5rem var(--shadow-color);
    font-size: 2rem;
    color: var(--main-color);
    margin: 2.5rem 1.5rem 3rem 0;
    transition: .5s ease;
}

.home-content .social-media a:hover {
    background: var(--main-color);
    color: var(--white-color);
}

.btn {
    display: inline-block;
    padding: 1.2rem 2.8rem;
    background: var(--main-color);
    border-radius: .6rem;
    box-shadow: 0 .2rem .5rem var(--shadow-color);
    font-size: 1.6rem;
    color: var(--white-color);
    letter-spacing: .1rem;
    font-weight: 600;
    border: .2rem solid transparent;
    transition: .5s ease;
}

.btn:hover {
    background: transparent;
    color: var(--main-color);
    border-color: var(--main-color);
}

.home .profession-container {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    pointer-events: none;
}

.home .profession-container .profession-box {
    position: absolute;
    top: 0;
    right: 0;
    width: 768px;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: professionRotate 8s ease-out infinite;
}

@keyframes professionRotate {

    0%,
    20% {
        transform: rotate(0deg);
    }

    25%,
    45% {
        transform: rotate(-90deg);
    }
}

.home .profession-box .profession {
    position: absolute;
    left: 0;
    display: flex;
    align-items: center;
    flex-direction: column;
    color: var(--main-color);
    transform: rotate(calc(360deg / 4 * var(--i)));
    transform-origin: 384px;
    background: var(--bg-color);
    padding: 13px 0;
}

.home .profession-box .profession:nth-child(1) i {
    margin-right: 15px;
}

.home .profession-box .profession:nth-child(2),
.home .profession-box .profession:nth-child(4) {
    padding-bottom: 20px;
}

.home .profession i {
    font-size: 3.8rem;
}

.home .profession h3 {
    font-size: 3.2rem;
    line-height: 1;
    font-weight: 600;
}

.home .profession-box .circle {
    width: 560px;
    height: 560px;
    border: 3px solid var(--main-color);
    border-radius: 50%;
    z-index: -1;
}

.home .profession-container .overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-top: 50vh solid var(--main-color);
    border-right: 384px solid var(--main-color);
    border-bottom: 50vh solid var(--main-color);
    border-left: 384px solid transparent;
}

.home-img img {
    position: absolute;
    bottom: 0;
    right: 40px;
    pointer-events: none;
    max-width: 480px;
    max-height: 100vh;
}

span {
    color: var(--main-color);
}

.about {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
}

.about-img img {
    width: 40vw;
}

.heading {
    font-size: 4.5rem;
    text-align: center;
    color: var(--text-color);
}

.about-content h2 {
    text-align: left;
    line-height: 1.2;
    color: var(--text-color);
}

.about-content h3 {
    font-size: 2rem;
    color: var(--text-color);
}

.about-content p {
    font-size: 1.6rem;
    margin: 2rem 0 3rem;
    color: var(--text-color);
}

.services {
    min-height: auto;
    padding-bottom: 10rem;
}

.services h2 {
    margin-bottom: 5rem;
    color: var(--text-color);
}

.services .services-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.services-container .services-box {
    flex: 1 1 30rem;
    background: var(--bg-color);
    padding: 3rem 2rem 4rem;
    border-radius: 2rem;
    box-shadow: 0 .1rem .5rem var(--shadow-color);
    text-align: center;
    border-top: .6rem solid var(--main-color);
    border-bottom: .6rem solid var(--main-color);
    transition: .5s ease;
}

.services-container .services-box:hover {
    box-shadow: 0 .1rem 2rem var(--shadow-color);
    transform: scale(1.02);
}

.services-box i {
    font-size: 7rem;
    color: var(--main-color);
}

.services-box h3 {
    font-size: 2.6rem;
    transition: .5s ease;
    color: var(--text-color);
}

.services-box:hover h3 {
    color: var(--main-color);
}

.services-box p {
    font-size: 1.6rem;
    margin: 1rem 0 3rem;
    color: var(--text-color);
}

.portfolio {
    min-height: auto;
    padding-bottom: 10rem;
}

.portfolio h2 {
    margin-bottom: 4rem;
    color: var(--text-color);
}

.portfolio .portfolio-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    gap: 2.5rem;
}

.portfolio-container .portfolio-box {
    position: relative;
    display: flex;
    border-radius: 2rem;
    box-shadow: 0 0 1rem rgba(0, 0, 0, .1);
    overflow: hidden;
}

.portfolio-box img {
    width: 100%;
    transition: .5s ease;
}

.portfolio-box:hover img {
    transform: scale(1.1);
}

.portfolio-box .portfolio-layer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, .1), var(--main-color));
    color: var(--white-color);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 0 4rem;
    opacity: 0;
    transition: .5s ease;
}

.portfolio-box:hover .portfolio-layer {
    opacity: 1;
}

.portfolio-layer h4 {
    font-size: 3rem;
    color: white;
}

.portfolio-layer p {
    font-size: 1.6rem;
    margin: .3rem 0 1rem;
    color: white;
}

.portfolio-layer a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 5rem;
    height: 5rem;
    background: var(--white-color);
    border-radius: 50%;
}

.portfolio-layer a i {
    font-size: 2rem;
    color: #333;
}

.testimonial-container {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
    padding: 5rem 1rem;
}

.testimonial-container .testimonial-wrapper {
    position: relative;
    max-width: 90rem;
    width: 100%;
    padding: 5rem;
}

.testimonial-wrapper .testimonial-box {
    padding: 1rem;
    border-radius: 2rem;
    overflow: hidden;
}

.testimonial-content .testimonial-slide {
    display: flex;
    align-items: center;
    flex-direction: column;
    background: var(--bg-color);
    border-radius: 2rem;
    box-shadow: 0 .1rem .5rem var(--shadow-color);
    padding: 3rem 5rem;
    border-top: .8rem solid var(--main-color);
    border-bottom: .8rem solid var(--main-color);
}

.testimonial-slide img {
    width: 14rem;
    height: 14rem;
    object-fit: cover;
    border-radius: 50%;
    border: .5rem solid var(--bg-color);
    outline: .5rem solid var(--main-color);
}

.testimonial-slide h3 {
    font-size: 2.5rem;
    margin: 2rem 0;
    color: var(--text-color);
}

.testimonial-slide p {
    font-size: 1.4rem;
    text-align: center;
    color: var(--text-color);
}

.testimonial-box .swiper-button-next,
.testimonial-box .swiper-button-prev {
    color: var(--main-color);
}

.testimonial-box .swiper-button-next {
    right: 0;
}

.testimonial-box .swiper-button-prev {
    left: 0;
}

.testimonial-box .swiper-pagination-bullet {
    background: rgba(0, 0, 0, .8);
}

.testimonial-box .swiper-pagination-bullet-active {
    background: var(--main-color);
}

.contact {
    min-height: auto;
    padding-bottom: 7rem;
}

.contact h2 {
    margin-bottom: 3rem;
    color: var(--text-color);
}

.contact form {
    max-width: 70rem;
    margin: 1rem auto;
    text-align: center;
    margin-bottom: 3rem;
}

.contact form .input-box {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.contact form .input-box input,
.contact form textarea {
    width: 100%;
    padding: 1.5rem;
    font-size: 1.6rem;
    color: var(--text-color);
    background: rgba(85, 2, 2, 0.8);
    border-radius: .8rem;
    margin: .7rem 0;
    border: 1px solid var(--main-color);
}

.contact form .input-box input {
    width: 49%;
}

.contact form textarea {
    resize: none;
}

.contact form .btn {
    margin-top: 2rem;
    cursor: pointer;
}

.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 2rem 7%;
    background: var(--main-color);
}

.footer-text p {
    font-size: 1.6rem;
    color: var(--white-color);
}

.footer-iconTop a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: .8rem;
    background: var(--white-color);
    border-radius: .8rem;
    border: .2rem solid var(--main-color);
    outline: .2rem solid transparent;
    transition: .5s ease;
}

.footer-iconTop a:hover {
    outline-color: var(--white-color);
}

.footer-iconTop a i {
    font-size: 2.4rem;
    color: #333;
}

/* SHOP STYLES */
.shop {
    min-height: auto;
    padding-bottom: 10rem;
}

.shop .shop-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.shop .button {
    background-color: #ff0000;
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    border-radius: 40px;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
}

.shop-container .shop-box {
    flex: 1 1 30rem;
    background: var(--bg-color);
    padding: 3rem 2rem 4rem;
    border-radius: 2rem;
    box-shadow: 0 .1rem .5rem var(--shadow-color);
    text-align: center;
    border-top: .6rem solid var(--main-color);
    border-bottom: .6rem solid var(--main-color);
    transition: .5s ease;
}

.shop-container .shop-box:hover {
    box-shadow: 0 .1rem 2rem var(--shadow-color);
    transform: scale(1.02);
}

/* CARD STYLES */
.card {
    position: relative;
    max-width: 300px;
    height: auto;
    background: linear-gradient(-45deg, #fe0847, #feae3f);
    border-radius: 15px;
    margin: auto;
    padding: 40px 20px;
    -webkit-box-shadow: 0 10px 15px rgba(0, 0, 0, .1);
    box-shadow: 0 10px 15px rgba(0, 0, 0, .1);
    -webkit-transition: .5s;
    transition: .5s;
}

.card:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.col-sm-4:nth-child(1) .card,
.col-sm-4:nth-child(1) .card .title .fa {
    background: linear-gradient(-45deg, #f403d1, #64b5f6);
}

.col-sm-4:nth-child(2) .card,
.col-sm-4:nth-child(2) .card .title .fa {
    background: linear-gradient(-45deg, #ffec61, #f321d7);
}

.col-sm-4:nth-child(3) .card,
.col-sm-4:nth-child(3) .card .title .fa {
    background: linear-gradient(-45deg, #24ff72, #9a4eff);
}

.card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    z-index: 1;
    -webkit-transform: skewY(-5deg) scale(1.5);
    transform: skewY(-5deg) scale(1.5);
}

.title .fa {
    color: #fff;
    font-size: 60px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    text-align: center;
    line-height: 100px;
    -webkit-box-shadow: 0 10px 10px rgba(0, 0, 0, .1);
    box-shadow: 0 10px 10px rgba(0, 0, 0, .1);
}

.title h2 {
    position: relative;
    margin: 20px 0 0;
    padding: 0;
    color: #fff;
    font-size: 28px;
    z-index: 2;
}

.price,
.option {
    position: relative;
    z-index: 2;
}

.price h4 {
    margin: 0;
    padding: 20px 0;
    color: #fff;
    font-size: 60px;
}

.option ul {
    margin: 0;
    padding: 0;
}

.card a {
    position: relative;
    z-index: 2;
    background: #ff0000;
    color: white;
    width: 150px;
    height: 40px;
    line-height: 40px;
    border-radius: 40px;
    display: block;
    text-align: center;
    margin: 20px auto 0;
    font-size: 16px;
    cursor: pointer;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .1);
    box-shadow: 0 5px 10px rgba(0, 0, 0, .1);
}

.option ul li {
    margin: 0 0 10px;
    padding: 0;
    list-style: none;
    color: #fff;
    font-size: 16px;
}

.card a:hover {
    text-decoration: none;
}

/* ===== RESPONSIVE STYLES ===== */
/* BREAKPOINTS */
@media (max-width: 1200px) {
    html {
        font-size: 55%;
    }

    .home .profession-container .profession-box {
        right: -10%;
    }

    .home .profession-container .overlay {
        right: -6%;
    }

    .home-img img {
        right: 0;
    }
}

@media (max-width: 1100px) {
    .home .profession-container .profession-box {
        right: -15%;
    }

    .home-img img {
        max-width: 420px;
    }
}

@media (max-width: 1024px) {
    .header {
        padding: 2rem 3%;
    }

    section {
        padding: 10rem 3% 2rem;
    }

    .home .profession-container .profession-box {
        right: -20%;
    }

    .home .profession-container .overlay {
        right: -12%;
    }

    .home-img img {
        max-width: 400px;
    }
}

@media (max-width: 991px) {
    .home .home-content {
        max-width: 50rem;
    }

    .home .profession-container .profession-box {
        right: -35%;
    }

    .home .profession-container .overlay {
        right: -30%;
    }

    .home-img img {
        display: none;
    }

    .footer {
        padding: 2rem 3%;
    }
}

@media (max-width: 896px) {
    .home .profession-container .profession-box {
        right: -50%;
    }

    .home .profession-container .overlay {
        right: -43%;
    }
}

@media (max-width: 879px) {
    .portfolio .portfolio-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    #menu-icon {
        display: block;
    }

    #darkMode-icon {
        position: absolute;
        right: 7rem;
        font-size: 2.6rem;
        margin-bottom: .1rem;
    }

    .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 1rem 3%;
        background: var(--navbar-bg);
        border-top: .1rem solid rgba(0, 0, 0, .2);
        box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1);
        display: none;
        flex-direction: column;
    }

    .navbar.active {
        display: flex;
    }

    .navbar a {
        display: block;
        font-size: 2rem;
        margin: 1.5rem 0;
        color: var(--white-color) !important;
        text-align: center;
    }

    .navbar a:hover,
    .navbar a.active {
        color: var(--main-color) !important;
    }

    .home {
        padding: 0 3% 23rem;
        justify-content: center;
        text-align: center;
    }

    .home-content h3 {
        font-size: 2.6rem;
    }

    .home-content h1 {
        font-size: 5rem;
    }

    .home-content .social-media a {
        margin: 2.5rem .75rem 3rem;
    }

    .home .profession-container {
        left: 0;
        width: 100%;
        height: 100%;
    }

    .home .profession-container .profession-box {
        position: fixed;
        top: 450px;
        left: 0;
        width: 100%;
    }

    .home .profession-box .profession {
        padding: 0 13px;
        left: auto;
        transform-origin: 0;
    }

    .home .profession-box .profession:nth-child(1) {
        transform: rotate(-90deg) translate(-120px, -210px);
    }

    .home .profession-box .profession:nth-child(1) i {
        margin-right: 0;
    }

    .home .profession-box .profession:nth-child(2) {
        transform: rotate(0deg) translate(0, -325px);
    }

    .home .profession-box .profession:nth-child(3) {
        transform: rotate(90deg) translate(-115px, -450px);
    }

    .home .profession-box .profession:nth-child(4) {
        transform: rotate(180deg) translate(-220px, -325px);
    }

    .home .profession-box .circle {
        position: fixed;
        width: 670px;
        height: 670px;
        z-index: -1;
    }

    .home .profession-container .overlay {
        position: fixed;
        top: 70rem;
        left: 50%;
        right: 0;
        transform: rotate(90deg) translate(-50%, 50%) scaleY(3);
        border-width: 23.9rem;
    }

    .about {
        flex-direction: column-reverse;
        text-align: center;
    }

    .about-content h2 {
        text-align: center;
    }

    .about-img img {
        width: 70vw;
        margin-top: -2rem;
    }

    .testimonial-container .testimonial-wrapper {
        padding: 5rem 0;
    }

    .testimonial-content .testimonial-slide {
        padding: 3rem 2rem;
    }

    .testimonial-box .swiper-button-next,
    .testimonial-box .swiper-button-prev {
        display: none;
    }
}

@media (max-width: 580px) {
    .portfolio .portfolio-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 450px) {
    html {
        font-size: 50%;
    }

    #darkMode-icon {
        right: 6rem;
    }

    .home .profession-box .profession:nth-child(1) {
        transform: rotate(-90deg) translate(-110px, -220px);
    }

    .home .profession-box .profession:nth-child(2) {
        transform: rotate(0deg) translate(5px, -325px);
    }

    .home .profession-box .profession:nth-child(3) {
        transform: rotate(90deg) translate(-105px, -440px);
    }

    .home .profession-box .profession:nth-child(4) {
        transform: rotate(180deg) translate(-210px, -325px);
    }

    .home .profession-container .overlay {
        top: 80rem;
    }

    .contact form .input-box input {
        width: 100%;
    }

    .footer {
        flex-direction: column-reverse;
    }

    .footer p {
        text-align: center;
        margin-top: 2rem;
    }
}
/* ============================================ */
/* FIX MOBILE NAVBAR - URGENT */
/* ============================================ */

/* Fix header spacing */
.header {
    padding: 0.8rem 1rem !important;
    position: fixed !important;
    top: 0 !important;
    width: 100% !important;
    z-index: 1000 !important;
    background: var(--bg-color) !important;
}

/* Logo size */
.logo {
    font-size: 1.3rem !important;
}

/* Menu icon - make it visible and bigger */
#menu-icon {
    display: block !important;
    font-size: 2rem !important;
    cursor: pointer !important;
    color: var(--text-color) !important;
}

/* Navbar - hidden by default on mobile */
.navbar {
    position: fixed !important;
    top: 60px !important;
    left: -100% !important;
    width: 80% !important;
    height: calc(100vh - 60px) !important;
    background: var(--bg-color) !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    padding: 1rem !important;
    transition: left 0.3s ease !important;
    z-index: 999 !important;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1) !important;
    gap: 0 !important;
}

/* Show navbar when active */
.navbar.active {
    left: 0 !important;
}

/* Navbar links - vertical layout */
.navbar a {
    width: 100% !important;
    padding: 0.8rem 1rem !important;
    text-align: left !important;
    border-bottom: 1px solid var(--border-color) !important;
    font-size: 1rem !important;
}

/* Dropdown on mobile */
.dropdown {
    width: 100% !important;
}

.dropdown-toggle {
    width: 100% !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}

.dropdown-content {
    position: static !important;
    width: 100% !important;
    display: none !important;
    background: rgba(0,0,0,0.05) !important;
    box-shadow: none !important;
    padding-left: 1rem !important;
}

.dropdown.active .dropdown-content {
    display: block !important;
}

/* Dark mode toggle and language switcher */
.dark-mode-toggle,
.language-switch {
    width: 100% !important;
    text-align: left !important;
}

/* Main content - add top padding to avoid hiding under header */
.main-content {
    margin-top: 70px !important;
    padding: 1rem !important;
}

/* Fix for desktop screens - show navbar normally */
@media (min-width: 992px) {
    #menu-icon {
        display: none !important;
    }
    
    .navbar {
        position: static !important;
        width: auto !important;
        height: auto !important;
        flex-direction: row !important;
        background: transparent !important;
        box-shadow: none !important;
        padding: 0 !important;
    }
    
    .navbar a {
        width: auto !important;
        border-bottom: none !important;
    }
    
    .dropdown-content {
        position: absolute !important;
        width: auto !important;
    }
}
/* ============================================ */
/* FORCE BIG FONTS ON MOBILE - URGENT FIX */
/* ============================================ */

/* Force all text to be bigger on mobile */
@media (max-width: 768px) {
    /* Make everything bigger */
    body, html {
        font-size: 18px !important;
    }
    
    /* Hero section */
    .hero h1 {
        font-size: 28px !important;
        font-weight: bold !important;
    }
    
    .hero p {
        font-size: 16px !important;
    }
    
    /* Stats numbers - make them very big */
    .stat-number {
        font-size: 28px !important;
        font-weight: 800 !important;
    }
    
    .stat-label {
        font-size: 14px !important;
        font-weight: 600 !important;
    }
    
    /* Section titles */
    .section-title {
        font-size: 24px !important;
        font-weight: 700 !important;
        margin: 20px 0 15px !important;
    }
    
    /* Category cards */
    .category-name {
        font-size: 16px !important;
        font-weight: 700 !important;
        margin-top: 8px !important;
    }
    
    .category-icon i {
        font-size: 32px !important;
    }
    
    /* Gift cards */
    .giftcard-title {
        font-size: 16px !important;
        font-weight: 700 !important;
    }
    
    .giftcard-price {
        font-size: 18px !important;
        font-weight: 800 !important;
    }
    
    .giftcard-badge {
        font-size: 12px !important;
        padding: 4px 8px !important;
    }
    
    /* Product cards in shop */
    .product-title {
        font-size: 18px !important;
        font-weight: 700 !important;
    }
    
    .product-price {
        font-size: 20px !important;
        font-weight: 800 !important;
    }
    
    .btn-add-to-cart {
        font-size: 16px !important;
        padding: 12px !important;
    }
    
    /* Buttons everywhere */
    button, .btn, .btn-primary, .btn-submit {
        font-size: 16px !important;
        padding: 12px 20px !important;
    }
    
    /* Form inputs */
    input, select, textarea {
        font-size: 16px !important;
        padding: 12px !important;
    }
    
    /* Labels */
    label {
        font-size: 15px !important;
        font-weight: 600 !important;
    }
    
    /* Navigation menu items */
    .navbar a {
        font-size: 16px !important;
        padding: 12px 15px !important;
    }
    
    /* Footer */
    .footer-section h3 {
        font-size: 20px !important;
    }
    
    .footer-section p, .footer-section li {
        font-size: 14px !important;
    }
    
    /* Table text */
    td, th {
        font-size: 14px !important;
        padding: 10px !important;
    }
    
    /* Alerts */
    .alert {
        font-size: 14px !important;
        padding: 12px !important;
    }
}

/* Make category grid 2 columns on mobile - already good */
@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
        padding: 10px !important;
    }
    
    .category-card {
        padding: 15px 5px !important;
    }
    
    .giftcards-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
    
    .giftcard-card {
        padding: 0 !important;
    }
    
    .giftcard-image {
        height: 100px !important;
    }
    
    .giftcard-image i {
        font-size: 40px !important;
    }
}

/* For very small phones */
@media (max-width: 480px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .giftcards-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .section-title {
        font-size: 22px !important;
    }
    
    .hero h1 {
        font-size: 24px !important;
    }
    
    .stat-number {
        font-size: 24px !important;
    }
}
/* Make categories section even bigger */
.categories-section {
    padding: 20px 10px !important;
}

.category-card {
    background: var(--card-bg) !important;
    border-radius: 12px !important;
    padding: 15px 5px !important;
    text-align: center !important;
    border: 1px solid var(--border-color) !important;
}

.category-icon i {
    font-size: 36px !important;
    display: block !important;
    margin-bottom: 10px !important;
}

.category-name {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: var(--text-color) !important;
}

/* Make gift cards section bigger */
.giftcard-card {
    border-radius: 12px !important;
    overflow: hidden !important;
}

.giftcard-image {
    height: 110px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.giftcard-image i {
    font-size: 45px !important;
}

.giftcard-title {
    font-size: 15px !important;
    font-weight: 700 !important;
    margin-bottom: 5px !important;
}

.giftcard-price {
    font-size: 16px !important;
    font-weight: 800 !important;
    color: #ff2b2b !important;
}
/* Improve navbar closing behavior */
.navbar.active {
    left: 0 !important;
}

/* Overlay when navbar is open (optional) */
.navbar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 998;
    display: none;
}

.navbar-overlay.active {
    display: block;
}

/* Close button for navbar */
.navbar-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    display: none;
}

@media (max-width: 768px) {
    .navbar-close {
        display: block;
    }
}

/* Additional mobile fixes */
@media (max-width: 768px) {
    .hero {
        padding: 2rem 1rem !important;
    }
    
    .hero h1 {
        font-size: 1.5rem !important;
    }
    
    .stats-section {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.5rem !important;
        padding: 1rem !important;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.5rem !important;
    }
    
    .giftcards-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.5rem !important;
    }
    
    .section-title {
        font-size: 1.3rem !important;
    }
}
@media (max-width: 365px) {
    .about-img img {
        width: 90vw;
    }
}

@media (max-width: 315px) {
    .home-content h1 {
        font-size: 4.5rem;
    }
}

/* ============================================ */
/* FIX FOR PC - Normal zoom (110% instead of 150%) */
/* ============================================ */

/* Default size for PC/Laptop */
@media (min-width: 1024px) {
    html {
        font-size: 16px !important;  /* Normal size for PC */
    }
    
    body {
        font-size: 1rem !important;
    }
    
    /* Headings for PC */
    h1, .hero h1 {
        font-size: 2.2rem !important;
    }
    
    h2, .section-title {
        font-size: 1.8rem !important;
    }
    
    h3, .product-title {
        font-size: 1.2rem !important;
    }
    
    /* Stats for PC */
    .stat-number {
        font-size: 1.8rem !important;
    }
    
    .stat-label {
        font-size: 0.9rem !important;
    }
    
    /* Products grid for PC */
    .products-grid {
        grid-template-columns: repeat(4, 1fr) !important;
    }
    
    .product-image {
        height: 200px !important;
    }
    
    /* Categories grid for PC */
    .categories-grid {
        grid-template-columns: repeat(8, 1fr) !important;
    }
    
    /* Gift cards grid for PC */
    .giftcards-grid {
        grid-template-columns: repeat(6, 1fr) !important;
    }
    
    /* Buttons for PC */
    button, .btn, .btn-primary {
        font-size: 0.9rem !important;
        padding: 0.6rem 1.2rem !important;
    }
}

/* ============================================ */
/* FIX MOBILE NAVBAR - Make it scrollable */
/* ============================================ */

@media (max-width: 768px) {
    /* Fix navbar to be scrollable */
    .navbar {
        position: fixed !important;
        top: 60px !important;
        left: -100% !important;
        width: 85% !important;
        max-width: 300px !important;
        height: calc(100vh - 60px) !important;
        background: var(--bg-color) !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        padding: 1rem !important;
        transition: left 0.3s ease !important;
        z-index: 999 !important;
        box-shadow: 2px 0 10px rgba(0,0,0,0.1) !important;
        gap: 0 !important;
        overflow-y: auto !important;  /* Allow scrolling */
        overflow-x: hidden !important;
    }
    
    /* Make navbar links easier to tap */
    .navbar a {
        width: 100% !important;
        padding: 14px 15px !important;
        margin: 0 !important;
        border-bottom: 1px solid var(--border-color) !important;
        font-size: 16px !important;
        text-align: left !important;
        white-space: nowrap !important;
    }
    
    /* Last item in navbar - add extra space at bottom */
    .navbar a:last-child {
        margin-bottom: 20px !important;
    }
    
    /* Ensure the menu button is easy to tap */
    #menu-icon {
        font-size: 28px !important;
        padding: 10px !important;
        cursor: pointer !important;
    }
    
    /* Make main content have proper spacing */
    .main-content {
        margin-top: 70px !important;
        padding-bottom: 80px !important; /* Add bottom padding */
    }
    
    /* Fix for very short screens */
    @media (max-height: 600px) {
        .navbar {
            padding: 0.5rem !important;
        }
        
        .navbar a {
            padding: 10px 15px !important;
        }
    }
}

/* ============================================ */
/* MOBILE SIZES - Good for phone but not too big */
/* ============================================ */

@media (max-width: 768px) {
    /* Keep current mobile sizes but adjust slightly */
    html {
        font-size: 16px !important;
    }
    
    .hero h1 {
        font-size: 24px !important;
    }
    
    .stat-number {
        font-size: 22px !important;
    }
    
    .section-title {
        font-size: 20px !important;
    }
    
    .category-name {
        font-size: 13px !important;
    }
    
    .giftcard-title {
        font-size: 13px !important;
    }
    
    .giftcard-price {
        font-size: 14px !important;
    }
    
    .product-title {
        font-size: 14px !important;
    }
    
    .product-price {
        font-size: 16px !important;
    }
    
    button, .btn, .btn-primary {
        font-size: 14px !important;
        padding: 10px 16px !important;
    }
}
/* Improve navbar closing behavior */
.navbar.active {
    left: 0 !important;
}

/* Overlay when navbar is open (optional) */
.navbar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 998;
    display: none;
}

.navbar-overlay.active {
    display: block;
}

/* Close button for navbar */
.navbar-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    display: none;
}

@media (max-width: 768px) {
    .navbar-close {
        display: block;
    }
}
/* ============================================ */
/* REMOVE BORDER FROM HERO SECTION */
/* ============================================ */

.hero {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    margin: 0 !important;
    padding: 4rem 1rem !important;
}

/* Remove any borders from hero content */
.hero-content, .hero-badges, .hero-badge {
    border: none !important;
}

/* ============================================ */
/* FIX PC NAVBAR - Clean and modern */
/* ============================================ */

@media (min-width: 992px) {
    .header {
        padding: 0.8rem 5% !important;
        background: var(--bg-color) !important;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05) !important;
    }
    
    .navbar {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 1.5rem !important;
        position: static !important;
        width: auto !important;
        height: auto !important;
        background: transparent !important;
        box-shadow: none !important;
        padding: 0 !important;
        overflow: visible !important;
    }
    
    .navbar a {
        padding: 0.5rem 0 !important;
        border-bottom: none !important;
        font-size: 0.95rem !important;
        font-weight: 500 !important;
        transition: color 0.3s !important;
    }
    
    .navbar a:hover {
        color: #ff2b2b !important;
    }
    
    /* Dropdown for PC */
    .dropdown {
        position: relative !important;
    }
    
    .dropdown-content {
        position: absolute !important;
        top: 100% !important;
        right: 0 !important;
        background: var(--bg-color) !important;
        min-width: 200px !important;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1) !important;
        border-radius: 0.5rem !important;
        display: none !important;
        z-index: 1000 !important;
    }
    
    .dropdown:hover .dropdown-content {
        display: block !important;
    }
}

/* ============================================ */
/* MODERN MOBILE NAVBAR - Like modern apps */
/* ============================================ */

@media (max-width: 768px) {
    /* Modern header */
    .header {
        padding: 0.8rem 1rem !important;
        background: var(--bg-color) !important;
        backdrop-filter: blur(10px) !important;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05) !important;
    }
    
    /* Modern menu icon */
    #menu-icon {
        font-size: 28px !important;
        cursor: pointer !important;
        transition: all 0.3s !important;
        background: rgba(255, 43, 43, 0.1) !important;
        padding: 8px !important;
        border-radius: 10px !important;
    }
    
    #menu-icon:hover {
        background: rgba(255, 43, 43, 0.2) !important;
    }
    
    /* Modern sidebar menu */
    .navbar {
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
        left: auto !important;
        width: 80% !important;
        max-width: 320px !important;
        height: 100vh !important;
        background: var(--bg-color) !important;
        flex-direction: column !important;
        align-items: stretch !important;
        padding: 70px 0 2rem 0 !important;
        transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        z-index: 1000 !important;
        box-shadow: -5px 0 30px rgba(0,0,0,0.15) !important;
        gap: 0 !important;
        overflow-y: auto !important;
    }
    
    .navbar.active {
        right: 0 !important;
        left: auto !important;
    }
    
    /* Modern menu items */
    .navbar a {
        padding: 16px 20px !important;
        margin: 0 !important;
        border-bottom: 1px solid var(--border-color) !important;
        font-size: 16px !important;
        font-weight: 500 !important;
        text-align: left !important;
        transition: all 0.3s !important;
        display: flex !important;
        align-items: center !important;
        gap: 12px !important;
    }
    
    .navbar a i {
        font-size: 20px !important;
        width: 24px !important;
    }
    
    .navbar a:hover {
        background: rgba(255, 43, 43, 0.05) !important;
        padding-left: 24px !important;
    }
    
    /* Active link style */
    .navbar a.active {
        background: rgba(255, 43, 43, 0.1) !important;
        border-left: 3px solid #ff2b2b !important;
        color: #ff2b2b !important;
    }
    
    /* Close button for the menu (X icon) */
    .navbar::before {
        content: '\f00d';
        font-family: 'boxicons';
        position: absolute;
        top: 15px;
        right: 20px;
        font-size: 24px;
        cursor: pointer;
        color: var(--text-color);
        display: block;
    }
    
    /* Overlay when menu is open */
    body.menu-open::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 999;
        pointer-events: none;
    }
    
    /* Dropdown in mobile */
    .dropdown {
        width: 100% !important;
    }
    
    .dropdown-toggle {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
    }
    
    .dropdown-content {
        background: rgba(0,0,0,0.03) !important;
        padding-left: 20px !important;
        display: none !important;
    }
    
    .dropdown.active .dropdown-content {
        display: block !important;
    }
    
    /* Cart badge fix */
    .cart-count {
        position: absolute !important;
        top: -5px !important;
        right: -8px !important;
        background: #ff2b2b !important;
        color: white !important;
        font-size: 11px !important;
        padding: 2px 6px !important;
        border-radius: 50% !important;
    }
}

/* Add close button functionality with JavaScript */