@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

:root {
  /* Light E-commerce Theme Colors */
  --bg-primary: #f4f5f7;
  --bg-secondary: #ffffff;
  --text-primary: #111827;
  --text-secondary: #4b5563;
  
  /* Vibrant Accents */
  --accent-blue: #0056b3; /* Primary Blue for buttons */
  --accent-red: #e63946;  /* Accent Red for active states and banners */
  
  /* Old gradients mapped to solid colors for compatibility */
  --accent-gradient: #0056b3;
  --accent-gradient-b2b: #1f2937; /* Dark grey for B2B */

  /* Cards (Replaced Glassmorphism with solid shadows) */
  --glass-bg: #ffffff;
  --glass-border: #e5e7eb;
  --glass-shadow: 0 2px 8px rgba(0,0,0,0.06);
  --glass-shadow-hover: 0 12px 24px rgba(0,0,0,0.1);
  
  /* Typography */
  --font-family: 'Montserrat', sans-serif;
  
  /* Utilities */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

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

/* Typography */
h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}

p {
  color: var(--text-secondary);
  font-size: 1.125rem;
  font-weight: 400;
  max-width: 600px;
}

.text-gradient {
  color: var(--accent-red); /* Changed from gradient to solid red for emphasis */
}

/* Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
  position: relative;
}

/* Navbar */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
  transition: padding 0.3s ease;
}

nav.scrolled {
  padding: 0;
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  letter-spacing: 0.05em;
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: var(--accent-red);
  border-radius: 8px;
  display: inline-block;
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--accent-red);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 8px; /* Square edges for ecommerce */
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  gap: 10px;
}

.btn-primary {
  background: var(--accent-blue);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 86, 179, 0.2);
}

.btn-primary:hover {
  background: #004494;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 86, 179, 0.3);
}

.btn-secondary {
  background: #ffffff;
  color: var(--text-primary);
  border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
  background: #f8f9fa;
  border-color: #d1d5db;
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  min-height: auto;
  padding: 140px 0 60px;
  display: flex;
  align-items: center;
  position: relative;
  background: #ffffff;
}

.hero-content {
  text-align: left; /* Align left for ecommerce */
  max-width: 600px;
}

.hero p {
  margin: 0 0 2rem;
  font-size: 1.15rem;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  background: rgba(230, 57, 70, 0.1);
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--accent-red);
  text-transform: uppercase;
}

/* Layout for Homepage (Sidebar + Content) */
.hero-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 30px;
  margin-top: 20px;
}

@media (max-width: 900px) {
  .hero-layout {
    grid-template-columns: 1fr;
  }
}

/* Home Split Layout */
.home-split-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  align-items: start;
}

@media (max-width: 1024px) {
  .home-split-layout {
    grid-template-columns: 1fr;
  }
  .home-split-layout .hero-banner {
    min-height: 400px;
  }
  .bento-grid-v2 {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 768px) {
  .bento-grid-v2 {
    grid-template-columns: 1fr !important;
  }
}

/* Sidebar Categories */
.sidebar {
  background: #ffffff;
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 20px 0;
  box-shadow: var(--glass-shadow);
  height: fit-content;
}

.sidebar-title {
  padding: 0 20px 15px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--glass-border);
  font-size: 1.1rem;
}

.category-list {
  list-style: none;
}

.category-list li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s;
  border-left: 3px solid transparent;
}

.category-list li a:hover {
  background: rgba(230, 57, 70, 0.05);
  color: var(--accent-red);
  border-left-color: var(--accent-red);
}

.category-list li a i {
  color: #9ca3af;
  width: 20px;
  text-align: center;
}

.category-list li a:hover i {
  color: var(--accent-red);
}

/* Main Banner (Next to sidebar) */
.main-banner {
  background: #111827;
  border-radius: 12px;
  padding: 60px 40px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: 380px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--glass-shadow);
}

.main-banner::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 50%;
  height: 100%;
  background-image: url('https://images.unsplash.com/photo-1601362840469-51e4d8d58785?auto=format&fit=crop&q=80&w=800');
  background-size: cover;
  background-position: center;
  mask-image: linear-gradient(to left, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
}

.main-banner h1, .main-banner p {
  position: relative;
  z-index: 2;
  color: #fff;
}

.main-banner h1 {
  font-size: 2.5rem;
  max-width: 400px;
}

.main-banner p {
  color: #d1d5db;
}

.main-banner .btn {
  position: relative;
  z-index: 2;
}

