/* CSS Variables & Design System */
:root {
  --primary-gold: #C89B3C;
  --primary-gold-hover: #B28528;
  --gold-glow: rgba(200, 155, 60, 0.25);
  --burgundy: #4A0E17;
  --burgundy-light: #6C1925;
  --dark-navy: #0B1120;
  --dark-surface: #151F32;
  --body-bg: #FAF9F6;
  --alt-bg: #F4F1EA;
  --card-bg: #FFFFFF;
  --text-main: #1E293B;
  --text-muted: #64748B;
  --border-light: #E2E8F0;
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Playfair Display', Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.bg-alt {
  background-color: var(--alt-bg);
}

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

.text-gradient {
  background: linear-gradient(135deg, var(--burgundy) 0%, var(--primary-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--dark-navy);
  line-height: 1.25;
}

.section-subtitle {
  display: inline-block;
  font-family: var(--font-main);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--primary-gold);
  margin-bottom: 8px;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.section-desc {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 40px;
}

/* Buttons (Touch Friendly) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: 2px solid transparent;
  touch-action: manipulation;
}

.btn-primary {
  background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-light) 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(74, 14, 23, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(74, 14, 23, 0.4);
}

.btn-outline {
  background: transparent;
  border-color: var(--dark-navy);
  color: var(--dark-navy);
}

.btn-outline:hover {
  background: var(--dark-navy);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-sm {
  min-height: 40px;
  padding: 8px 18px;
  font-size: 14px;
}

.btn-lg {
  min-height: 52px;
  padding: 14px 32px;
  font-size: 16px;
}

.btn-block {
  width: 100%;
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
}

.badge-gold {
  background: rgba(200, 155, 60, 0.15);
  color: var(--burgundy);
  border: 1px solid rgba(200, 155, 60, 0.3);
}

.badge-subtle {
  background: rgba(15, 23, 42, 0.06);
  color: var(--dark-navy);
}

/* Top Announcement Bar */
.top-bar {
  background: var(--dark-navy);
  color: #F1F5F9;
  padding: 10px 0;
  font-size: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.top-bar-link {
  color: var(--primary-gold);
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
}

.top-bar-link:hover {
  text-decoration: underline;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  padding: 16px 0;
  transition: all 0.3s ease;
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--burgundy) 0%, var(--primary-gold) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 4px 12px rgba(74, 14, 23, 0.2);
}

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

.brand-name {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--dark-navy);
  letter-spacing: -0.5px;
}

.brand-tagline {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.5px;
}

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

.nav-links a {
  text-decoration: none;
  color: var(--text-main);
  font-size: 15px;
  font-weight: 600;
  transition: color 0.2s ease;
  padding: 8px 0;
}

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

.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  min-height: 44px;
  min-width: 44px;
}

.mobile-toggle span {
  width: 26px;
  height: 2.5px;
  background: var(--dark-navy);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

/* Glassmorphism Cards */
.glassmorphism {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-lg);
}

/* Hero Section */
.hero {
  position: relative;
  padding: 60px 0 80px;
  background: radial-gradient(circle at top right, rgba(200, 155, 60, 0.12), transparent 50%),
              radial-gradient(circle at bottom left, rgba(74, 14, 23, 0.08), transparent 50%);
}

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.badge-group {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-description {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-size: 26px;
  font-weight: 800;
  color: var(--burgundy);
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 32px;
  background-color: var(--border-light);
}

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

.image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid #FFFFFF;
}

.image-card img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
}

.glass-float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.8);
  animation: float 4s ease-in-out infinite;
}

.card-top-right {
  top: 20px;
  right: -10px;
}

.card-bottom-left {
  bottom: 20px;
  left: -10px;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.float-icon {
  font-size: 24px;
}

.float-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark-navy);
}

.float-subtitle {
  font-size: 11px;
  color: var(--text-muted);
}

/* Rebranding Note Section */
.rebranding-card {
  padding: 40px;
  border-left: 6px solid var(--primary-gold);
}

.rebranding-badge {
  display: inline-block;
  background: var(--burgundy);
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.rebranding-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.owner-quote {
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-style: italic;
  color: #334155;
  line-height: 1.7;
  margin: 16px 0 24px;
  padding-left: 18px;
  border-left: 3px solid var(--primary-gold);
}

.owner-signature {
  display: flex;
  align-items: center;
  gap: 16px;
}

.avatar-circle {
  width: 48px;
  height: 48px;
  background: var(--burgundy);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.owner-signature div {
  display: flex;
  flex-direction: column;
}

.owner-signature strong {
  font-size: 16px;
  color: var(--dark-navy);
}

.owner-signature span {
  font-size: 13px;
  color: var(--text-muted);
}

.rebranding-highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.highlight-item {
  display: flex;
  gap: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-md);
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.hl-icon {
  font-size: 28px;
}

.highlight-item h4 {
  font-size: 16px;
  margin-bottom: 4px;
}

.highlight-item p {
  font-size: 14px;
  color: var(--text-muted);
}

/* Costume Catalog */
.catalog-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.filter-btn {
  min-height: 42px;
  padding: 8px 20px;
  border-radius: 30px;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  color: var(--text-main);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  touch-action: manipulation;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--burgundy);
  color: #FFFFFF;
  border-color: var(--burgundy);
  box-shadow: 0 4px 12px rgba(74, 14, 23, 0.2);
}

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

.catalog-card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.catalog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.card-thumb {
  position: relative;
  height: 220px;
  overflow: hidden;
}

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

.catalog-card:hover .card-thumb img {
  transform: scale(1.05);
}

.card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
}

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

