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

body {
  font-family: "Arial", sans-serif;
  background: linear-gradient(135deg, #3c2414 0%, #5d4037 50%, #2c1810 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
}

.bio-container {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 14px;
  padding: 0 0 40px 0;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Language Switcher */
.language-switcher {
  position: fixed;
  top: 15px;
  right: 15px;
  display: flex;
  gap: 5px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  padding: 4px;
  box-shadow: 0 4px 14px rgba(60, 36, 20, 0.2);
  z-index: 9999;
}

.lang-btn {
  background: transparent;
  border: none;
  padding: 6px 12px;
  border-radius: 14px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.85rem;
  color: #666;
  transition: all 0.3s ease;
  outline: none;
  display: flex;
  align-items: center;
  gap: 6px;
}

.lang-flag {
  width: 20px;
  height: 15px;
  display: inline-block;
  flex-shrink: 0;
  border-radius: 1px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.lang-code {
  font-size: 0.85rem;
}

.lang-btn:hover {
  color: #3c2414;
  background: rgba(212, 165, 116, 0.2);
}

.lang-btn.active {
  background: linear-gradient(135deg, #3c2414, #5d4037);
  color: white;
  box-shadow: 0 2px 6px rgba(60, 36, 20, 0.3);
}

.lang-btn:focus {
  outline: 2px solid #d4a574;
  outline-offset: 2px;
}

.profile-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 180px;
  background: #dcdcdc;
  margin: 0 0 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  box-shadow: none;
  overflow: hidden;
  padding: 15px 20px;
}

.logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  border-radius: 0;
  transform: none;
  display: block;
  margin: 0 auto;
}

.brand-name {
  font-size: 2.2rem;
  font-weight: bold;
  color: #3c2414;
  margin-bottom: 10px;
  padding: 0 10px;
}

.tagline {
  color: #666;
  font-size: 1rem;
  margin-bottom: 30px;
  font-style: italic;
  padding: 0 10px;
}

/* Story Section */
.story-section {
  margin-bottom: 30px;
  padding: 0 10px;
}

.story-title {
  font-size: 1.1rem;
  font-weight: bold;
  color: #3c2414;
  margin-bottom: 20px;
  text-align: center;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.story-content {
  background: linear-gradient(135deg, #ffffff 0%, #f8f6f3 100%);
  border-radius: 11px;
  padding: 20px;
  box-shadow: 0 4px 16px rgba(60, 36, 20, 0.15);
  border: 2px solid #d4a574;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.story-image-wrapper {
  width: 100%;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(60, 36, 20, 0.2);
  background: linear-gradient(135deg, #3c2414, #5d4037);
}

.story-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.story-image-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 200px;
  background: linear-gradient(135deg, #f8f6f3, #e0d5cc);
  color: #888;
  font-size: 14px;
  gap: 8px;
  padding: 20px;
}

.story-image-placeholder i {
  font-size: 48px;
  color: #c19660;
}

.story-text {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.story-paragraph {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.8;
  text-align: left;
  margin: 0;
}

.story-paragraph:first-of-type {
  font-weight: 600;
  color: #3c2414;
  font-size: 1rem;
}

.story-paragraph:last-of-type {
  font-style: italic;
  color: #c19660;
  font-weight: 500;
}

/* Features Section */
.features-section {
  margin-bottom: 30px;
  padding: 0 10px;
}

.features-title {
  font-size: 1.1rem;
  font-weight: bold;
  color: #3c2414;
  margin-bottom: 20px;
  text-align: center;
  line-height: 1.4;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 20px;
}

.feature-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f6f3 100%);
  border-radius: 11px;
  padding: 20px 15px;
  box-shadow: 0 4px 16px rgba(60, 36, 20, 0.15);
  border: 2px solid #d4a574;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(60, 36, 20, 0.25);
  border-color: #c19660;
}

.feature-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #3c2414, #5d4037);
  border-radius: 5px;
  color: #d4a574;
  font-size: 28px;
  box-shadow: 0 4px 12px rgba(60, 36, 20, 0.2);
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, #5d4037, #3c2414);
}

.feature-name {
  font-weight: 700;
  color: #3c2414;
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.3;
  letter-spacing: 0.5px;
}

.services-section {
  margin-bottom: 30px;
  padding: 0 10px;
}

.services-title {
  font-size: 1.1rem;
  font-weight: bold;
  color: #3c2414;
  margin-bottom: 15px;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}

.service-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f6f3 100%);
  border-radius: 11px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(60, 36, 20, 0.15);
  border: 2px solid #d4a574;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(60, 36, 20, 0.25);
  border-color: #c19660;
}

.service-image-wrapper {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, #3c2414, #5d4037);
}

.service-slide-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.service-product-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.3s ease;
  transform: scale(1);
}

