/* ==========================================
   CSS Design System & Stylesheet
   The Abaan's Kitchen - Elegant Dark/Gold Theme
   ========================================== */

/* Variables & Base Reset */
:root {
    --bg-dark: #0c0b0a;
    --bg-card: rgba(22, 20, 18, 0.7);
    --bg-card-hover: rgba(30, 27, 24, 0.85);
    --accent-gold: #e5c158;
    --accent-gold-hover: #fcd56b;
    --accent-coral: #e05e36;
    --text-light: #f5efe6;
    --text-muted: #b5ae9f;
    --text-dark: #1c1a17;
    --border-color: rgba(229, 193, 88, 0.15);
    --border-color-hover: rgba(229, 193, 88, 0.35);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --font-sans: 'Outfit', sans-serif;
    --font-serif: 'Playfair Display', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 600;
    letter-spacing: 0.5px;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.text-gold {
    color: var(--accent-gold);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 28px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

.btn-primary {
    background-color: var(--accent-gold);
    color: var(--text-dark);
}

.btn-primary:hover {
    background-color: var(--accent-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(229, 193, 88, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid rgba(245, 239, 230, 0.3);
}

.btn-outline:hover {
    background-color: var(--text-light);
    color: var(--text-dark);
    border-color: var(--text-light);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

/* Header & Navbar */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(12, 11, 10, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(229, 193, 88, 0.1);
    transition: var(--transition-smooth);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    font-family: var(--font-serif);
}

.logo-gold {
    color: var(--accent-gold);
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-muted);
    position: relative;
    padding: 8px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-light);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-gold);
    transition: var(--transition-smooth);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-light);
    transition: var(--transition-smooth);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    padding-top: 100px;
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 650px;
}

.hero-subtitle {
    display: inline-block;
    font-family: var(--font-sans);
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 3px;
    color: var(--accent-gold);
    margin-bottom: 16px;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-ctas {
    display: flex;
    gap: 16px;
}

.hero-bottom-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(transparent, var(--bg-dark));
    z-index: 1;
}

/* Promo / Foodpanda Callout Section */
.promo-section {
    padding: 60px 0;
}

.promo-card {
    background: linear-gradient(135deg, rgba(224, 94, 54, 0.15) 0%, rgba(12, 11, 10, 0.4) 100%);
    border: 1px solid rgba(224, 94, 54, 0.3);
    border-radius: 24px;
    padding: 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.promo-content {
    max-width: 600px;
    z-index: 2;
}

.promo-badge {
    background-color: var(--accent-coral);
    color: white;
    font-weight: 700;
    font-size: 0.75rem;
    padding: 6px 12px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.promo-content h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.promo-content p {
    color: var(--text-muted);
    margin-bottom: 28px;
}

.btn-foodpanda {
    background-color: #d61c5c; /* Foodpanda Magenta color */
    color: white;
}

.btn-foodpanda:hover {
    background-color: #f0286e;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(214, 28, 92, 0.4);
}

.promo-image-decor {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.08;
    z-index: 1;
}

.promo-image-decor .icon-bg {
    font-size: 15rem;
    color: var(--accent-coral);
}

/* About Section */
.about-section {
    padding: 100px 0;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-grid {
    position: relative;
    display: flex;
    height: 480px;
}

.about-img-wrapper {
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid var(--border-color);
}

.about-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.main-img {
    width: 70%;
    height: 380px;
    z-index: 2;
}

.secondary-img {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 60%;
    height: 280px;
    z-index: 1;
}

.section-subtitle {
    display: block;
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--accent-gold);
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 28px;
}

.about-paragraph {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 36px;
}

.feature-item {
    display: flex;
    gap: 16px;
}

.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(229, 193, 88, 0.1);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.feature-item h4 {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.feature-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Interactive Menu Section */
.menu-section {
    padding: 100px 0;
    background-color: #12100e;
}

.menu-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px auto;
}

.menu-intro {
    color: var(--text-muted);
}

.menu-controls {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
    align-items: center;
}

.search-box {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1.1rem;
}

#menuSearch {
    width: 100%;
    padding: 16px 20px 16px 54px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    color: var(--text-light);
    font-family: var(--font-sans);
    font-size: 1rem;
    outline: none;
    transition: var(--transition-smooth);
}

#menuSearch:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 15px rgba(229, 193, 88, 0.15);
}

.categories-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.category-tab {
    background: none;
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: 10px 22px;
    border-radius: 50px;
    cursor: pointer;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.category-tab:hover, .category-tab.active {
    background-color: var(--accent-gold);
    color: var(--text-dark);
    border-color: var(--accent-gold);
}

/* Menu Grid & Item Cards */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.menu-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
    backdrop-filter: blur(10px);
}

.menu-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-color-hover);
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.menu-img-container {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.menu-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.menu-card:hover .menu-img-container img {
    transform: scale(1.08);
}

.item-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(12, 11, 10, 0.85);
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 50px;
    letter-spacing: 0.5px;
}

