/* ======================
   Case Study Specific Styles
   ====================== */

.case-study {
  padding-top: 80px;
}

/* Hero Section */
.cs-hero {
  padding: var(--spacing-xl) var(--spacing-md);
  max-width: var(--max-width);
  margin: 0 auto;
}

.cs-hero-content {
  margin-bottom: var(--spacing-lg);
}

.cs-back {
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-light);
  margin-bottom: var(--spacing-md);
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.cs-back:hover {
  color: var(--color-text);
  transform: translateX(-4px);
}

.cs-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: var(--spacing-sm);
}

.cs-subtitle {
  font-size: 1.25rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

.cs-hero-image {
  width: 100%;
  border-radius: 0;
  overflow: hidden;
  background-color: #f0f0f0;
}

.cs-hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Section Layouts */
.cs-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--spacing-xl) var(--spacing-md);
}

.cs-section-alt {
  background-color: #f5f5f5;
}

.cs-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--spacing-lg);
  align-items: start;
}

.cs-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: var(--spacing-md);
}

.cs-content h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
}

.cs-content p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--color-text-light);
  margin-bottom: var(--spacing-md);
}

.cs-content p:last-child {
  margin-bottom: 0;
}

/* Sidebar Meta */
.cs-sidebar {
  position: sticky;
  top: 120px;
}

.cs-meta {
  margin-bottom: var(--spacing-md);
}

.cs-meta h3 {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text);
  margin-bottom: var(--spacing-xs);
}

.cs-meta p {
  font-size: 1rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* Full Width Content */
.cs-content-full {
  max-width: 1000px;
  margin: 0 auto var(--spacing-lg) auto;
}

.cs-content-full h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: var(--spacing-md);
}

.cs-content-full h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
}

.cs-content-full p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--color-text-light);
  margin-bottom: var(--spacing-md);
}

.cs-content-full ul {
  list-style: none;
  padding-left: 0;
}

.cs-content-full li {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--color-text-light);
  margin-bottom: var(--spacing-sm);
  padding-left: var(--spacing-md);
  position: relative;
}

.cs-content-full li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--color-accent);
}

/* Subsections */
.cs-subsection {
  margin-top: var(--spacing-lg);
}

/* Findings */
.cs-findings {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-md);
  max-width: 1000px;
  margin: 0 auto var(--spacing-lg) auto;
}

.cs-finding {
  padding: var(--spacing-md);
  background-color: white;
  border-left: 3px solid var(--color-accent);
}

.cs-finding h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
}

.cs-finding p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text-light);
  font-style: italic;
  margin-bottom: var(--spacing-xs);
}

.cs-finding-source {
  font-size: 0.875rem;
  font-style: normal;
  color: var(--color-text);
}

/* Images */
.cs-image-full {
  max-width: 1000px;
  margin: 0 auto var(--spacing-lg) auto;
}

.cs-image-full img {
  width: 100%;
  height: auto;
  display: block;
}

.cs-image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-md);
  max-width: 1000px;
  margin: 0 auto var(--spacing-lg) auto;
}

.cs-image-grid img {
  width: 100%;
  height: auto;
  display: block;
}

/* Next Project */
.cs-next {
  padding: var(--spacing-xl) var(--spacing-md);
  background-color: #f5f5f5;
}

.cs-next-content {
  max-width: var(--max-width);
  margin: 0 auto;
}

.cs-next-label {
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-light);
  margin-bottom: var(--spacing-sm);
}

.cs-next-link {
  display: block;
  transition: transform 0.3s ease;
}

.cs-next-link:hover {
  transform: translateX(8px);
}

.cs-next-link h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: var(--spacing-xs);
}

.cs-next-link span {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-accent);
}

/* Responsive */
@media (max-width: 768px) {
  .cs-hero {
    padding: var(--spacing-md) var(--spacing-sm);
  }

  .cs-section {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--spacing-xl) var(--spacing-md);
  }

  .cs-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .cs-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--spacing-md);
  }

  .cs-findings {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    max-width: 1000px;
    margin: 0 auto var(--spacing-lg) auto;
  }

  .cs-image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    max-width: 1000px;
    margin: 0 auto var(--spacing-lg) auto;
  }
}

@media (max-width: 480px) {
  .cs-title {
    font-size: 2rem;
  }

  .cs-subtitle {
    font-size: 1rem;
  }
}

/* ======================
   Sticky Bottom Navigation
   ====================== */
.sticky-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  border-top: 1px solid #e5e5e5;
  padding: 0.6rem var(--spacing-md);
  z-index: 100;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

/* Jump-to nav: single horizontal row with sliding pill */
.sticky-nav-content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  position: relative;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.sticky-nav-content::-webkit-scrollbar {
  display: none;
}

