
        /* ===== CSS RESET & BASE STYLES ===== */
        :root {
            --primary-color: #9d5623;
            --secondary-color: #ffe2bd;
            --dark-color: #1a120b;
            --light-color: #f9f5eb;
            --accent-color: #e69602;
            --gray-color: #3c2a21;
            --transition: all 0.3s ease-in-out;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Cairo', sans-serif;
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--dark-color);
            color: var(--light-color);
            overflow-x: hidden;
        }

        /* ===== HEADER & NAVIGATION ===== */
        header {
            background: rgba(26, 18, 11, 0.95);
            width: 100%;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 5%;
            position: fixed;
            z-index: 1000;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            transition: var(--transition);
        }

        header.scrolled {
            height: 70px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
        }

        .navigation {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
        }

        /* Navigation Links */
        a {
            text-decoration: none;
            color: var(--secondary-color);
            position: relative;
            transition: var(--transition);
        }

        header a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -5px;
            width: 0;
            height: 2px;
            background-color: var(--primary-color);
            transition: width 0.3s;
        }

        header a:focus,
        header a:hover {
            color: var(--accent-color);
        }

        header a:focus::after,
        header a:active::after,
        header a:hover::after {
            width: 100%;
        }

        .logo a img {
            width: 70px;
            height: 70px;
            transition: var(--transition);
        }

        .logo a img:hover {
            transform: rotate(15deg);
        }

        .main-head, .icon-head {
            gap: 35px;
            display: flex;
            font-size: 17px;
            font-weight: 500;
        }

        .icon-head a i {
            font-size: 20px;
            transition: var(--transition);
        }

        .icon-head a:hover i {
            color: var(--primary-color);
            transform: translateY(-3px);
        }

        /* Search Form */
        .searsh-form {
            position: absolute;
            top: 100%; 
            right: 5%;
            background: var(--light-color);
            display: flex;
            width: 350px;
            height: 45px;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            transform: scale(0);
            transform-origin: top right;
            transition: var(--transition);
            z-index: 1001;
        }

        .searsh-form.open {
            transform: scale(1);
            top: 110%;
        }

        .searsh-form input {
            width: 100%;
            height: 100%;
            border: none;
            padding: 0 20px;
            outline: none;
            background: transparent;
            font-size: 16px;
        }

        .searsh-form i {
            font-size: 18px;
            color: var(--dark-color);
            cursor: pointer;
            padding: 0 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--primary-color);
            color: white;
        }

        /* Shopping Cart */
        .container-cart {
            position: fixed;
            top: 0;
            right: -400px;
            background: var(--light-color);
            display: flex;
            flex-direction: column;
            width: 400px;
            height: 100vh;
            justify-content: flex-start;
            align-items: center;
            padding: 20px;
            z-index: 1002;
            transition: var(--transition);
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        }

        .container-cart.open {
            right: 0;
        }

        .img-cart {
            width: 60%;
            height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 50px 0;
            opacity: 0.7;
        }

        .img-cart img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .btn-cart {
            width: 100%;
            margin-top: 20px;
        }

        .btn-cart button {
            background: var(--primary-color);
            color: white;
            font-size: 16px;
            font-weight: 600;
            border: none;
            border-radius: 30px;
            width: 100%;
            padding: 12px;
            cursor: pointer;
            transition: var(--transition);
        }

        .btn-cart button:hover {
            background: var(--gray-color);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(157, 86, 35, 0.3);
        }

        .container-cart .remove-container {
            position: absolute;
            top: 20px;
            right: 20px;
        }

        .container-cart .remove-container .remove-item {
            font-size: 25px;
            color: var(--dark-color);
            cursor: pointer;
            transition: var(--transition);
        }

        .container-cart .remove-container .remove-item:hover {
            color: var(--primary-color);
            transform: rotate(90deg);
        }

        /* ===== HOMEPAGE SECTION ===== */
        .home {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
        }

        .main-home {
            background: linear-gradient(rgba(26, 18, 11, 0.521), rgba(26, 18, 11, 0.562)), url('img/home.png') center/cover fixed;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            padding: 0 10%;
        }

        .content-home {
            max-width: 650px;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: flex-start;
            gap: 25px;
            transform: translateY(50px);
            opacity: 0;
            animation: fadeUp 1s ease forwards 0.5s;
        }

        .content-home h1 {
            color: var(--secondary-color);
            font-size: 4rem;
            font-weight: 900;
            line-height: 1.2;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
        }

        .content-home p {
            color: var(--secondary-color);
            font-size: 1.2rem;
            font-weight: 300;
            line-height: 1.6;
        }

        .content-home button {
            background: var(--primary-color);
            color: white;
            padding: 12px 30px;
            font-size: 1rem;
            font-weight: 600;
            border: none;
            border-radius: 30px;
            cursor: pointer;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .content-home button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--accent-color);
            transition: var(--transition);
            z-index: -1;
        }

        .content-home button:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(157, 86, 35, 0.4);
        }

        .content-home button:hover::before {
            left: 0;
        }

        /* Coffee beans animation */
        .coffee-beans {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
            z-index: 1;
        }

        .bean {
            position: absolute;
            width: 20px;
            height: 15px;
            background: var(--gray-color);
            border-radius: 50%;
            opacity: 0.5;
            animation: float 15s linear infinite;
        }

        @keyframes float {
            0% {
                transform: translateY(100vh) rotate(0deg);
            }
            100% {
                transform: translateY(-100px) rotate(360deg);
            }
        }

        /* ===== SECTION COMMON STYLES ===== */
        section {
            padding: 100px 5%;
            width: 100%;
        }

        section h2 {
            text-align: center;
            color: var(--primary-color);
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 50px;
            position: relative;
            padding-bottom: 15px;
        }

        section h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--primary-color);
        }

        section h2 span {
            color: var(--secondary-color);
        }

        /* ===== ABOUT SECTION ===== */
        .about {
            background: var(--dark-color);
            position: relative;
            overflow: hidden;
        }

        .about::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 300px;
            height: 300px;
            background: url('img2/coffee-beans-pattern.png') center/cover;
            opacity: 0.05;
            animation: rotate 60s linear infinite;
        }

        .content-about {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 80px;
            position: relative;
            z-index: 2;
        }

        .img-about {
            flex: 1;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
            transform: translateX(-50px);
            opacity: 0;
            transition: all 1s ease;
        }

        .img-about.in-view {
            transform: translateX(0);
            opacity: 1;
        }

        .img-about img {
            width: 100%;
            height: auto;
            display: block;
            transition: var(--transition);
        }

        .img-about:hover img {
            transform: scale(1.05);
        }

        .description-about {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: flex-start;
            gap: 25px;
        }

        .description-about h3 {
            color: var(--secondary-color);
            font-size: 2rem;
            font-weight: 700;
        }

        .description-about p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .description-about button {
            background: transparent;
            color: var(--primary-color);
            padding: 12px 30px;
            font-size: 1rem;
            font-weight: 600;
            border: 2px solid var(--primary-color);
            border-radius: 30px;
            cursor: pointer;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .description-about button::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background: var(--primary-color);
            transition: var(--transition);
            z-index: -1;
        }

        .description-about button:hover {
            color: white;
        }

        .description-about button:hover::before {
            width: 100%;
        }

        /* ===== MENU SECTION ===== */
        .menu {
            background: linear-gradient(to bottom, var(--dark-color), #251a12);
            position: relative;
        }

        .content-menu {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .box-menu {
            background: rgba(60, 42, 33, 0.5);
            border-radius: 15px;
            padding: 25px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: white;
            transition: var(--transition);
            transform: translateY(50px);
            opacity: 0;
        }

        .box-menu.in-view {
            transform: translateY(0);
            opacity: 1;
        }

        .box-menu:hover {
            transform: translateY(-10px);
            background: rgba(60, 42, 33, 0.8);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .img-box-menu {
            width: 60%;
            height: 180px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .img-box-menu img {
            max-width: 100%;
            max-height: 100%;
            transition: var(--transition);
        }

        .box-menu:hover .img-box-menu img {
            transform: scale(1.1) rotate(5deg);
        }

        .des-box-menu {
            text-align: center;
            margin-bottom: 20px;
        }

        .des-box-menu h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--secondary-color);
            margin-bottom: 10px;
        }

        .des-box-menu p {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--primary-color);
        }

        .des-box-menu p span {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.6);
            text-decoration: line-through;
            margin-left: 10px;
        }

        .btn-box-menu button {
            background: var(--primary-color);
            color: white;
            padding: 10px 25px;
            font-size: 0.9rem;
            font-weight: 500;
            border: none;
            border-radius: 25px;
            cursor: pointer;
            transition: var(--transition);
        }

        .btn-box-menu button:hover {
            background: var(--accent-color);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(157, 86, 35, 0.4);
        }

        /* ===== PRODUCTS SECTION ===== */
        .products {
            background: var(--dark-color);
        }

        .content-products {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .box-product {
            background: rgba(60, 42, 33, 0.5);
            border-radius: 15px;
            padding: 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            color: white;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            transform: translateY(50px);
            opacity: 0;
        }

        .box-product.in-view {
            transform: translateY(0);
            opacity: 1;
        }

        .box-product::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(to bottom right, rgba(157, 86, 35, 0.1), transparent);
            transform: rotate(45deg);
            z-index: 0;
        }

        .box-product:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }

        .iconn-product {
            position: absolute;
            top: 15px;
            right: 15px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            z-index: 2;
            transform: translateX(50px);
            opacity: 0;
            transition: var(--transition);
        }

        .box-product:hover .iconn-product {
            transform: translateX(0);
            opacity: 1;
        }

        .iconn-product a {
            width: 35px;
            height: 35px;
            background: var(--light-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        .iconn-product a i {
            color: var(--dark-color);
            font-size: 14px;
            transition: var(--transition);
        }

        .iconn-product a:hover {
            background: var(--primary-color);
        }

        .iconn-product a:hover i {
            color: white;
            transform: scale(1.2);
        }

        .img-box-product {
            position: relative;
            width: 100%;
            height: 200px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            z-index: 1;
        }

        .img-product-stars {
            width: 100px;
            margin-bottom: 10px;
        }

        .img-product {
            max-width: 80%;
            max-height: 150px;
            transition: var(--transition);
        }

        .box-product:hover .img-product {
            transform: scale(1.1);
        }

        .des-box-product {
            text-align: center;
            z-index: 1;
        }

        .des-box-product h3 {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--secondary-color);
            margin-bottom: 10px;
        }

        .des-box-product p {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--primary-color);
        }

        .des-box-product p span {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.6);
            text-decoration: line-through;
            margin-left: 10px;
        }

        /* ===== REVIEW SECTION ===== */
        .review {
            background: linear-gradient(to bottom, #251a12, var(--dark-color));
        }

        .content-review {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .box-review {
            background: rgba(60, 42, 33, 0.5);
            border-radius: 15px;
            padding: 30px;
            display: flex;
            flex-direction: column;
            align-items: center;
            color: white;
            transition: var(--transition);
            transform: translateY(50px);
            opacity: 0;
        }

        .box-review.in-view {
            transform: translateY(0);
            opacity: 1;
        }

        .box-review:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .des-box-review {
            margin-bottom: 25px;
            position: relative;
        }

        .des-box-review::before {
            content: '"';
            position: absolute;
            top: -20px;
            left: -10px;
            font-size: 4rem;
            color: rgba(157, 86, 35, 0.2);
        }

        .des-box-review p {
            font-size: 1rem;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.9);
            font-style: italic;
        }

        .img-box-review {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }

        .img-review1 {
            width: 100px;
        }

        .img-review2 {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid var(--primary-color);
        }

        /* ===== CONTACT SECTION ===== */
        .contact {
            background: var(--dark-color);
        }

        .content-contact {
            display: flex;
            flex-wrap: wrap;
            gap: 50px;
        }

        .map {
            flex: 1;
            min-width: 300px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
            height: 400px;
        }

        .map iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        .box-contact {
            flex: 1;
            min-width: 300px;
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .box-contact h3 {
            font-size: 1.8rem;
            color: var(--secondary-color);
            font-weight: 700;
        }

        .box-inp {
            width: 100%;
        }

        .box-inp input {
            width: 100%;
            padding: 15px 20px;
            background: rgba(60, 42, 33, 0.5);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            color: white;
            font-size: 1rem;
            transition: var(--transition);
        }

        .box-inp input:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 2px rgba(157, 86, 35, 0.3);
        }

        .box-btn button {
            background: var(--primary-color);
            color: white;
            padding: 15px 30px;
            font-size: 1rem;
            font-weight: 600;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: var(--transition);
            width: 100%;
        }

        .box-btn button:hover {
            background: var(--accent-color);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(157, 86, 35, 0.3);
        }

        /* ===== BLOGS SECTION ===== */
        .blogs {
            background: linear-gradient(to bottom, var(--dark-color), #251a12);
        }

        .content-blogs {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .box-blogs {
            background: rgba(60, 42, 33, 0.5);
            border-radius: 15px;
            overflow: hidden;
            transition: var(--transition);
            transform: translateY(50px);
            opacity: 0;
        }

        .box-blogs.in-view {
            transform: translateY(0);
            opacity: 1;
        }

        .box-blogs:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }

        .img-box-blogs {
            width: 100%;
            height: 200px;
            overflow: hidden;
        }

        .img-box-blogs img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .box-blogs:hover .img-box-blogs img {
            transform: scale(1.1);
        }

        .des-box-blogs {
            padding: 25px;
        }

        .des-box-blogs h3 {
            font-size: 1.4rem;
            color: var(--secondary-color);
            margin-bottom: 10px;
            font-weight: 700;
        }

        .meta {
            color: var(--primary-color);
            font-size: 0.9rem;
            margin-bottom: 15px;
            display: block;
        }

        .des-box-blogs p {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .btn-box-blogs button {
            background: transparent;
            color: var(--primary-color);
            padding: 10px 20px;
            font-size: 0.9rem;
            font-weight: 600;
            border: 2px solid var(--primary-color);
            border-radius: 25px;
            cursor: pointer;
            transition: var(--transition);
        }

        .btn-box-blogs button:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(157, 86, 35, 0.3);
        }

        /* ===== FOOTER ===== */
        footer {
            background: var(--gray-color);
            padding: 70px 5% 20px;
            color: white;
        }

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

        .footer-section h4 {
            font-size: 1.3rem;
            color: var(--secondary-color);
            margin-bottom: 20px;
            font-weight: 700;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-section h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background: var(--primary-color);
        }

        .footer-section p {
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 15px;
        }

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

        .footer-section ul li {
            margin-bottom: 10px;
        }

        .footer-section ul li a {
            color: rgba(255, 255, 255, 0.8);
            transition: var(--transition);
        }

        .footer-section ul li a:hover {
            color: var(--primary-color);
            padding-left: 5px;
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        .social-links a:hover {
            background: var(--primary-color);
            transform: translateY(-5px);
        }

        .social-links a i {
            font-size: 18px;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }

        /* ===== ANIMATIONS ===== */
        @keyframes fadeUp {
            from {
                transform: translateY(50px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes rotate {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }

        /* ===== RESPONSIVE STYLES ===== */
        @media (max-width: 1024px) {
            .content-home h1 {
                font-size: 3rem;
            }
            
            .content-about {
                flex-direction: column;
                gap: 50px;
            }
            
            .img-about, .description-about {
                width: 100%;
            }
        }

        @media (max-width: 768px) {
            header {
                padding: 0 20px;
                height: 70px;
            }
            
            .logo a img {
                width: 60px;
                height: 60px;
            }
            
            .main-head {
                position: fixed;
                top: 0;
                right: -100%;
                width: 70%;
                height: 100vh;
                background: var(--gray-color);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                transition: var(--transition);
                z-index: 1000;
                gap: 30px;
            }
            
            .main-head.open {
                right: 0;
            }
            
            .main-head .remove-container {
                position: absolute;
                top: 20px;
                left: 20px;
            }
            
            .main-head .remove-container .remove-item {
                display: block;
                font-size: 25px;
                color: white;
                cursor: pointer;
            }
            
            .icon-head {
                gap: 20px;
            }
            
            .fa-bars {
                display: block;
            }
            
            .content-home {
                align-items: center;
                text-align: center;
            }
            
            .content-home h1 {
                font-size: 2.5rem;
            }
            
            .content-home p {
                font-size: 1rem;
            }
            
            section {
                padding: 80px 20px;
            }
            
            section h2 {
                font-size: 2rem;
            }
            
            .content-contact {
                flex-direction: column;
            }
            
            .container-cart {
                width: 100%;
                right: -100%;
            }
            
            .searsh-form {
                width: 90%;
                left: 5%;
            }
        }

        @media (max-width: 480px) {
            .content-home h1 {
                font-size: 2rem;
            }
            
            section h2 {
                font-size: 1.8rem;
            }
            
            .description-about h3 {
                font-size: 1.5rem;
            }
            
            .description-about p {
                font-size: 1rem;
            }
            
            .content-menu, .content-products, .content-review, .content-blogs {
                grid-template-columns: 1fr;
            }
        }

        /* ===== UTILITY CLASSES ===== */
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }

        .text-center {
            text-align: center;
        }

        .flex {
            display: flex;
        }

        .flex-column {
            flex-direction: column;
        }

        .justify-center {
            justify-content: center;
        }

        .align-center {
            align-items: center;
        }

        /* ===== LOADING ANIMATION ===== */
        .loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--dark-color);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.5s ease-out;
        }
        
        .loader.hidden {
            opacity: 0;
            pointer-events: none;
        }
        
        .coffee-loader {
            width: 80px;
            height: 80px;
            position: relative;
        }
        
        .coffee-loader:before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            border: 5px solid transparent;
            border-top-color: var(--primary-color);
            animation: spin 1s linear infinite;
        }
        
        .coffee-loader:after {
            content: "☕";
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 30px;
            color: var(--primary-color);
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        /* ===== CART ITEMS STYLES ===== */
        .cart-items-container {
            width: 100%;
            max-height: 300px;
            overflow-y: auto;
            margin-bottom: 20px;
        }
        
        .cart-item {
            display: flex;
            align-items: center;
            padding: 10px;
            border-bottom: 1px solid rgba(60, 42, 33, 0.3);
            margin-bottom: 10px;
        }
        
        .cart-item-image {
            width: 60px;
            height: 60px;
            margin-left: 10px;
        }
        
        .cart-item-image img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
        
        .cart-item-details {
            flex: 1;
        }
        
        .cart-item-details h4 {
            color: var(--dark-color);
            margin-bottom: 5px;
            font-size: 14px;
        }
        
        .cart-item-details p {
            color: var(--primary-color);
            font-weight: bold;
            font-size: 14px;
        }
        
        .cart-item-controls {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: 5px;
        }
        
        .quantity-btn {
            width: 25px;
            height: 25px;
            border: none;
            background: var(--primary-color);
            color: white;
            border-radius: 50%;
            cursor: pointer;
            font-size: 14px;
        }
        
        .cart-item-total {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 5px;
        }
        
        .cart-item-total p {
            color: var(--dark-color);
            font-weight: bold;
        }
        
        .remove-item {
            background: none;
            border: none;
            color: #ff4757;
            cursor: pointer;
            font-size: 16px;
        }
        
        .empty-cart-message {
            text-align: center;
            padding: 20px;
            color: var(--dark-color);
        }
        
        .empty-cart-message i {
            font-size: 40px;
            color: var(--primary-color);
            margin-bottom: 10px;
        }
        
        .empty-cart-message p {
            margin-bottom: 5px;
        }
        
        .add-to-cart-effect {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--primary-color);
            color: white;
            padding: 10px 20px;
            border-radius: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            z-index: 10000;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .add-to-cart-effect.show {
            opacity: 1;
        }
        
        /* Hide menu button on desktop, show on mobile */
        #menu-btn {
            display: none;
        }
        
        @media (max-width: 768px) {
            #menu-btn {
                display: block;
            }
            
            .main-head .remove-container {
                display: block;
            }
        }
        
        /* Show close button only on mobile */
        .main-head .remove-container {
            display: none;
        }
        
        @media (max-width: 768px) {
            .main-head .remove-container {
                display: block;
            }
        }
  