/* Tip Top Nails & Spa - Ultimate Luxury Design System */

:root {
  --bg-dark: #1C1C1C;
  --surface-dark: #242424;
  --surface-elevated: #2A2A2A;
  --border-gold: rgba(202, 163, 67, 0.25);
  --gold-primary: #CAA343;
  --gold-light: #FAF0A0;
  --gold-gradient: linear-gradient(135deg, #A2682A 0%, #D3B15F 50%, #FAF0A0 100%);
  --text-cream: #FBF1EA;
  --text-muted: #A09A96;
  --font-heading: 'Goudy Bookletter 1911', Georgia, serif;
  --font-script: 'Great Vibes', cursive;
  --font-body: 'Jost', sans-serif;
  --radius-card: 12px;
  --radius-modal: 20px;
  --shadow-gold: 0 4px 20px rgba(202, 163, 67, 0.3);
}

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

html {
  scroll-behavior: smooth;
}

body.dark-theme {
  background-color: var(--bg-dark);
  color: var(--text-cream);
  font-family: var(--font-body);
  line-height: 1.5;
  padding-bottom: calc(85px + env(safe-area-inset-bottom, 20px));
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.text-center { text-align: center; }
.text-left { text-align: left; }

/* SVG Gold Icon Styles */
.gold-svg-icon {
  stroke: var(--gold-primary);
  display: inline-block;
  vertical-align: middle;
}

.btn-icon-gold {
  background: var(--surface-dark);
  border: 1px solid var(--border-gold);
  padding: 8px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.3s;
}

.btn-icon-gold:hover {
  transform: scale(1.1);
  border-color: var(--gold-primary);
}

.icon-ring {
  background: rgba(202, 163, 67, 0.1);
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2px;
}

/* Announcement Bar */
.announcement-bar {
  background: var(--gold-gradient);
  color: #1c1c1c;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 0;
}

.announcement-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-socials a {
  text-decoration: none;
  margin-left: 8px;
  font-size: 0.9rem;
}

/* Typography */
.script-tagline {
  font-family: var(--font-script);
  font-size: 2rem;
  color: var(--gold-primary);
  margin-bottom: 0.2rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  letter-spacing: 1px;
  color: var(--text-cream);
  margin-bottom: 1.8rem;
  text-transform: uppercase;
}

/* Header & Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(28, 28, 28, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-gold);
  padding: 10px 0;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-menu-toggle {
  display: flex;
  background: none;
  border: none;
  color: var(--gold-primary);
  cursor: pointer;
  padding: 5px;
}

.logo-link {
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.logo-script {
  font-family: var(--font-script);
  font-size: 1.7rem;
  color: var(--gold-primary);
  line-height: 1;
}

.logo-title {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 3px;
  color: var(--text-cream);
}

.main-nav {
  display: none;
  gap: 18px;
}

.main-nav a {
  color: var(--text-cream);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s;
}

.main-nav a:hover {
  color: var(--gold-primary);
}

.header-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* Mobile Nav Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 280px;
  background: var(--surface-dark);
  border-right: 1px solid var(--gold-primary);
  z-index: 2000;
  padding: 25px 20px;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 10px 0 30px rgba(0,0,0,0.8);
}

.mobile-nav-drawer.open {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border-gold);
}

.close-drawer {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.8rem;
  cursor: pointer;
}

.drawer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}

.drawer-link {
  color: var(--text-cream);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 6px 0;
  border-bottom: 1px dashed rgba(202, 163, 67, 0.15);
}

.drawer-link:hover {
  color: var(--gold-primary);
}

/* Buttons */
.btn {
  font-family: var(--font-body);
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-gold-sm {
  background: var(--gold-gradient);
  color: #1c1c1c;
  padding: 8px 14px;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.btn-gold-lg {
  background: var(--gold-gradient);
  color: #1c1c1c;
  padding: 12px 28px;
  font-size: 1rem;
  text-transform: uppercase;
  box-shadow: var(--shadow-gold);
}

.btn-gold-lg:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(202, 163, 67, 0.5);
}

.btn-glass-lg {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-cream);
  border: 1px solid var(--gold-primary);
  padding: 12px 28px;
  font-size: 1rem;
  text-transform: uppercase;
}

.btn-glass-sm {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-cream);
  border: 1px solid var(--border-gold);
  padding: 6px 12px;
  font-size: 0.8rem;
  border-radius: 6px;
  cursor: pointer;
}

.btn-glass-sm:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
}