/* Right-edge fade hint — only shown when content overflows */
.sticky-nav::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 3rem;
  background: linear-gradient(to right, transparent, white);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.sticky-nav.has-overflow::after {
  opacity: 1;
}

/* Sliding pill indicator — outline style */
.sticky-nav-pill {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  height: calc(100% - 6px);
  background: transparent;
  border: 1.5px solid var(--color-accent);
  border-radius: 100px;
  transition:
    left 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 0;
}

.sticky-nav-content a {
  position: relative;
  z-index: 1;
  font-size: 0.85rem;
  color: var(--color-text);
  text-decoration: none;
  padding: 0.45rem 1rem;
  border-radius: 100px;
  white-space: nowrap;
  transition: color 0.25s ease;
  flex-shrink: 0;
}

.sticky-nav-content a:hover {
  color: var(--color-accent);
}

.sticky-nav-content a.active {
  color: var(--color-accent);
  font-weight: 500;
}

/* CTA state (next case study) */
.sticky-nav-cta {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-md);
}

.sticky-nav-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.sticky-nav-button {
  background-color: var(--color-accent);
  color: white !important;
  font-weight: 500;
  padding: 0.6rem 1.5rem;
  border-radius: 100px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.sticky-nav-button:hover {
  background-color: #c36545;
  transform: translateX(3px);
}

.hidden {
  display: none !important;
}

/* Finding cards with left accent border */
.cs-finding {
  padding: var(--spacing-md);
  border-left: 3px solid var(--color-accent);
  margin-bottom: var(--spacing-md);
  transition: transform 0.3s ease;
}

.cs-finding:hover {
  transform: translateX(4px);
}

/* ======================
   Branding Showcase Styles
   ====================== */

.branding-showcase {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-md);
}

.branding-group h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: var(--spacing-md);
  color: var(--color-text);
}

/* Color Swatches */
.color-swatches {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: var(--spacing-md);
}

.color-swatch {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.color-box {
  width: 100%;
  height: 100px;
  border-radius: 4px;
  transition: transform 0.3s ease;
}

.color-swatch:hover .color-box {
  transform: translateY(-4px);
}

.color-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.color-name {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--color-text);
}

.color-hex {
  font-family: "Courier New", monospace;
  font-size: 0.875rem;
  color: var(--color-text-light);
}

/* Font Showcase */
.font-showcase {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.font-sample {
  padding: var(--spacing-md);
  background: #fafafa;
  border-radius: 4px;
  border-left: 3px solid var(--color-accent);
}

.font-display {
  color: var(--color-text);
  line-height: 1.2;
}

.font-meta {
  font-size: 0.875rem;
  color: var(--color-text-light);
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .color-swatches {
    grid-template-columns: repeat(2, 1fr);
  }

  .color-box {
    height: 80px;
  }
}

/* ======================
   Accessibility Section Styles
   ====================== */

.accessibility-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-md);
}

.accessibility-item {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.accessibility-icon {
  width: 48px;
  height: 48px;
  color: var(--color-accent);
  margin-bottom: var(--spacing-xs);
}

.accessibility-icon svg {
  width: 100%;
  height: 100%;
}

.accessibility-item h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0;
  color: var(--color-text);
}

.accessibility-item p {
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .accessibility-grid {
    grid-template-columns: 1fr;
  }
}

/* ======================
   Persona Card Styles
   ====================== */

.persona-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
  margin-top: var(--spacing-lg);
}

.persona-header {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: var(--spacing-lg);
  padding: var(--spacing-lg);
  background: #fafafa;
  border-bottom: 1px solid var(--color-border);
}

.persona-image {
  width: 200px;
  height: 200px;
  border-radius: 8px;
  overflow: hidden;
}

.persona-image-top img {
  object-position: center top;
}

.persona-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.persona-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--spacing-sm);
}

.persona-name {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  margin: 0;
  color: var(--color-text);
}

.persona-title {
  font-size: 1.125rem;
  color: var(--color-accent);
  margin: 0;
  font-weight: 500;
}

.persona-meta {
  display: flex;
  flex-wrap: wrap; /* ← ADD this */
  justify-content: flex-start;
  gap: 2rem;

  width: 100%;
}

.persona-meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;

  min-width: 0;
}

.meta-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-light);
  font-weight: 700;
  white-space: nowrap;
}

.meta-value {
  font-size: 0.95rem;
  color: var(--color-text);
  font-weight: 700;
  font-family: var(--font-display);
  line-height: 1.4;
}

.meta-value {
  font-size: 0.95rem;
  color: var(--color-text);
  font-weight: 500;
  line-height: 1.4;
}

.persona-body {
  padding: var(--spacing-lg);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.persona-section h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
  color: var(--color-text);
  border-left: 3px solid var(--color-accent);
  padding-left: var(--spacing-sm);
}