/* Features Row (Trust signals) */
.features-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  padding: 30px;
  background: #ffffff;
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  margin-top: 30px;
  box-shadow: var(--glass-shadow);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(0, 86, 179, 0.1);
  color: var(--accent-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.feature-text h4 {
  margin: 0 0 4px 0;
  font-size: 1rem;
}

.feature-text p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* Cards (Replacing glass-card) */
.glass-card {
  background: #ffffff;
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 30px;
  transition: var(--transition-smooth);
  box-shadow: var(--glass-shadow);
}

.glass-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--glass-shadow-hover);
}

.card-icon {
  width: 56px;
  height: 56px;
  background: #f3f4f6;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent-blue);
  font-size: 1.5rem;
  transition: var(--transition-smooth);
}

.glass-card:hover .card-icon {
  background: var(--accent-blue);
  color: #fff;
}

.glass-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

/* Horizontal Scroll Container (Studios) */
.horizontal-scroll-container {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 10px 0 30px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.horizontal-scroll-container::-webkit-scrollbar {
  height: 8px;
}
.horizontal-scroll-container::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 4px;
}

.catalog-item {
  flex: 0 0 320px;
  scroll-snap-align: start;
  background: #ffffff;
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 24px;
  box-shadow: var(--glass-shadow);
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.catalog-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--glass-shadow-hover);
  border-color: #d1d5db;
}

/* Bento Grid */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 20px;
}

.bento-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  background: #ffffff;
  border: 1px solid var(--glass-border);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: var(--glass-shadow);
}

.bento-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--glass-shadow-hover);
}

.bento-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-size: cover !important;
  background-position: center !important;
  transition: transform 0.5s ease;
  z-index: 1;
}

.bento-item:hover .bento-bg {
  transform: scale(1.05);
}

/* Specific styling for the large red block (from the wireframe) */
.bento-large.bento-red {
  background: var(--accent-red);
  border: none;
}
.bento-large.bento-red .bento-content {
  background: none;
  color: #fff;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%;
}
.bento-large.bento-red h3 {
  color: #fff;
  font-size: 2rem;
  text-transform: uppercase;
}

.bento-content {
  position: relative;
  z-index: 2;
  padding: 20px;
  background: #ffffff; /* White bg for bento content in light theme */
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--glass-border);
}

/* If bento has a background image, keep the gradient overlay */
.bento-item.has-bg .bento-content {
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
  border-top: none;
  color: #fff;
}
.bento-item.has-bg .bento-content h3 {
  color: #fff;
}
.bento-item.has-bg .bento-content p {
  color: rgba(255,255,255,0.8);
}

.bento-content h3 {
  margin: 0;
  font-size: 1.15rem;
}