.btn-glass-lg:hover {
  background: rgba(202, 163, 67, 0.15);
}

.btn-gold-sticky {
  background: var(--gold-gradient);
  color: #1c1c1c;
  padding: 10px 20px;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 20px;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, rgba(36,36,36,0.6) 0%, rgba(28,28,28,1) 100%),
              url('https://images.unsplash.com/photo-1604654894610-df63bc536371?q=80&w=1200') center/cover no-repeat;
  text-align: center;
  padding: 50px 15px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
}

.hero-badge {
  display: inline-block;
  background: rgba(202, 163, 67, 0.15);
  border: 1px solid var(--gold-primary);
  color: var(--gold-light);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  margin-bottom: 12px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  line-height: 1.15;
  margin-bottom: 0.8rem;
}

.hero-subtitle {
  color: var(--text-cream);
  font-size: 1rem;
  max-width: 650px;
  margin: 0 auto 2rem;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Featured Categories: 1 Horizontal Row displaying exactly 4 blocks */
.featured-cats-section {
  padding: 60px 0;
  background: var(--surface-dark);
}

.cat-bubbles-grid.scroll-1-row {
  display: flex;
  gap: 9px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 18px;
  scrollbar-width: thin;
}

.cat-bubbles-grid.scroll-1-row::-webkit-scrollbar {
  height: 4px;
}

.cat-bubbles-grid.scroll-1-row::-webkit-scrollbar-thumb {
  background: var(--gold-primary);
  border-radius: 4px;
}

.cat-bubble-card.luxury-card {
  flex: 0 0 calc((100% - 27px) / 4);
  min-width: 125px;
  scroll-snap-align: start;
  background: var(--bg-dark);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-card);
  padding: 14px 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.cat-bubble-card.luxury-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-primary);
  box-shadow: 0 8px 20px rgba(202, 163, 67, 0.3);
}

.cat-bubble-card.luxury-card .cat-bubble-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid var(--gold-primary);
  background-size: cover;
  background-position: center;
  margin-bottom: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.6);
  transition: transform 0.3s ease;
}

.cat-bubble-card.luxury-card:hover .cat-bubble-img {
  transform: scale(1.06);
}

.cat-bubble-card.luxury-card h3 {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  color: var(--text-cream);
  margin-bottom: 2px;
  line-height: 1.15;
}

.cat-bubble-card.luxury-card span {
  font-size: 0.7rem;
  color: var(--gold-primary);
  font-weight: 500;
}

/* Promotions & Voucher Section */
.promotions-section {
  padding: 60px 0;
}

.promos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.voucher-card.gold-voucher {
  background: var(--surface-dark);
  border: 1px dashed var(--gold-primary);
  border-radius: var(--radius-card);
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  box-shadow: 0 5px 20px rgba(0,0,0,0.4);
}

.voucher-tag {
  background: var(--gold-gradient);
  color: #1c1c1c;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 8px;
  display: inline-block;
  margin-bottom: 6px;
}

.voucher-discount {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--gold-primary);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 6px;
}

.voucher-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.voucher-divider {
  border-top: 1px dashed var(--border-gold);
  margin: 8px 0;
}

.promo-code {
  display: block;
  font-family: monospace;
  font-size: 0.9rem;
  color: var(--gold-light);
  letter-spacing: 1px;
  margin-bottom: 8px;
}

