/* 
   Frigo Express    - Global Styles 
   Theme: Corporate Yellow & Light
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Nunito:wght@300;400;600;700;800&display=swap');

:root {
    /* Color Palette - Precise Frigo-Express.es Theme */
    --primary-color: #FFD72B;
    --primary-dark: #F5C400;
    --primary-light: #FFE066;
    --accent-color: #FFD72B;
    --background-color: #FAFAFA;
    --surface-color: #FFFFFF;
    --text-primary: #121212;
    --text-secondary: #555555;
    --border-color: #E3E6F0;
    --success-color: #10B981;
    --danger-color: #EF4444;
    --warning-color: #FACC15;

    /* Spacing & Layout */
    --container-width: 1400px;
    --header-height: 80px;
    --border-radius: 16px;
    /* Site uses more rounded corners */

    /* Shadows */
    --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);

    /* Booking Specifics */
    --booking-primary: #FFB300;
    --booking-secondary: #6B7280;
    --booking-border: #E5E7EB;
    --booking-success: #10B981;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Nunito', sans-serif;
    background-color: var(--background-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #000000;
    box-shadow: 0 4px 10px rgba(255, 193, 7, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: #000000;
    color: var(--primary-color);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--text-primary);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: #000;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.form-title {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    color: #4A5568;
    font-weight: 700;
}

.bg-light-gray {
    background-color: #F3F4F6 !important;
}

.btn-white {
    background: #FFFFFF;
    color: #121212;
    border: 2px solid #FFFFFF;
}

.btn-white:hover {
    background: #000000;
    color: #FFFFFF;
}

.badge-white {
    background: rgba(255, 255, 255, 0.2) !important;
    color: #FFFFFF !important;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Header */
header {
    background: #000000;
    height: var(--header-height);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    border-bottom: 2px solid var(--primary-color);
}

header .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.logo span {
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-weight: 600;
    color: #FFFFFF;
    position: relative;
    padding: 5px 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #FFFFFF;
}

/* Hero Section */
.hero {
    padding: 3rem 0;
    background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url('assets/hero-home.png');
    background-size: cover;
    background-position: center;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.admin-header h1 {
    font-size: 1.8rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-print-general {
    background: var(--primary-color);
    color: #1a1a1a;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: all 0.2s ease;
    margin-bottom: 12px;
    position: relative;
    /* For badge positioning */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-print-general:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 8px -1px rgba(0, 0, 0, 0.15);
}

.pickup-badge,
.delivery-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #EF4444;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.camping-item {
    background: #FAFAFA;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    position: relative;
    overflow: hidden;
    border-left: 5px solid #1a1a1a;
    /* Black accent bar */
}

.camping-item h4 {
    color: #1a1a1a;
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.camping-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-label {
    font-size: 0.8rem;
    color: #6B7280;
    margin-bottom: 4px;
}

.stat-value {
    font-size: 1.1rem;
    font-weight: 800;
    color: #1a1a1a;
}

.btn-print {
    background: var(--primary-color);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    color: #1a1a1a;
}

.btn-print:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.date-filter {
    margin-bottom: 20px;
}

.date-filter label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.date-filter input[type="date"] {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #E3E6F0;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    background: white;
    color: #1a1a1a;
    transition: all 0.2s ease;
    cursor: pointer;
}

.date-filter input[type="date"]:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 215, 43, 0.1);
}

.date-filter input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: background 0.2s;
}

.date-filter input[type="date"]::-webkit-calendar-picker-indicator:hover {
    background: rgba(255, 215, 43, 0.2);
}


.hero-text p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

