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

:root {
  --bg-color: #ffffff;
  --bg-alt: #fafafa;
  --bg-dark: #111111;
  --text-primary: #000000;
  --text-secondary: #666666;
  --text-light: #ffffff;
  --accent-gold: #C5A059;
  --gold-dark: #a38243;
  --border-color: rgba(0,0,0,0.05);
  
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;

  --green-whatsapp: #25D366;
  --green-whatsapp-dark: #128C7E;
}

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

html, body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-primary);
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navbar Unificada */
.luxury-nav {
    position: relative; /* Not absolute so it flows normally, or absolute if hero */
    width: 100%;
    padding: 3rem 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
}

.logo img {
    height: 100px;
    width: auto;
    object-fit: contain;
}

/* Main Content */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 2rem 6rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 300;
}

.highlight-gold {
    color: var(--accent-gold);
}

/* Price List */
.price-list {
    background: var(--bg-color);
    border-radius: 0px;
    padding: 0;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1rem;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.4s ease;
    position: relative;
    background-color: var(--bg-color);
}

.price-item:last-child {
    border-bottom: none;
}

.price-item:hover {
    background-color: var(--bg-alt);
    transform: translateX(5px);
}

.service {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 1.1rem;
    flex: 1;
    padding-right: 1rem;
}

.item-controls {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.price {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--text-primary);
    white-space: nowrap;
}

/* Quantity Controls */
.quantity-controls {
    display: flex;
    align-items: center;
    background-color: var(--bg-alt);
    border-radius: 30px;
    padding: 0.3rem;
    width: 100px;
    justify-content: space-between;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.qty-btn {
    width: 28px;
    height: 28px;
    border: none;
    border-radius: 50%;
    background-color: var(--bg-color);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: all 0.2s;
}

.qty-btn:hover {
    background-color: var(--text-primary);
    color: var(--bg-color);
}

.qty {
    font-weight: 600;
    font-size: 1rem;
    user-select: none;
}

/* Active state for quantity > 0 */
.price-item.active {
    background-color: var(--bg-alt);
    border-left: 4px solid var(--accent-gold);
    padding-left: calc(1rem - 4px); /* Maintain alignment */
}
.price-item.active .quantity-controls {
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--bg-color);
}
.price-item.active .qty-btn {
    color: var(--accent-gold);
}
.price-item.active .qty {
    color: var(--bg-color);
}

.disclaimer {
    text-align: right;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 2rem;
    font-style: italic;
    font-weight: 300;
}

.slogan {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 400;
    margin-top: 5rem;
    color: var(--text-primary);
}

/* Footer Unificado */
.luxury-footer {
    background-color: var(--bg-alt);
    border-top: 1px solid var(--border-color);
    padding: 6rem 4rem 2rem 4rem;
    font-family: var(--font-body);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
    margin-bottom: 1.5rem;
    align-self: flex-start;
}

.footer-section p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.footer-section h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    font-weight: 400;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
    font-weight: 300;
}

.footer-section a:hover {
    color: var(--accent-gold);
}

.qr-code {
    width: 140px;
    height: 140px;
    background: transparent;
    transition: transform 0.3s ease;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 300;
}

/* Floating Cart Button */
.floating-cart {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    height: 60px;
    background-color: var(--bg-dark);
    color: var(--accent-gold);
    border: none;
    border-radius: 30px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0 1.5rem;
    cursor: pointer;
    z-index: 100;
    transition: transform 0.4s ease;
}

.floating-cart:hover {
    transform: scale(1.05);
    background-color: #000;
}

.fc-left {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 1.5rem;
}

.fc-right {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-light);
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background-color: var(--accent-gold);
    color: var(--bg-color);
    font-size: 0.8rem;
    font-weight: 600;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Cart Sidebar */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4);
    backdrop-filter: blur(4px);
    z-index: 150;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -450px;
    width: 100%;
    max-width: 420px;
    height: 100vh;
    background-color: var(--bg-color);
    z-index: 200;
    box-shadow: -10px 0 30px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    transition: right 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.cart-sidebar.open {
    right: 0;
}

.cart-header {
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    background-color: var(--bg-alt);
}

.cart-header h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 400;
}

.cart-header h2 i {
    color: var(--accent-gold);
}

.close-cart {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s;
}

.close-cart:hover {
    color: var(--accent-gold);
}

.cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 2rem;
}

.empty-cart-msg {
    text-align: center;
    margin-top: 3rem;
    color: var(--text-secondary);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.empty-cart-msg i {
    font-size: 4rem;
    color: var(--border-color);
    margin-bottom: 1rem;
}

.empty-cart-msg p {
    font-weight: 400;
    font-size: 1.2rem;
    color: var(--text-primary);
    font-family: var(--font-heading);
}

.empty-cart-msg span {
    font-size: 0.95rem;
    margin-top: 0.5rem;
    font-weight: 300;
}

/* Cart Items inside Sidebar */
.cart-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-cart-item {
    display: flex;
    justify-content: space-between;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.sidebar-cart-item-info {
    flex: 1;
    padding-right: 1rem;
}

.sidebar-cart-item-title {
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 0.3rem;
}

.sidebar-cart-item-price {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 300;
}

.sidebar-cart-item-controls {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.8rem;
}

.sidebar-cart-item-total {
    font-weight: 600;
    font-size: 1.1rem;
}

.sidebar-cart-item .quantity-controls {
    width: 85px;
    padding: 0.2rem;
}

/* Cart Footer */
.cart-footer {
    padding: 2rem;
    border-top: 1px solid var(--border-color);
    background-color: var(--bg-alt);
}

.cart-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 400;
    font-family: var(--font-heading);
}

.cart-total-price {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.4rem;
    color: var(--text-primary);
}

.cart-footer-note {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-style: italic;
    font-weight: 300;
}

.whatsapp-btn {
    width: 100%;
    background-color: var(--green-whatsapp);
    color: white;
    border: none;
    border-radius: 0px;
    padding: 1.2rem;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    transition: background-color 0.4s ease;
}

.whatsapp-btn i {
    font-size: 1.5rem;
}

.whatsapp-btn:hover:not(:disabled) {
    background-color: var(--green-whatsapp-dark);
}

.whatsapp-btn:disabled {
    background-color: var(--border-color);
    color: var(--text-secondary);
    cursor: not-allowed;
}

/* Animations */
.fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}
.fade-in-delayed {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
    animation-delay: 0.4s;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .luxury-nav { padding: 2rem; }
    .logo img { height: 80px; }
    .container { padding: 2rem 1.5rem 6rem; }
    .section-title { font-size: 2.2rem; }
    .price-item { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .item-controls { width: 100%; justify-content: space-between; }
    .footer-content { flex-direction: column; text-align: center; }
    .footer-logo { align-self: center; }
    .floating-cart { bottom: 1rem; right: 1rem; }
}
