@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,400;1,600&family=Alex+Brush&display=swap');

:root {
    /* Mediterranean Sea & Coastal Palette */
    --med-sea-deep: #073B5B;   /* Deep Sardinian Cobalt Blue */
    --med-sea-azure: #006E9A;  /* Crystal Clear Mediterranean Sea */
    --med-sea-cyan: #0298B8;   /* Turquoise Shallow Waters */
    --med-seafoam: #E6F5FA;    /* Soft Seafoam & Breeze */
    --med-sand: #F7F1E7;       /* Warm Sand & Linen */
    --med-sand-warm: #EFE4D2;
    --med-gold: #D4A257;       /* Golden Beach Sunset */
    --med-gold-light: #F2D292;
    --med-coral: #E76F51;      /* Sardinian Coral Accent */

    /* Mapped Global Variables */
    --primary: #073B5B;
    --primary-light: #E6F5FA;
    --accent: #D4A257;
    --accent-hover: #BF8D42;
    --gold: #D4A257;
    --gold-light: #FBF4E8;
    --bg-main: #F4F9FC;        /* Fresh sea-breeze canvas */
    --surface: #FFFFFF;
    --text-dark: #073B5B;
    --text-muted: #4A6E89;
    --border: #D6E8F2;
    --shadow-sm: 0 2px 8px rgba(7, 59, 91, 0.06);
    --shadow-md: 0 10px 25px -5px rgba(7, 59, 91, 0.1);
    --shadow-lg: 0 20px 35px -5px rgba(7, 59, 91, 0.15), 0 10px 10px -5px rgba(0, 110, 154, 0.05);
    --radius: 18px;
    --radius-sm: 10px;
}

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

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* ==========================================================================
   Navbar & Mobile Navigation
   ========================================================================== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(135deg, rgba(7, 59, 91, 0.98) 0%, rgba(0, 102, 145, 0.96) 50%, rgba(7, 59, 91, 0.98) 100%);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    color: white;
    padding: 0.85rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 25px rgba(7, 59, 91, 0.35);
    border-bottom: 2px solid rgba(212, 162, 87, 0.35);
    transition: all 0.3s ease;
}

.navbar .brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.navbar .brand img.brand-logo-nav {
    height: 50px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.25));
    transition: transform 0.3s ease;
}

.navbar .brand:hover img.brand-logo-nav {
    transform: scale(1.03);
}