.persona-section p {
  margin: 0;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .persona-header {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
  }

  .persona-image {
    width: 120px;
    height: 120px;
    margin: 0 auto;
  }

  .persona-intro {
    text-align: center;
  }

  .persona-meta {
    justify-content: center;
    gap: var(--spacing-md);
  }

  .persona-name {
    font-size: 1.5rem;
  }

  .persona-body {
    padding: var(--spacing-md);
  }
}

/* ======================
   Image Enhancements
   ====================== */

.cs-image-full img,
.cs-image-grid img {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  cursor: pointer;
}

.cs-image-full img:hover,
.cs-image-grid img:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.cs-hero-image img {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  cursor: pointer;
}

.cs-hero-image img:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

/* ======================
   Lightbox
   ====================== */

.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-image {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
  z-index: 1001;
}

.lightbox-close:hover {
  background: #f0f0f0;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
  z-index: 1001;
}

.lightbox-nav:hover {
  background: #f0f0f0;
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

.lightbox-nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* Persona card accent background */
.persona-header {
  background: var(--color-accent) !important;
}

.persona-name,
.persona-title,
.meta-label,
.meta-value {
  color: white !important;
}

@media (max-width: 768px) {
  .lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }
}
/* Fix carousel sizing */

@media (max-width: 768px) {
}

@media (max-width: 768px) {
}

/* ======================
   Mobile Gallery (Horizontal Scroll)
   ====================== */

.mobile-gallery-container {
  position: relative;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  justify-content: center;
}

.mobile-gallery {
  display: flex;
  gap: var(--spacing-md);
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: var(--spacing-md) 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--color-accent) #f0f0f0;
}

.mobile-gallery::-webkit-scrollbar {
  height: 8px;
}

.mobile-gallery::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 4px;
}

.mobile-gallery::-webkit-scrollbar-thumb {
  background: var(--color-accent);
  border-radius: 4px;
}

.mobile-gallery img {
  height: 280px;
  width: auto;
  flex-shrink: 0;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  cursor: default !important;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.mobile-gallery img:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.gallery-nav:hover {
  background: #f0f0f0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.gallery-nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.gallery-prev {
  left: 10px;
}

.gallery-next {
  right: 10px;
}

@media (max-width: 768px) {
  .mobile-gallery-container {
    position: relative;
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    justify-content: center;
  }

  .mobile-gallery img {
    height: 250px;
  }

  .gallery-nav {
    width: 35px;
    height: 35px;
    font-size: 20px;
  }
}

/* ======================
   Two-Column Layout (Text + Video)
   ====================== */

.cs-two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: start;
  max-width: 1000px;
  margin: 0 auto var(--spacing-lg) auto;
}

.cs-column-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: var(--spacing-md);
}

.cs-column-text p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin-bottom: var(--spacing-md);
}

.cs-column-video video {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .cs-two-column {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
}

/* Persona quote styling */
.persona-quote {
  font-style: italic;
  font-size: 1rem;
  color: var(--color-text);
  margin-bottom: var(--spacing-md);
  line-height: 1.6;
}

/* Goals and Frustrations columns */
.persona-goals-frustrations {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-lg);
}

.persona-column h4 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
}

.persona-column h4.goals-heading {
  color: #00c853;
}

.persona-column h4.frustrations-heading {
  color: #e53935;
}

.persona-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.persona-column ul li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: var(--spacing-sm);
  line-height: 1.6;
}

.persona-column ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  font-weight: bold;
}

.goals-heading + ul li::before {
  color: #00c853;
}

.frustrations-heading + ul li::before {
  color: #e53935;
}

.persona-bio {
  background: #fff9e6;
  padding: var(--spacing-md);
  border-radius: 8px;
  border-left: 4px solid var(--color-accent);
  line-height: 1.6;
}

/* Mobile responsiveness for personas */
@media (max-width: 768px) {
  .persona-goals-frustrations {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .persona-header {
    grid-template-columns: 1fr;
  }

  .persona-image {
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
  }
}

/* Persona Carousel */
.persona-carousel {
  position: relative;
  margin-top: var(--spacing-lg);
}

.persona-carousel-container {
  position: relative;
  overflow: hidden;
}

.persona-carousel-track {
  display: flex;
  transition: transform 0.4s ease-in-out;
}

.persona-carousel-slide {
  min-width: 100%;
  flex-shrink: 0;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.carousel-btn {
  background: var(--color-accent);
  color: white;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.25rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.carousel-btn:hover {
  background: var(--color-text);
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.carousel-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: scale(1);
}

.carousel-indicators {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: var(--spacing-md);
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-border);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.carousel-dot.active {
  background: var(--color-accent);
  width: 24px;
  border-radius: 5px;
}

.carousel-dot:hover {
  background: var(--color-text-light);
}
