body {
    font-family: 'Inter', sans-serif;
    color: #000000 !important;
}
/* Custom animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
:root {
    --bc-pink: #D96F96;
    --font-cormorant: 'Cormorant Garamond', serif;
    .text-rose-500 {
        color: var(--bc-pink);
    }
}
.font-cormorant {
    font-family: var(--font-cormorant);
}
.color-bc-pink {
    color: var(--bc-pink);
}
.fade-in-up {
    animation: fadeInUp 0.5s ease-out;
}

h1, h2 {
    font-family: var(--font-cormorant);
}

.bg-bc-pink {
    background-color: var(--bc-pink);
}

/* Gradient text */
.gradient-text {
    background: linear-gradient(to right, #f43f5e, #d946ef);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Gradient button */
.btn-gradient {
    background: linear-gradient(to right, #f43f5e, #d946ef);
    color: #000;
    transition: all 0.3s;
}

.btn-gradient:hover {
    background: linear-gradient(to right, #e11d48, #c026d3);
}

/* Cart Counter Badge */
.cart-counter {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #fbbf24;
    color: #000;
    font-size: 0.75rem;
    font-weight: 700;
    min-width: 20px;
    height: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Cart Modal */
.cart-modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cart-modal.active {
    pointer-events: auto;
    opacity: 1;
}

.cart-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.cart-panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 480px;
    background: #0a0a0a;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.cart-modal.active .cart-panel {
    transform: translateX(0);
}

.cart-header {
    padding: 1.5rem;
    border-bottom: 1px solid #262626;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-close {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: background 0.2s;
}

.cart-close:hover {
    background: #262626;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid #262626;
    position: relative;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    border-radius: 0.75rem;
    object-fit: cover;
    flex-shrink: 0;
}

.cart-item-details {
    flex: 1;
}

.cart-item-remove {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #262626;
    border: none;
    color: #a3a3a3;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.cart-item-remove:hover {
    background: #404040;
    color: #fff;
}

.cart-item-remove:active {
    transform: scale(0.95);
}

.cart-item-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.25rem;
}

.cart-item-subtitle {
    font-size: 0.8rem;
    color: #a3a3a3;
    margin-bottom: 0.5rem;
}

.cart-item-variations {
    font-size: 0.75rem;
    color: #d4d4d4;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.cart-item-variations .variation-item {
    display: inline;
    color: #f87171;
}

.cart-item-price {
    font-size: 0.9rem;
    color: #fff;
}

.cart-footer {
    padding: 1.5rem;
    border-top: 1px solid #262626;
    background: #0a0a0a;
}

.cart-subtotal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    color: #fff;
}

.cart-button {
    display: block;
    width: 100%;
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: all 0.2s;
    margin-top: 0.75rem;
}

.cart-button-primary {
    background: #000;
    color: #fff;
    border: 2px solid #000;
}

.cart-button-primary:hover {
    background: #1a1a1a;
}

.cart-button-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #404040;
}

.cart-button-secondary:hover {
    background: #1a1a1a;
}

.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.5rem;
    text-align: center;
    color: #a3a3a3;
}

