* {
    margin: 0;
    padding: 0;  
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background: linear-gradient(135deg, #fff9f2 0%, #ffe8d6 100%);
    color: #333;
    min-height: 100vh;
}

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

header {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff5252 100%);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo img {
    height: 70px;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, #fff 0%, #ffd166 100%);
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    position: relative;
    white-space: nowrap;
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-links a:hover {
    color: #ffd166;
}

.theme-toggle {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    margin-left: 10px;
}

.theme-toggle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
}

.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.theme-toggle:hover::before {
    width: 60px;
    height: 60px;
}

.theme-toggle:active {
    transform: scale(0.95);
}

.theme-toggle i {
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    position: relative;
    z-index: 1;
}

.theme-toggle:hover i {
    transform: rotate(20deg);
}

html[data-theme="dark"] .theme-toggle i {
    transform: rotate(180deg);
}

html[data-theme="dark"] .theme-toggle:hover i {
    transform: rotate(200deg);
}

.page {
    padding: 80px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}


.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
    padding: 80px 0;
}

.hero h1 {
    font-size: 3.5rem;
    text-align: center;
    color: #333;
    transition: color 0.3s ease;
}

html[data-theme="dark"] .hero h1 {
    color: #e0e0e0;
}

.hero p {
    font-size: 1.1rem;
    text-align: center;
    color: #666;
    margin: 20px 0 30px;
    transition: color 0.3s ease;
}

html[data-theme="dark"] .hero p {
    color: #b0b0b0;
}

.btn {
    display: block;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff5252 100%);
    color: white;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    margin: 0 auto;
    width: fit-content;
    transition: 0.3s;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

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

.hero-image img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: 0.3s;
}

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

.features {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    margin: 40px 0;
    transition: background 0.3s ease;
}

html[data-theme="dark"] .features {
    background: rgba(45, 45, 45, 0.7);
}

.features h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.8rem;
    color: #333;
    transition: color 0.3s ease;
}

html[data-theme="dark"] .features h2 {
    color: #e0e0e0;
}

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

.feature {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #fff9f2 0%, #ffe8d6 100%);
    border-radius: 15px;
    border: 2px solid transparent;
    transition: 0.3s;
}

html[data-theme="dark"] .feature {
    background: linear-gradient(135deg, #333 0%, #404040 100%);
}

.feature i {
    font-size: 3.5rem;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff5252 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.2);
    border-color: #ff6b6b;
}


.feature h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    color: #333;
    transition: color 0.3s ease;
}

html[data-theme="dark"] .feature h3 {
    color: #e0e0e0;
}

.feature p {
    color: #666;
    transition: color 0.3s ease;
}

html[data-theme="dark"] .feature p {
    color: #b0b0b0;
}

.page-content {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    animation: zoomIn 0.5s ease-out;
}

.page h1 {
    font-size: 2.8rem;
    margin-bottom: 30px;
    color: #333;
    text-align: center;
    animation: fadeInDown 0.6s ease-out;
}

.page-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.page-content h2 {
    font-size: 2rem;
    color: #333;
    margin-top: 40px;
    margin-bottom: 20px;
}


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

.about-card {
    background: linear-gradient(135deg, #fff9f2 0%, #ffe8d6 100%);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid transparent;
    transition: 0.3s;
    animation: slideIn 0.6s ease-out;
}

.about-card:nth-child(1) {
    animation-delay: 0.1s;
}

.about-card:nth-child(2) {
    animation-delay: 0.2s;
}

.about-card:nth-child(3) {
    animation-delay: 0.3s;
}

.about-card:hover {
    transform: translateY(-10px);
    border-color: #ff6b6b;
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.2);
}

.about-card h3 {
    color: #ff6b6b;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.about-card p {
    color: #666;
    font-size: 0.95rem;
}

footer {
    background: linear-gradient(135deg, #333 0%, #1a1a1a 100%);
    color: white;
    text-align: center;
    padding: 30px 0;
    margin-top: 50px;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }

    to {
        opacity: 0;
        transform: translateX(30px);
    }
}


/* Responsive */
@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }

    .page-content>div[style*="grid"] {
        grid-template-columns: 1fr !important;
    }

    .page-content {
        padding: 30px;
        max-width: 100%;
    }

    .page h1 {
        font-size: 2rem;
    }

    .page-content p {
        font-size: 1rem;
    }
}