/* About Section */
.about-section {
  padding: 60px 0;
  background: var(--surface-dark);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-img.main-img {
  width: 100%;
  border-radius: var(--radius-card);
  border: 1px solid var(--border-gold);
  height: 280px;
  object-fit: cover;
}

.about-gold-box {
  position: absolute;
  bottom: -15px;
  right: 15px;
  background: var(--gold-gradient);
  color: #1c1c1c;
  padding: 10px 18px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-gold);
}

.gold-num {
  font-size: 1.8rem;
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1;
}

.gold-text {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  max-width: 100px;
}

.about-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.about-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--text-cream);
  font-size: 0.9rem;
}

/* Amenities Section - 1 Horizontal Row Slider for Mobile! */
.amenities-section {
  padding: 60px 0;
}

.amenities-slider-container {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 15px;
  scrollbar-width: thin;
}

.amenities-slider-container::-webkit-scrollbar {
  height: 4px;
}

.amenities-slider-container::-webkit-scrollbar-thumb {
  background: var(--gold-primary);
  border-radius: 4px;
}

.amenities-slider-container .amenity-card {
  flex: 0 0 220px;
  scroll-snap-align: start;
  background: var(--surface-dark);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-card);
  padding: 18px 12px;
  text-align: center;
}

.amenity-icon {
  font-size: 2rem;
  margin-bottom: 8px;
}

.amenity-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  margin-bottom: 6px;
  color: var(--gold-primary);
}

.amenity-card p {
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1.3;
}

/* Services Section */
.services-section {
  padding: 60px 0;
  background: var(--surface-dark);
}

.tabs-container {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 12px;
  margin-bottom: 25px;
  scrollbar-width: thin;
}

.tab-btn {
  background: var(--bg-dark);
  color: var(--text-muted);
  border: 1px solid var(--border-gold);
  padding: 8px 16px;
  border-radius: 20px;
  white-space: nowrap;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-btn.active, .tab-btn:hover {
  background: var(--gold-primary);
  color: #1c1c1c;
  font-weight: 600;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.service-card {
  background: var(--bg-dark);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.5);
  border-color: var(--gold-primary);
}

.service-card-img {
  width: 100%;
  height: 130px;
  object-fit: cover;
}

.service-card-body {
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-card-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--text-cream);
  margin-bottom: 6px;
  line-height: 1.25;
}

.service-card-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 8px;
  color: var(--gold-primary);
  font-weight: 600;
  font-size: 0.85rem;
}

.service-card-desc {
  color: var(--text-muted);
  font-size: 0.78rem;
  margin-bottom: 12px;
  flex-grow: 1;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.service-card-body .btn-gold-sm {
  width: 100%;
  padding: 6px 0;
  font-size: 0.75rem;
}

/* Full Price List Menu Modal & Standalone Page Styling */
.menu-category-block {
  margin-bottom: 25px;
}

.menu-category-title {
  font-family: var(--font-heading);
  color: var(--gold-primary);
  font-size: 1.3rem;
  border-bottom: 1px solid var(--border-gold);
  padding-bottom: 6px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.menu-item-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  background: var(--surface-elevated);
  border-radius: 8px;
  margin-bottom: 8px;
  border: 1px solid rgba(202, 163, 67, 0.15);
}

.menu-item-info h4 {
  font-size: 0.95rem;
  color: var(--text-cream);
  margin-bottom: 2px;
}

.menu-item-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.menu-item-action {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-item-price {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--gold-light);
  font-weight: 700;
  white-space: nowrap;
}

/* Combos Section */
.combos-section {
  padding: 60px 0;
}

.combos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.combo-card {
  background: var(--surface-dark);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-card);
  padding: 16px 12px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.combo-card.featured {
  border-color: var(--gold-primary);
  background: linear-gradient(180deg, rgba(202, 163, 67, 0.1) 0%, var(--surface-dark) 100%);
}

.combo-badge {
  position: absolute;
  top: -10px;
  right: 10px;
  background: var(--surface-elevated);
  border: 1px solid var(--border-gold);
  color: var(--text-cream);
  padding: 3px 8px;
  border-radius: 10px;
  font-size: 0.65rem;
  font-weight: 700;
}

.combo-badge.gold {
  background: var(--gold-gradient);
  color: #1c1c1c;
}

.combo-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 6px;
  line-height: 1.2;
}