.bento-content p {
  margin: 5px 0 0 0;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.bento-large {
  grid-column: span 2;
  grid-row: span 2;
}

.bento-wide {
  grid-column: span 2;
}

@media (max-width: 900px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .bento-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .bento-item {
    min-height: 200px;
  }
  .bento-large, .bento-wide {
    grid-column: span 1;
    grid-row: span 1;
  }
}

/* View All Link */
.view-all-link {
  color: var(--accent-blue);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}
.view-all-link:hover {
  text-decoration: underline;
}

/* Catalog specific styles */
.catalog-header {
  text-align: center;
  padding: 120px 0 40px;
  background: #ffffff;
  border-bottom: 1px solid var(--glass-border);
  margin-bottom: 40px;
}

.tabs-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.tab-btn {
  background: #ffffff;
  border: 1px solid var(--glass-border);
  color: var(--text-secondary);
  padding: 10px 20px;
  border-radius: 8px;
  font-family: var(--font-family);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.tab-btn:hover {
  background: #f9fafb;
  color: var(--text-primary);
}

.tab-btn.active {
  background: var(--accent-red);
  color: #fff;
  border-color: var(--accent-red);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.price-table {
  width: 100%;
  margin-top: auto;
  border-collapse: collapse;
}

.price-table th, .price-table td {
  padding: 10px 0;
  text-align: left;
  border-bottom: 1px solid var(--glass-border);
  font-size: 0.9rem;
}

.price-table th {
  color: var(--text-secondary);
  font-weight: 400;
}

.price-table td {
  text-align: right;
  font-weight: 600;
  color: var(--text-primary);
}

.price-table tr:last-child th,
.price-table tr:last-child td {
  border-bottom: none;
}

/* Search Box */
.search-box {
  background: #f3f4f6;
  border-radius: 8px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  max-width: 400px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}
.search-box:focus-within {
  background: #ffffff;
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.1);
}
.search-box input {
  border: none;
  background: none;
  padding: 8px 0;
  outline: none;
  font-family: var(--font-family);
  color: var(--text-primary);
  width: 100%;
}
.search-box i {
  color: #9ca3af;
}

/* Footer */
footer {
  border-top: 1px solid var(--glass-border);
  padding: 60px 0 30px;
  background: #ffffff;
  margin-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  color: var(--text-secondary);
  text-decoration: none;
  margin-bottom: 10px;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--accent-red);
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid var(--glass-border);
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Bento Grid V2 (Compact Style) */
.bento-grid-v2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 140px;
  gap: 15px;
  margin-top: 20px;
}
.bento-item-v2 {
  background: #f1f5f9;
  border-radius: 16px;
  padding: 15px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-decoration: none;
  color: var(--text-primary);
  transition: var(--transition-smooth);
  border: 1px solid transparent;
}
.bento-item-v2:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  border-color: rgba(220,38,38,0.2);
}
.bento-item-v2 h3 {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
  z-index: 2;
}
.bento-img-wrap {
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 80px;
  height: 80px;
  border-radius: 12px;
  overflow: hidden;
  z-index: 1;
}
.bento-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.bento-item-v2:hover .bento-img {
  transform: scale(1.1);
}
.bento-wide .bento-img-wrap {
  width: 120px;
  height: 100px;
  bottom: 0;
  right: 0;
}
.bento-tall {
  grid-row: span 2;
}
.bento-tall .bento-img-wrap {
  width: 100%;
  height: 150px;
  bottom: 0;
  right: 0;
  border-radius: 0;
}
.bento-wide { grid-column: span 2; }
.bento-red {
  background: var(--accent-red);
  color: white;
}
.bento-text {
  position: relative;
  z-index: 2;
  max-width: 60%;
}
.bento-item-v2 h3 {
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: inherit;
  line-height: 1.3;
}
.bento-red h3 { color: white; }
.bento-btn {
  background: white;
  color: var(--text-primary);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 4px;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  transition: all 0.2s ease;
}
.bento-btn:hover {
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transform: translateY(-1px);
}
.bento-red .bento-btn {
  background: var(--text-primary);
  color: white;
  border-color: transparent;
}
.bento-red .bento-btn:hover { background: #000; }
.bento-img-wrap {
  position: absolute;
  right: -10%;
  bottom: -10%;
  width: 65%;
  height: 80%;
  z-index: 1;
}
.tall-img { height: 60%; width: 90%; right: -5%; bottom: 0; }
.bento-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.95;
  border-radius: 20px;
  -webkit-mask-image: linear-gradient(to top left, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 90%);
  mask-image: linear-gradient(to top left, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 90%);
}
.bento-red .bento-img {
  border-radius: 20px;
  -webkit-mask-image: linear-gradient(to top left, rgba(0,0,0,1) 30%, rgba(0,0,0,0) 90%);
  mask-image: linear-gradient(to top left, rgba(0,0,0,1) 30%, rgba(0,0,0,0) 90%);
}
.badge-new {
  background: var(--accent-blue);
  color: white;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 4px;
  position: absolute;
  top: -25px;
  left: 0;
}
@media (max-width: 900px) {
  .bento-grid-v2 { grid-template-columns: repeat(2, 1fr); }
  .bento-tall { grid-row: span 1; grid-column: span 1; }
  .bento-item-v2.bento-tall[style] { grid-column: auto !important; grid-row: auto !important; }
}
@media (max-width: 600px) {
  .bento-grid-v2 { grid-template-columns: 1fr; }
  .bento-wide { grid-column: span 1; }
  .bento-text { max-width: 100%; }
}

/* Studio Detail Page Layout */
.studio-page-layout {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 40px;
  margin-top: 100px;
  align-items: start;
}

@media (max-width: 900px) {
  .studio-page-layout {
    grid-template-columns: 1fr;
  }
}

.breadcrumbs {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
}
.breadcrumbs a {
  color: var(--accent-blue);
  text-decoration: none;
}

/* Gallery */
.studio-gallery {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
}
.gallery-main img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
}
.gallery-thumbs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
}
.gallery-thumbs img {
  width: 150px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: opacity 0.3s;
}
.gallery-thumbs img:hover {
  opacity: 0.8;
}

/* Header Info */
.studio-header-info {
  margin-bottom: 40px;
}
.studio-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 10px;
}
.studio-title-row h1 {
  margin: 0;
  font-size: 2.2rem;
}
.studio-badges {
  display: flex;
  gap: 10px;
}
.badge-pro {
  background: var(--text-primary);
  color: white;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
}
.badge-rating {
  background: #fef3c7;
  color: #d97706;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
}
.studio-short-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

/* Studio Sections */
.studio-section {
  background: #fff;
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}
.studio-section h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--glass-border);
}

/* Amenities */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
}
.amenity-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-primary);
  font-weight: 500;
}
.amenity-item i {
  color: var(--accent-blue);
  font-size: 1.2rem;
}