/* Coming Soon Page Styles */
.coming-soon-content {
    text-align: center;
}

.coming-soon-heading {
    font-size: 3rem;
    color: #ff6b6b;
    margin: 30px 0;
    font-weight: bold;
}

.coming-soon-heading {
    text-align: center;
}

/* Products Section */
.products-section {
    padding: 80px 0;
    min-height: 100vh;
    background: linear-gradient(135deg, #fff9f2 0%, #ffe8d6 100%);
    transition: background 0.3s ease;
}

html[data-theme="dark"] .products-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.products-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 80px;
    color: #333;
    transition: color 0.3s ease;
    font-weight: 800;
    letter-spacing: -1px;
    animation: fadeInDown 0.6s ease-out;
}

html[data-theme="dark"] .products-title {
    color: #e0e0e0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.product-card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    border: 2px solid transparent;
}

html[data-theme="dark"] .product-card {
    background: rgba(45, 45, 45, 0.98);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.product-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 107, 107, 0.25);
    border-color: #ff6b6b;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b6b, #ff5252);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 10;
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    position: relative;
}

html[data-theme="dark"] .product-image {
    background: linear-gradient(135deg, #333 0%, #2a2a2a 100%);
}

.product-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0) 0%, rgba(255, 107, 107, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover .product-image::after {
    opacity: 1;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.320, 1);
}

.product-card:hover .product-image img {
    transform: scale(1.12) rotate(2deg);
}

.product-info {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-info h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #333;
    transition: color 0.3s ease;
    font-weight: 700;
    letter-spacing: -0.5px;
}

html[data-theme="dark"] .product-info h3 {
    color: #e0e0e0;
}

.product-description {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
    transition: color 0.3s ease;
    line-height: 1.6;
}

html[data-theme="dark"] .product-description {
    color: #b0b0b0;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
    transition: border-color 0.3s ease;
}

html[data-theme="dark"] .product-footer {
    border-top-color: #444;
}

