/* ================================
   Global Styles & Reset
   ================================ */

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

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --primary-light: #3b82f6;
    --secondary-color: #8b5cf6;
    --accent-color: #f59e0b;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-light);
}

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

/* ================================
   Announcement Banner
   ================================ */

.announcement-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1100;
    animation: slideDown 0.4s ease-out;
    box-shadow: var(--shadow-md);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(-100%);
        opacity: 0;
    }
}

.announcement-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.announcement-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.announcement-text {
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.5;
}

.announcement-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.announcement-close:hover {
    transform: scale(1.1);
    background: rgba(0, 0, 0, 0.1);
}

/* Banner Types */
.banner-info {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
}

.banner-info .announcement-close {
    color: white;
}

.banner-success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.banner-success .announcement-close {
    color: white;
}

.banner-warning {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #78350f;
}

.banner-warning .announcement-close {
    color: #78350f;
}

.banner-danger {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
}

.banner-danger .announcement-close {
    color: white;
}

.banner-preview {
    margin-top: 1.5rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
}

/* ================================
   Navigation
   ================================ */

.navbar {
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-brand i {
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    background-color: rgba(37, 99, 235, 0.1);
}

.cart-icon {
    position: relative;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--primary-color);
    padding: 0.5rem;
    transition: var(--transition);
}

.cart-icon:hover {
    transform: scale(1.1);
}

.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--danger-color);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.2rem 0.4rem;
    border-radius: 50%;
    min-width: 18px;
    text-align: center;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

/* ================================
   Hero Section
   ================================ */

.hero {
    position: relative;
    height: 600px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    font-weight: 300;
}

/* ================================
   Buttons
   ================================ */

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--text-light);
    color: white;
}

.btn-secondary:hover {
    background: var(--text-dark);
}

.btn-success {
    background: var(--success-color);
    color: white;
}

.btn-success:hover {
    background: #059669;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* ================================
   Sections
   ================================ */

.section {
    padding: 5rem 0;
}

.section-alt {
    background: var(--bg-white);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
}

/* ================================
   Events Grid
   ================================ */

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.event-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    cursor: pointer;
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.event-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary-color) 100%);
}

.event-content {
    padding: 1.5rem;
}

.event-date {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.event-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.event-location,
.event-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.event-description {
    color: var(--text-light);
    margin: 1rem 0;
    line-height: 1.6;
}

.event-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

/* ================================
   Calendar
   ================================ */

.calendar-container {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    max-width: 900px;
    margin: 0 auto;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.calendar-month-year {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-dark);
}

.calendar-nav-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.calendar-nav-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
}

.calendar-day-header {
    text-align: center;
    font-weight: 600;
    color: var(--text-light);
    padding: 0.8rem;
    font-size: 0.9rem;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    position: relative;
}

.calendar-day:hover {
    background: rgba(37, 99, 235, 0.1);
}

.calendar-day.other-month {
    color: var(--text-light);
    opacity: 0.4;
}

.calendar-day.today {
    background: var(--primary-color);
    color: white;
    font-weight: 700;
}

.calendar-day.has-event::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--accent-color);
    border-radius: 50%;
}

.calendar-day.selected {
    background: var(--primary-light);
    color: white;
}

.calendar-events-list {
    margin-top: 2rem;
}

.calendar-event-item {
    background: var(--bg-white);
    border-left: 4px solid var(--primary-color);
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: var(--transition);
}

.calendar-event-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

/* ================================
   About Section
   ================================ */

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

.about-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.about-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.about-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ================================
   Footer
   ================================ */

.footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--primary-light);
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* ================================
   Modal
   ================================ */

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    max-width: 800px;
    width: 90%;
    min-width: 320px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-sizing: border-box;
    box-shadow: var(--shadow-xl);
}

.close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 2rem;
    font-weight: 300;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
}

.close:hover {
    color: var(--text-dark);
    transform: rotate(90deg);
}

/* ================================
   Ticket Selection
   ================================ */

.ticket-selection {
    margin-top: 2rem;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
    width: 100%;
}

.ticket-options {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
    width: 100%;
}

.ticket-option {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 8px;
    border: 2px solid var(--border-color);
    display: grid;
    grid-template-columns: minmax(200px, 1fr) 150px;
    gap: 1.5rem;
    align-items: center;
    transition: var(--transition);
    width: 100%;
    min-width: 370px;
    box-sizing: border-box;
}

.ticket-option:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.ticket-info {
    min-width: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    box-sizing: border-box;
}

.ticket-info h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    white-space: normal;
    word-wrap: break-word;
}

.ticket-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    white-space: normal;
    word-wrap: break-word;
}

/* PayPal Buy Now button styling */
.btn-paypal {
    background: #FFC439;
    color: #003087;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    white-space: nowrap;
}