.hero-image {
    flex: 1;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

/* Features */
.features {
    padding: 5rem 0;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

/* FAQ Styles */
.faq-container {
    max-width: 800px;
    margin: 3rem auto;
    padding: 0 1rem;
}

.accordion-item {
    background: #fff;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.accordion-header {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: #fff;
    transition: background 0.3s ease;
}

.accordion-header h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #333;
    font-weight: 600;
}

.accordion-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.accordion-icon i {
    color: #f7d100;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: #fafafa;
    padding: 0 1.5rem;
}

.accordion-content p {
    margin: 0;
    padding: 1rem 0 1.5rem;
    color: #666;
    line-height: 1.6;
}

.accordion-item.active .accordion-header {
    background: #fffbe6;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-item.active .accordion-content {
    max-height: 500px; /* Large enough to hold content */
    padding: 0 1.5rem;
}

.hero-faq {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('assets/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 8rem 0 4rem;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.15);
    color: #fff;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 28px;
    }
}

/* Features / How it Works Icons */
.category-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 24px;
    transition: all 0.3s ease;
}

/* Category Icons */
.category-icon {
    background: rgba(255, 215, 43, 0.15);
    color: var(--primary-dark);
}

.icon-blue {
    background: rgba(37, 99, 235, 0.15) !important;
    color: #2563eb !important;
}

.icon-green {
    background: rgba(16, 185, 129, 0.15) !important;
    color: #10B981 !important;
}

.icon-orange {
    background: rgba(245, 158, 11, 0.15) !important;
    color: #d97706 !important;
}

.icon-purple {
    background: rgba(139, 92, 246, 0.15) !important;
    color: #7c3aed !important;
}

.category-card {
    background: var(--surface-color);
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
    border: 2px solid transparent;
}

.category-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

/* Products Section */
.products-section {
    padding: 5rem 0;
    background-color: #F3F4F6;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--surface-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    border: 2px solid #000;
}

.product-card:hover {
    transform: scale(1.02);
}

.pricing-card-special {
    border-color: var(--primary-color);
    background-color: #fffbef;
}

.product-image-container {
    padding: 24px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFF;
}

.product-image {
    max-height: 100%;
    width: auto;
    object-fit: contain;
}

.product-info {
    padding: 2rem;
}

.product-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.product-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    display: block;
}

.badge {
    background: var(--primary-color);
    color: #000;
    padding: 5px 12px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    display: inline-block;
    margin-bottom: 1rem;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #FFC107, #FFD700);
    color: #000;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer - Restored Original Dark Theme */
footer {
    background: #1a202c;
    /* Original dark background */
    color: #FFFFFF;
    padding: 4rem 0 2rem;
    border-top: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .logo {
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.footer-brand .logo span {
    color: var(--primary-color);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 400px;
    font-size: 0.95rem;
}

.footer-col h4 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: none;
    letter-spacing: normal;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
}

.copyright {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
}

.copyright {
    text-align: center;
    border-top: 1px solid #374151;
    padding-top: 2rem;
    font-size: 0.9rem;
    color: #9CA3AF;
}


/* Booking Calculator Styles (RESTORED/UNIFIED) */
.booking-card {
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    padding: 40px;
    margin-top: -60px;
    margin-bottom: 80px;
    border-top: 8px solid var(--primary-color);
}

.stepper {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

.stepper-line {
    position: absolute;
    top: 25px;
    left: 50px;
    right: 50px;
    height: 2px;
    background: #EAECF4;
    z-index: 1;
}

.stepper-item {
    position: relative;
    z-index: 2;
    text-align: center;
    flex: 1;
}

.stepper-icon {
    width: 50px;
    height: 50px;
    background: #F3F4F6;
    border-radius: 50%;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #858796;
    border: 3px solid #FFF;
    transition: 0.3s;
}

.stepper-item.active .stepper-icon {
    background: #121212;
    color: var(--primary-color);
    transform: scale(1.1);
    box-shadow: 0 0 0 5px rgba(245, 196, 0, 0.1);
}

.stepper-item.active .stepper-label {
    color: #121212;
    font-weight: 800;
}

.stepper-item.completed .stepper-icon {
    background: #121212;
    color: var(--primary-color);
}

.stepper-label {
    font-weight: 700;
    font-size: 0.85rem;
    color: #858796;
}

.step-content {
    display: none;
}

.step-content.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

/* Booking Form Elements */
.form-grid-2col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.input-group-custom {
    margin-bottom: 1.5rem;
}

.input-group-custom label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 700;
    font-size: 0.9rem;
    color: #4A5568;
}

.input-wrapper {
    display: flex;
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 50px;
}

.input-wrapper:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(245, 196, 0, 0.1);
}

.input-icon {
    width: 50px;
    background: #F8FAFC;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94A3B8;
    border-right: 1px solid #E2E8F0;
    font-size: 1.1rem;
}

.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
    flex: 1;
    border: none;
    padding: 0 15px;
    font-size: 1rem;
    color: #2D3748;
    background: transparent;
    outline: none;
}

