:root {
  --bg: #f8fafc;
  --card: #ffffff;
  --text: #0f172a;
  --accent: #D97706;
  --border-inactive: rgba(0, 0, 0, 0.05);
  --logo-main: #1f2937; /* Ciemny szary/antracyt */
  --logo-ai: #D97706; /* Amber brand */
}

[data-theme=dark] {
  --bg: #020617;
  --card: #1e293b;
  --text: #f8fafc;
  --accent: #FBBF24;
  --border-inactive: rgba(255, 255, 255, 0.1);
  --logo-main: #f8fafc;
  --logo-ai: #FBBF24;
}

.photo-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.photo-lightbox.active {
  opacity: 1;
  visibility: visible;
}
.photo-lightbox .lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
}
.photo-lightbox .lightbox-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.photo-lightbox .lightbox-content .lightbox-spinner {
  display: none;
  width: 36px;
  height: 36px;
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-top-color: rgba(249, 115, 22, 0.8);
  border-radius: 50%;
  animation: lightbox-spin 0.7s linear infinite;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.photo-lightbox .lightbox-content .lightbox-spinner.active {
  display: block;
}
.photo-lightbox .lightbox-content img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  display: block;
  transition: opacity 0.15s ease;
}
.photo-lightbox .lightbox-content img.lightbox-loading {
  opacity: 0;
}
.photo-lightbox .lightbox-content .lightbox-attribution {
  display: none;
  margin-top: 12px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
  max-width: 90vw;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  letter-spacing: 0.3px;
}
.photo-lightbox .lightbox-content .lightbox-attribution.active {
  display: block;
}
.photo-lightbox .lightbox-content .lightbox-attribution i {
  font-size: 0.7rem;
  margin-right: 0.3rem;
  opacity: 0.8;
}
.photo-lightbox .lightbox-content .lightbox-attribution a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: underline;
}
.photo-lightbox .lightbox-content .lightbox-attribution a:hover {
  color: white;
}
.photo-lightbox .lightbox-content .lightbox-dots {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.photo-lightbox .lightbox-content .lightbox-dots .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.photo-lightbox .lightbox-content .lightbox-dots .dot.active {
  background: white;
  transform: scale(1.35);
}
.photo-lightbox .lightbox-content .lightbox-dots .dot:hover {
  background: rgba(255, 255, 255, 0.7);
}
.photo-lightbox .lightbox-close,
.photo-lightbox .lightbox-prev,
.photo-lightbox .lightbox-next {
  position: absolute;
  z-index: 2;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  background: rgba(249, 115, 22, 0.5);
  transition: background 0.2s, transform 0.15s;
}
.photo-lightbox .lightbox-close svg,
.photo-lightbox .lightbox-prev svg,
.photo-lightbox .lightbox-next svg {
  display: block;
  flex-shrink: 0;
}
.photo-lightbox .lightbox-close:hover,
.photo-lightbox .lightbox-prev:hover,
.photo-lightbox .lightbox-next:hover {
  background: rgba(249, 115, 22, 0.75);
}
.photo-lightbox .lightbox-close:active,
.photo-lightbox .lightbox-prev:active,
.photo-lightbox .lightbox-next:active {
  transform: scale(0.92);
}
.photo-lightbox .lightbox-close {
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
}
.photo-lightbox .lightbox-prev,
.photo-lightbox .lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
}
.photo-lightbox .lightbox-prev:hover,
.photo-lightbox .lightbox-next:hover {
  transform: translateY(-50%) scale(1.08);
}
.photo-lightbox .lightbox-prev:active,
.photo-lightbox .lightbox-next:active {
  transform: translateY(-50%) scale(0.92);
}
@media (max-width: 576px) {
  .photo-lightbox .lightbox-prev,
  .photo-lightbox .lightbox-next {
    width: 40px;
    height: 40px;
  }
  .photo-lightbox .lightbox-prev svg,
  .photo-lightbox .lightbox-next svg {
    width: 20px;
    height: 20px;
  }
}
.photo-lightbox .lightbox-prev {
  left: 16px;
}
.photo-lightbox .lightbox-next {
  right: 16px;
}
@media (max-width: 576px) {
  .photo-lightbox .lightbox-prev {
    left: 8px;
  }
  .photo-lightbox .lightbox-next {
    right: 8px;
  }
}

@keyframes lightbox-spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.photo-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #fdf6ec 0%, #fbe9c8 55%, #f5d49a 100%);
  color: #C2710A;
  user-select: none;
}
.photo-placeholder__pattern {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: #E8850A;
  pointer-events: none;
}
.photo-placeholder__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 12px;
  text-align: center;
}
.photo-placeholder__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(194, 113, 10, 0.18);
}
.photo-placeholder__icon i {
  font-size: 22px;
  color: #C2710A;
}
.photo-placeholder__label {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #C2710A;
  opacity: 0.85;
}
.photo-placeholder--hero {
  position: relative;
  inset: auto;
  min-height: 320px;
  border-radius: 16px;
}
.photo-placeholder--hero .photo-placeholder__icon {
  width: 84px;
  height: 84px;
}
.photo-placeholder--hero .photo-placeholder__icon i {
  font-size: 34px;
}
.photo-placeholder--hero .photo-placeholder__label {
  font-size: 1rem;
}
.photo-placeholder--thumb .photo-placeholder__icon {
  width: 40px;
  height: 40px;
}
.photo-placeholder--thumb .photo-placeholder__icon i {
  font-size: 16px;
}
.photo-placeholder--thumb .photo-placeholder__label {
  font-size: 0.7rem;
}