.combo-price {
  font-size: 1.4rem;
  font-family: var(--font-heading);
  color: var(--gold-primary);
  margin-bottom: 8px;
}

.combo-price span {
  font-size: 0.8rem;
  text-decoration: line-through;
  color: var(--text-muted);
}

.combo-card p {
  color: var(--text-muted);
  font-size: 0.78rem;
  margin-bottom: 15px;
  flex-grow: 1;
  line-height: 1.3;
}

.combo-card .btn {
  width: 100%;
  padding: 6px 0;
  font-size: 0.75rem;
}

/* Gallery Album Section */
.gallery-album-section {
  padding: 60px 0;
  background: var(--surface-dark);
}

.gallery-album-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.album-card-item {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
  border: 1px solid var(--border-gold);
}

.album-card-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.album-card-item:hover img {
  transform: scale(1.08);
}

.album-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.album-card-item:hover .album-card-overlay {
  opacity: 1;
}

.album-card-title {
  color: var(--text-cream);
  font-size: 0.85rem;
  font-weight: 600;
}

/* Gift Cards Section */
.giftcard-section {
  padding: 60px 0;
}

.giftcard-card {
  background: var(--surface-dark);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-modal);
  padding: 30px 18px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: center;
}

.giftcard-text h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.giftcard-text p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 18px;
}

.gift-card-3d {
  background: var(--gold-gradient);
  color: #1c1c1c;
  height: 150px;
  border-radius: 14px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  box-shadow: var(--shadow-gold);
}

.card-gold-label {
  font-size: 0.8rem;
  letter-spacing: 2px;
  font-weight: 700;
}

/* Reviews Section */
.reviews-section {
  padding: 60px 0;
  background: var(--surface-dark);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.review-card {
  background: var(--bg-dark);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-card);
  padding: 14px 10px;
  text-align: left;
}

.review-stars {
  font-size: 0.8rem;
  margin-bottom: 6px;
}

.review-text {
  color: var(--text-cream);
  font-style: italic;
  font-size: 0.78rem;
  margin-bottom: 10px;
  line-height: 1.3;
}

.review-author {
  color: var(--gold-primary);
  font-weight: 600;
  font-size: 0.75rem;
}

/* FAQ Section */
.faq-section {
  padding: 60px 0;
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--surface-dark);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-card);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text-cream);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  padding: 15px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question:hover {
  color: var(--gold-primary);
}

.faq-answer {
  display: none;
  padding: 0 15px 15px;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.faq-item.active .faq-answer {
  display: block;
}

/* Location Footer Info */
.location-section {
  padding: 60px 0;
  background: var(--surface-dark);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

.site-footer {
  background: #141414;
  padding: 30px 0;
  border-top: 1px solid var(--border-gold);
}

/* Mobile Sticky Bar */
.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(28, 28, 28, 0.96);
  border-top: 1px solid var(--border-gold);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 10px 15px calc(12px + env(safe-area-inset-bottom, 16px));
  z-index: 99;
}

.sticky-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--text-cream);
  text-decoration: none;
  font-size: 0.75rem;
}

