*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; background-color: #0D0D0D; color: #ffffff; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
:root { --gold: #F5C518; --dark: #0D0D0D; --card-bg: #111111; --gray: #777777; --light-gray: #999999; --border: #222222; --white: #ffffff; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0D0D0D; }
::-webkit-scrollbar-thumb { background: #333; border-radius: 3px; }

/* NAVBAR */
#navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; display: flex; align-items: center; justify-content: space-between; padding: 0 40px; height: 64px; background: rgba(13,13,13,0.85); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid rgba(255,255,255,0.06); transition: background 0.3s ease; }
#navbar.scrolled { background: rgba(13,13,13,0.97); }
.nav-logo { height: 36px; width: auto; }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a { font-size: 13px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.75); transition: color 0.2s; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--gold); transition: width 0.3s ease; }
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s; }
.mobile-menu { display: none; position: fixed; top: 64px; left: 0; right: 0; background: rgba(13,13,13,0.98); backdrop-filter: blur(20px); padding: 24px; z-index: 999; flex-direction: column; gap: 20px; border-bottom: 1px solid var(--border); }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 15px; font-weight: 600; letter-spacing: 1px; color: rgba(255,255,255,0.8); padding: 8px 0; border-bottom: 1px solid var(--border); }

/* HERO */
#hero { position: relative; height: 100vh; min-height: 600px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-image: url('../images/Now-PortadaWeb2.jpg'); background-size: cover; background-position: center; transform: scale(1.05); transition: transform 8s ease; }
#hero:hover .hero-bg { transform: scale(1); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(13,13,13,0.5) 0%, rgba(13,13,13,0.3) 40%, rgba(13,13,13,0.7) 80%, rgba(13,13,13,1) 100%); }
.hero-content { position: relative; z-index: 2; text-align: center; padding: 0 24px; animation: fadeUp 1s ease both; }
.hero-logo { height: 90px; width: auto; margin: 0 auto 24px; filter: brightness(0) invert(1); }
.hero-tagline { font-size: clamp(14px, 2.5vw, 18px); font-weight: 400; color: rgba(255,255,255,0.85); letter-spacing: 2px; margin-bottom: 12px; }
.hero-divider { width: 60px; height: 2px; background: var(--gold); margin: 16px auto; }
.hero-subtitle { font-size: clamp(12px, 1.8vw, 14px); font-weight: 300; color: rgba(255,255,255,0.6); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 36px; }
.hero-cta { display: inline-block; background: var(--gold); color: #0D0D0D; font-size: 13px; font-weight: 800; letter-spacing: 3px; text-transform: uppercase; padding: 16px 44px; border-radius: 4px; transition: transform 0.2s, box-shadow 0.2s; }
.hero-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(245,197,24,0.4); }
.hero-scroll { position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; animation: bounce 2s infinite; opacity: 0.5; }
.hero-scroll span { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; }
.hero-scroll svg { width: 16px; height: 16px; }
.hero-social { position: absolute; bottom: 40px; left: 40px; display: flex; flex-direction: column; gap: 16px; z-index: 2; }
.hero-social a { color: rgba(255,255,255,0.5); font-size: 18px; transition: color 0.2s; }
.hero-social a:hover { color: #fff; }

/* SECTIONS */
section { padding: 80px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-label { font-size: 11px; font-weight: 600; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.section-title { font-size: clamp(28px, 4vw, 48px); font-weight: 800; line-height: 1.1; margin-bottom: 16px; }
.section-desc { font-size: 15px; color: var(--gray); line-height: 1.7; max-width: 560px; }

/* MENU */
#menu { background: #0A0A0A; }
.menu-header { display: flex; flex-direction: column; align-items: center; text-align: center; margin-bottom: 32px; }
.menu-search-wrap { max-width: 440px; margin: 0 auto; position: relative; }
.menu-search { width: 100%; background: #131313; border: 1px solid var(--border); border-radius: 12px; padding: 15px 44px 15px 46px; font-size: 14px; font-family: 'Inter', sans-serif; color: #fff; outline: none; transition: border-color 0.2s, box-shadow 0.2s; }
.menu-search::placeholder { color: var(--gray); }
.menu-search:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(245,197,24,0.12); }
.search-icon { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--gray); font-size: 15px; pointer-events: none; }
.search-clear { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); width: 24px; height: 24px; display: none; align-items: center; justify-content: center; color: var(--gray); cursor: pointer; font-size: 13px; border-radius: 50%; transition: background 0.2s, color 0.2s; }
.search-clear.show { display: flex; }
.search-clear:hover { background: rgba(255,255,255,0.08); color: #fff; }

.category-nav { position: sticky; top: 64px; z-index: 100; background: rgba(10,10,10,0.97); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); padding: 14px 24px; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.category-nav::-webkit-scrollbar { display: none; }
.category-tabs { display: flex; gap: 10px; width: max-content; margin: 0 auto; }
.cat-tab { display: inline-flex; align-items: center; gap: 6px; padding: 10px 20px; font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gray); cursor: pointer; white-space: nowrap; border: 1px solid #1c1c1c; background: #131313; border-radius: 999px; transition: all 0.25s ease; }
.cat-tab:hover { color: #fff; border-color: #333; }
.cat-tab .cat-count { font-size: 10px; font-weight: 600; opacity: 0.55; letter-spacing: 0; }
.cat-tab.active { background: var(--gold); color: #0D0D0D; border-color: var(--gold); box-shadow: 0 6px 20px rgba(245,197,24,0.3); }
.cat-tab.active .cat-count { opacity: 0.65; }

.menu-content { padding: 40px 24px 8px; max-width: 1200px; margin: 0 auto; }
.menu-section { display: none; }
.menu-section.visible { display: block; animation: fadeIn 0.35s ease; }
.menu-section-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.menu-section-title { font-size: 22px; font-weight: 800; letter-spacing: 0.2px; }
.menu-section-count { font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gray); white-space: nowrap; }

.menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(268px, 1fr)); gap: 24px; }
.menu-card { background: var(--card-bg); border: 1px solid rgba(255,255,255,0.05); border-radius: 14px; overflow: hidden; transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease; cursor: default; opacity: 0; transform: translateY(20px); box-shadow: 0 4px 18px rgba(0,0,0,0.25); }
.menu-card.animated { opacity: 1; transform: translateY(0); transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s ease, border-color 0.3s ease; }
.menu-card:hover { transform: translateY(-6px); box-shadow: 0 22px 48px rgba(0,0,0,0.5); border-color: rgba(245,197,24,0.3); }
.card-img { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: linear-gradient(110deg, #151515 30%, #1f1f1f 50%, #151515 70%); background-size: 200% 100%; animation: shimmer 1.8s ease-in-out infinite; cursor: pointer; }
.menu-card.img-ready .card-img { animation: none; background: #161616; }
.card-price-badge { position: absolute; top: 10px; left: 10px; background: rgba(10,10,10,0.78); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); color: var(--gold); font-size: 12.5px; font-weight: 800; letter-spacing: 0.3px; padding: 6px 11px; border-radius: 8px; border: 1px solid rgba(245,197,24,0.22); z-index: 2; }
.card-img::after { content: '⊕'; position: absolute; top: 10px; right: 10px; width: 30px; height: 30px; background: rgba(0,0,0,0.65); backdrop-filter: blur(4px); border-radius: 50%; font-size: 17px; color: #fff; opacity: 0; transition: opacity 0.2s; pointer-events: none; text-align: center; line-height: 30px; z-index: 1; }
.menu-card:hover .card-img::after { opacity: 1; }
.card-img img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 0.4s ease, transform 0.6s ease; }
.card-img img.loaded { opacity: 1; }
.menu-card:hover .card-img img { transform: scale(1.08); }
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
.card-body { padding: 18px 18px 20px; }
.card-name { font-size: 15.5px; font-weight: 700; color: #fff; margin-bottom: 6px; line-height: 1.3; }
.card-desc { font-size: 12.5px; color: var(--gray); line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.card-price { font-size: 15px; font-weight: 700; color: var(--gold); }
.card-add-btn { margin-top: 12px; width: 100%; background: #1a1a1a; border: 1px solid var(--border); color: #fff; font-size: 12px; font-weight: 700; letter-spacing: 0.3px; padding: 9px; border-radius: 8px; cursor: pointer; transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease; }
.card-add-btn:hover { border-color: var(--gold); color: var(--gold); }
.card-add-btn.added { background: var(--gold); border-color: var(--gold); color: #0D0D0D; }
.menu-empty { display: none; text-align: center; padding: 70px 20px; color: var(--gray); }
.menu-empty.show { display: block; }
.menu-empty-icon { font-size: 38px; margin-bottom: 14px; opacity: 0.5; }
.menu-empty p { font-size: 14px; }
.menu-empty span { color: #fff; font-weight: 600; }
.menu-cat-img { width: 100%; display: block; border-radius: 12px; background: #111; min-height: 200px; }

/* UBICACION */
#ubicacion { background: #0A0A0A; }
.ubicacion-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.map-embed { border-radius: 16px; overflow: hidden; height: 400px; border: 1px solid var(--border); }
.map-embed iframe { width: 100%; height: 100%; border: none; filter: grayscale(80%) invert(90%) hue-rotate(180deg); }
.ubicacion-info { display: flex; flex-direction: column; gap: 28px; }
.info-item { display: flex; gap: 16px; align-items: flex-start; }
.info-icon { width: 44px; height: 44px; border-radius: 10px; background: rgba(245,197,24,0.1); border: 1px solid rgba(245,197,24,0.2); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.info-text h4 { font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.info-text p { font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.6; }

/* CONTACTO */
#contacto { background: #0D0D0D; }
.contacto-inner { text-align: center; max-width: 600px; margin: 0 auto; }
.social-links { display: flex; gap: 20px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }
.social-btn { display: flex; align-items: center; gap: 10px; padding: 14px 28px; border: 1px solid var(--border); border-radius: 8px; font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.8); transition: all 0.2s; }
.social-btn:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.social-btn svg { width: 18px; height: 18px; }

/* FOOTER */
footer { background: #000; border-top: 1px solid var(--border); padding: 40px 24px; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
.footer-logo { height: 32px; width: auto; filter: brightness(0) invert(1); opacity: 0.7; }
.footer-copy { font-size: 12px; color: var(--gray); }
.footer-social { display: flex; gap: 16px; align-items: center; }
.footer-social a { color: var(--gray); font-size: 16px; transition: color 0.2s; }
.footer-social a:hover { color: var(--gold); }

/* ANIMATIONS */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 900px) { .ubicacion-grid { grid-template-columns: 1fr; } .map-embed { height: 280px; } }
@media (max-width: 768px) { #navbar { padding: 0 20px; } .nav-links { display: none; } .hamburger { display: flex; } .hero-social { display: none; } .menu-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 14px; } .card-body { padding: 12px 14px 14px; } .menu-section-head { flex-direction: column; align-items: flex-start; gap: 4px; } section { padding: 60px 0; } }
@media (max-width: 480px) { .menu-grid { grid-template-columns: 1fr 1fr; } .footer-inner { flex-direction: column; text-align: center; } }

/* BACK TO TOP */
#back-top { position: fixed; bottom: 28px; right: 28px; width: 44px; height: 44px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; opacity: 0; transform: translateY(20px); transition: all 0.3s; z-index: 999; border: none; }
#back-top.show { opacity: 1; transform: translateY(0); }
#back-top svg { width: 18px; height: 18px; color: #000; }

/* CART */
.cart-fab { position: fixed; bottom: 28px; left: 28px; width: 56px; height: 56px; background: var(--gold); border-radius: 50%; border: none; display: flex; align-items: center; justify-content: center; font-size: 24px; cursor: pointer; box-shadow: 0 8px 24px rgba(0,0,0,0.4); z-index: 998; transition: transform 0.2s ease; }
.cart-fab:hover { transform: scale(1.08); }
.cart-fab-badge { position: absolute; top: -2px; right: -2px; background: #e53935; color: #fff; font-size: 11px; font-weight: 800; min-width: 20px; height: 20px; border-radius: 10px; display: none; align-items: center; justify-content: center; padding: 0 4px; border: 2px solid #0D0D0D; }
.cart-fab-badge.show { display: flex; }
.cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.7); backdrop-filter: blur(4px); z-index: 3500; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-panel { position: absolute; top: 0; right: 0; height: 100%; width: 100%; max-width: 400px; background: #131313; border-left: 1px solid var(--border); display: flex; flex-direction: column; transform: translateX(100%); transition: transform 0.32s ease; }
.cart-overlay.open .cart-panel { transform: translateX(0); }
.cart-header { display: flex; align-items: center; justify-content: space-between; padding: 20px 22px; border-bottom: 1px solid var(--border); }
.cart-header h3 { font-size: 18px; font-weight: 800; }
.cart-close { background: rgba(255,255,255,0.08); border: none; color: #fff; width: 32px; height: 32px; border-radius: 50%; cursor: pointer; font-size: 16px; }
.cart-items { flex: 1; overflow-y: auto; padding: 8px 16px; }
.cart-item { display: flex; gap: 12px; align-items: center; padding: 14px 6px; border-bottom: 1px solid var(--border); position: relative; }
.cart-item img { width: 56px; height: 56px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.cart-item-info { flex: 1; min-width: 0; padding-right: 18px; }
.cart-item-name { font-size: 13px; font-weight: 700; margin-bottom: 2px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.cart-item-price { font-size: 12px; color: var(--gold); font-weight: 600; margin-bottom: 8px; }
.cart-item-qty { display: flex; align-items: center; gap: 10px; }
.qty-btn { width: 24px; height: 24px; border-radius: 6px; border: 1px solid var(--border); background: #1c1c1c; color: #fff; cursor: pointer; font-size: 14px; line-height: 1; }
.qty-btn:hover { border-color: var(--gold); color: var(--gold); }
.cart-item-qty span { font-size: 13px; font-weight: 700; min-width: 16px; text-align: center; }
.cart-item-remove { position: absolute; top: 12px; right: 4px; background: none; border: none; color: var(--gray); font-size: 16px; cursor: pointer; line-height: 1; padding: 4px; }
.cart-item-remove:hover { color: #fff; }
.cart-empty-msg { text-align: center; padding: 60px 20px; color: var(--gray); font-size: 14px; }
.cart-footer { padding: 18px 22px 22px; border-top: 1px solid var(--border); }
.cart-total-row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 14px; font-size: 14px; font-weight: 700; }
.cart-total-row span:last-child { color: var(--gold); font-size: 20px; }
.cart-checkout-btn { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; background: #25D366; color: #fff; font-weight: 700; font-size: 14px; padding: 14px; border-radius: 10px; margin-bottom: 10px; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.cart-checkout-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(37,211,102,0.35); }
.cart-checkout-btn svg { width: 18px; height: 18px; fill: #fff; }
.cart-clear-btn { width: 100%; background: none; border: 1px solid var(--border); color: var(--gray); font-size: 12px; padding: 10px; border-radius: 8px; cursor: pointer; transition: border-color 0.2s ease, color 0.2s ease; }
.cart-clear-btn:hover { border-color: #e53935; color: #e53935; }
@media (max-width: 480px) { .cart-panel { max-width: 100%; } }

/* LOADING */
#loader { position: fixed; inset: 0; background: #0D0D0D; z-index: 9999; display: flex; align-items: center; justify-content: center; transition: opacity 0.5s ease; }
#loader.done { opacity: 0; pointer-events: none; }
.loader-logo { height: 60px; animation: pulse 1.5s infinite; filter: brightness(0) invert(1); }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(0.95); } }

/* MODAL */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.88); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); z-index: 3000; display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; pointer-events: none; transition: opacity 0.28s ease; }
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-box { background: #141414; border-radius: 20px; max-width: 820px; width: 100%; max-height: 92vh; overflow: hidden; display: grid; grid-template-columns: 45% 55%; border: 1px solid #2a2a2a; box-shadow: 0 40px 100px rgba(0,0,0,0.85); position: relative; transform: translateY(24px) scale(0.97); transition: transform 0.28s ease; }
.modal-overlay.open .modal-box { transform: translateY(0) scale(1); }
.modal-close { position: absolute; top: 14px; right: 14px; width: 36px; height: 36px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); border-radius: 50%; color: #fff; font-size: 18px; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s, color 0.2s; z-index: 2; }
.modal-close:hover { background: rgba(245,197,24,0.18); color: var(--gold); border-color: var(--gold); }
.modal-img-wrap { position: relative; overflow: hidden; min-height: 340px; background: #0a0a0a; }
.modal-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; display: block; }
.modal-overlay.open .modal-img-wrap img { transform: scale(1.04); }
.modal-info { padding: 36px 30px 32px; display: flex; flex-direction: column; gap: 12px; overflow-y: auto; max-height: 92vh; }
.modal-cat-chip { display: inline-flex; align-self: flex-start; font-size: 10.5px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); background: rgba(245,197,24,0.1); border: 1px solid rgba(245,197,24,0.25); padding: 5px 12px; border-radius: 999px; }
.modal-name { font-size: 22px; font-weight: 800; color: #fff; line-height: 1.2; padding-right: 28px; }
.modal-price { font-size: 20px; font-weight: 700; color: var(--gold); }
.modal-divider { width: 36px; height: 2px; background: var(--gold); opacity: 0.5; }
.modal-desc { font-size: 14px; color: #aaa; line-height: 1.75; }
.modal-add-btn { margin-top: 8px; align-self: flex-start; background: var(--gold); color: #0D0D0D; border: none; font-size: 13px; font-weight: 800; letter-spacing: 0.3px; padding: 13px 24px; border-radius: 8px; cursor: pointer; transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease; }
.modal-add-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(245,197,24,0.35); }
.modal-add-btn.added { background: #25D366; color: #fff; }
.modal-variants-wrap { margin-top: 4px; }
.modal-variants-label { font-size: 10px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,0.38); margin-bottom: 12px; }
.variants-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.variant-chip { background: #1c1c1c; border: 1px solid #2e2e2e; border-radius: 8px; padding: 8px 14px; display: flex; flex-direction: column; align-items: center; gap: 2px; min-width: 68px; transition: border-color 0.2s; }
.variant-chip:hover { border-color: var(--gold); }
.variant-chip .v-name { font-size: 12px; font-weight: 700; color: #fff; }
.variant-chip .v-price { font-size: 12px; color: var(--gold); font-weight: 600; }
@media (max-width: 660px) {
  .modal-box { grid-template-columns: 1fr; max-height: 90vh; overflow-y: auto; border-radius: 16px; }
  .modal-img-wrap { min-height: 220px; max-height: 250px; }
  .modal-info { padding: 22px 20px 24px; max-height: none; overflow-y: visible; }
  .modal-name { font-size: 19px; }
}