.amb-endorsement {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.5rem;
  font-size: 0.72rem;
}
.amb-endorsement__label {
  color: #a8a29e;
  font-weight: 400;
  white-space: nowrap;
}
.amb-endorsement__name {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: #57534e;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s;
}
.amb-endorsement__name:hover {
  color: #292524;
  text-decoration: underline;
}
.amb-endorsement__avatar {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 1.5px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}
.amb-endorsement__avatar-fallback {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #e7e5e4;
  box-shadow: 0 0 0 1.5px rgba(0, 0, 0, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
  font-weight: 700;
  color: #78716c;
  flex-shrink: 0;
  letter-spacing: 0;
}
.amb-endorsement__avatar-fallback--ig {
  background: linear-gradient(135deg, #f09433, #dc2743, #bc1888);
  color: #fff;
  font-size: 0.6rem;
}
.amb-endorsement__sep {
  color: #a8a29e;
  font-weight: 400;
  margin: 0 0.05rem;
}

.amb-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  border: 1px solid #f59e0b;
  font-size: 0.8rem;
  font-weight: 600;
  color: #92400e;
  text-decoration: none;
  transition: all 0.2s ease;
}
.amb-badge:hover {
  background: linear-gradient(135deg, #fde68a, #fcd34d);
  color: #78350f;
  text-decoration: none;
  transform: translateY(-1px);
}
.amb-badge i {
  font-size: 0.75rem;
}
.amb-badge__avatar {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(245, 158, 11, 0.3);
}
.amb-badge--review {
  background: linear-gradient(135deg, #f5f3ff, #ede9fe);
  border-color: #c4b5fd;
  color: #6d28d9;
}
.amb-badge--review:hover {
  background: linear-gradient(135deg, #ede9fe, #ddd6fe);
  color: #5b21b6;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.3);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(249, 115, 22, 0);
  }
}
@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
@keyframes grain {
  0%, 100% {
    transform: translate(0, 0);
  }
  10% {
    transform: translate(-5%, -10%);
  }
  30% {
    transform: translate(3%, -15%);
  }
  50% {
    transform: translate(12%, 9%);
  }
  70% {
    transform: translate(9%, 4%);
  }
  90% {
    transform: translate(-1%, 7%);
  }
}
.reveal-section {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.reveal-section:nth-child(1) {
  animation-delay: 0.08s;
}

.reveal-section:nth-child(2) {
  animation-delay: 0.16s;
}

.reveal-section:nth-child(3) {
  animation-delay: 0.24s;
}

.reveal-section:nth-child(4) {
  animation-delay: 0.32s;
}

.reveal-section:nth-child(5) {
  animation-delay: 0.4s;
}

.reveal-section:nth-child(6) {
  animation-delay: 0.48s;
}

.reveal-section:nth-child(7) {
  animation-delay: 0.56s;
}

.reveal-section:nth-child(8) {
  animation-delay: 0.64s;
}

.company-detail-page {
  background: #FAFAF8;
  min-height: 100vh;
  overflow-x: hidden;
}

.company-header {
  position: relative;
  background: #FAFAF8;
  padding: 2rem 0 2.5rem;
  overflow: hidden;
  border-bottom: 1px solid #E5E2DD;
}
.company-header::after {
  content: "";
  position: absolute;
  top: -40%;
  right: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.company-header__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.company-header__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(249, 115, 22, 0.1);
  color: #E8850A;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
  border: 1px solid rgba(249, 115, 22, 0.15);
  animation: fadeIn 0.5s ease both;
  animation-delay: 0.1s;
}
.company-header__badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #E8850A;
  animation: pulseGlow 2s infinite;
}
.company-header__title-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
  animation: fadeInUp 0.6s ease both;
  animation-delay: 0.12s;
}
.company-header__logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 14px;
  background: #fff;
  padding: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.04);
  flex-shrink: 0;
}
.company-header__title {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 800;
  color: #151210;
  margin: 0;
  letter-spacing: -0.025em;
  line-height: 1.15;
}
.company-header__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s ease both;
  animation-delay: 0.2s;
}
.company-header__address {
  font-size: 0.95rem;
  color: #6b7280;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s ease both;
  animation-delay: 0.2s;
}
.company-header__address i {
  margin-right: 0.4rem;
  color: #E8850A;
}
.company-header__actions-wrap {
  position: relative;
  animation: fadeInUp 0.6s ease both;
  animation-delay: 0.3s;
}
.company-header__actions-wrap.has-overflow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50px;
  background: linear-gradient(to right, transparent, #FAFAF8);
  pointer-events: none;
  z-index: 1;
}
.company-header__actions {
  display: flex;
  gap: 0.65rem;
}
.company-header__actions .header-btn {
  white-space: nowrap;
  flex-shrink: 0;
}
.company-header__actions-arrow {
  display: none;
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  color: #374151;
  font-size: 0.8rem;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
}
.company-header__actions-arrow:hover {
  background: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.14);
  transform: translateY(-50%) scale(1.05);
}
.company-header__actions-arrow.is-visible {
  display: flex;
  align-items: center;
  justify-content: center;
}
.company-header__actions-arrow.is-flipped i {
  transform: rotate(180deg);
}
.company-header__quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.85rem;
  animation: fadeInUp 0.6s ease both;
  animation-delay: 0.35s;
}

.company-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: center;
  font-size: 0.78rem;
  margin-bottom: 1.25rem;
  animation: fadeIn 0.4s ease both;
}
.company-breadcrumb a {
  color: #6b7280;
  text-decoration: none;
  transition: color 0.2s;
}
.company-breadcrumb a:hover {
  color: #E8850A;
}
.company-breadcrumb span {
  color: #9ca3af;
}