.input-wrapper input::placeholder {
    color: #CBD5E0;
}

.nav-actions {
    display: flex;
    justify-content: flex-start;
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid #E2E8F0;
    margin-top: 2rem;
}

#btn-next:disabled,
.btn:disabled {
    background: #E2E8F0 !important;
    color: #A0AEC0 !important;
    cursor: not-allowed;
    box-shadow: none !important;
    transform: none !important;
    border-color: #E2E8F0 !important;
}

/* Product Selection Table */
.product-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.product-table th {
    text-align: left;
    padding: 1rem;
    background: #F8FAFC;
    color: #4A5568;
    font-weight: 700;
    border-bottom: 2px solid #E2E8F0;
}

.product-table td {
    padding: 1.5rem 1rem;
    border-bottom: 1px solid #E2E8F0;
    vertical-align: middle;
}

.product-table tr:hover {
    background: #F8FAFC;
}

.product-row-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 8px;
    background: #fff;
    padding: 5px;
    border: 1px solid #E2E8F0;
}

.product-name-cell {
    font-weight: 700;
    color: #2D3748;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.product-desc-cell {
    font-size: 0.85rem;
    color: #718096;
    line-height: 1.4;
}

/* Quantity Controls */
.qty-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #F1F5F9;
    padding: 5px;
    border-radius: 50px;
    width: fit-content;
    margin: 0 auto;
}

.qty-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #E2E8F0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    color: #4A5568;
}

.qty-btn:hover {
    background: #121212;
    color: var(--primary-color);
    border-color: #121212;
}

.qty-val {
    font-weight: 800;
    min-width: 25px;
    text-align: center;
    font-size: 1.1rem;
    color: #2D3748;
}

/* Summary Box */
.summary-box {
    background: #F8FAFC;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid #E2E8F0;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: #4A5568;
}

.summary-products {
    margin: 1.5rem 0;
    border-top: 1px solid #E2E8F0;
    padding-top: 1rem;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 2px dashed #CBD5E0;
    margin-top: 1rem;
    font-weight: 800;
}