.mobile-nav-toggle {
    display: none;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(212, 162, 87, 0.5);
    color: #F2D292;
    font-size: 1.35rem;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.mobile-nav-toggle:hover, .mobile-nav-toggle:active {
    background: rgba(212, 162, 87, 0.25);
    color: #FFFFFF;
}

.nav-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(4, 28, 43, 0.75);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-backdrop.active {
    display: block;
    opacity: 1;
}

.navbar .nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.navbar .nav-links a {
    font-weight: 600;
    font-size: 0.95rem;
    color: #F0F9FF;
    position: relative;
    padding: 0.3rem 0;
    transition: all 0.25s ease;
}

.navbar .nav-links a:hover {
    color: var(--med-gold-light);
    text-shadow: 0 0 12px rgba(212, 162, 87, 0.5);
}

.navbar .nav-links .btn {
    padding: 0.5rem 1.15rem;
    font-size: 0.88rem;
    font-weight: 700;
    border-radius: 50px;
    white-space: nowrap;
}

.nav-user-box {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-left: 1rem;
    border-left: 1px solid rgba(255,255,255,0.2);
    padding-left: 1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.6rem;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    text-align: center;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
    background: linear-gradient(135deg, #E5B972 0%, #D4A257 50%, #B8833B 100%);
    color: #073B5B;
    box-shadow: 0 4px 16px rgba(212, 162, 87, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 162, 87, 0.6);
    color: #041E2F;
    background: linear-gradient(135deg, #F2D292 0%, #E5B972 50%, #C49245 100%);
}

.btn-secondary {
    background: linear-gradient(135deg, #073B5B 0%, #006E9A 100%);
    color: white;
    border: 1px solid rgba(212, 162, 87, 0.4);
    box-shadow: 0 4px 14px rgba(7, 59, 91, 0.25);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #006E9A 0%, #0298B8 100%);
    border-color: var(--med-gold);
    color: white;
}

.btn-outline {
    background: white;
    border: 1.5px solid var(--border);
    color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.btn-outline:hover {
    background: var(--med-seafoam);
    border-color: var(--med-sea-azure);
    color: var(--med-sea-deep);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    min-height: 80vh;
    background-image: linear-gradient(rgba(0,0,0,0.68), rgba(0,0,0,0.68)), url('/images/villa-fiori.png');
    background-size: cover;
    background-position: center;
    animation: heroCarousel 160s infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 4.5rem 1.5rem;
}

@keyframes heroCarousel {
  0%   { background-image: linear-gradient(rgba(0,0,0,0.68), rgba(0,0,0,0.68)), url('/images/villa-fiori.png'); }
  25%  { background-image: linear-gradient(rgba(0,0,0,0.68), rgba(0,0,0,0.68)), url('/images/villa-giardino.png'); }
  50%  { background-image: linear-gradient(rgba(0,0,0,0.68), rgba(0,0,0,0.68)), url('/images/villa-terrazza.png'); }
  75%  { background-image: linear-gradient(rgba(0,0,0,0.68), rgba(0,0,0,0.68)), url('/images/villa-tramonto.jpg'); }
  100% { background-image: linear-gradient(rgba(0,0,0,0.68), rgba(0,0,0,0.68)), url('/images/villa-fiori.png'); }
}

.hero-content {
    max-width: 880px;
    width: 100%;
}

.hero-tag {
    display: inline-block;
    background: rgba(7, 59, 91, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1.5px solid var(--med-gold);
    color: #F8FAFC;
    padding: 0.5rem 1.4rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    max-width: 100%;
    word-break: break-word;
}

.hero h1 {
    font-size: 2.7rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.25rem;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 14px rgba(0,0,0,0.5);
    word-break: break-word;
}

.hero p {
    font-size: 1.2rem;
    color: #F0F9FF;
    margin: 0.5rem auto 2rem;
    font-weight: 500;
    line-height: 1.6;
    max-width: 820px;
}

/* ==========================================================================
   Container, Sections & Grids
   ========================================================================== */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}

.section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-title h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--med-sea-deep);
    margin-bottom: 0.5rem;
    line-height: 1.25;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* Grid Layouts */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Cards */
.card {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 2rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: var(--shadow-lg);
    border-color: rgba(2, 152, 184, 0.4);
}

.feature-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
}

.feature-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #E6F5FA 0%, #D0EFF7 100%);
    color: var(--med-sea-azure);
    border: 1.5px solid rgba(2, 152, 184, 0.35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin: 0 auto 1.25rem;
    box-shadow: 0 6px 18px rgba(0, 110, 154, 0.12);
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--med-sea-deep);
    margin-bottom: 0.5rem;
}

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

/* Presentation Section Styles */
.presentation-card {
    background: #F7F1E7;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 3rem 2.5rem;
    box-shadow: var(--shadow-sm);
}

.presentation-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2.5rem;
    align-items: center;
}

.presentation-emblem-wrapper {
    text-align: center;
    flex-shrink: 0;
}

.presentation-emblem {
    width: 140px;
    height: 140px;
    filter: drop-shadow(0 8px 16px rgba(196, 154, 82, 0.25));
}

.presentation-eyebrow {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-hover);
    margin-bottom: 0.5rem;
}

.presentation-title {
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.25;
    margin-bottom: 1rem;
}

.presentation-text {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.presentation-badges {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary);
}

/* Pricing Table Badge */
.pricing-badge {
    background: var(--med-sand);
    color: var(--med-sea-deep);
    border: 1px solid rgba(212, 162, 87, 0.4);
    font-weight: 700;
    font-size: 0.8rem;
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 1rem;
}

/* ==========================================================================
   Booking Widget & Calendar
   ========================================================================== */
.booking-widget {
    background: white;
    border-radius: var(--radius);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

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

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
    color: var(--primary);
}

.form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s;
    background: #FFFFFF;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(212, 162, 87, 0.2);
}

/* Calendar Grid */
.calendar-box {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}

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

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    text-align: center;
}

.calendar-day-header {
    font-weight: 700;
    font-size: 0.75rem;
    color: var(--text-muted);
    padding: 0.5rem 0;
}