.company-mobile-info {
  display: none;
  padding-top: 1.25rem;
}
@media (max-width: 768px) {
  .company-mobile-info {
    display: block;
  }
}

.company-mobile-menu-section {
  display: none;
}
@media (max-width: 768px) {
  .company-mobile-menu-section {
    display: block;
    padding: 0.75rem 0 0;
  }
}

@media (max-width: 768px) {
  .company-section--menu-block {
    display: none;
  }
}

.company-mobile-hours {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  margin-top: 0.75rem;
  overflow: hidden;
}
.company-mobile-hours__toggle {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.1rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: #151210;
  list-style: none;
}
.company-mobile-hours__toggle::-webkit-details-marker {
  display: none;
}
.company-mobile-hours__toggle i:first-child {
  color: #E8850A;
  font-size: 0.9rem;
}
.company-mobile-hours__toggle span {
  flex: 1;
}
.company-mobile-hours__chevron {
  font-size: 0.75rem;
  color: #9ca3af;
  transition: transform 0.2s ease;
}
.company-mobile-hours[open] .company-mobile-hours__chevron {
  transform: rotate(180deg);
}
.company-mobile-hours__body {
  padding: 0 1.1rem 1rem;
}

.price-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  background: rgba(249, 115, 22, 0.08);
  padding: 0.3rem 0.7rem;
  border-radius: 8px;
  border: 1px solid rgba(249, 115, 22, 0.15);
  cursor: default;
}
.price-indicator__sign {
  font-size: 0.75rem;
  font-weight: 800;
  color: #d1d5db;
  transition: color 0.2s;
  letter-spacing: -0.02em;
}
.price-indicator__sign--active {
  color: #E8850A;
}
.price-indicator--level-1 {
  border-color: rgba(34, 197, 94, 0.25);
  background: rgba(34, 197, 94, 0.06);
}
.price-indicator--level-1 .price-indicator__sign--active {
  color: #16a34a;
}
.price-indicator--level-2 {
  border-color: rgba(34, 197, 94, 0.2);
  background: rgba(34, 197, 94, 0.05);
}
.price-indicator--level-2 .price-indicator__sign--active {
  color: #22c55e;
}
.price-indicator--level-3 {
  border-color: rgba(249, 115, 22, 0.15);
  background: rgba(249, 115, 22, 0.06);
}
.price-indicator--level-3 .price-indicator__sign--active {
  color: #E8850A;
}
.price-indicator--level-4 {
  border-color: rgba(239, 68, 68, 0.15);
  background: rgba(239, 68, 68, 0.05);
}
.price-indicator--level-4 .price-indicator__sign--active {
  color: #ef4444;
}
.price-indicator--level-5 {
  border-color: rgba(168, 85, 247, 0.2);
  background: rgba(168, 85, 247, 0.05);
}
.price-indicator--level-5 .price-indicator__sign--active {
  color: #a855f7;
}
.price-indicator__label {
  font-size: 0.7rem;
  font-weight: 600;
  color: #6b7280;
  margin-left: 0.25rem;
}
.price-indicator--sm {
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
}
.price-indicator--sm .price-indicator__sign {
  font-size: 0.65rem;
}
.price-indicator--sm .price-indicator__label {
  font-size: 0.6rem;
}

.header-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.3rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.header-btn--primary {
  background: #f9fafb;
  border: 1.5px solid #e5e7eb;
  color: #374151;
}
.header-btn--primary i {
  color: #9ca3af;
  transition: color 0.18s ease;
}
.header-btn--primary:hover {
  background: #fff;
  border-color: rgba(232, 133, 10, 0.35);
  color: #E8850A;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}
.header-btn--primary:hover i {
  color: #E8850A;
}
.header-btn--secondary {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(0, 0, 0, 0.08);
  color: #374151;
}
.header-btn--secondary i {
  color: #9ca3af;
  transition: color 0.18s ease;
}
.header-btn--secondary:hover {
  background: #fff;
  border-color: rgba(232, 133, 10, 0.25);
  color: #374151;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.header-btn--order {
  background: #f0fdf4;
  border: 1.5px solid #bbf7d0;
  color: #15803d;
}
.header-btn--order i {
  color: #4ade80;
  transition: color 0.18s ease;
}
.header-btn--order:hover {
  background: #dcfce7;
  border-color: #86efac;
  color: #15803d;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.12);
}

.company-quick-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 1rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
  color: #374151;
  background: #FAFAF8;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.company-quick-link i {
  font-size: 0.8rem;
  width: 16px;
  text-align: center;
  flex-shrink: 0;
}
.company-quick-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  color: #374151;
  border-color: rgba(0, 0, 0, 0.12);
}
.company-quick-link--fb {
  color: #2563eb;
  border-color: rgba(37, 99, 235, 0.15);
}
.company-quick-link--fb i {
  color: #2563eb;
}
.company-quick-link--fb:hover {
  background: #eff6ff;
  color: #2563eb;
}
.company-quick-link--ig {
  color: #db2777;
  border-color: rgba(219, 39, 119, 0.12);
}
.company-quick-link--ig i {
  color: #db2777;
}
.company-quick-link--ig:hover {
  background: #fdf2f8;
  color: #db2777;
}
@media (max-width: 480px) {
  .company-quick-link {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
  }
}

.company-gallery__grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 200px;
}
@media (max-width: 768px) {
  .company-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
}
@media (max-width: 480px) {
  .company-gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 140px;
  }
}

.company-gallery--count-1 {
  grid-template-columns: 1fr;
  grid-auto-rows: 340px;
}
@media (max-width: 480px) {
  .company-gallery--count-1 {
    grid-auto-rows: 220px;
  }
}