/* =========================================
   Responsive Menu Styles
   ========================================= */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        gap: 0;
        flex-direction: column;
        background-color: #000000;
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
        border-bottom: 2px solid var(--primary-color);
        display: flex; /* Ensure flex is set for vertical layout */
        overflow-y: auto;
        z-index: 1000;
        padding-top: 80px;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 16px 0;
    }

    .nav-menu li a {
        color: #FFFFFF;
        font-weight: 600;
    }

    .nav-menu li a:hover {
        color: var(--primary-color);
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    /* Adjust Booking Stepper for Mobile */
    .stepper {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .stepper-line {
        display: none;
    }

    /* Booking Calculator Mobile Adjustments */
    .booking-card {
        padding: 20px;
        margin-top: -20px;
        margin-bottom: 30px;
    }

    .product-table {
        font-size: 0.85rem;
    }

    .product-table th {
        display: none;
    }

    .product-table td {
        display: block;
        padding: 0.5rem 0.5rem;
        border: none;
        width: 100%;
        box-sizing: border-box;
    }

    .product-table tr {
        display: block;
        border: 1px solid #E2E8F0;
        border-radius: 8px;
        margin-bottom: 1rem;
        padding: 1rem;
        background: #FFFFFF;
    }

    .product-table tr:hover {
        background: #FFFFFF;
    }

    .product-table td:first-child {
        text-align: center;
        margin-bottom: 0.5rem;
    }

    .product-table td:nth-child(2) {
        font-weight: 700;
        margin-bottom: 0.5rem;
    }

    .product-table td:nth-child(3) {
        text-align: center;
        margin-bottom: 0.5rem;
        order: 3;
    }

    .product-table td:nth-child(4) {
        text-align: right;
        font-weight: 700;
        color: var(--primary-dark);
        order: 4;
    }

    .product-table tbody tr {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .product-table th,
    .product-table td {
        padding: 0.5rem 0.5rem;
    }

    .product-row-img {
        width: 60px;
        height: 60px;
    }

    .product-name-cell {
        font-size: 0.95rem;
    }

    .product-desc-cell {
        font-size: 0.75rem;
    }

    .input-icon {
        width: 40px;
        font-size: 0.9rem;
    }

    .input-wrapper {
        height: 45px;
    }

    .input-wrapper input,
    .input-wrapper select,
    .input-wrapper textarea {
        padding: 0 10px;
        font-size: 0.95rem;
    }

    .input-group-custom {
        margin-bottom: 1rem;
    }

    .input-group-custom label {
        font-size: 0.8rem;
    }

    .form-title {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }

    .stepper-icon {
        width: 40px;
        height: 40px;
        font-size: 0.95rem;
    }

    .stepper-label {
        font-size: 0.7rem;
    }

    .summary-box {
        padding: 1rem;
    }

    .summary-item {
        font-size: 0.85rem;
    }

    .summary-total {
        font-size: 0.95rem;
    }

    .nav-actions {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }

    .nav-actions .btn {
        width: 100%;
        padding: 10px 16px;
        font-size: 0.95rem;
    }

    /* Table Scrollable in Mobile */
    div[style*="overflow-x: auto"] {
        margin: 0 -10px;
    }

    .product-table {
        margin: 0;
    }
}

@media (max-width: 480px) {
    .booking-card {
        padding: 16px;
        margin-top: -15px;
        margin-bottom: 20px;
    }

    .form-title {
        font-size: 1.2rem;
    }

    .stepper {
        gap: 12px;
    }

    .stepper-item {
        flex: 1;
    }

    .stepper-icon {
        width: 35px;
        height: 35px;
        font-size: 0.85rem;
    }

    .stepper-label {
        font-size: 0.6rem;
    }

    .input-icon {
        width: 35px;
        font-size: 0.85rem;
    }

    .input-wrapper {
        height: 40px;
    }

    .product-table th,
    .product-table td {
        padding: 0.5rem 0.25rem;
    }

    .product-row-img {
        width: 50px;
        height: 50px;
    }

    .btn {
        padding: 8px 12px;
        font-size: 0.85rem;
    }

    .nav-actions .btn {
        padding: 8px 12px;
    }
}

/* Additional mobile adjustments */
@media (max-width: 768px) {
    header {
        height: 64px;
    }

    .logo img {
        height: 40px;
    }

    .nav-menu {
        padding-top: 64px;
    }

    .hero {
        padding: 3rem 0;
        background-position: center top;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .hero-content {
        gap: 1.5rem;
    }

    .product-image-container {
        height: 180px;
        padding: 16px;
    }

    .product-title {
        font-size: 1.05rem;
    }

    .product-price {
        font-size: 1.3rem;
    }

    .container {
        padding: 0 16px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .booking-card {
        padding: 24px;
        margin-top: -30px;
        margin-bottom: 40px;
    }

    .form-grid-2col {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.6rem;
    }

    .hero-text h1 {
        font-size: 1.6rem;
        line-height: 1.15;
    }

    .hero {
        padding: 2rem 0;
    }

    .btn {
        padding: 10px 16px;
        font-size: 0.95rem;
    }

    .nav-link {
        font-size: 1rem;
    }

    .category-grid,
    .product-grid {
        gap: 1rem;
    }

    .hero-image img {
        border-radius: 12px;
    }
}