.service-product-image.active {
  opacity: 1;
  z-index: 1;
}

.service-card:hover .service-product-image.active {
  transform: scale(1.1);
}

.service-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(60, 36, 20, 0.7),
    rgba(93, 64, 55, 0.7)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d4a574;
  font-size: 48px;
  display: none;
  z-index: 2;
}

.service-slide-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.8);
  border: none;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  transition: all 0.3s ease;
  opacity: 0;
  color: #3c2414;
  font-size: 14px;
}

.service-card:hover .service-slide-nav {
  opacity: 1;
}

.service-slide-nav:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateY(-50%) scale(1.1);
}

.service-slide-prev {
  left: 10px;
}

.service-slide-next {
  right: 10px;
}

.service-slide-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 3;
}

.service-slide-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.service-slide-dot.active {
  background: rgba(255, 255, 255, 1);
  width: 20px;
  border-radius: 3px;
}

.service-slide-dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

.service-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-name {
  font-weight: 700;
  color: #3c2414;
  font-size: 1.3rem;
  margin: 0;
  text-align: left;
}

.service-time {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #666;
  font-size: 0.9rem;
}

.service-time i {
  color: #c19660;
  font-size: 0.85rem;
}

.service-detail-description {
  color: #555;
  font-size: 0.85rem;
  line-height: 1.6;
  margin-top: 10px;
  text-align: left;
  font-style: italic;
}

.service-price-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding-top: 8px;
  border-top: 2px solid #e0d5cc;
}