.company-gallery--count-2 {
  grid-template-columns: 1.3fr 1fr;
  grid-auto-rows: 280px;
}
@media (max-width: 480px) {
  .company-gallery--count-2 {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }
}

.company-gallery--count-3 {
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: 180px 180px;
}
.company-gallery--count-3 .company-gallery__item:first-child {
  grid-row: 1/3;
}
@media (max-width: 768px) {
  .company-gallery--count-3 {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .company-gallery--count-3 .company-gallery__item:first-child {
    grid-column: 1/-1;
    grid-row: auto;
  }
}

.company-gallery--count-4 {
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: 220px 180px;
}
.company-gallery--count-4 .company-gallery__item:first-child {
  grid-row: 1/2;
  grid-column: 1/-1;
}
.company-gallery--count-4 .company-gallery__item:nth-child(2) {
  grid-column: 1;
}
.company-gallery--count-4 .company-gallery__item:nth-child(3) {
  grid-column: 2;
}
.company-gallery--count-4 .company-gallery__item:nth-child(4) {
  grid-column: 1/-1;
  grid-template-rows: 160px;
}
.company-gallery--count-4 {
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 240px 180px;
}
.company-gallery--count-4 .company-gallery__item:first-child {
  grid-column: 1/3;
  grid-row: 1/2;
}
.company-gallery--count-4 .company-gallery__item:nth-child(2) {
  grid-column: 3;
  grid-row: 1;
}
.company-gallery--count-4 .company-gallery__item:nth-child(3) {
  grid-column: 1/2;
  grid-row: 2;
}
.company-gallery--count-4 .company-gallery__item:nth-child(4) {
  grid-column: 2/4;
  grid-row: 2;
}
@media (max-width: 768px) {
  .company-gallery--count-4 {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .company-gallery--count-4 .company-gallery__item:first-child {
    grid-column: 1/-1;
    grid-row: auto;
  }
  .company-gallery--count-4 .company-gallery__item:nth-child(2),
  .company-gallery--count-4 .company-gallery__item:nth-child(3),
  .company-gallery--count-4 .company-gallery__item:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
  }
}

.company-gallery--count-5 {
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: 240px 180px;
}
.company-gallery--count-5 .company-gallery__item:first-child {
  grid-column: 1/2;
  grid-row: 1/3;
}
.company-gallery--count-5 .company-gallery__item:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}
.company-gallery--count-5 .company-gallery__item:nth-child(3) {
  grid-column: 3;
  grid-row: 1;
}
.company-gallery--count-5 .company-gallery__item:nth-child(4) {
  grid-column: 2;
  grid-row: 2;
}
.company-gallery--count-5 .company-gallery__item:nth-child(5) {
  grid-column: 3;
  grid-row: 2;
}
@media (max-width: 768px) {
  .company-gallery--count-5 {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .company-gallery--count-5 .company-gallery__item {
    grid-column: auto !important;
    grid-row: auto !important;
  }
  .company-gallery--count-5 .company-gallery__item:first-child {
    grid-column: 1/-1 !important;
  }
}

.company-gallery--count-6,
.company-gallery--count-6plus {
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 240px 180px;
}
.company-gallery--count-6 .company-gallery__item:first-child,
.company-gallery--count-6plus .company-gallery__item:first-child {
  grid-column: 1/3;
  grid-row: 1;
}
@media (max-width: 768px) {
  .company-gallery--count-6,
  .company-gallery--count-6plus {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .company-gallery--count-6 .company-gallery__item:first-child,
  .company-gallery--count-6plus .company-gallery__item:first-child {
    grid-column: 1/-1;
    grid-row: auto;
  }
}

.company-gallery__item {
  cursor: pointer;
  border-radius: 16px;
  overflow: hidden;
  background: #ede9e3;
  position: relative;
}
.company-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.company-gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.18) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  border-radius: 16px;
}
.company-gallery__item:hover img {
  transform: scale(1.06);
}
.company-gallery__item:hover::after {
  opacity: 1;
}

.company-gallery__count {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.7rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  z-index: 2;
  pointer-events: none;
}
.company-gallery__count i {
  font-size: 0.7rem;
}