.product-price {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff5252 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.product-card:hover .product-price {
    font-size: 2rem;
}

.add-to-cart-btn {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff5252 100%);
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.add-to-cart-btn:hover {
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

.add-to-cart-btn:active {
    transform: scale(0.96);
}

/* Cart Section */
.cart-section {
    padding: 80px 0;
    min-height: 100vh;
    background: linear-gradient(135deg, #fff9f2 0%, #ffe8d6 100%);
    transition: background 0.3s ease;
}

html[data-theme="dark"] .cart-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.cart-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 60px;
    color: #333;
    transition: color 0.3s ease;
    font-weight: 800;
    letter-spacing: -1px;
    animation: fadeInDown 0.6s ease-out;
}

html[data-theme="dark"] .cart-title {
    color: #e0e0e0;
}

.cart-content {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.cart-items {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

html[data-theme="dark"] .cart-items {
    background: rgba(45, 45, 45, 0.98);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.cart-item {
    display: flex;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid #f0f0f0;
    align-items: center;
    transition: all 0.3s ease;
}

html[data-theme="dark"] .cart-item {
    border-bottom-color: #444;
}

.cart-item:hover {
    background: rgba(255, 107, 107, 0.02);
    padding-left: 10px;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 120px;
    height: 120px;
    border-radius: 15px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.cart-item:hover .cart-item-image {
    transform: scale(1.05);
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex-grow: 1;
}

.cart-item-details h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: #333;
    transition: color 0.3s ease;
    font-weight: 700;
}

html[data-theme="dark"] .cart-item-details h3 {
    color: #e0e0e0;
}

.cart-item-price {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff5252 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    border-radius: 50px;
    padding: 8px 12px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

html[data-theme="dark"] .cart-item-quantity {
    background: linear-gradient(135deg, #333 0%, #2a2a2a 100%);
}

.cart-item-quantity:hover {
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.15);
}

.qty-btn {
    background: none;
    border: none;
    color: #ff6b6b;
    cursor: pointer;
    font-size: 1.1rem;
    padding: 6px 10px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

html[data-theme="dark"] .qty-btn {
    color: #ff8787;
}

.qty-btn:hover {
    transform: scale(1.3);
    color: #ff5252;
}

.qty-value {
    min-width: 25px;
    text-align: center;
    color: #333;
    transition: color 0.3s ease;
    font-weight: 700;
    font-size: 1rem;
}

html[data-theme="dark"] .qty-value {
    color: #e0e0e0;
}

.remove-btn {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff5252 100%);
    color: white;
    border: none;
    padding: 10px 14px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.2);
}

.remove-btn:hover {
    background: linear-gradient(135deg, #ff5252 0%, #ff3838 100%);
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 6px 18px rgba(255, 107, 107, 0.3);
}

.cart-summary {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    height: fit-content;
    position: sticky;
    top: 120px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

html[data-theme="dark"] .cart-summary {
    background: rgba(45, 45, 45, 0.98);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.cart-summary:hover {
    border-color: #ff6b6b;
    box-shadow: 0 12px 40px rgba(255, 107, 107, 0.15);
}

.cart-summary h2 {
    font-size: 1.6rem;
    margin-bottom: 25px;
    color: #333;
    transition: color 0.3s ease;
    font-weight: 800;
}

html[data-theme="dark"] .cart-summary h2 {
    color: #e0e0e0;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 18px;
    color: #666;
    transition: all 0.3s ease;
    font-size: 1rem;
}

html[data-theme="dark"] .summary-row {
    color: #b0b0b0;
}

.summary-row.total {
    border-top: 2px solid #f0f0f0;
    border-bottom: 2px solid #f0f0f0;
    padding: 18px 0;
    font-size: 1.4rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 25px;
}

html[data-theme="dark"] .summary-row.total {
    border-top-color: #444;
    border-bottom-color: #444;
    color: #e0e0e0;
}

/* Order Confirmation Section */
.confirmation-section {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

html[data-theme="dark"] .checkout-form-container {
    background: rgba(30, 30, 30, 0.9);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.form-section {
    margin-bottom: 40px;
}

.form-section:last-child {
    margin-bottom: 0;
}

.form-section h2 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s ease;
}

html[data-theme="dark"] .form-section h2 {
    color: #e0e0e0;
}

.form-section h2 i {
    color: #ff6b6b;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #555;
    transition: color 0.3s ease;
}

html[data-theme="dark"] .form-group label {
    color: #b0b0b0;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: #333;
    font-family: inherit;
}

html[data-theme="dark"] .form-group input,
html[data-theme="dark"] .form-group textarea {
    background: #2a2a2a;
    border-color: #444;
    color: #e0e0e0;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b6b;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.payment-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.payment-option {
    position: relative;
}

.payment-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.payment-label {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    font-weight: 600;
    color: #555;
}

html[data-theme="dark"] .payment-label {
    background: #2a2a2a;
    border-color: #444;
    color: #b0b0b0;
}

.payment-label i {
    font-size: 1.3rem;
    color: #ff6b6b;
}

.payment-option input[type="radio"]:checked + .payment-label {
    border-color: #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
    color: #ff6b6b;
}

.payment-option:hover .payment-label {
    border-color: #ff6b6b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.2);
}

.card-details {
    margin-top: 25px;
    padding: 25px;
    background: rgba(255, 107, 107, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 107, 107, 0.2);
    transition: all 0.3s ease;
    display: block;
}

html[data-theme="dark"] .card-details {
    background: rgba(255, 107, 107, 0.1);
    border-color: rgba(255, 107, 107, 0.3);
}

.paypal-qr-section {
    margin-top: 25px;
    padding: 25px;
    background: rgba(0, 48, 135, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(0, 48, 135, 0.2);
    transition: all 0.3s ease;
    display: none;
    text-align: center;
}

html[data-theme="dark"] .paypal-qr-section {
    background: rgba(0, 48, 135, 0.15);
    border-color: rgba(0, 48, 135, 0.3);
}

.qr-code-container h4 {
    margin-bottom: 20px;
    color: #003087;
    font-size: 1.2rem;
    background-image: url('images/paypal-logo.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: color 0.3s ease;
}

html[data-theme="dark"] .qr-code-container h4 {
    color: #4A9EFF;
}

.qr-code-container h4 i {
    font-size: 1.5rem;
    background-image: url('/images/Screenshot\ 2025-12-06\ at\ 12.41.08\ AM.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: color 0.3s ease;
}

.qr-code-canvas {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
    min-height: 400px;
    min-width: 400px;
    width: fit-content;
    background: white;
    border-radius: 12px;
    margin: 0 auto 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background-image: url('/images/Screenshot\ 2025-12-06\ at\ 12.41.08\ AM.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

html[data-theme="dark"] .qr-code-canvas {
    background: #2a2a2a;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.qr-code-canvas canvas {
    border-radius: 8px;
    max-width: 100%;
    height: auto;
    width: 350px;
    height: 350px;
}

.qr-instructions {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

html[data-theme="dark"] .qr-instructions {
    color: #b0b0b0;
}

.qr-amount {
    font-size: 1.1rem;
    color: #333;
    margin-top: 15px;
    transition: color 0.3s ease;
}

html[data-theme="dark"] .qr-amount {
    color: #e0e0e0;
}

.qr-amount strong {
    color: #003087;
    font-size: 1.3rem;
    transition: color 0.3s ease;
}

html[data-theme="dark"] .qr-amount strong {
    color: #4A9EFF;
}

.checkout-summary {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    height: fit-content;
    position: sticky;
    top: 100px;
    transition: all 0.3s ease;
}

html[data-theme="dark"] .checkout-summary {
    background: rgba(30, 30, 30, 0.9);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.checkout-summary h2 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: #333;
    transition: color 0.3s ease;
}

html[data-theme="dark"] .checkout-summary h2 {
    color: #e0e0e0;
}

.checkout-items {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
    transition: border-color 0.3s ease;
}

html[data-theme="dark"] .checkout-items {
    border-bottom-color: #444;
}

.checkout-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
    transition: border-color 0.3s ease;
}

html[data-theme="dark"] .checkout-item {
    border-bottom-color: #444;
}

.checkout-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.checkout-item-image {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.checkout-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.checkout-item-details {
    flex: 1;
}

.checkout-item-details h4 {
    font-size: 0.95rem;
    margin-bottom: 5px;
    color: #333;
    transition: color 0.3s ease;
}

html[data-theme="dark"] .checkout-item-details h4 {
    color: #e0e0e0;
}

.checkout-item-details p {
    font-size: 0.85rem;
    color: #666;
    transition: color 0.3s ease;
}

html[data-theme="dark"] .checkout-item-details p {
    color: #b0b0b0;
}

.checkout-totals {
    margin-bottom: 25px;
}

.place-order-btn {
    width: 100%;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff5252 100%);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.25);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.place-order-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
}

.place-order-btn:active {
    transform: translateY(-1px);
}

.back-to-cart-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #666;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 8px;
}

html[data-theme="dark"] .back-to-cart-link {
    color: #b0b0b0;
}

.back-to-cart-link:hover {
    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
}

/* Order Confirmation Section */
.confirmation-section {
    padding: 80px 0;
    min-height: 100vh;
    background: linear-gradient(135deg, #fff9f2 0%, #ffe8d6 100%);
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

html[data-theme="dark"] .confirmation-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.confirmation-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

.success-icon-container {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    animation: scaleIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.success-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.3);
}

.success-icon i {
    font-size: 4rem;
    color: white;
    animation: checkmark 0.6s ease-out 0.3s both;
}

.success-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border: 3px solid #4CAF50;
    border-radius: 50%;
    animation: ripple 1.5s ease-out infinite;
    opacity: 0.6;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes checkmark {
    0% {
        transform: scale(0) rotate(45deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.2) rotate(45deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

@keyframes ripple {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.confirmation-title {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #333;
    font-weight: 800;
    transition: color 0.3s ease;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

html[data-theme="dark"] .confirmation-title {
    color: #e0e0e0;
}

.confirmation-message {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
    transition: color 0.3s ease;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

html[data-theme="dark"] .confirmation-message {
    color: #b0b0b0;
}

.order-details-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

html[data-theme="dark"] .order-details-card {
    background: rgba(30, 30, 30, 0.9);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.order-detail-section {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #f0f0f0;
    transition: border-color 0.3s ease;
}

html[data-theme="dark"] .order-detail-section {
    border-bottom-color: #444;
}

.order-detail-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.order-detail-section h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s ease;
}

html[data-theme="dark"] .order-detail-section h3 {
    color: #e0e0e0;
}

.order-detail-section h3 i {
    color: #ff6b6b;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.detail-label {
    font-weight: 600;
    color: #666;
    transition: color 0.3s ease;
}

html[data-theme="dark"] .detail-label {
    color: #b0b0b0;
}

.detail-value {
    font-weight: 700;
    color: #333;
    transition: color 0.3s ease;
}

html[data-theme="dark"] .detail-value {
    color: #e0e0e0;
}

.total-row {
    border-top: 2px solid #f0f0f0;
    padding-top: 15px;
    margin-top: 15px;
    font-size: 1.2rem;
    transition: border-color 0.3s ease;
}

html[data-theme="dark"] .total-row {
    border-top-color: #444;
}

.total-row .detail-label,
.total-row .detail-value {
    font-size: 1.3rem;
    color: #ff6b6b;
    font-weight: 800;
}

.address-details {
    color: #666;
    line-height: 1.8;
    transition: color 0.3s ease;
}
html[data-theme="dark"] .address-details {
    color: #b0b0b0;
}

.address-details p {
    margin-bottom: 8px;
}

.address-details strong {
    color: #333;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

html[data-theme="dark"] .address-details strong {
    color: #e0e0e0;
}

.delivery-instructions {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed #e0e0e0;
    color: #888;
    font-style: italic;
    transition: all 0.3s ease;
}

html[data-theme="dark"] .delivery-instructions {
    border-top-color: #444;
    color: #999;
}

.order-items-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.order-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background: rgba(255, 107, 107, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

html[data-theme="dark"] .order-item-row {
    background: rgba(255, 107, 107, 0.1);
}

.order-item-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.order-item-name {
    font-weight: 600;
    color: #333;
    transition: color 0.3s ease;
}

html[data-theme="dark"] .order-item-name {
    color: #e0e0e0;
}

.order-item-qty {
    font-size: 0.9rem;
    color: #666;
    transition: color 0.3s ease;
}

html[data-theme="dark"] .order-item-qty {
    color: #b0b0b0;
}

.order-item-price {
    font-weight: 700;
    color: #ff6b6b;
    font-size: 1.1rem;
}

.confirmation-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff5252 100%);
    color: white;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: #ff6b6b;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    border: 2px solid #ff6b6b;
    cursor: pointer;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

html[data-theme="dark"] .btn-secondary {
    background: rgba(30, 30, 30, 0.9);
    color: #ff8787;
    border-color: #ff8787;
}

.btn-secondary:hover {
    transform: translateY(-3px);
    background: #ff6b6b;
    color: white;
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.3);
}

html[data-theme="dark"] .btn-secondary:hover {
    background: #ff8787;
    color: #1a1a1a;
}

.delivery-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 12px;
    color: #4CAF50;
    font-size: 1.1rem;
    animation: fadeInUp 0.8s ease-out 1s both;
    transition: all 0.3s ease;
}

html[data-theme="dark"] .delivery-info {
    background: rgba(76, 175, 80, 0.2);
    color: #66bb6a;
}

.delivery-info i {
    font-size: 1.3rem;
}

.delivery-info strong {
    font-weight: 700;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 30px;
    }

    .cart-content {
        grid-template-columns: 1fr 320px;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .products-section {
        padding: 60px 0;
    }

    .products-title {
        font-size: 2.2rem;
        margin-bottom: 50px;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 20px;
    }

    .product-card {
        border-radius: 15px;
    }

    .product-image {
        height: 160px;
    }

    .product-info {
        padding: 18px;
    }

    .product-info h3 {
        font-size: 1.1rem;
    }

    .product-description {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }

    .product-price {
        font-size: 1.4rem;
    }

    .add-to-cart-btn {
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    .cart-section {
        padding: 60px 0;
    }

    .cart-title {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }

    .cart-content {
        grid-template-columns: 1fr;
    }

    .cart-summary {
        position: static;
        top: auto;
    }

    .cart-item {
        flex-wrap: wrap;
        gap: 15px;
    }

    .cart-item-image {
        width: 100px;
        height: 100px;
    }

    .cart-item-details {
        flex: 1 1 100%;
    }
}

@media (max-width: 480px) {
    .products-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .product-image {
        height: 150px;
    }

    .product-info h3 {
        font-size: 1rem;
    }

    .cart-title {
        font-size: 1.8rem;
    }

    .cart-summary {
        padding: 20px;
    }

    .checkout-btn {
        padding: 14px;
        font-size: 1rem;
    }

    .checkout-content {
        grid-template-columns: 1fr;
    }

    .checkout-summary {
        position: static;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .payment-options {
        grid-template-columns: 1fr;
    }

    .confirmation-title {
        font-size: 2.2rem;
    }

    .confirmation-message {
        font-size: 1rem;
    }

    .order-details-card {
        padding: 25px;
    }

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

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .success-icon-container {
        width: 100px;
        height: 100px;
    }

    .success-icon {
        width: 100px;
        height: 100px;
    }

    .success-icon i {
        font-size: 3rem;
    }

    .success-circle {
        width: 100px;
        height: 100px;
    }
}

/* Restaurants Section */
.restaurants-section {
    padding: 80px 0;
    min-height: 100vh;
    background: linear-gradient(135deg, #fff9f2 0%, #ffe8d6 100%);
    transition: background 0.3s ease;
}

html[data-theme="dark"] .restaurants-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.restaurants-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 80px;
    color: #333;
    transition: color 0.3s ease;
    font-weight: 800;
    letter-spacing: -1px;
    animation: fadeInDown 0.6s ease-out;
}

html[data-theme="dark"] .restaurants-title {
    color: #e0e0e0;
}

.restaurants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.restaurant-card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    border: 2px solid transparent;
}

html[data-theme="dark"] .restaurant-card {
    background: rgba(45, 45, 45, 0.98);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.restaurant-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 107, 107, 0.25);
    border-color: #ff6b6b;
}

.restaurant-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b6b, #ff5252);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 10;
}

.restaurant-card:hover::before {
    transform: scaleX(1);
}

.restaurant-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    position: relative;
}

html[data-theme="dark"] .restaurant-image {
    background: linear-gradient(135deg, #333 0%, #2a2a2a 100%);
}

.restaurant-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0) 0%, rgba(255, 107, 107, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.restaurant-card:hover .restaurant-image::after {
    opacity: 1;
}

.restaurant-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.320, 1);
}

.restaurant-card:hover .restaurant-image img {
    transform: scale(1.12) rotate(2deg);
}

.restaurant-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff5252 100%);
    color: white;
    padding: 8px 14px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    backdrop-filter: blur(10px);
}

.restaurant-info {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.restaurant-info h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: #333;
    transition: color 0.3s ease;
    font-weight: 800;
    letter-spacing: -0.5px;
}

html[data-theme="dark"] .restaurant-info h3 {
    color: #e0e0e0;
}

.restaurant-cuisine {
    font-size: 0.95rem;
    color: #ff6b6b;
    font-weight: 600;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

html[data-theme="dark"] .restaurant-cuisine {
    color: #ff8787;
}

.restaurant-description {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 15px;
    flex-grow: 1;
    transition: color 0.3s ease;
    line-height: 1.6;
}

html[data-theme="dark"] .restaurant-description {
    color: #b0b0b0;
}

.restaurant-meta {
    display: flex;
    gap: 20px;
    padding: 15px 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 15px;
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
}

html[data-theme="dark"] .restaurant-meta {
    border-top-color: #444;
    border-bottom-color: #444;
}

.delivery-time,
.delivery-fee {
    color: #666;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

html[data-theme="dark"] .delivery-time,
html[data-theme="dark"] .delivery-fee {
    color: #b0b0b0;
}

.delivery-time i,
.delivery-fee i {
    color: #ff6b6b;
    transition: color 0.3s ease;
}

html[data-theme="dark"] .delivery-time i,
html[data-theme="dark"] .delivery-fee i {
    color: #ff8787;
}

.order-btn {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff5252 100%);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.order-btn:hover {
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

.order-btn:active {
    transform: scale(0.96);
}

/* Responsive Restaurants */
@media (max-width: 1024px) {
    .restaurants-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .restaurants-section {
        padding: 60px 0;
    }

    .restaurants-title {
        font-size: 2.2rem;
        margin-bottom: 50px;
    }

    .restaurants-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

    .restaurant-card {
        border-radius: 15px;
    }

    .restaurant-image {
        height: 180px;
    }

    .restaurant-info {
        padding: 18px;
    }

    .restaurant-info h3 {
        font-size: 1.2rem;
    }

    .restaurant-description {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }

    .restaurant-meta {
        flex-direction: column;
        gap: 8px;
        padding: 10px 0;
    }

    .order-btn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .restaurants-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .restaurants-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .restaurant-image {
        height: 160px;
    }

    .restaurant-info h3 {
        font-size: 1.1rem;
    }

    .restaurant-badge {
        font-size: 0.8rem;
        padding: 6px 10px;
    }
}