.service-price-label {
  font-size: 0.75rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.service-price {
  font-weight: 700;
  color: #c19660;
  font-size: 1.5rem;
  background: linear-gradient(135deg, #c19660, #d4a574);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gallery-section {
  margin-bottom: 25px;
}

.gallery-title {
  font-size: 1.1rem;
  font-weight: bold;
  color: #3c2414;
  margin-bottom: 15px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  background: #f8f6f3;
  border-radius: 7px;
  padding: 15px;
  border: 2px solid #d4a574;
}

.gallery-item {
  aspect-ratio: 1;
  border-radius: 5px;
  background: linear-gradient(135deg, #3c2414, #5d4037);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d4a574;
  font-size: 24px;
  box-shadow: 0 3px 10px rgba(60, 36, 20, 0.2);
  transition: transform 0.3s ease;
}

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

.link-button {
  display: block;
  background: linear-gradient(135deg, #3c2414, #5d4037);
  color: white;
  text-decoration: none;
  padding: 15px;
  border-radius: 5px;
  margin: 0 10px 15px 10px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(60, 36, 20, 0.3);
}

.link-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(60, 36, 20, 0.4);
  background: linear-gradient(135deg, #5d4037, #3c2414);
}

.link-button:active {
  transform: translateY(0);
}

.link-icon {
  margin-right: 10px;
  font-size: 1.1rem;
}

/* Notice Section */
.notice-section {
  margin: 25px 0;
  padding: 0 10px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.notice-item {
  background: linear-gradient(135deg, #fff8e1 0%, #ffe0b2 100%);
  border-radius: 5px;
  padding: 15px;
  border: 2px solid #d4a574;
  box-shadow: 0 4px 12px rgba(60, 36, 20, 0.15);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.notice-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(60, 36, 20, 0.2);
}

.notice-icon {
  color: #c19660;
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.notice-text {
  color: #3c2414;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
  text-align: left;
  flex: 1;
}

.contact-info {
  background: #f8f6f3;
  border-radius: 7px;
  padding: 20px;
  margin-top: 20px;
  border: 2px solid #d4a574;
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  color: #3c2414;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  margin-right: 10px;
  color: #c19660;
}

.footer {
  margin-top: 20px;
  padding: 0 10px;
  color: #999;
  font-size: 0.8rem;
}

/* Mobile Optimization */
@media (max-width: 480px) {
  body {
    padding: 0;
  }

  .bio-container {
    padding: 30px 5px;
    margin: 0;
    border-radius: 0;
  }

  .language-switcher {
    top: 10px;
    right: 10px;
    padding: 3px;
  }

  .lang-btn {
    padding: 4px 10px;
    font-size: 0.75rem;
    gap: 4px;
  }

  .lang-flag {
    width: 18px;
    height: 13px;
  }

  .lang-code {
    font-size: 0.75rem;
  }

  .brand-name {
    font-size: 1.8rem;
    padding: 0 3px;
  }

  .tagline {
    padding: 0 3px;
  }

  .profile-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: 150px;
    padding: 0;
    margin-bottom: 15px;
  }

  .logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    display: block;
    margin: 0 auto;
  }

  .link-button {
    padding: 12px;
    font-size: 0.9rem;
    margin: 0 3px 15px 3px;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    padding: 5px;
  }

  .gallery-item {
    font-size: 20px;
  }

  .service-image-wrapper {
    height: 160px;
  }

  .service-content {
    padding: 8px;
  }

  .service-name {
    font-size: 1.1rem;
  }

  .service-price {
    font-size: 1.3rem;
  }

  .notice-section {
    margin: 20px 0;
    gap: 12px;
    padding: 0 3px;
  }

  .notice-item {
    padding: 10px;
  }

  .notice-icon {
    font-size: 1.3rem;
  }

  .notice-text {
    font-size: 0.85rem;
  }

  .features-title {
    font-size: 0.95rem;
    margin-bottom: 15px;
  }

  .features-grid {
    gap: 12px;
  }

  .feature-card {
    padding: 10px 5px;
  }

  .feature-icon {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  .feature-name {
    font-size: 0.75rem;
  }

  .story-section {
    margin-bottom: 25px;
    padding: 0 3px;
  }

  .features-section {
    padding: 0 3px;
  }

  .services-section {
    padding: 0 3px;
  }

  .footer {
    padding: 0 3px;
  }

  .contact-info {
    padding: 10px;
  }

  .story-title {
    font-size: 0.95rem;
    margin-bottom: 15px;
  }

  .story-content {
    padding: 8px;
    gap: 15px;
  }

  .story-paragraph {
    font-size: 0.85rem;
    line-height: 1.6;
  }

  .story-paragraph:first-of-type {
    font-size: 0.9rem;
  }
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.bio-container {
  animation: fadeInUp 0.6s ease-out;
}

.link-button {
  animation: fadeInUp 0.6s ease-out;
}

.link-button:nth-child(1) {
  animation-delay: 0.1s;
}
.link-button:nth-child(2) {
  animation-delay: 0.2s;
}
.link-button:nth-child(3) {
  animation-delay: 0.3s;
}

.gallery-item img,
.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  display: block;
}

/* Text Feedback Section */
.text-feedback-section {
  margin-bottom: 25px;
  padding: 0 10px;
}

.text-feedback-list {
  max-height: 400px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 6px;
}

.text-feedback-item {
  background: #f8f6f3;
  border-radius: 5px;
  padding: 15px;
  margin-bottom: 15px;
  border: 2px solid #d4a574;
  box-shadow: 0 2px 8px rgba(60, 36, 20, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.text-feedback-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(60, 36, 20, 0.15);
}

.feedback-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  flex-wrap: wrap;
  gap: 8px;
}

.feedback-name {
  font-weight: bold;
  color: #3c2414;
  font-size: 1rem;
}

.feedback-rating {
  display: flex;
  gap: 3px;
}

.star-icon {
  color: #ffc107;
  font-size: 14px;
}

.feedback-content {
  color: #555;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 12px;
  text-align: left;
}

.feedback-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: #888;
  flex-wrap: wrap;
  gap: 10px;
}

.feedback-country,
.feedback-date {
  display: flex;
  align-items: center;
  gap: 5px;
}

.feedback-country i,
.feedback-date i {
  color: #c19660;
  font-size: 12px;
}

.feedback-section {
  margin-bottom: 25px;
  padding: 0 10px;
}
.feedback-title {
  font-size: 1.1rem;
  font-weight: bold;
  color: #3c2414;
  margin-bottom: 15px;
}
.feedback-gallery {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.feedback-gallery img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 7px;
  box-shadow: 0 2px 8px rgba(60, 36, 20, 0.15);
  margin-bottom: 8px;
}
@media (max-width: 480px) {
  .feedback-gallery img {
    width: 70px;
    height: 70px;
  }
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  background: url("images/background.jpeg") center center/cover no-repeat;
  opacity: 0.25;
  pointer-events: none;
}

body,
.bio-container {
  position: relative;
  z-index: 1;
}

.feedback-gallery.vertical-scroll {
  display: block;
  max-height: 400px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 6px;
}
.feedback-item {
  margin-bottom: 12px;
  display: flex;
  justify-content: center;
}
.feedback-item img {
  width: 300px;
  height: 350px;
  object-fit: cover;
  border-radius: 7px;
  box-shadow: 0 2px 8px rgba(60, 36, 20, 0.15);
  cursor: pointer;
}

@media (max-width: 480px) {
  .text-feedback-section {
    padding: 0 3px;
  }

  .text-feedback-list {
    max-height: 300px;
  }

  .text-feedback-item {
    padding: 8px;
  }

  .feedback-section {
    padding: 0 3px;
  }

  .feedback-name {
    font-size: 0.9rem;
  }

  .feedback-content {
    font-size: 0.85rem;
  }

  .feedback-footer {
    font-size: 0.75rem;
  }

  .feedback-gallery.vertical-scroll {
    max-height: 300px;
  }
  .feedback-item img {
    width: 220px;
    height: 220px;
  }
}

/* Lightbox Styles */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

.lightbox-image-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 5px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10000;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  transform: rotate(90deg);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10000;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

.lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 10px 20px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 500;
}

.lightbox-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 48px;
  z-index: 10001;
}

.lightbox-error {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  gap: 15px;
  height: 100%;
}

.lightbox-error i {
  font-size: 48px;
  color: #ff6b6b;
}

.lightbox-error p {
  margin: 0;
  font-size: 18px;
}

.image-error-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f8f6f3, #e0d5cc);
  border-radius: 7px;
  color: #888;
  font-size: 14px;
  gap: 8px;
  padding: 20px;
}

.image-error-placeholder i {
  font-size: 32px;
  color: #c19660;
}

/* Skip to main content for accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #3c2414;
  color: white;
  padding: 8px;
  text-decoration: none;
  z-index: 100;
}

.skip-link:focus {
  top: 0;
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Focus styles for accessibility */
button:focus,
a:focus {
  outline: 3px solid #d4a574;
  outline-offset: 2px;
}

/* Back to top button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, #3c2414, #5d4037);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(60, 36, 20, 0.3);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  border: none;
  font-size: 20px;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(60, 36, 20, 0.4);
}

@media (max-width: 480px) {
  .back-to-top {
    width: 45px;
    height: 45px;
    bottom: 20px;
    right: 20px;
    font-size: 18px;
  }
}

/* FAQ Section */
.faq-section {
  margin-bottom: 25px;
  padding: 0 10px;
}

.faq-title {
  font-size: 1.1rem;
  font-weight: bold;
  color: #3c2414;
  margin-bottom: 20px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid #e0d5cc;
  background: #ffffff;
  transition: background 0.2s ease;
}

.faq-item:first-child {
  border-top: 1px solid #e0d5cc;
}

.faq-item:hover {
  background: #f8f6f3;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 15px;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  font-size: 0.95rem;
  color: #3c2414;
  font-weight: 500;
  transition: all 0.2s ease;
  outline: none;
}

.faq-question:hover {
  color: #5d4037;
}

.faq-question:focus {
  outline: 2px solid #d4a574;
  outline-offset: -2px;
}

.faq-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  min-height: 28px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #3c2414;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.faq-icon i {
  font-size: 14px;
  color: #3c2414;
  transition: transform 0.3s ease;
}

.faq-icon.open {
  background: #3c2414;
  border-color: #3c2414;
}

.faq-icon.open i {
  color: #ffffff;
  transform: rotate(45deg);
}

.faq-question-text {
  flex: 1;
  line-height: 1.4;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 15px;
}

.faq-answer.open {
  max-height: 500px;
  padding: 0 15px 18px 58px;
}

.faq-answer p {
  color: #666;
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 0;
  text-align: left;
}

@media (max-width: 480px) {
  .faq-section {
    padding: 0 3px;
  }

  .faq-title {
    font-size: 1rem;
    margin-bottom: 15px;
  }

  .faq-question {
    padding: 10px 5px;
    font-size: 0.9rem;
    gap: 12px;
  }

  .faq-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
  }

  .faq-icon i {
    font-size: 12px;
  }

  .faq-answer {
    padding: 0 5px;
  }

  .faq-answer.open {
    padding: 0 5px 10px 40px;
  }

  .faq-answer p {
    font-size: 0.8rem;
  }
}