.company-gallery__attribution {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 500;
  padding: 0.25rem 0.55rem;
  border-radius: 6px;
  max-width: calc(100% - 16px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  z-index: 2;
  letter-spacing: 0.2px;
}
.company-gallery__attribution i {
  font-size: 0.6rem;
  margin-right: 0.2rem;
  opacity: 0.85;
}
.company-gallery__attribution a {
  color: inherit;
  text-decoration: none;
}
.company-gallery__attribution a:hover {
  text-decoration: underline;
}

.company-gallery__google-note {
  margin: 0.75rem 0 0;
  font-size: 0.75rem;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.gallery-show-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  padding: 0.5rem 1.25rem;
  background: none;
  border: 1.5px solid var(--color-primary, #e85d26);
  color: var(--color-primary, #e85d26);
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.gallery-show-all-btn:hover {
  background: var(--color-primary, #e85d26);
  color: #fff;
}
.gallery-show-all-btn i {
  font-size: 0.8rem;
}

.company-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2rem;
  padding-top: 2rem;
  padding-bottom: 3rem;
  align-items: start;
}
@media (max-width: 768px) {
  .company-layout {
    grid-template-columns: 1fr;
  }
}

.company-section {
  background: #fff;
  border-radius: 16px;
  padding: 1.75rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 16px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.3s ease;
}
.company-section:hover {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06), 0 8px 24px rgba(0, 0, 0, 0.05);
}
.company-section__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #151210;
  margin: 0 0 1.1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #FAFAF8;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.company-section__title::before {
  content: "";
  width: 3px;
  height: 18px;
  background: linear-gradient(to bottom, #E8850A, #F5A623);
  border-radius: 2px;
  flex-shrink: 0;
}
.company-section__meta {
  font-size: 0.8rem;
  color: #94a3b8;
  margin: -0.5rem 0 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.company-section__meta i {
  font-size: 0.7rem;
}
.company-section__unavailable {
  color: #94a3b8;
  font-size: 0.9rem;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.company-section__unavailable i {
  font-size: 0.8rem;
}
.company-section--inactive {
  opacity: 0.55;
  pointer-events: none;
  user-select: none;
}

@media (min-width: 768px) {
  .company-section--menu-block {
    display: none;
  }
}

.company-lead {
  font-size: 1.02rem;
  color: #374151;
  line-height: 1.75;
  margin: 0;
}

.company-body {
  color: #374151;
  line-height: 1.75;
  font-size: 0.95rem;
}

.amb-reviews {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.amb-review {
  background: #fffbf5;
  border: 1px solid rgba(245, 158, 11, 0.15);
  border-radius: 12px;
  overflow: hidden;
}
.amb-review__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.amb-review__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s;
}
.amb-review__author:hover {
  opacity: 0.8;
  text-decoration: none;
}
.amb-review__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(245, 158, 11, 0.25);
  flex-shrink: 0;
}
.amb-review__avatar-placeholder {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.amb-review__avatar-placeholder i {
  font-size: 0.85rem;
  color: #92400e;
}
.amb-review__author-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.amb-review__name {
  font-size: 0.9rem;
  font-weight: 700;
  color: #151210;
}
.amb-review__platform {
  font-size: 0.75rem;
  color: #94a3b8;
}
.amb-review__platform i {
  font-size: 0.7rem;
  margin-right: 0.15rem;
}
.amb-review__date {
  font-size: 0.75rem;
  color: #94a3b8;
  flex-shrink: 0;
}
.amb-review__date i {
  font-size: 0.65rem;
  margin-right: 0.2rem;
}
.amb-review__note {
  font-size: 0.88rem;
  color: #475569;
  line-height: 1.7;
  padding: 0.75rem 1.25rem;
  margin: 0 1.25rem 1rem;
  background: #fff;
  border-radius: 10px;
  border-left: 3px solid #f59e0b;
}
.amb-review__footer {
  padding: 0.75rem 1.25rem;
  border-top: 1px solid rgba(245, 158, 11, 0.1);
}
.amb-review__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #7c3aed;
  text-decoration: none;
  padding: 0.3rem 0.75rem;
  background: #f5f3ff;
  border-radius: 20px;
  border: 1px solid #e9e5ff;
  transition: all 0.2s;
}
.amb-review__link:hover {
  background: #ede9fe;
  color: #6d28d9;
  text-decoration: none;
}
.amb-review__link i {
  font-size: 0.85rem;
}

.company-attrs {
  margin-bottom: 1.25rem;
}
.company-attrs:last-child {
  margin-bottom: 0;
}
.company-attrs__label {
  font-size: 0.72rem;
  font-weight: 700;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.company-attrs__label i {
  font-size: 0.65rem;
  opacity: 0.6;
}

.mt-1 {
  margin-top: 0.25rem;
}

.company-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.company-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.9rem;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  background: #f3f4f6;
  color: #374151;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
}
.company-tag i {
  font-size: 0.75rem;
  width: 16px;
  text-align: center;
  flex-shrink: 0;
}
.company-tag:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}
.company-tag--cuisine {
  background: #fef3c7;
  color: #92400e;
  border: 1px solid rgba(245, 158, 11, 0.2);
}
.company-tag--cuisine i {
  color: #d97706;
}
.company-tag--cuisine:hover {
  background: #fde68a;
  border-color: rgba(245, 158, 11, 0.35);
}
.company-tag--atmosphere {
  background: #f3e8ff;
  color: #6b21a8;
  border: 1px solid rgba(139, 92, 246, 0.15);
}
.company-tag--atmosphere i {
  color: #7c3aed;
}
.company-tag--atmosphere:hover {
  background: #e9d5ff;
  border-color: rgba(139, 92, 246, 0.3);
}
.company-tag--service {
  background: #dbeafe;
  color: #1e40af;
  border: 1px solid rgba(37, 99, 235, 0.15);
}
.company-tag--service i {
  color: #2563eb;
}
.company-tag--service:hover {
  background: #bfdbfe;
  border-color: rgba(37, 99, 235, 0.3);
}
.company-tag--amenity {
  background: #dcfce7;
  color: #166534;
  border: 1px solid rgba(16, 185, 129, 0.15);
}
.company-tag--amenity i {
  color: #059669;
}
.company-tag--amenity:hover {
  background: #bbf7d0;
  border-color: rgba(16, 185, 129, 0.3);
}
.company-tag--reservation {
  background: #ccfbf1;
  color: #115e59;
  border: 1px solid rgba(20, 184, 166, 0.2);
}
.company-tag--reservation i {
  color: #0d9488;
}
.company-tag--reservation:hover {
  background: #99f6e4;
  border-color: rgba(20, 184, 166, 0.35);
}
.company-tag--reservation-link {
  background: #0d9488;
  color: #fff;
  border: 1px solid #0d9488;
  text-decoration: none;
  cursor: pointer;
}
.company-tag--reservation-link i {
  color: #fff;
}
.company-tag--reservation-link:hover {
  background: #0f766e;
  border-color: #0f766e;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.3);
}
.company-tag--order-link {
  background: #16a34a;
  color: #fff;
  border: 1px solid #16a34a;
  text-decoration: none;
  cursor: pointer;
}
.company-tag--order-link i {
  color: #fff;
}
.company-tag--order-link:hover {
  background: #15803d;
  border-color: #15803d;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.25);
}
.company-tag--offer {
  background: #ffedd5;
  color: #9a3412;
  border: 1px solid rgba(249, 115, 22, 0.2);
}
.company-tag--offer i {
  color: #ea580c;
}
.company-tag--offer:hover {
  background: #fed7aa;
  border-color: rgba(249, 115, 22, 0.35);
}
.company-tag--kids {
  background: #fce7f3;
  color: #9d174d;
  border: 1px solid rgba(236, 72, 153, 0.2);
}
.company-tag--kids i {
  color: #db2777;
}
.company-tag--kids:hover {
  background: #fbcfe8;
  border-color: rgba(236, 72, 153, 0.35);
}
.company-tag--events {
  background: #fffbeb;
  color: #78350f;
  border: 1px solid rgba(245, 158, 11, 0.2);
}
.company-tag--events i {
  color: #d97706;
}
.company-tag--events:hover {
  background: #fef3c7;
  border-color: rgba(245, 158, 11, 0.35);
}
.company-tag--price {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid rgba(16, 185, 129, 0.25);
  font-weight: 600;
}
.company-tag--price i {
  color: #059669;
}
.company-tag--price:hover {
  background: #a7f3d0;
  border-color: rgba(16, 185, 129, 0.4);
}
.company-tag--dish {
  background: #fef3c7;
  color: #92400e;
  border: 1px solid rgba(245, 158, 11, 0.2);
}
.company-tag--dish i {
  color: #d97706;
}
.company-tag--dish:hover {
  background: #fde68a;
  border-color: rgba(245, 158, 11, 0.35);
}
.company-tag--highlight {
  background: #e0f2fe;
  color: #075985;
  border: 1px solid rgba(14, 165, 233, 0.2);
}
.company-tag--highlight i {
  color: #0284c7;
}
.company-tag--highlight:hover {
  background: #bae6fd;
  border-color: rgba(14, 165, 233, 0.35);
}

.company-section-menus {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}
.company-section-menus__label {
  font-size: 0.72rem;
  font-weight: 700;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.company-section-menus__label i {
  font-size: 0.65rem;
  opacity: 0.6;
}
.company-section-menus__link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1rem;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #f3f4f6;
  color: #374151;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.company-section-menus__link > i:first-child {
  color: #E8850A;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.company-section-menus__link > span {
  flex: 1;
}
.company-section-menus__arrow {
  font-size: 0.7rem;
  color: #9ca3af;
  transition: transform 0.2s ease;
}
.company-section-menus__link:hover {
  background: #fff7ed;
  border-color: rgba(232, 133, 10, 0.3);
  color: #92400e;
  transform: translateX(3px);
}
.company-section-menus__link:hover .company-section-menus__arrow {
  transform: translateX(3px);
  color: #E8850A;
}

.company-offer-block {
  margin-bottom: 1.25rem;
}
.company-offer-block:last-child {
  margin-bottom: 0;
}
.company-offer-block__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #374151;
  margin-bottom: 0.5rem;
}
.company-offer-block__title i {
  margin-right: 0.4rem;
  color: #F5A623;
}
.company-offer-block p {
  color: #4B5563;
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
}

.company-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.company-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.15rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  font-size: 0.87rem;
  font-weight: 600;
  text-decoration: none;
  color: #374151;
  background: #fff;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.company-link-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  color: #374151;
}
.company-link-btn--fb {
  color: #2563eb;
  border-color: rgba(37, 99, 235, 0.15);
}
.company-link-btn--fb:hover {
  background: #eff6ff;
  color: #2563eb;
}
.company-link-btn--ig {
  color: #db2777;
  border-color: rgba(219, 39, 119, 0.12);
}
.company-link-btn--ig:hover {
  background: #fdf2f8;
  color: #db2777;
}

.company-sidebar {
  position: sticky;
  top: 80px;
}
.company-sidebar__card {
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 16px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.04);
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .company-sidebar__card--address {
    display: none;
  }
}
.company-sidebar__price {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #FAFAF8;
}
.company-sidebar__price-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #374151;
}
.company-sidebar__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #151210;
  margin: 0 0 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #FAFAF8;
}
.company-sidebar__address {
  font-style: normal;
  color: #374151;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.company-sidebar__row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  margin: 0.5rem 0;
  min-width: 0;
}
.company-sidebar__row i {
  color: #9ca3af;
  width: 16px;
  flex-shrink: 0;
  text-align: center;
}
.company-sidebar__row a {
  color: #374151;
  text-decoration: none;
  transition: color 0.2s;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.company-sidebar__row a:hover {
  color: #E8850A;
}
.company-sidebar__recommended {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #FAFAF8;
  font-size: 0.85rem;
  color: #6b7280;
}
.company-sidebar__recommended i {
  color: #db2777;
  margin-right: 0.3rem;
}
.company-sidebar__recommended a {
  color: #374151;
  font-weight: 600;
  text-decoration: none;
}
.company-sidebar__recommended a:hover {
  color: #db2777;
}
.company-sidebar__socials {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid #FAFAF8;
}
.company-sidebar__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  flex: 1;
  padding: 0.4rem 0.75rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.company-sidebar__link i {
  font-size: 0.85rem;
}
.company-sidebar__link--fb {
  background: #f0f1fe;
  color: #1877f2;
}
.company-sidebar__link--fb:hover {
  background: #1877f2;
  color: #fff;
}
.company-sidebar__link--ig {
  background: #fef0f5;
  color: #e1306c;
}
.company-sidebar__link--ig:hover {
  background: #e1306c;
  color: #fff;
}
.company-sidebar__menu-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid #FAFAF8;
}
.company-sidebar__menu-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: rgba(232, 133, 10, 0.06);
  color: #E8850A;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.company-sidebar__menu-link i {
  font-size: 0.8rem;
}
.company-sidebar__menu-link:hover {
  background: #E8850A;
  color: #fff;
}
.company-sidebar__menu-meta {
  font-size: 0.75rem;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding-left: 0.75rem;
}
.company-sidebar__menu-meta i {
  font-size: 0.65rem;
}
.company-sidebar__map-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  background: #f9fafb;
  color: #374151;
  border: 1.5px solid #e5e7eb;
  border-radius: 16px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.company-sidebar__map-btn i {
  color: #9ca3af;
  transition: color 0.18s ease;
}
.company-sidebar__map-btn:hover {
  transform: translateY(-1px);
  background: #fff;
  border-color: rgba(232, 133, 10, 0.35);
  color: #E8850A;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}
.company-sidebar__map-btn:hover i {
  color: #E8850A;
}
@media (max-width: 768px) {
  .company-sidebar__map-btn--sidebar {
    display: none;
  }
}
@media (max-width: 768px) {
  .company-sidebar__card--hours {
    display: none;
  }
}

.company-hours {
  width: 100%;
  border-collapse: collapse;
}
.company-hours__row--open .company-hours__day {
  color: #151210;
  font-weight: 600;
}
.company-hours__row--closed .company-hours__day {
  color: #9ca3af;
}
.company-hours__row--closed .company-hours__time {
  color: #9ca3af;
}
.company-hours__day, .company-hours__time {
  padding: 0.5rem 0.25rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  font-size: 0.84rem;
}
.company-hours__day {
  width: 115px;
}
.company-hours__time {
  text-align: right;
  color: #374151;
  font-variant-numeric: tabular-nums;
}
.company-hours__badge {
  display: inline-block;
  padding: 0.12rem 0.55rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.company-hours__badge--closed {
  background: #fee2e2;
  color: #991b1b;
}
.company-hours__divider {
  margin: 0.85rem 0 0.75rem;
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.company-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.87rem;
  font-weight: 600;
}
.company-status__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
  background: #9ca3af;
}
.company-status__text {
  color: #6b7280;
}
.company-status--open .company-status__dot {
  background: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}
.company-status--open .company-status__text {
  color: #065f46;
}
.company-status--closed .company-status__dot {
  background: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12);
}
.company-status--closed .company-status__text {
  color: #991b1b;
}