.btn-paypal:hover {
    background: #f5b800;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-paypal i {
    font-size: 1.2rem;
}

/* PayPal button wrapper sizing */
.paypal-button-wrapper {
    width: 150px !important;
    min-width: 150px !important;
    max-width: 150px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

/* ================================
   Admin Panel
   ================================ */

.admin-panel {
    min-height: 400px;
}

.admin-panel h2 {
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.admin-login {
    max-width: 400px;
    margin: 2rem auto;
}

.admin-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.admin-tab {
    background: none;
    border: none;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.admin-tab:hover {
    color: var(--primary-color);
}

.admin-tab.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.admin-tab-content {
    animation: fadeIn 0.3s ease-out;
}

.settings-section {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.settings-section h4 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.settings-section h4 i {
    color: var(--primary-color);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
    margin-bottom: 1rem;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.event-form {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.admin-events-list {
    margin-top: 2rem;
}

.admin-event-item {
    background: var(--bg-light);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-event-actions {
    display: flex;
    gap: 0.5rem;
}

.admin-products-list {
    margin-top: 2rem;
}

.admin-product-item {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.admin-product-info {
    flex: 1;
}

.admin-product-info h4 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.admin-product-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.admin-product-actions {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

/* ================================
   Responsive Design
   ================================ */

@media (max-width: 768px) {
    .announcement-banner {
        padding: 0.75rem 1rem;
        flex-wrap: wrap;
    }
    
    .announcement-content {
        gap: 0.75rem;
    }
    
    .announcement-icon {
        font-size: 1rem;
    }
    
    .announcement-text {
        font-size: 0.9rem;
    }
    
    .announcement-close {
        width: 32px;
        height: 32px;
        font-size: 1.2rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .calendar-container {
        padding: 1rem;
    }
    
    .calendar-month-year {
        font-size: 1.3rem;
    }
    
    .calendar-day {
        font-size: 0.9rem;
    }
    
    .modal-content {
        width: 95%;
        padding: 1.5rem;
    }
    
    /* Ticket Selection Mobile Fixes */
    .ticket-selection {
        padding: 1.5rem 1rem;
    }
    
    .ticket-option {
        grid-template-columns: 1fr !important;
        gap: 1rem;
        padding: 1.25rem;
        min-width: unset !important;
    }
    
    .ticket-info {
        width: 100%;
    }
    
    .ticket-info h4 {
        font-size: 1.1rem;
    }
    
    .ticket-info p {
        font-size: 0.85rem;
    }
    
    /* Ensure PayPal buttons are full width on mobile */
    .paypal-button-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        min-width: unset !important;
        justify-content: stretch;
    }
    
    .btn-paypal {
        width: 100% !important;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 400px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .calendar-day-header {
        font-size: 0.75rem;
        padding: 0.5rem;
    }
    
    /* Ticket options even more compact on very small screens */
    .ticket-option {
        padding: 1rem;
    }
    
    .ticket-info h4 {
        font-size: 1rem;
        line-height: 1.3;
    }
    
    .ticket-info p {
        font-size: 0.8rem;
    }
    
    .ticket-selection h3 {
        font-size: 1.3rem;
    }
    
    .modal-content {
        padding: 1rem;
        max-height: 95vh;
    }
    
    .close {
        right: 0.75rem;
        top: 0.75rem;
        font-size: 1.8rem;
    }
}

/* ================================
   Animations
   ================================ */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.5s ease-out;
}

/* ================================
   Utility Classes
   ================================ */

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

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }

/* ================================
   Shopping Cart Styles
   ================================ */

.cart-items {
    margin: 1.5rem 0;
}

.cart-item {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 8px;
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
}

.cart-item-info h4 {
    margin: 0 0 0.25rem 0;
    color: var(--text-dark);
}

.cart-item-info p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-quantity {
    width: 32px;
    height: 32px;
    border: 1px solid var(--border-color);
    background: var(--bg-white);
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.2rem;
    line-height: 1;
    color: var(--primary-color);
    transition: var(--transition);
}

.btn-quantity:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.quantity {
    min-width: 30px;
    text-align: center;
    font-weight: 600;
    color: var(--text-dark);
}

.btn-remove {
    background: var(--danger-color);
    color: white;
    border: none;
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-remove:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.cart-item-total {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-dark);
    text-align: right;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
    margin-top: 1.5rem;
    font-size: 1.3rem;
    border: 2px solid var(--primary-color);
}

.cart-total .total-amount {
    color: var(--primary-color);
    font-weight: 700;
}

.cart-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.cart-actions .btn {
    flex: 1;
    min-width: 200px;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .cart-item {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .cart-item-total {
        text-align: left;
    }
    
    .cart-actions {
        flex-direction: column;
    }
    
    .cart-actions .btn {
        width: 100%;
        min-width: unset;
    }
}