/* Modals & Bottom-Sheet */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-container.bottom-sheet {
  background: var(--surface-dark);
  border-top: 2px solid var(--gold-primary);
  border-radius: var(--radius-modal) var(--radius-modal) 0 0;
  width: 100%;
  max-width: 650px;
  max-height: 88vh;
  overflow-y: auto;
  padding: 25px 18px;
  position: relative;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.open .modal-container.bottom-sheet {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 15px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.8rem;
  cursor: pointer;
}

.modal-close:hover {
  color: var(--gold-primary);
}

/* Desktop Media Queries (> 768px) */
@media (min-width: 768px) {
  .mobile-menu-toggle {
    display: none;
  }
  .main-nav {
    display: flex;
  }
  .about-grid, .giftcard-card, .location-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cat-bubble-card.luxury-card .cat-bubble-img {
    width: 90px;
    height: 90px;
  }
  .cat-bubble-card.luxury-card h3 {
    font-size: 1.1rem;
  }
  .promos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .amenities-slider-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    overflow-x: visible;
  }
  .amenities-slider-container .amenity-card {
    flex: initial;
  }
  .services-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
  }
  .service-card-img {
    height: 200px;
  }
  .service-card-body {
    padding: 20px;
  }
  .service-card-title {
    font-size: 1.4rem;
  }
  .service-card-meta {
    flex-direction: row;
    font-size: 1rem;
  }
  .service-card-desc {
    font-size: 0.9rem;
    -webkit-line-clamp: initial;
  }
  .combos-grid, .gallery-album-grid, .reviews-grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 25px;
  }
  .modal-overlay {
    align-items: center;
  }
  .modal-container.bottom-sheet {
    border-radius: var(--radius-modal);
    border: 1px solid var(--border-gold);
    transform: translateY(20px);
  }
  .mobile-sticky-bar {
    display: none;
  }
  body.dark-theme {
    padding-bottom: 0;
  }
}

/* ==========================================================================
   LUXURY BOOKING WIZARD 2.0 & OWNER PORTAL STYLES
   ========================================================================== */

/* Wizard Progress Track */
.booking-progress-track {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  position: relative;
  padding: 0 4px;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  position: relative;
  z-index: 2;
  cursor: default;
}

.step-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--surface-elevated);
  border: 1.5px solid var(--border-gold);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 700;
  transition: all 0.3s ease;
}

.progress-step.active .step-circle {
  background: var(--gold-gradient);
  color: #1C1C1C;
  border-color: transparent;
  box-shadow: 0 0 15px rgba(202, 163, 67, 0.45);
}

.progress-step.completed .step-circle {
  background: rgba(202, 163, 67, 0.2);
  border-color: var(--gold-primary);
  color: var(--gold-primary);
}

.step-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
  white-space: nowrap;
}

.progress-step.active .step-label {
  color: var(--text-cream);
  font-weight: 600;
}

.progress-step.completed .step-label {
  color: var(--gold-primary);
}

.progress-connector {
  flex: 1;
  height: 2px;
  background: rgba(202, 163, 67, 0.2);
  margin: 0 6px;
  position: relative;
  top: -10px;
  z-index: 1;
}

.progress-connector.filled {
  background: var(--gold-primary);
}

/* Quick Dates Bar */
.quick-dates-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}
.quick-dates-bar::-webkit-scrollbar { display: none; }

.quick-date-btn {
  flex: 1;
  min-width: 92px;
  background: var(--surface-elevated);
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  padding: 8px 10px;
  color: var(--text-cream);
  font-size: 0.8rem;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.quick-date-btn:hover {
  border-color: var(--gold-primary);
  background: rgba(202, 163, 67, 0.1);
}

.quick-date-btn.active {
  background: var(--gold-gradient);
  color: #1C1C1C;
  border-color: transparent;
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(202, 163, 67, 0.3);
}

.quick-date-btn .sub-date {
  font-size: 0.67rem;
  opacity: 0.85;
}

/* Calendar Card */
.calendar-card {
  background: var(--surface-elevated);
  border: 1px solid var(--border-gold);
  border-radius: 14px;
  padding: 14px 12px;
  margin-bottom: 18px;
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  padding: 0 4px;
}

.cal-month-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--text-cream);
  letter-spacing: 0.5px;
}

.cal-nav-btn {
  background: var(--surface-dark);
  border: 1px solid var(--border-gold);
  color: var(--text-cream);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.2s;
}

.cal-nav-btn:hover:not(:disabled) {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
}

.cal-nav-btn:disabled {
  opacity: 0.25;
  cursor: not-allowed;
}