.company-search-float {
  position: fixed;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  transition: bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.company-search-float.is-visible {
  bottom: 24px;
  pointer-events: all;
}
.company-search-float__bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(26, 26, 46, 0.92);
  backdrop-filter: blur(16px);
  color: #fff;
  padding: 0.7rem 0.85rem 0.7rem 1.25rem;
  border-radius: 999px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  white-space: nowrap;
  font-size: 0.88rem;
}
.company-search-float__bar .company-search-float__robot {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(232, 133, 10, 0.15);
  border-radius: 50%;
  flex-shrink: 0;
  animation: floatRobot 3s ease-in-out infinite;
}
.company-search-float__bar .company-search-float__robot img {
  width: 16px;
  height: 16px;
  display: block;
}
.company-search-float__text {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}
@media (max-width: 576px) {
  .company-search-float__text {
    display: none;
  }
}
.company-search-float__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 1rem;
  background: #E8850A;
  color: #fff;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.82rem;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.company-search-float__btn:hover {
  transform: scale(1.04);
  color: #fff;
  box-shadow: 0 4px 16px rgba(249, 115, 22, 0.4);
}
.company-search-float__btn i {
  font-size: 0.72rem;
}

@keyframes floatRobot {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
}
.company-cta {
  position: relative;
  background: #09090B;
  padding: 4rem 0 3rem;
  margin-bottom: 0;
  overflow: hidden;
}
.company-cta__box {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 2rem 2.5rem;
}
@media (max-width: 576px) {
  .company-cta__box {
    flex-direction: column;
    text-align: center;
    padding: 1.75rem 1.5rem;
  }
}
.company-cta__content {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
@media (max-width: 576px) {
  .company-cta__content {
    flex-direction: column;
  }
}
.company-cta__content strong {
  display: block;
  font-size: 1.15rem;
  color: #fff;
}
.company-cta__content p {
  margin: 0.3rem 0 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}
.company-cta__icon {
  width: 2.25rem;
  height: 2.25rem;
  flex-shrink: 0;
}
.company-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1.8rem;
  background: #E8850A;
  color: #fff;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s ease;
}
.company-cta__btn:hover {
  background: #B45309;
  transform: translateY(-2px);
  color: #fff;
}

