


.container {
    max-width: 1400px !important;
}

@media (min-width: 1536px) {
    .container {
        max-width: 1400px !important;
    }
}

@media (min-width: 1920px) {
    .container {
        max-width: 1600px !important;
    }
}


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

.animate-fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}


@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.gradient-animated {
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}


::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #e91e63 0%, #9c27b0 100%);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #f06292 0%, #ba68c8 100%);
}


* {
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}


.spinner {
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top: 3px solid #e91e63;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(233, 30, 99, 0.3);
}


::selection {
    background: rgba(233, 30, 99, 0.3);
    color: #ffffff;
}

::-moz-selection {
    background: rgba(233, 30, 99, 0.3);
    color: #ffffff;
}


input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #e91e63 !important;
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
}


input[type="radio"] {
    accent-color: #e91e63;
}


.StripeElement {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 12px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.StripeElement--focus {
    border-color: #e91e63;
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
}

.StripeElement--invalid {
    border-color: #ef4444;
}


@media (max-width: 640px) {
    .card {
        padding: 1rem !important;
    }
    
    h1 {
        font-size: 1.875rem !important;
        line-height: 2.25rem !important;
    }
    
    h2 {
        font-size: 1.5rem !important;
        line-height: 2rem !important;
    }

    h3 {
        font-size: 1.25rem !important;
        line-height: 1.75rem !important;
    }

    
    .hero-title {
        font-size: 2rem !important;
        line-height: 2.5rem !important;
    }

    
    .btn-primary {
        padding: 0.75rem 1.5rem !important;
        font-size: 0.875rem !important;
    }

    
    .container {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    
    .slider-nav-btn {
        width: 48px !important;
        height: 48px !important;
    }

    
    .quick-card {
        padding: 12px 14px !important;
    }

    .quick-thumb {
        width: 48px !important;
        height: 48px !important;
    }
}

@media (max-width: 768px) {
    
    .card {
        min-width: 280px !important;
    }

    
    .grid {
        gap: 1rem !important;
    }

    
    input, select, textarea {
        font-size: 16px !important;
    }

    
    .features-list {
        min-height: auto !important;
        max-height: none !important;
    }

    
    .equal-card {
        height: auto !important;
    }

    
    .filter-chip {
        font-size: 11px !important;
        padding: 6px 10px !important;
    }

    
    .pill-choice {
        width: 48px !important;
        height: 48px !important;
        font-size: 16px !important;
    }
}


@media print {
    header,
    footer,
    .no-print {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .card {
        border: 1px solid #ddd;
        page-break-inside: avoid;
    }
}


.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.scrollbar-hide::-webkit-scrollbar {
    display: none;
}


.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}


.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: #e91e63;
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

.skip-to-content:focus {
    top: 0;
}
.equal-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.equal-card .equal-content {
  flex: 1 1 auto;
}
.features-list {
  min-height: 120px;
  max-height: 120px;
  overflow-y: auto;
}

.site-header {
  transition: background-color 200ms ease, border-color 200ms ease, backdrop-filter 200ms ease;
}
.site-header.scrolled {
  background-color: rgba(26, 29, 46, 0.35);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  backdrop-filter: blur(14px) saturate(120%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.logo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, #ff5252 0%, #e91e63 100%);
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.site-logo-text {
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0.02em;
  font-size: 1rem;
}


.site-header nav a {
  position: relative;
  transition: color 180ms ease, transform 180ms ease;
}
.site-header nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, #e91e63 0%, #9c27b0 100%);
  border-radius: 2px;
  transition: width 220ms ease;
}
.site-header nav a:hover {
  color: #ffffff;
  transform: translateY(-1px);
}
.site-header nav a:hover::after {
  width: 100%;
}


.btn-primary {
  background-size: 200% 200%;
}
.btn-primary:hover {
  background-position: 100% 0;
}


.btn-secondary {
  display: block;
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease;
}
.btn-secondary:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.18);
}


.studio-booking-card,
.bundle-booking-card {
    display: block;
    background: linear-gradient(135deg, rgba(37, 40, 54, 0.6), rgba(30, 33, 46, 0.6));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.studio-booking-card:hover,
.bundle-booking-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 75, 160, 0.3);
    background: linear-gradient(135deg, rgba(45, 49, 66, 0.8), rgba(35, 38, 52, 0.8));
}

.studio-booking-card.selected {
    background: linear-gradient(135deg, rgba(255, 75, 160, 0.15), rgba(130, 87, 230, 0.15));
    border-color: rgba(255, 75, 160, 0.5);
    box-shadow: 0 8px 24px rgba(255, 75, 160, 0.2);
}

.bundle-booking-card.selected {
    background: linear-gradient(135deg, rgba(130, 87, 230, 0.15), rgba(255, 75, 160, 0.15));
    border-color: rgba(130, 87, 230, 0.5);
    box-shadow: 0 8px 24px rgba(130, 87, 230, 0.2);
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 640px) {
    .studio-booking-card,
    .bundle-booking-card {
        padding: 12px;
    }
}


.quick-pick {
  -ms-overflow-style: none; 
  scrollbar-width: none; 
}
.quick-pick::-webkit-scrollbar { display: none; }

.quick-card {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: rgba(37, 40, 54, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  border-radius: 10px;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.quick-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  background: rgba(45, 49, 66, 0.9);
  border-color: rgba(255, 255, 255, 0.14);
}
.quick-card.selected {
  background: linear-gradient(135deg, rgba(255, 75, 160, 0.25), rgba(130, 87, 230, 0.25));
  border-color: rgba(255, 255, 255, 0.18);
}

.quick-thumb {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
  flex: 0 0 auto;
}


select {
  -webkit-appearance: none;
  appearance: none;
  background-color: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
}
select:focus {
  outline: none;
  border-color: #e91e63;
  box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.15);
}
select option,
select optgroup {
  background-color: #1a1a1a;
  color: #ffffff;
}
select option[disabled] {
  color: rgba(255, 255, 255, 0.5);
}
select option[value=""] {
  color: rgba(255, 255, 255, 0.7);
}


.pill-choice {
  width: 44px;
  height: 44px;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  font-weight: 600;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}
.pill-choice:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,0.12);
}
.pill-choice.selected {
  background: linear-gradient(135deg, rgba(255, 75, 160, 0.3), rgba(130, 87, 230, 0.3));
  border-color: rgba(255,255,255,0.2);
}


.filter-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 9999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}
.filter-chip:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,0.12);
}
.filter-chip.selected {
  background: linear-gradient(135deg, rgba(255, 75, 160, 0.3), rgba(130, 87, 230, 0.3));
  border-color: rgba(255,255,255,0.2);
}