.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 8px;
  text-align: center;
}

.cal-weekday {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cal-days-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.cal-day-cell {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  color: var(--text-cream);
  border: 1px solid transparent;
  transition: all 0.15s ease;
}

.cal-day-cell:hover:not(.past):not(.empty) {
  border-color: var(--gold-primary);
  background: rgba(202, 163, 67, 0.15);
}

.cal-day-cell.empty {
  visibility: hidden;
  pointer-events: none;
}

.cal-day-cell.past {
  color: rgba(251, 241, 234, 0.2);
  cursor: not-allowed;
  text-decoration: line-through;
}

.cal-day-cell.today:not(.selected) {
  border-color: rgba(202, 163, 67, 0.45);
  color: var(--gold-light);
  font-weight: 700;
}

.cal-day-cell.selected {
  background: var(--gold-gradient);
  color: #1C1C1C;
  font-weight: 700;
  box-shadow: 0 0 10px rgba(202, 163, 67, 0.45);
}

.salon-hours-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(202, 163, 67, 0.08);
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  padding: 8px 12px;
  margin-top: 10px;
  font-size: 0.78rem;
  color: var(--gold-light);
}

/* Time Slots Styling */
.time-period-group {
  margin-bottom: 16px;
}

.time-period-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(202, 163, 67, 0.15);
}

.time-period-title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-cream);
}

.time-slots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

@media (min-width: 480px) {
  .time-slots-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.time-slot-btn {
  background: var(--surface-elevated);
  border: 1px solid var(--border-gold);
  border-radius: 9px;
  padding: 8px 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
}

.time-slot-btn:hover:not(.disabled) {
  border-color: var(--gold-primary);
  background: rgba(202, 163, 67, 0.1);
  transform: translateY(-1px);
}

.time-slot-btn.selected {
  background: var(--gold-gradient);
  border-color: transparent;
  box-shadow: 0 2px 10px rgba(202, 163, 67, 0.35);
}

.time-slot-btn .slot-time {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-cream);
}

.time-slot-btn.selected .slot-time {
  color: #1C1C1C;
  font-weight: 700;
}

.time-slot-btn .slot-status {
  font-size: 0.65rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.time-slot-btn.selected .slot-status {
  color: #1C1C1C;
  font-weight: 600;
}

.time-slot-btn.slot-popular {
  border-color: rgba(202, 163, 67, 0.4);
}

.time-slot-btn.disabled {
  opacity: 0.3;
  cursor: not-allowed;
  border-color: rgba(255, 255, 255, 0.05);
}

.time-slot-btn.disabled .slot-time {
  text-decoration: line-through;
}

/* Step 3 Selection Summary Bar */
.step-selection-summary {
  background: rgba(202, 163, 67, 0.08);
  border: 1px solid var(--border-gold);
  border-radius: 10px;
  padding: 10px 14px;
  margin: 15px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
}

/* Smart Input Fields & Quick Tags */
.smart-form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 14px;
}

.smart-input-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.smart-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.smart-input-field {
  width: 100%;
  background: var(--surface-elevated);
  border: 1px solid var(--border-gold);
  border-radius: 9px;
  padding: 11px 14px;
  color: var(--text-cream);
  font-size: 0.95rem;
  font-family: var(--font-body);
  transition: all 0.2s;
}

.smart-input-field:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(202, 163, 67, 0.15);
}

.smart-input-field.valid {
  border-color: #4CAF50;
}

.smart-valid-icon {
  position: absolute;
  right: 12px;
  color: #4CAF50;
  font-size: 0.9rem;
}

/* Quick Notes Chips */
.quick-notes-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 6px;
  display: block;
}

.quick-notes-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}

.quick-note-chip {
  background: var(--surface-elevated);
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  padding: 5px 11px;
  font-size: 0.72rem;
  color: var(--text-cream);
  cursor: pointer;
  transition: all 0.2s;
  user-select: none;
}

.quick-note-chip:hover {
  border-color: var(--gold-primary);
  color: var(--gold-light);
}