.menu-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.menu-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.menu-card h3 {
    font-size: 1.25rem;
    line-height: 1.3;
}

.menu-card-price {
    font-family: var(--font-sans);
    font-weight: 700;
    color: var(--accent-gold);
    font-size: 1.15rem;
    white-space: nowrap;
}

.menu-card-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    flex-grow: 1;
}

.menu-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(245, 239, 230, 0.08);
    padding-top: 16px;
    margin-top: auto;
}

.options-tag {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.options-tag i {
    color: var(--accent-coral);
    margin-right: 4px;
}

/* Custom Modal Options Styling */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(12, 11, 10, 0.85);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-card {
    background-color: #161412;
    border: 1px solid var(--border-color);
    width: 90%;
    max-width: 500px;
    border-radius: 24px;
    padding: 36px;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-card {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1;
    transition: var(--transition-smooth);
}

.modal-close:hover {
    color: var(--text-light);
}

.modal-header {
    margin-bottom: 24px;
}

.modal-header h3 {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.modal-tag {
    display: inline-block;
    font-size: 0.8rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modal-option-group {
    margin-bottom: 24px;
}

.option-title {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.options-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.option-card {
    display: flex;
    align-items: center;
    padding: 14px 20px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.option-card input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid var(--text-muted);
    border-radius: 50%;
    outline: none;
    margin-right: 16px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.option-card input[type="radio"]:checked {
    border-color: var(--accent-gold);
}

.option-card input[type="radio"]::before {
    content: '';
    width: 10px;
    height: 10px;
    background-color: var(--accent-gold);
    border-radius: 50%;
    transform: scale(0);
    transition: var(--transition-smooth);
}

.option-card input[type="radio"]:checked::before {
    transform: scale(1);
}

.option-card:hover {
    border-color: var(--border-color-hover);
    background-color: var(--bg-card-hover);
}

.option-label {
    display: flex;
    flex-direction: column;
}

.label-name {
    font-weight: 600;
    font-size: 1rem;
}

.label-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.modal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(245, 239, 230, 0.08);
    padding-top: 24px;
    margin-top: 24px;
}

.modal-price-display {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.price-value {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent-gold);
}

/* Footer Section */
.footer-section {
    background-color: #080706;
    border-top: 1px solid rgba(229, 193, 88, 0.1);
    padding: 80px 0 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-desc {
    color: var(--text-muted);
    margin-top: 16px;
    margin-bottom: 24px;
    max-width: 320px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(245, 239, 230, 0.05);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.social-links a:hover {
    background-color: var(--accent-gold);
    color: var(--text-dark);
    transform: translateY(-3px);
}

.footer-hours h4, .footer-contact h4 {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    color: var(--accent-gold);
}

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

.footer-hours li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(245, 239, 230, 0.05);
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-contact p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-contact i {
    color: var(--accent-gold);
    font-size: 1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(245, 239, 230, 0.05);
    padding: 30px 0;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a:hover {
    color: var(--accent-gold);
}

/* ==========================================
   Responsive Media Queries
   ========================================== */

@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .hero-title {
        font-size: 3.2rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-info {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .mobile-nav-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 320px;
        height: 100vh;
        background-color: #0c0b0a;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 24px;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
        transition: var(--transition-smooth);
        border-left: 1px solid var(--border-color);
        z-index: 1000;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        font-size: 1.15rem;
    }
    
    /* Toggle active state */
    .mobile-nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    .mobile-nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .mobile-nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }
    
    .hero-title {
        font-size: 2.6rem;
    }
    
    .hero-ctas {
        flex-direction: column;
        gap: 12px;
    }
    
    .promo-card {
        padding: 30px;
    }
    
    .promo-content h2 {
        font-size: 1.8rem;
    }
    
    .about-image-grid {
        height: 380px;
    }
    
    .main-img {
        height: 300px;
    }
    
    .secondary-img {
        height: 220px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .footer-info {
        grid-column: span 1;
    }
    
    .footer-bottom-flex {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .header-actions .btn-outline {
        display: none;
    }
    
    .hero-title {
        font-size: 2.1rem;
    }
}

/* ==========================================
   Shopping Cart & WhatsApp Drawer Styles
   ========================================== */

.modal-cta-buttons {
    display: flex;
    gap: 12px;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(12, 11, 10, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.cart-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 440px;
    height: 100%;
    background-color: #12100e;
    border-left: 1px solid var(--border-color);
    box-shadow: -10px 0 35px rgba(0, 0, 0, 0.6);
    padding: 32px;
    display: flex;
    flex-direction: column;
    z-index: 2200;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-overlay.active .cart-drawer {
    right: 0;
}

.cart-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1;
    transition: var(--transition-smooth);
}

.cart-close:hover {
    color: var(--text-light);
}

.cart-header {
    margin-bottom: 24px;
}

.cart-header h3 {
    font-size: 1.6rem;
    margin-bottom: 4px;
}

.cart-subtitle {
    font-size: 0.8rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cart-body {
    flex-grow: 1;
    overflow-y: auto;
    margin-bottom: 24px;
    padding-right: 8px;
}

/* Custom Scrollbar for Cart */
.cart-body::-webkit-scrollbar {
    width: 6px;
}
.cart-body::-webkit-scrollbar-track {
    background: rgba(245, 239, 230, 0.02);
}
.cart-body::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 3px;
}

.cart-empty-message {
    text-align: center;
    padding: 40px 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid rgba(245, 239, 230, 0.06);
}

.cart-item-details {
    display: flex;
    flex-direction: column;
    max-width: 60%;
}

.cart-item-name {
    font-weight: 600;
    font-size: 0.95rem;
}

.cart-item-meta {
    font-size: 0.78rem;
    color: var(--accent-gold);
    margin-top: 2px;
}

.cart-item-price {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.cart-item-controls {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.quantity-selectors {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    overflow: hidden;
    background-color: var(--bg-dark);
}

.quantity-selectors button {
    background: none;
    border: none;
    color: var(--text-light);
    width: 28px;
    height: 28px;
    cursor: pointer;
    font-weight: bold;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.quantity-selectors button:hover {
    background-color: rgba(229, 193, 88, 0.15);
    color: var(--accent-gold);
}

.quantity-selectors span {
    font-size: 0.85rem;
    font-weight: 600;
    width: 24px;
    text-align: center;
}

.cart-item-total {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
}

/* Delivery Details Form Styling */
.cart-form-group {
    border-top: 1px solid rgba(245, 239, 230, 0.1);
    padding-top: 24px;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cart-form-group input, .cart-form-group textarea {
    width: 100%;
    background-color: rgba(12, 11, 10, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-light);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    padding: 12px 16px;
    outline: none;
    transition: var(--transition-smooth);
}

.cart-form-group textarea {
    height: 70px;
    resize: none;
}

.cart-form-group input:focus, .cart-form-group textarea:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 10px rgba(229, 193, 88, 0.15);
}

.cart-footer {
    border-top: 1px solid rgba(245, 239, 230, 0.1);
    padding-top: 24px;
    margin-top: auto;
}

.cart-total-display {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.cart-total-display span:last-child {
    font-size: 1.5rem;
    color: var(--accent-gold);
}

.btn-block {
    width: 100%;
    justify-content: center;
}