.company-discounts-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}

.company-discount-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: #fffbeb;
  border: 1.5px solid #fde68a;
  border-radius: 12px;
  padding: 0.75rem 1rem;
  transition: all 0.2s ease;
}
.company-discount-row:hover {
  border-color: #fbbf24;
  box-shadow: 0 2px 8px rgba(217, 119, 6, 0.1);
}
.company-discount-row__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #fef3c7;
  color: #d97706;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  margin-top: 0.1rem;
}
.company-discount-row__content {
  flex: 1;
  min-width: 0;
}
.company-discount-row__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #151210;
  line-height: 1.3;
}
.company-discount-row__desc {
  font-size: 0.82rem;
  color: #6b7280;
  line-height: 1.4;
  margin-top: 0.15rem;
}

.weekly-promos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}

.weekly-promo-card {
  position: relative;
  background: #fff;
  border-radius: 14px;
  border: 1.5px solid #e5e7eb;
  overflow: hidden;
  transition: all 0.25s ease;
}
.weekly-promo-card:hover {
  border-color: #E8850A;
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.12);
  transform: translateY(-2px);
}
.weekly-promo-card--today {
  border-color: #E8850A;
  box-shadow: 0 4px 16px rgba(249, 115, 22, 0.15);
}
.weekly-promo-card__badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: #E8850A;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(249, 115, 22, 0.3);
}
.weekly-promo-card__image {
  width: 100%;
  height: 180px;
  overflow: hidden;
  background: #faf8f5;
}
.weekly-promo-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.5rem;
  transition: transform 0.3s ease;
}
.weekly-promo-card:hover .weekly-promo-card__image img {
  transform: scale(1.05);
}
.weekly-promo-card__content {
  padding: 0.9rem 1rem 1rem;
}
.weekly-promo-card__days {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: #E8850A;
  margin-bottom: 0.3rem;
}
.weekly-promo-card__time {
  font-size: 0.75rem;
  color: #6b7280;
  margin-bottom: 0.4rem;
}
.weekly-promo-card__time i {
  margin-right: 0.2rem;
}
.weekly-promo-card__title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #151210;
  line-height: 1.2;
  margin-bottom: 0.3rem;
  font-family: "DM Serif Display", Georgia, serif;
}
.weekly-promo-card__desc {
  font-size: 0.82rem;
  color: #4b5563;
  line-height: 1.4;
}