@media (max-width: 768px) {
  .lightbox-container {
    width: 95%;
    height: 95vh;
  }

  .lightbox-close {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .lightbox-nav {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  .lightbox-counter {
    bottom: 10px;
    font-size: 12px;
    padding: 8px 16px;
  }
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--primary-color);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(60, 36, 20, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(60, 36, 20, 0.4);
}

/* WhatsApp Button Group */
.whatsapp-button-group {
  display: flex;
  gap: 8px;
  margin: 10px 20px;
}

.whatsapp-button-group .whatsapp-main {
  flex: 1;
  margin: 0;
}

.whatsapp-button-group .whatsapp-qr-btn {
  width: 50px;
  margin: 0;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.whatsapp-button-group .whatsapp-qr-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

/* WhatsApp QR Modal */
.whatsapp-qr-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  animation: fadeIn 0.3s ease;
  padding: 20px;
}

.whatsapp-qr-container {
  background: white;
  border-radius: 20px;
  max-width: 400px;
  width: 100%;
  position: relative;
  animation: slideUp 0.3s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.whatsapp-qr-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 35px;
  height: 35px;
  border: none;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 1;
}

.whatsapp-qr-close:hover {
  background: rgba(0, 0, 0, 0.2);
  transform: rotate(90deg);
}

.whatsapp-qr-content {
  padding: 30px 20px;
  text-align: center;
}

.whatsapp-qr-title {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 20px;
  font-weight: 600;
}

.whatsapp-qr-image-wrapper {
  background: white;
  border-radius: 15px;
  padding: 20px;
  margin: 0 auto 20px;
  max-width: 280px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.whatsapp-qr-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

.whatsapp-qr-info {
  margin-bottom: 25px;
}

.whatsapp-qr-name {
  font-size: 1.3rem;
  font-weight: bold;
  color: #075E54;
  margin-bottom: 5px;
}

.whatsapp-qr-subtitle {
  font-size: 0.9rem;
  color: #666;
}

.whatsapp-qr-actions {
  margin-top: 20px;
}

.whatsapp-qr-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-qr-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-qr-button i {
  font-size: 1.2rem;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Responsive adjustments for WhatsApp QR Modal */
@media (max-width: 480px) {
  .whatsapp-qr-container {
    max-width: 95%;
  }
  
  .whatsapp-qr-image-wrapper {
    max-width: 240px;
  }
  
  .whatsapp-qr-title {
    font-size: 1rem;
  }
}

/* Facebook Widget Section */
.facebook-widget-section {
  margin: 30px 20px;
  padding: 25px 0;
  border-top: 1px solid rgba(60, 36, 20, 0.1);
}

.facebook-widget-title {
  font-size: 1.15rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: 600;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.facebook-widget-container {
  display: flex;
  justify-content: center;
  min-height: 500px;
}

.facebook-widget-container .fb-page {
  width: 100%;
  max-width: 360px;
}

/* Facebook Widget Loading State */
.facebook-widget-container:empty::before {
  content: "Loading Facebook widget...";
  display: block;
  text-align: center;
  color: #999;
  padding: 50px;
  font-style: italic;
}

/* Responsive Facebook Widget */
@media (max-width: 480px) {
  .facebook-widget-section {
    margin: 20px 10px;
    padding: 20px 0;
  }
  
  .facebook-widget-container {
    min-height: 450px;
  }
  
  .facebook-widget-title {
    font-size: 1rem;
  }
}