.calendar-day {
    aspect-ratio: 1;
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.88rem;
    font-weight: 600;
    border-radius: 8px;
    background: white;
    border: 1px solid var(--border);
    cursor: pointer;
    user-select: none;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.calendar-day:hover:not(.disabled):not(.selected) {
    background: #E0F2FE;
    border-color: #0284C7;
    color: #073B5B;
    transform: scale(1.05);
}

.calendar-day.disabled {
    background: #FEE2E2 !important;
    color: #EF4444 !important;
    border-color: #FECACA !important;
    text-decoration: line-through;
    cursor: not-allowed;
    opacity: 0.7;
}

.calendar-day.selected {
    background: #073B5B !important;
    background: linear-gradient(135deg, #073B5B 0%, #006E9A 100%) !important;
    color: #FFFFFF !important;
    border: 2px solid #D4A257 !important;
    font-weight: 800 !important;
    box-shadow: 0 4px 14px rgba(7, 59, 91, 0.45) !important;
    transform: scale(1.06);
    z-index: 5;
}

.calendar-day.in-range {
    background: #E0F2FE !important;
    background: linear-gradient(135deg, #E6F5FA 0%, #D4EFF8 100%) !important;
    color: #073B5B !important;
    border: 1.5px solid #7DD3FC !important;
    font-weight: 700 !important;
    box-shadow: inset 0 0 6px rgba(2, 152, 184, 0.15);
}

.calendar-legend {
    display: flex;
    gap: 1rem;
    margin-top: 1.25rem;
    font-size: 0.8rem;
    justify-content: center;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.legend-color {
    width: 14px;
    height: 14px;
    border-radius: 3px;
    flex-shrink: 0;
}

/* Price Box */
.price-box {
    margin-top: 1.5rem;
    padding: 1.75rem 1.5rem;
    background: #073B5B !important;
    background: linear-gradient(180deg, #073B5B 0%, #042438 100%) !important;
    border-radius: var(--radius);
    color: #FFFFFF !important;
    text-align: center;
    border: 2px solid rgba(212, 162, 87, 0.4) !important;
    box-shadow: 0 14px 35px -5px rgba(7, 59, 91, 0.35);
}

.price-box-title {
    font-size: 0.95rem;
    color: var(--med-gold-light) !important;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 700;
}

.price-total {
    font-size: 2.35rem;
    font-weight: 800;
    color: #FFFFFF !important;
    margin: 0.4rem 0;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.price-breakdown-list {
    margin-top: 1.25rem;
    border-top: 1px solid rgba(212, 162, 87, 0.35);
    padding-top: 1rem;
    text-align: left;
}

.price-breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 0.65rem 0.9rem;
    margin-bottom: 0.5rem;
    color: #FFFFFF !important;
    flex-wrap: wrap;
    gap: 0.4rem;
}

/* ==========================================================================
   Admin & Customer Dashboard Tables
   ========================================================================== */
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    margin-bottom: 1rem;
}

.admin-table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
    margin-top: 1rem;
}

.admin-table th, .admin-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.admin-table th {
    background: #f1f5f9;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--text-muted);
}

.badge {
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    white-space: nowrap;
}

.badge-pending {
    background: #fef3c7;
    color: #b45309;
}

.badge-confirmed {
    background: #dcfce7;
    color: #15803d;
}

.badge-cancelled {
    background: #fee2e2;
    color: #b91c1c;
}

/* ==========================================================================
   Footer
   ========================================================================== */
footer {
    background: linear-gradient(180deg, #073B5B 0%, #032033 100%);
    color: #cbd5e1;
    padding: 4rem 0 2.5rem;
    margin-top: 4rem;
    text-align: center;
    border-top: 3px solid var(--med-gold);
    box-shadow: 0 -4px 25px rgba(7, 59, 91, 0.2);
}

footer strong {
    color: white;
}

/* ==========================================================================
   MEDIA QUERIES FOR FULL RESPONSIVENESS
   ========================================================================== */

/* Tablets & Small Laptops (<= 992px) */
@media (max-width: 992px) {
    .navbar {
        padding: 0.75rem 1.25rem;
    }

    .navbar .brand img.brand-logo-nav {
        height: 42px;
        max-width: 180px;
    }

    .mobile-nav-toggle {
        display: inline-flex;
    }

    .navbar .nav-links {
        position: fixed;
        top: 66px;
        left: 0;
        right: 0;
        background: linear-gradient(180deg, #073B5B 0%, #032033 100%);
        border-bottom: 2px solid var(--med-gold);
        flex-direction: column;
        align-items: stretch;
        padding: 1.5rem 1.25rem 2rem;
        gap: 0.85rem;
        transform: translateY(-150%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        box-shadow: 0 15px 35px rgba(0,0,0,0.5);
        max-height: calc(100vh - 66px);
        overflow-y: auto;
    }

    .navbar .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .navbar .nav-links a {
        font-size: 1rem;
        padding: 0.8rem 1rem;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        text-align: center;
    }

    .navbar .nav-links a:hover {
        background: rgba(212, 162, 87, 0.2);
    }

    .navbar .nav-links .btn {
        width: 100%;
        padding: 0.85rem 1rem;
        font-size: 0.95rem;
    }

    .nav-user-box {
        margin-left: 0;
        border-left: none;
        padding-left: 0;
        flex-direction: column;
        gap: 0.75rem;
        margin-top: 0.5rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
    }

    .nav-user-box .badge {
        width: 100%;
        text-align: center;
        padding: 0.6rem;
        font-size: 0.9rem;
    }

    .nav-user-box form {
        width: 100%;
    }

    .nav-user-box form button {
        width: 100%;
        padding: 0.65rem !important;
    }

    .grid-2 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero {
        padding: 3.5rem 1.25rem 4rem;
        min-height: 70vh;
    }

    .hero h1 {
        font-size: 2.3rem;
    }

    .hero p {
        font-size: 1.08rem;
    }
}

/* Standard Mobile Devices (<= 768px) */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .section {
        padding: 3.5rem 0;
    }

    .section-title {
        margin-bottom: 2.25rem;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .section-title p {
        font-size: 0.95rem;
    }

    /* Presentation */
    .presentation-card {
        padding: 2rem 1.25rem;
    }

    .presentation-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .presentation-emblem {
        width: 100px;
        height: 100px;
    }

    .presentation-title {
        font-size: 1.55rem;
    }

    .presentation-text {
        font-size: 0.95rem;
        text-align: left;
    }

    .presentation-badges {
        justify-content: center;
        gap: 0.75rem 1rem;
        font-size: 0.85rem;
    }

    /* Features & Pricing */
    .grid-3 {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .card {
        padding: 1.5rem 1.25rem;
    }

    .feature-card {
        padding: 2rem 1.25rem;
    }

    /* Booking Widget */
    .booking-widget {
        padding: 1.5rem 1.15rem;
    }

    /* Price Box */
    .price-box {
        padding: 1.25rem 1rem;
    }

    .price-total {
        font-size: 1.85rem;
    }

    .price-breakdown-item {
        font-size: 0.85rem;
        padding: 0.5rem 0.75rem;
    }

    /* Calendar */
    .calendar-box {
        padding: 1rem 0.5rem;
    }

    .calendar-day {
        font-size: 0.8rem;
        min-height: 35px;
    }

    .calendar-day-header {
        font-size: 0.7rem;
    }

    .calendar-legend {
        gap: 0.5rem 0.75rem;
        font-size: 0.75rem;
    }

    footer {
        padding: 3rem 0 2rem;
        margin-top: 3rem;
    }
}

/* Small Screen Phones (<= 576px) */
@media (max-width: 576px) {
    .form-row-2 {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .hero {
        padding: 2.5rem 0.85rem 3rem;
    }

    .hero-content img {
        height: 60px !important;
        max-width: 260px !important;
    }

    .hero h1 {
        font-size: 1.75rem;
        line-height: 1.25;
        margin-bottom: 0.85rem;
    }

    .hero-tag {
        font-size: 0.72rem;
        padding: 0.4rem 0.85rem;
        letter-spacing: 0.4px;
        margin-bottom: 1rem;
    }

    .hero p {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }

    .hero .btn {
        width: 100%;
        padding: 0.95rem 1rem;
        font-size: 0.98rem;
    }

    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }

    .admin-table th, .admin-table td {
        padding: 0.65rem 0.5rem;
        font-size: 0.82rem;
    }

    .price-box {
        padding: 1rem 0.75rem;
    }

    .price-total {
        font-size: 1.65rem;
    }
}