.quick-note-chip.active {
  background: rgba(202, 163, 67, 0.22);
  border-color: var(--gold-primary);
  color: var(--gold-light);
  font-weight: 600;
}

/* Returning Client Banner */
.welcome-back-banner {
  background: linear-gradient(135deg, rgba(202, 163, 67, 0.15), rgba(202, 163, 67, 0.05));
  border: 1px solid var(--gold-primary);
  border-radius: 10px;
  padding: 10px 14px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--gold-light);
}

.welcome-back-clear {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.75rem;
  cursor: pointer;
  text-decoration: underline;
}

/* Booking Success Card & Actions */
.booking-success-box {
  text-align: center;
  padding: 15px 5px;
}

.success-check-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 2rem;
  color: #1C1C1C;
  box-shadow: 0 0 25px rgba(202, 163, 67, 0.4);
}

.booking-ref-badge {
  display: inline-block;
  background: rgba(202, 163, 67, 0.15);
  border: 1px dashed var(--gold-primary);
  border-radius: 8px;
  padding: 6px 14px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold-primary);
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.post-actions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 20px 0 12px;
}

.btn-post-action {
  background: var(--surface-elevated);
  border: 1px solid var(--border-gold);
  border-radius: 10px;
  padding: 12px 10px;
  color: var(--text-cream);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-post-action:hover {
  border-color: var(--gold-primary);
  background: rgba(202, 163, 67, 0.12);
  color: var(--gold-light);
}

/* Owner Portal Styles */
.owner-portal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--border-gold);
}

.owner-stats-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}

.owner-stat-card {
  background: var(--surface-elevated);
  border: 1px solid var(--border-gold);
  border-radius: 10px;
  padding: 10px;
  text-align: center;
}

.owner-stat-val {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--gold-primary);
  font-weight: 700;
}