/* Price List */
.price-category {
  margin-bottom: 15px;
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  overflow: hidden;
}
.category-title {
  background: #f9fafb;
  padding: 15px 20px;
  margin: 0;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s;
}
.category-title:hover {
  background: #f3f4f6;
}
.category-items {
  display: none;
  padding: 0 20px;
}
.price-category.active .category-items {
  display: block;
}
.price-category.active .category-title i {
  transform: rotate(180deg);
}
.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--glass-border);
}
.price-item:last-child {
  border-bottom: none;
}
.price-info h4 {
  margin: 0 0 5px 0;
  font-size: 1.05rem;
}
.price-info p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.price-action {
  display: flex;
  align-items: center;
  gap: 15px;
}
.price-action .price {
  font-weight: 700;
  font-size: 1.1rem;
}

/* Reviews */
.review-card {
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
}
.review-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}
.reviewer-avatar {
  width: 48px;
  height: 48px;
  background: #e5e7eb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text-secondary);
}
.reviewer-info h4 {
  margin: 0 0 5px 0;
}
.review-rating {
  display: flex;
  align-items: center;
  gap: 2px;
  color: #f59e0b;
  font-size: 0.9rem;
}
.review-rating span {
  color: var(--text-secondary);
  margin-left: 10px;
}
.review-service {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 10px;
  font-weight: 600;
}
.review-text {
  font-size: 0.95rem;
}
.review-reply {
  background: #f9fafb;
  padding: 15px;
  border-radius: 8px;
  margin-top: 15px;
  border-left: 3px solid var(--accent-blue);
}

/* Sticky Sidebar */
.studio-sticky-card {
  background: #fff;
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 24px;
  position: sticky;
  top: 100px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.ssc-map-preview {
  height: 150px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
}
.ssc-info {
  margin-bottom: 20px;
}
.ssc-location, .ssc-schedule {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}
.ssc-location i, .ssc-schedule i {
  color: var(--accent-blue);
  font-size: 1.5rem;
}
.ssc-location div, .ssc-schedule div {
  display: flex;
  flex-direction: column;
}
.ssc-location span, .ssc-schedule span {
  color: var(--text-secondary);
  font-size: 0.9rem;
}
.w-100 {
  width: 100%;
}
.ssc-features {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Mobile Sticky CTA */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  padding: 15px 20px;
  box-shadow: 0 -4px 15px rgba(0,0,0,0.1);
  z-index: 1000;
  border-top: 1px solid var(--glass-border);
}
@media (max-width: 900px) {
  .mobile-sticky-cta {
    display: block;
  }
}




/* Category Showcase Block */
.category-showcase-block {
    display: flex;
    border-radius: 20px;
    overflow: hidden;
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    height: 420px;
}

.category-showcase-left {
    width: 320px;
    flex-shrink: 0;
    position: relative;
    background-size: cover;
    background-position: center;
    color: white;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
}

.category-showcase-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to right, rgba(17,24,39,0.95) 0%, rgba(17,24,39,0.6) 100%);
    z-index: 1;
}

.category-showcase-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.category-showcase-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
    color: #ffffff;
}

.category-showcase-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.category-showcase-list li {
    margin-bottom: 15px;
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    position: relative;
    padding-left: 20px;
}
.category-showcase-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-red);
    font-size: 1.2rem;
    line-height: 0.8;
}

.category-showcase-link {
    color: var(--accent-red);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: auto;
    transition: gap 0.3s ease;
}
.category-showcase-link:hover {
    gap: 10px;
}

.category-showcase-right {
    flex: 1;
    display: flex;
    gap: 20px;
    padding: 20px;
    overflow-x: auto;
    align-items: stretch;
    scroll-snap-type: x mandatory;
    /* Hide scrollbar */
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.category-showcase-right::-webkit-scrollbar {
    display: none;
}
.category-showcase-right .catalog-item {
    scroll-snap-align: start;
    min-width: 300px;
    height: 100%;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .category-showcase-block {
        flex-direction: column;
        height: auto;
    }
    .category-showcase-left {
        width: 100%;
        padding: 30px 20px;
    }
    .category-showcase-right {
        padding: 15px;
        height: 380px;
    }
}


/* Bento Card Tints */
.bento-tint-blue { background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%) !important; }
.bento-tint-indigo { background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%) !important; }
.bento-tint-slate { background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%) !important; }
.bento-tint-cyan { background: linear-gradient(135deg, #ecfeff 0%, #cffafe 100%) !important; }
.bento-tint-emerald { background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%) !important; }
.bento-tint-rose { background: linear-gradient(135deg, #fff1f2 0%, #ffe4e6 100%) !important; }