@media (max-width: 480px) {
  .weekly-promos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
  }
  .weekly-promo-card__title {
    font-size: 1.1rem;
  }
  .weekly-promo-card__image {
    height: 120px;
  }
}
.company-faq {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.company-faq__item {
  border: 1.5px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.company-faq__item[open] {
  border-color: #c7d2fe;
  background: #fafaff;
}
.company-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 1.15rem;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1e293b;
  list-style: none;
  user-select: none;
  transition: background 0.15s;
}
.company-faq__question::-webkit-details-marker {
  display: none;
}
.company-faq__question::marker {
  display: none;
  content: "";
}
.company-faq__question:hover {
  background: #f8fafc;
}
.company-faq__question span {
  flex: 1;
  min-width: 0;
}
.company-faq__chevron {
  font-size: 0.65rem;
  color: #94a3b8;
  transition: transform 0.25s;
  flex-shrink: 0;
}
.company-faq__item[open] .company-faq__chevron {
  transform: rotate(180deg);
}
.company-faq__answer {
  padding: 0 1.15rem 1rem;
  font-size: 0.85rem;
  line-height: 1.65;
  color: #475569;
}

body:has(.company-detail-page) > .footer {
  border-top: none;
  padding-top: 20px;
  background: #09090B;
}

.company-claim-banner {
  margin: 32px 0 32px;
}
.company-claim-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 22px;
  background: #fef9c3;
  border: 1px solid #fde68a;
  border-radius: 14px;
  flex-wrap: wrap;
}
.company-claim-banner__text {
  flex: 1 1 280px;
  min-width: 0;
}
.company-claim-banner__text strong {
  display: block;
  font-size: 0.92rem;
  color: #713f12;
  margin-bottom: 2px;
}
.company-claim-banner__text p {
  margin: 0;
  font-size: 0.82rem;
  color: #92400e;
  line-height: 1.5;
}
.company-claim-banner__actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.company-claim-banner__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  text-decoration: none;
  white-space: nowrap;
}
.company-claim-banner__btn--primary {
  background: #ea580c;
  color: #fff;
}
.company-claim-banner__btn--primary:hover {
  background: #c2410c;
  color: #fff;
}
.company-claim-banner__btn--ghost {
  background: transparent;
  color: #92400e;
  border-color: #fde68a;
}
.company-claim-banner__btn--ghost:hover {
  background: #fff;
  border-color: #f59e0b;
  color: #78350f;
}

.company-claim-modal .modal-content {
  border: none;
  border-radius: 16px;
  overflow: hidden;
}
.company-claim-modal__header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 20px 20px 0 24px;
}
.company-claim-modal__header-text {
  flex: 1 1 auto;
  min-width: 0;
}
.company-claim-modal__close {
  flex-shrink: 0;
  margin-top: 2px;
}
.company-claim-modal__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  line-height: 1.35;
}
.company-claim-modal__subtitle {
  font-size: 0.82rem;
  color: #64748b;
  margin-top: 4px;
  margin-bottom: 0;
}
.company-claim-modal__body {
  padding: 18px 24px 8px;
}
.company-claim-modal__footer {
  padding: 12px 24px 20px;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}
.company-claim-modal label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 6px;
}
.company-claim-modal input[type=email],
.company-claim-modal input[type=tel],
.company-claim-modal textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  font-size: 0.92rem;
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.company-claim-modal input[type=email]:focus,
.company-claim-modal input[type=tel]:focus,
.company-claim-modal textarea:focus {
  outline: none;
  border-color: #ea580c;
  box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.12);
}
.company-claim-modal textarea {
  resize: vertical;
  min-height: 80px;
}
.company-claim-modal .field-row {
  margin-bottom: 14px;
}
.company-claim-modal .claim-form-error {
  font-size: 0.82rem;
  padding: 10px 12px;
  border-radius: 8px;
  margin: 0 0 12px;
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/*# sourceMappingURL=company-detail.output.css.map */