.owner-stat-lbl {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.owner-filter-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.owner-tab-btn {
  background: var(--surface-elevated);
  border: 1px solid var(--border-gold);
  border-radius: 18px;
  padding: 6px 14px;
  color: var(--text-muted);
  font-size: 0.78rem;
  cursor: pointer;
  white-space: nowrap;
}

.owner-tab-btn.active {
  background: var(--gold-gradient);
  color: #1C1C1C;
  font-weight: 700;
  border-color: transparent;
}

.owner-appointment-card {
  background: var(--surface-elevated);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  padding: 14px;
  margin-bottom: 12px;
  position: relative;
  transition: all 0.2s;
}

.owner-appointment-card:hover {
  border-color: var(--gold-primary);
}

.owner-app-status {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.status-confirmed { background: rgba(76, 175, 80, 0.2); color: #81C784; border: 1px solid #4CAF50; }
.status-pending { background: rgba(255, 193, 7, 0.2); color: #FFD54F; border: 1px solid #FFC107; }
.status-completed { background: rgba(33, 150, 243, 0.2); color: #64B5F6; border: 1px solid #2196F3; }
.status-cancelled { background: rgba(244, 67, 54, 0.2); color: #E57373; border: 1px solid #F44336; }

/* ==========================================================================
   ALBUM PHOTO SLIDER & EXTENDED OWNER DASHBOARD SUITE
   ========================================================================== */

/* Luxury Album Photo Slider */
.slider-container {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  margin-bottom: 14px;
  border: 1px solid var(--border-gold);
}

.slider-main-wrap {
  position: relative;
  width: 100%;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111;
  overflow: hidden;
}

@media (min-width: 600px) {
  .slider-main-wrap {
    height: 380px;
  }
}

.slider-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease, transform 0.4s ease;
}

.slider-arrow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(28, 28, 28, 0.75);
  border: 1px solid var(--border-gold);
  color: var(--text-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  z-index: 5;
  transition: all 0.2s ease;
  backdrop-filter: blur(4px);
}

.slider-arrow-btn:hover {
  background: var(--gold-gradient);
  color: #1C1C1C;
  border-color: transparent;
  transform: translateY(-50%) scale(1.1);
}

.slider-arrow-btn.prev {
  left: 12px;
}

.slider-arrow-btn.next {
  right: 12px;
}

.slider-counter-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.75);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
  z-index: 5;
}

.slider-thumbs-strip {
  display: flex;
  gap: 8px;
  padding: 10px;
  background: var(--surface-dark);
  overflow-x: auto;
  scrollbar-width: none;
}
.slider-thumbs-strip::-webkit-scrollbar { display: none; }

.slider-thumb-item {
  width: 58px;
  height: 58px;
  border-radius: 8px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: 0.6;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.slider-thumb-item:hover {
  opacity: 0.9;
  border-color: rgba(202, 163, 67, 0.5);
}

.slider-thumb-item.active {
  opacity: 1;
  border-color: var(--gold-primary);
  box-shadow: 0 0 10px rgba(202, 163, 67, 0.5);
  transform: scale(1.05);
}

/* Owner Dashboard Top Module Navigation */
.owner-module-nav {
  display: flex;
  gap: 8px;
  background: var(--surface-elevated);
  padding: 6px;
  border-radius: 12px;
  border: 1px solid var(--border-gold);
  margin-bottom: 18px;
  overflow-x: auto;
  scrollbar-width: none;
}
.owner-module-nav::-webkit-scrollbar { display: none; }

.owner-module-btn {
  flex: 1;
  min-width: 120px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 9px 12px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.owner-module-btn:hover {
  color: var(--text-cream);
  background: rgba(202, 163, 67, 0.1);
}

.owner-module-btn.active {
  background: var(--gold-gradient);
  color: #1C1C1C;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(202, 163, 67, 0.3);
}

/* Owner Service & Category List Styles */
.owner-category-filter {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}
.owner-category-filter::-webkit-scrollbar { display: none; }

.owner-services-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 52vh;
  overflow-y: auto;
  padding-right: 4px;
}

.owner-service-row {
  background: var(--surface-elevated);
  border: 1px solid var(--border-gold);
  border-radius: 10px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: border-color 0.2s;
}

.owner-service-row:hover {
  border-color: var(--gold-primary);
}

.owner-service-thumb {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid var(--border-gold);
}

.owner-service-meta {
  flex: 1;
  min-width: 0;
}

.owner-service-name {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-cream);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 2px;
}

.owner-service-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.owner-inline-price {
  background: var(--surface-dark);
  border: 1px solid var(--border-gold);
  color: var(--gold-primary);
  font-weight: 700;
  width: 65px;
  padding: 5px 8px;
  border-radius: 6px;
  text-align: right;
  font-size: 0.9rem;
}

/* Owner Staff Cards */
.owner-staff-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-height: 52vh;
  overflow-y: auto;
  padding-right: 4px;
}

@media (min-width: 580px) {
  .owner-staff-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.owner-staff-card {
  background: var(--surface-elevated);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  transition: all 0.2s;
}

.owner-staff-card.off-duty {
  opacity: 0.6;
  border-style: dashed;
}

.owner-staff-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.owner-staff-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #1C1C1C;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.owner-staff-info {
  flex: 1;
}

.owner-duty-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--surface-dark);
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 0.78rem;
}

/* Owner Gallery Grid */
.owner-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 10px;
  max-height: 52vh;
  overflow-y: auto;
  padding-right: 4px;
}

.owner-photo-item {
  background: var(--surface-elevated);
  border: 1px solid var(--border-gold);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

.owner-photo-img {
  width: 100%;
  height: 100px;
  object-fit: cover;
}

.owner-photo-desc {
  padding: 6px 8px;
  font-size: 0.72rem;
  flex: 1;
}

.owner-photo-del {
  position: absolute;
  top: 5px;
  right: 5px;
  background: rgba(0, 0, 0, 0.75);
  color: #ff6b6b;
  border: 1px solid rgba(255, 107, 107, 0.5);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}