.card-category {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  color: var(--primary-gold);
  margin-bottom: 6px;
}

.card-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.card-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
  flex-grow: 1;
}

.card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.card-features span {
  font-size: 12px;
  background: var(--alt-bg);
  padding: 4px 10px;
  border-radius: 6px;
  color: var(--dark-navy);
  font-weight: 500;
}

/* Keunggulan Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.feature-card {
  background: #FFFFFF;
  padding: 32px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
}

.feature-icon {
  font-size: 36px;
  margin-bottom: 14px;
}

.feature-card h3 {
  font-size: 19px;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-muted);
}

/* Rating Overview */
.rating-overview-card {
  display: grid;
  grid-template-columns: 200px 1fr 220px;
  gap: 32px;
  align-items: center;
  padding: 32px;
  margin-bottom: 40px;
}

.rating-big-score {
  text-align: center;
}

.score-number {
  font-size: 52px;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--dark-navy);
  line-height: 1;
}

.score-stars {
  font-size: 18px;
  margin: 6px 0;
}

.score-total {
  font-size: 13px;
  color: var(--text-muted);
}

.rating-bars {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
}

.bar-bg {
  flex-grow: 1;
  height: 8px;
  background: var(--border-light);
  border-radius: 4px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: var(--primary-gold);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.review-card {
  background: #FFFFFF;
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.reviewer-avatar {
  width: 40px;
  height: 40px;
  background: var(--alt-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--burgundy);
}

.reviewer-name {
  font-size: 15px;
  font-weight: 700;
}

.reviewer-meta {
  font-size: 12px;
  color: var(--text-muted);
}

.review-rating {
  margin-left: auto;
  font-size: 13px;
}

.review-body {
  font-size: 14.5px;
  font-style: italic;
  color: #334155;
  margin-bottom: 14px;
}

.review-tag {
  font-size: 12px;
  color: var(--primary-gold);
  font-weight: 600;
}

/* Location Section */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}

.location-info-card {
  background: #FFFFFF;
  padding: 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.location-info-card h3 {
  font-size: 22px;
  margin-bottom: 20px;
}

.info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 28px;
}

.info-list li {
  display: flex;
  gap: 14px;
}

.info-icon {
  font-size: 22px;
}

.info-list strong {
  display: block;
  font-size: 14px;
  color: var(--dark-navy);
}

.info-list p {
  font-size: 14.5px;
  color: var(--text-muted);
}

.status-open {
  color: #10B981;
  font-weight: 700;
}

.location-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* FAQ Section */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 18px 22px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 700;
  color: var(--dark-navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  touch-action: manipulation;
}

.faq-icon {
  font-size: 20px;
  font-weight: 400;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 22px;
  color: var(--text-muted);
  font-size: 14.5px;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 22px 18px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* Footer */
.footer {
  background: var(--dark-navy);
  color: #94A3B8;
  padding: 60px 0 24px;
}

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

.footer-brand .brand-name {
  color: #FFFFFF;
}

.footer-desc {
  margin-top: 14px;
  font-size: 14px;
  max-width: 360px;
}

.footer-links h4,
.footer-contact h4 {
  color: #FFFFFF;
  font-family: var(--font-main);
  font-size: 16px;
  margin-bottom: 18px;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: #94A3B8;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--primary-gold);
}

.footer-contact p {
  font-size: 14px;
  margin-bottom: 10px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  font-size: 13px;
}

/* Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 16px;
}

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

.modal-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.modal-card {
  position: relative;
  z-index: 2001;
  width: 100%;
  max-width: 640px;
  padding: 28px;
  border-radius: var(--radius-lg);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 32px;
  color: var(--dark-navy);
  cursor: pointer;
}

.modal-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 20px;
  align-items: center;
}

.modal-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.modal-info h3 {
  font-size: 20px;
  margin: 8px 0;
}

.modal-info p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.modal-features {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--burgundy);
  margin-bottom: 18px;
}

/* Mobile Responsiveness Improvements */
@media (max-width: 992px) {
  .hero-container,
  .rebranding-grid,
  .location-grid,
  .rating-overview-card {
    grid-template-columns: 1fr;
  }

  .rating-overview-card {
    gap: 24px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .card-top-right,
  .card-bottom-left {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 10px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 56px 0;
  }

  .top-bar-content {
    flex-direction: column;
    text-align: center;
    gap: 4px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #FFFFFF;
    flex-direction: column;
    padding: 24px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid var(--border-light);
    gap: 16px;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    font-size: 16px;
    padding: 8px 12px;
    width: 100%;
    border-radius: var(--radius-sm);
  }

  .nav-links a:hover,
  .nav-links a.active {
    background: var(--alt-bg);
  }

  .mobile-toggle {
    display: flex;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

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

  .stat-divider {
    display: none;
  }

  .rebranding-card,
  .location-info-card {
    padding: 24px;
  }

  .modal-content {
    grid-template-columns: 1fr;
  }

  .modal-card {
    padding: 20px;
  }

  .modal-img {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .brand-name {
    font-size: 17px;
  }

  .logo-icon {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }

  .filter-btn {
    width: 100%;
    text-align: center;
  }
}
