/* ============================================================
   Party-Vermietung – Main Stylesheet
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary:      #FF4757;
    --primary-dark: #c0392b;
    --secondary:    #2F3542;
    --accent:       #FFA502;
    --accent-light: #FFD166;
    --success:      #2ed573;
    --info:         #1e90ff;
    --warning:      #FFA502;
    --danger:       #FF4757;
    --light:        #F8F9FA;
    --white:        #FFFFFF;
    --text:         #2F3542;
    --text-light:   #747D8C;
    --border:       #DFE4EA;
    --shadow-sm:    0 2px 8px rgba(0,0,0,.08);
    --shadow:       0 4px 20px rgba(0,0,0,.12);
    --shadow-lg:    0 8px 40px rgba(0,0,0,.15);
    --radius:       12px;
    --radius-sm:    8px;
    --gradient:     linear-gradient(135deg, #FF4757 0%, #FFA502 100%);
    --transition:   0.25s ease;
    --max-w:        1280px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.65;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }

h1, h2, h3, h4, h5 { line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: 1.25rem; }

.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 1.25rem; }

/* ---- Buttons ---- */
.btn {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .75rem 1.75rem; border-radius: 50px;
    font-family: inherit; font-size: .95rem; font-weight: 600;
    cursor: pointer; border: 2px solid transparent;
    transition: all var(--transition); white-space: nowrap;
}
.btn-primary { background: var(--gradient); color: #fff; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,71,87,.4); color: #fff; }
.btn-outline { background: transparent; border-color: var(--white); color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--primary); }
.btn-secondary { background: var(--secondary); color: #fff; }
.btn-secondary:hover { background: #444; color: #fff; transform: translateY(-2px); }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: #e09000; color: #fff; transform: translateY(-2px); }
.btn-sm { padding: .5rem 1.2rem; font-size: .85rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.05rem; }
.btn-block { width: 100%; justify-content: center; }

/* ---- Alerts ---- */
.alert { padding: 1rem 1.25rem; border-radius: var(--radius-sm); margin: 1rem 0; font-size: .95rem; }
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-error   { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
.alert-info    { background: #d1ecf1; color: #0c5460; border: 1px solid #bee5eb; }
.alert-warning { background: #fff3cd; color: #856404; border: 1px solid #ffeeba; }

/* ---- Section helpers ---- */
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-title { text-align: center; margin-bottom: 3rem; }
.section-title h2 { margin-bottom: .5rem; }
.section-title p { color: var(--text-light); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }
.section-title .badge-label {
    display: inline-block; background: var(--gradient);
    color: #fff; padding: .3rem 1rem; border-radius: 50px; font-size: .8rem;
    font-weight: 600; letter-spacing: .05em; margin-bottom: .75rem;
}

/* ---- Badge ---- */
.badge {
    display: inline-block; padding: .25rem .7rem; border-radius: 50px;
    font-size: .78rem; font-weight: 600;
}
.badge-primary { background: rgba(255,71,87,.12); color: var(--primary); }
.badge-accent   { background: rgba(255,165,2,.15);  color: var(--accent); }
.badge-success  { background: rgba(46,213,115,.15); color: #1a9e50; }

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
.site-header {
    position: sticky; top: 0; z-index: 1000;
    background: rgba(255,255,255,.97); backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow); }

.navbar {
    display: flex; align-items: center; justify-content: space-between;
    height: 72px; gap: 1rem;
}

.nav-logo {
    display: flex; align-items: center; gap: .6rem;
    font-size: 1.35rem; font-weight: 800; color: var(--secondary);
    white-space: nowrap;
}
.nav-logo .logo-icon {
    width: 42px; height: 42px; background: var(--gradient);
    border-radius: 10px; display: grid; place-items: center;
    font-size: 1.3rem;
}
.nav-logo span { color: var(--primary); }

.nav-links {
    display: flex; align-items: center; gap: .25rem;
    list-style: none;
}
.nav-links a {
    padding: .5rem .9rem; border-radius: var(--radius-sm);
    color: var(--text); font-weight: 500; font-size: .92rem;
    transition: all var(--transition);
}
.nav-links a:hover, .nav-links a.active {
    background: rgba(255,71,87,.08); color: var(--primary);
}

.nav-right { display: flex; align-items: center; gap: .75rem; }
.nav-phone { font-size: .88rem; font-weight: 600; color: var(--text-light); }
.nav-phone a { color: var(--secondary); }
.nav-phone a:hover { color: var(--primary); }

.cart-btn {
    position: relative; background: var(--light);
    border: none; border-radius: 50%; width: 42px; height: 42px;
    display: grid; place-items: center; cursor: pointer;
    font-size: 1.1rem; color: var(--text); transition: all var(--transition);
    text-decoration: none;
}
.cart-btn:hover { background: var(--primary); color: #fff; }
.cart-btn .cart-count {
    position: absolute; top: -4px; right: -4px;
    background: var(--primary); color: #fff;
    width: 18px; height: 18px; border-radius: 50%;
    font-size: .65rem; font-weight: 700; display: grid; place-items: center;
    display: none;
}
.cart-btn .cart-count.show { display: grid; }

.hamburger {
    display: none; flex-direction: column; gap: 5px;
    cursor: pointer; background: none; border: none; padding: .3rem;
}
.hamburger span {
    display: block; width: 25px; height: 2.5px; background: var(--secondary);
    border-radius: 3px; transition: all var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============================================================
   MOBILE NAV
   ============================================================ */
.mobile-menu {
    display: none; flex-direction: column; gap: .25rem;
    padding: 1rem 1.25rem 1.5rem;
    border-top: 1px solid var(--border);
    background: var(--white);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
    padding: .7rem 1rem; border-radius: var(--radius-sm);
    color: var(--text); font-weight: 500; font-size: .95rem;
}
.mobile-menu a:hover { background: var(--light); color: var(--primary); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    background: linear-gradient(135deg, #1D2B3A 0%, #2F3542 60%, #1D2B3A 100%);
    position: relative; overflow: hidden; padding: 5rem 0;
    min-height: 85vh; display: flex; align-items: center;
}
.hero::before {
    content: ''; position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-shapes { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-shapes .shape {
    position: absolute; border-radius: 50%;
    background: var(--gradient); opacity: .08;
}
.hero-shapes .s1 { width: 500px; height: 500px; top: -200px; right: -100px; }
.hero-shapes .s2 { width: 300px; height: 300px; bottom: -100px; left: -50px; }
.hero-shapes .s3 { width: 200px; height: 200px; top: 30%; right: 20%; }

.hero-content { position: relative; z-index: 1; max-width: 680px; }
.hero-content .badge-label {
    display: inline-block; background: rgba(255,71,87,.2); color: #FF6B75;
    border: 1px solid rgba(255,71,87,.3);
    padding: .35rem 1rem; border-radius: 50px; font-size: .82rem;
    font-weight: 600; letter-spacing: .06em; margin-bottom: 1.25rem;
}
.hero-content h1 {
    color: #fff; margin-bottom: 1.25rem; line-height: 1.15;
}
.hero-content h1 span { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-content p { color: rgba(255,255,255,.75); font-size: 1.1rem; margin-bottom: 2rem; max-width: 520px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-stats {
    display: flex; gap: 2.5rem; margin-top: 3rem;
    flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat .num { font-size: 1.8rem; font-weight: 800; color: #fff; line-height: 1; }
.hero-stat .lbl { font-size: .78rem; color: rgba(255,255,255,.5); margin-top: .2rem; }
.hero-stat .num span { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ============================================================
   FEATURES BAR
   ============================================================ */
.features-bar { background: var(--secondary); padding: 2rem 0; }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.feature-item { display: flex; align-items: center; gap: 1rem; color: rgba(255,255,255,.85); }
.feature-icon { font-size: 1.8rem; flex-shrink: 0; }
.feature-item strong { display: block; color: #fff; font-size: .92rem; margin-bottom: .1rem; }
.feature-item span { font-size: .8rem; color: rgba(255,255,255,.5); }

/* ============================================================
   ITEMS GRID
   ============================================================ */
.items-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
.item-card {
    background: var(--white); border-radius: var(--radius);
    overflow: hidden; box-shadow: var(--shadow-sm);
    transition: all var(--transition); display: flex; flex-direction: column;
    border: 1px solid var(--border);
}
.item-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }

.item-card-img {
    position: relative; height: 210px; overflow: hidden; background: var(--light);
}
.item-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.item-card:hover .item-card-img img { transform: scale(1.05); }
.item-placeholder {
    width: 100%; height: 100%; display: grid; place-items: center;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    font-size: 4rem;
}
.item-featured-badge {
    position: absolute; top: .75rem; left: .75rem;
    background: var(--gradient); color: #fff;
    padding: .2rem .7rem; border-radius: 50px; font-size: .72rem; font-weight: 700;
}

.item-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.item-category { font-size: .78rem; font-weight: 600; color: var(--primary); margin-bottom: .4rem; }
.item-card-body h3 { font-size: 1.05rem; margin-bottom: .5rem; color: var(--secondary); }
.item-card-body p { font-size: .875rem; color: var(--text-light); flex: 1; margin-bottom: 1rem; }
.item-price { display: flex; align-items: baseline; gap: .4rem; margin-bottom: 1rem; }
.item-price .from { font-size: .78rem; color: var(--text-light); }
.item-price .amount { font-size: 1.35rem; font-weight: 800; color: var(--secondary); }
.item-price .unit { font-size: .78rem; color: var(--text-light); }
.item-card-actions { display: flex; gap: .5rem; }
.item-card-actions .btn { flex: 1; }

/* ============================================================
   CATEGORY FILTER
   ============================================================ */
.cat-filter { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 2rem; }
.cat-filter a {
    padding: .5rem 1.25rem; border-radius: 50px;
    background: var(--light); color: var(--text);
    font-size: .88rem; font-weight: 500; border: 2px solid transparent;
    transition: all var(--transition);
}
.cat-filter a:hover, .cat-filter a.active {
    background: var(--primary); color: #fff; border-color: var(--primary);
}

/* ============================================================
   SEARCH BAR
   ============================================================ */
.search-bar { display: flex; gap: .5rem; margin-bottom: 2rem; max-width: 480px; }
.search-bar input {
    flex: 1; padding: .7rem 1.1rem; border: 2px solid var(--border);
    border-radius: 50px; font-family: inherit; font-size: .92rem;
    outline: none; transition: border-color var(--transition);
}
.search-bar input:focus { border-color: var(--primary); }
.search-bar button { flex-shrink: 0; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; position: relative; }
.steps-grid::before {
    content: ''; position: absolute; top: 40px; left: 15%; right: 15%;
    height: 2px; background: var(--border); z-index: 0;
}
.step-item { text-align: center; position: relative; z-index: 1; }
.step-icon {
    width: 80px; height: 80px; background: var(--white);
    border: 2px solid var(--border); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; margin: 0 auto 1.25rem;
    position: relative; transition: all var(--transition);
    box-shadow: var(--shadow-sm);
}
.step-item:hover .step-icon { border-color: var(--primary); background: var(--primary); transform: scale(1.1); }
.step-number {
    position: absolute; top: -8px; right: -8px;
    width: 26px; height: 26px; background: var(--gradient);
    border-radius: 50%; color: #fff; font-size: .75rem; font-weight: 700;
    display: grid; place-items: center;
}
.step-item h3 { font-size: 1rem; margin-bottom: .5rem; }
.step-item p { font-size: .875rem; color: var(--text-light); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
    background: var(--gradient); padding: 5rem 0; text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
    content: '🎉'; position: absolute; font-size: 8rem; opacity: .08;
    top: -1rem; left: 2rem; transform: rotate(-20deg);
}
.cta-banner::after {
    content: '🎈'; position: absolute; font-size: 8rem; opacity: .08;
    bottom: -1rem; right: 2rem; transform: rotate(15deg);
}
.cta-banner h2 { color: #fff; margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,.85); margin-bottom: 2rem; font-size: 1.05rem; }

/* ============================================================
   ITEM DETAIL PAGE
   ============================================================ */
.item-detail-grid { display: grid; grid-template-columns: 1fr 420px; gap: 3rem; align-items: start; }
.item-detail-img { border-radius: var(--radius); overflow: hidden; height: 420px; background: var(--light); }
.item-detail-img img { width: 100%; height: 100%; object-fit: cover; }
.item-detail-placeholder { display: grid; place-items: center; height: 100%; font-size: 6rem; }
.item-detail-info .item-meta { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 1rem; }
.item-detail-info h1 { font-size: 1.9rem; margin: .5rem 0 1rem; }
.item-detail-info .price-box {
    background: var(--light); border-radius: var(--radius-sm);
    padding: 1.25rem; margin: 1.5rem 0;
}
.price-row { display: flex; justify-content: space-between; align-items: center; padding: .4rem 0; }
.price-row + .price-row { border-top: 1px solid var(--border); }
.price-label { font-size: .9rem; color: var(--text-light); }
.price-value { font-size: 1.2rem; font-weight: 700; color: var(--secondary); }
.price-value.main { font-size: 1.5rem; color: var(--primary); }

.booking-form-box {
    background: var(--white); border-radius: var(--radius); padding: 1.75rem;
    box-shadow: var(--shadow); position: sticky; top: 100px;
    border: 1px solid var(--border);
}
.booking-form-box h3 { margin-bottom: 1.25rem; font-size: 1.1rem; }

/* ============================================================
   FORMS
   ============================================================ */
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: .88rem; font-weight: 600; margin-bottom: .4rem; color: var(--text); }
.form-group label .required { color: var(--primary); }
.form-control {
    width: 100%; padding: .7rem 1rem; border: 2px solid var(--border);
    border-radius: var(--radius-sm); font-family: inherit; font-size: .95rem;
    color: var(--text); background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}
.form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(255,71,87,.1); }
.form-control.error { border-color: var(--danger); }
.form-text { font-size: .8rem; color: var(--text-light); margin-top: .3rem; }
.form-error { font-size: .8rem; color: var(--danger); margin-top: .3rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.radio-group { display: flex; gap: 1rem; flex-wrap: wrap; }
.radio-option {
    flex: 1; min-width: 140px;
    border: 2px solid var(--border); border-radius: var(--radius-sm);
    padding: 1rem; cursor: pointer; transition: all var(--transition);
    text-align: center;
}
.radio-option:hover { border-color: var(--primary); background: rgba(255,71,87,.04); }
.radio-option input { display: none; }
.radio-option.selected { border-color: var(--primary); background: rgba(255,71,87,.06); }
.radio-option .radio-icon { font-size: 1.5rem; margin-bottom: .4rem; }
.radio-option strong { display: block; font-size: .9rem; }
.radio-option span { font-size: .78rem; color: var(--text-light); }

/* ============================================================
   CART / BOOKING PAGE
   ============================================================ */
.booking-layout { display: grid; grid-template-columns: 1fr 380px; gap: 2rem; align-items: start; }
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th { background: var(--light); padding: .75rem 1rem; text-align: left; font-size: .85rem; color: var(--text-light); font-weight: 600; }
.cart-table td { padding: .75rem 1rem; border-bottom: 1px solid var(--border); font-size: .9rem; vertical-align: middle; }
.cart-item-name { display: flex; align-items: center; gap: .75rem; }
.cart-item-thumb { width: 50px; height: 50px; border-radius: var(--radius-sm); object-fit: cover; background: var(--light); display: grid; place-items: center; font-size: 1.3rem; }
.qty-input { width: 60px; text-align: center; padding: .4rem; border: 2px solid var(--border); border-radius: var(--radius-sm); }
.cart-remove { background: none; border: none; color: var(--text-light); cursor: pointer; font-size: 1rem; padding: .3rem; transition: color var(--transition); }
.cart-remove:hover { color: var(--danger); }

.order-summary { background: var(--white); border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow); border: 1px solid var(--border); }
.order-summary h3 { margin-bottom: 1.25rem; font-size: 1.05rem; }
.summary-row { display: flex; justify-content: space-between; padding: .5rem 0; font-size: .9rem; border-bottom: 1px solid var(--border); }
.summary-row:last-child { border-bottom: none; font-size: 1.05rem; font-weight: 700; }
.summary-period { background: var(--light); border-radius: var(--radius-sm); padding: .75rem; margin: 1rem 0; font-size: .85rem; }
.summary-period .period-icon { font-size: 1rem; margin-right: .3rem; }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb { display: flex; align-items: center; gap: .5rem; font-size: .85rem; color: var(--text-light); padding: 1.25rem 0; flex-wrap: wrap; }
.breadcrumb a { color: var(--text-light); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb .sep { color: var(--border); }
.breadcrumb .current { color: var(--text); font-weight: 500; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
    background: linear-gradient(135deg, var(--secondary) 0%, #1D2B3A 100%);
    padding: 3.5rem 0; text-align: center;
}
.page-hero h1 { color: #fff; margin-bottom: .5rem; font-size: 2rem; }
.page-hero p { color: rgba(255,255,255,.65); font-size: 1rem; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.contact-info-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.contact-icon { width: 46px; height: 46px; background: rgba(255,71,87,.1); border-radius: var(--radius-sm); display: grid; place-items: center; font-size: 1.1rem; flex-shrink: 0; color: var(--primary); }
.contact-info-item h4 { font-size: .9rem; color: var(--text-light); font-weight: 500; }
.contact-info-item p { font-size: .95rem; font-weight: 600; color: var(--text); }
.contact-info-item a { color: var(--text); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--secondary); color: rgba(255,255,255,.7); }
.footer-top { padding: 4rem 0 2.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2rem; }
.footer-brand .nav-logo { color: #fff; margin-bottom: 1rem; }
.footer-brand p { font-size: .875rem; line-height: 1.7; margin-bottom: 1.25rem; }
.footer-col h4 { color: #fff; font-size: .95rem; margin-bottom: 1rem; font-weight: 600; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: .5rem; }
.footer-col ul li a { color: rgba(255,255,255,.6); font-size: .875rem; transition: color var(--transition); }
.footer-col ul li a:hover { color: #fff; }
.footer-contact li { display: flex; align-items: flex-start; gap: .6rem; margin-bottom: .65rem; font-size: .875rem; }
.footer-contact .fc-icon { flex-shrink: 0; color: var(--primary); margin-top: .1rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 1.25rem 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .5rem; font-size: .825rem; }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: rgba(255,255,255,.5); }
.footer-bottom-links a:hover { color: #fff; }

/* ============================================================
   DATE PICKER
   ============================================================ */
.datepicker-wrap { position: relative; }
.datepicker-popup {
    position: absolute; top: calc(100% + 8px); left: 0; z-index: 500;
    background: var(--white); border-radius: var(--radius);
    box-shadow: var(--shadow-lg); padding: 1rem; min-width: 280px;
    border: 1px solid var(--border); display: none;
}
.datepicker-popup.open { display: block; }
.dp-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: .75rem; }
.dp-nav { background: none; border: none; cursor: pointer; font-size: 1rem; padding: .3rem .6rem; border-radius: var(--radius-sm); transition: background var(--transition); }
.dp-nav:hover { background: var(--light); }
.dp-title { font-weight: 700; font-size: .95rem; }
.dp-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.dp-day-label { text-align: center; font-size: .7rem; font-weight: 600; color: var(--text-light); padding: .3rem 0; }
.dp-day {
    text-align: center; padding: .45rem .2rem; border-radius: 6px;
    cursor: pointer; font-size: .82rem; transition: all var(--transition);
}
.dp-day:hover:not(.disabled):not(.other-month) { background: rgba(255,71,87,.1); color: var(--primary); }
.dp-day.selected { background: var(--primary); color: #fff; }
.dp-day.in-range { background: rgba(255,71,87,.08); }
.dp-day.disabled { color: var(--border); cursor: not-allowed; }
.dp-day.other-month { color: var(--border); }
.dp-day.today { font-weight: 700; }

/* ============================================================
   SUCCESS / CONFIRM PAGE
   ============================================================ */
.success-box { max-width: 600px; margin: 4rem auto; text-align: center; }
.success-icon { font-size: 4rem; margin-bottom: 1.5rem; }
.success-box h1 { color: var(--secondary); margin-bottom: 1rem; }
.success-box p { color: var(--text-light); margin-bottom: 2rem; font-size: 1rem; }
.booking-details { background: var(--light); border-radius: var(--radius); padding: 1.5rem; text-align: left; margin-bottom: 2rem; }
.booking-details .detail-row { display: flex; gap: 1rem; padding: .5rem 0; border-bottom: 1px solid var(--border); font-size: .9rem; }
.booking-details .detail-row:last-child { border-bottom: none; }
.booking-details .detail-label { color: var(--text-light); min-width: 120px; flex-shrink: 0; }
.booking-details .detail-value { font-weight: 600; }

/* ============================================================
   RESPONSIVENESS
   ============================================================ */
@media (max-width: 1100px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
    .item-detail-grid { grid-template-columns: 1fr; }
    .item-detail-img { height: 320px; }
    .booking-form-box { position: static; }
    .booking-layout { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .steps-grid::before { display: none; }
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-links, .nav-phone { display: none; }
    .hamburger { display: flex; }
    .hero { min-height: 70vh; padding: 4rem 0; }
    .hero-stats { gap: 1.5rem; }
    .section { padding: 3.5rem 0; }
    .items-grid { grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 1rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-brand { grid-column: auto; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .features-grid { grid-template-columns: 1fr; }
    .items-grid { grid-template-columns: 1fr; }
    h1 { font-size: 1.7rem; }
    .cart-table thead { display: none; }
    .cart-table td { display: block; padding: .5rem 1rem; }
    .cart-table tr { border: 1px solid var(--border); border-radius: var(--radius-sm); margin-bottom: .75rem; display: block; }
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-center { text-align: center; }
.text-primary { color: var(--primary) !important; }
.text-muted { color: var(--text-light) !important; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-1 { gap: .5rem; }
.gap-2 { gap: 1rem; }
.w-100 { width: 100%; }
.hidden { display: none !important; }
.empty-state { text-align: center; padding: 4rem 2rem; color: var(--text-light); }
.empty-state .empty-icon { font-size: 3rem; margin-bottom: 1rem; }