.cart-empty i {
    margin-bottom: 1rem;
    opacity: 0.5;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.animate-spin {
    animation: spin 1s linear infinite;
}

/* Location Button Active State */
.location-btn {
    position: relative;
    transition: all 0.3s ease;
}

.location-btn.active {
    background: linear-gradient(to right, #f43f5e, #d946ef);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(244, 63, 94, 0.3);
}

.location-btn.active:hover {
    background: linear-gradient(to right, #e11d48, #c026d3);
}

.location-btn .location-check {
    display: none;
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    color: #f43f5e;
}

.location-btn.active .location-check {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Header Location Button Styles */
.header-location-btn {
    position: relative;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.header-location-btn .location-check {
    display: none;
    position: absolute;
    top: -4px;
    right: -4px;
    width: 16px;
    height: 16px;
    background: #fff;
    border-radius: 50%;
    color: #f43f5e;
}

.header-location-btn.active {
    padding-right: 0.75rem;
}

.header-location-btn.active .location-check {
    display: flex;
    align-items: center;
    justify-content: center;
}
.img-badge {
    font-size: 1.5rem;
    color: var(--bc-pink);
    width: 80px;
    height: 80px;
    align-items:center;
    z-index: 1;
    border: 2px solid #fff;
    span {
        line-height: 98%;
    }
    @media screen and (max-width: 640px) {
        width: 60px;
        height: 60px;
        font-size: 1rem;

    }
}
.box-img-text {
    p {
        line-height: 100%;
    }
}

/* Sub Package Styling */
.sub-package {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 200px;
}

.sub-package:hover {
    border-color: #f43f5e;
    box-shadow: 0 4px 16px rgba(244, 63, 94, 0.2);
}

/* Category Container */
.category-container {
    width: 100%;
    margin-bottom: 20px !important;
    margin-top: 0 !important;
}

/* style for details modal */
.full-details-content {
    margin-top: 1rem;
    margin-bottom: 1rem;
    p, ul {
        margin-bottom: 1rem;
    }
    ul {
        padding-left: 1.25rem;
    }
}

/* Sticky Subcategory Titles */
.subcat-wrapper {
    position: relative;
}

.cat-title {
    color: #1A1A1A;
    font-size: 32px;
    @media (min-width: 768px) {
        font-size: 40px;
        
    }
}

.subcat-title {
    color: var(--bc-pink);
    font-weight: 700;
    font-family: var(--font-cormorant);
    position: relative; /* Default: not sticky on desktop */
    padding: 0.75rem 0; /* Vertical padding for better visibility */
    transition: all 0.2s ease;
    font-size: 28px;
    background-color: #fff;
}

/* Add subtle shadow when stuck */
.subcat-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(244, 63, 94, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.2s ease;
}

/* Mobile/Tablet: Enable sticky behavior (below 1024px) */
@media (max-width: 1023px) {
    .subcat-title {
        position: sticky;
        top: 86px; /* Height of top sticky bar */
        z-index: 40; /* Below top bar (z-50) but above content */
        margin-left: -1rem; /* Extend to edges */
        margin-right: -1rem;
        padding-left: 1rem;
        padding-right: 1rem;
        font-size: 24px;
        border-bottom: 1px solid #f43f5e;
    }
}

/* Mobile adjustments */
@media (max-width: 640px) {
    .subcat-title {
        top: 86px; /* Adjusted for smaller mobile top bar */
    }
}

/* Cat buttons styling */
.cat-buttons {
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease;
  z-index: 0;
}

.cat-buttons::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(202, 85, 230, 1),
    rgba(226, 79, 99, 1)
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
  border-radius: inherit;
}

.cat-buttons:hover::before {
  opacity: 1;
}

.cat-buttons > * {
  position: relative;
  z-index: 1;
}
/* Background fade effect */
.bg-fade-black-gradient {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.3) 20%,
    rgba(0, 0, 0, 0.2) 40%,
    rgba(0, 0, 0, 0.1) 60%,
    rgba(0, 0, 0, 0) 100%
  );
}

/* Border gradient */
.border-gradient {
  border: 1px solid transparent;
  background: linear-gradient(#0a0a0a, #0a0a0a) padding-box,
              linear-gradient(to right, #f43f5e, #d946ef) border-box;
}
.offer-rounded {
    border-top-right-radius: 2rem;
    border-bottom-left-radius: 2rem;
}
.offer-rounded-3 {
    border-top-right-radius: 2rem;
    border-top-left-radius:  2rem;
    border-bottom-left-radius: 2rem;
}
ul.list-services {
    li {
        padding-left: 16px;
        position: relative;
    }
    li::before {
        position: absolute;
        content: "✓";
        color: #f43f5e;
        height: 100%;
        left: 0;
        top: 50%;
        transform: translateY(-50%); /* vertical center */
    }
}

.faq-group {
    border-top-right-radius: 2rem;
    border-bottom-left-radius: 2rem;
}