@font-face {
  font-family: Arsis DReg;
  src: url(assets/Arsis-DReg-Regular.ttf);
  font-weight: 700;
}
body {
  margin: 0;
  padding: 0;
  background-color: var(--bg-light);
  scroll-behavior: smooth;
  font-family: "Tahoma", sans-serif;
}

/* Hero Section Styles */
.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(0deg, var(--bg-light) 0%, var(--primary) 100%);
  overflow: hidden;
  padding: 80px 20px 60px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 30% 50%,
      rgba(255, 255, 255, 0.3) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 80%,
      rgba(255, 255, 255, 0.2) 0%,
      transparent 40%
    );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-text {
  filter: drop-shadow(0px 0px 20px rgba(255, 255, 255, 1))
    drop-shadow(0px 0px 40px rgba(255, 255, 255, 1))
    drop-shadow(0px 0px 60px rgba(255, 255, 255, 1))
    drop-shadow(0px 0px 80px rgba(255, 255, 255, 1));
}
.hero-title {
  font-size: 2rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.hero-main {
  font-size: 5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin: 0 0 25px 0;
  line-height: 1.1;
  letter-spacing: 2px;
}

.hero-description {
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 40px;
  line-height: 1.8;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
  text-transform: uppercase;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.hero-btn {
  justify-content: center;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 35px;
  font-size: 1.15rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  letter-spacing: 0.5px;
}

.hero-btn span {
  font-size: 1.4rem;
}

.hero-btn.primary {
  background: var(--primary);
  color: var(--text-dark);
}

.hero-btn.primary:hover {
  background: var(--secondary);
  color: var(--text-dark);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

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

.feature-text {
  font-size: 1rem;
  font-weight: 600;
  color: var(--cream);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  animation: float 2s ease-in-out infinite;
  cursor: pointer;
}

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

.hero-scroll-indicator span {
  text-shadow: 0px 0px 10px rgba(255, 255, 255, 1);
  font-size: 2.2rem;
  display: block;
  margin-bottom: 5px;
}

.hero-scroll-indicator p {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cream);
}

/* Rotating Product Showcase */
.product-showcase {
  width: 100%;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg-light) 0%, var(--cream) 100%);
  padding: 60px 0;
  position: relative;
}

.product-showcase::before,
.product-showcase::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 150px;
  z-index: 2;
  pointer-events: none;
}

.product-showcase::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-light) 0%, transparent 100%);
}

.product-showcase::after {
  right: 0;
  background: linear-gradient(270deg, var(--cream) 0%, transparent 100%);
}

.showcase-track {
  display: flex;
  gap: 30px;
  animation: scroll-left 40s linear infinite;
  will-change: transform;
}
.shop-band {
  width: 100%;
  height: 60px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  background-color: var(--primary);
}
.shop-band-content {
  display: flex;
  height: 60px;
  flex-direction: row;
  gap: 1200px;
}
.shop-band-content::after {
  content: "";
  display: block;
  width: var(--desktop-gap);
}
.shop-band-content p:first-child {
  margin-left: 40%;
}
.shop-band-content p:last-child {
  padding-right: 40%;
}
.shop-band-content p {
  flex-shrink: 0;
  font-size: 1.2rem;
  color: var(--text-dark);
  font-weight: 600;
  margin: 20px auto;
  text-align: center;
}
.showcase-track:hover {
  animation-play-state: paused;
}
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.showcase-item {
  flex-shrink: 0;
  width: 200px;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
}

.showcase-item:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.showcase-item-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.showcase-item:hover .showcase-item-image {
  transform: scale(1.1);
}

video.showcase-item-image {
  background: #000;
}

.showcase-item-info {
  padding: 20px;
  background: white;
}

.showcase-item-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark-brown);
  margin-bottom: 8px;
  text-align: center;
}

.showcase-item-price {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary);
  text-align: center;
  margin-bottom: 12px;
}

.showcase-item-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--primary);
  color: var(--dark-brown);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .etket {
    transform: translate(-3px, 0px);
  }
  .turck {
    transform: translate(-5px, -8px);
  }
  .shop-band-content p {
    display: flex;
    justify-content: center;
    font-size: 1rem;
    margin: 24px auto;
  }
  .shop-band {
    height: 60px;
  }
  .shop-band-content {
    height: 60px;
  }

  .shop-band-content p:first-child {
    margin-left: 10px;
  }
  .shop-band-content p:last-child {
    padding-right: 14%;
  }
  .shop-band-content {
    gap: 80px;
  }
  .product-showcase {
    padding: 20px 0;
  }

  .showcase-track {
    scale: 0.8;
    gap: 20px;
    animation: scroll-left 20s linear infinite;
  }

  .showcase-item {
    width: 220px;
  }

  .showcase-item-image {
    height: 220px;
  }

  .showcase-item-info {
    padding: 15px;
  }

  .showcase-item-name {
    font-size: 1.1rem;
  }

  .showcase-item-price {
    font-size: 1.3rem;
  }
}

.about {
  width: 100%;
  padding: 40px 0px;
  background: var(--cream);
}
.about h2 {
  color: var(--text-dark);
  text-align: center;
}
.about p {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 20px auto 0 auto;
  text-align: center;
}

/* Enhanced "Biz Kimiz" Section Styling */
.about-story {
  background: linear-gradient(135deg, #faf8f5 0%, #f5f0e8 100%);
  padding: 80px 0px;
  position: relative;
  overflow: hidden;
}

.about-story::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.about-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-brown);
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.about-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  padding: 50px 60px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(139, 89, 42, 0.1);
}

.about-intro {
  font-size: 1.4rem;
  line-height: 1.8;
  color: var(--dark-brown);
  text-align: center;
  margin-bottom: 35px;
  font-weight: 400;
}

.about-text {
  font-size: 1.15rem;
  line-height: 1.9;
  color: #5a5a5a;
  text-align: justify;
  margin-bottom: 25px;
  text-indent: 2em;
}

.about-signature {
  text-align: center;
  margin-top: 45px;
  padding-top: 35px;
  border-top: 2px solid rgba(139, 89, 42, 0.15);
  font-size: 1.2rem;
}

.about-signature em {
  font-style: normal;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--dark-brown);
  letter-spacing: 1px;
}

.signature-tagline {
  display: block;
  margin-top: 12px;
  font-size: 1rem;
  color: var(--primary);
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Responsive Design for About Story */
@media (max-width: 768px) {
  .about-story {
    padding: 60px 15px;
  }

  .about-title {
    font-size: 2rem;
    margin-bottom: 35px;
  }

  .about-content {
    padding: 35px 25px;
  }

  .about-intro {
    font-size: 1.2rem;
  }

  .about-intro strong {
    font-size: 1.3rem;
  }

  .about-text {
    font-size: 1.05rem;
    text-align: left;
    text-indent: 1.5em;
  }

  .about-signature {
    margin-top: 35px;
    padding-top: 25px;
  }

  .about-signature em {
    font-size: 1.2rem;
  }
}

/* Features Section */
.features-section {
  width: 100%;
  background: linear-gradient(135deg, #f8f4ef 0%, #ffffff 100%);
  padding: 60px 0;
  margin: 60px 0;
}
.icon {
  width: 2em;
  height: 2em;
  fill: black;
  overflow: hidden;
}
.features-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px 20px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  border-color: var(--primary);
}

.feature-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
  line-height: 1;
}

.feature-item:hover .feature-icon {
  transform: scale(1.2) rotate(5deg);
}

.feature-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark-brown);
  margin-bottom: 10px;
}

.feature-description {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Features Mobile Responsive */
@media (max-width: 768px) {
  .features-section {
    padding: 40px 0;
    margin: 40px 0;
  }

  .features-container {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    padding: 0 15px;
  }

  .feature-item {
    padding: 25px 15px;
  }

  .feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
  }

  .feature-title {
    font-size: 1.1rem;
  }

  .feature-description {
    font-size: 0.85rem;
  }
}

/* Comments Carousel Section */
.cmt-section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 40px 20px;
  border-radius: 20px;
  background-color: var(--cream);
  position: relative;
}

.carousel-container {
  position: relative;
  overflow: hidden;
  padding: 20px 60px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.cmt-list {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 20px;
  align-items: stretch;
}

.cmt-card {
  min-width: calc(33.333% - 14px);
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.cmt-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.cmt-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--cream);
}

.cmt-header strong {
  color: var(--dark-brown);
  font-size: 1.1rem;
}

.cmt-header span {
  color: #ffc107;
  font-size: 1rem;
}

.cmt-body {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 10px;
  font-size: 0.95rem;
  min-height: 60px;
}

.cmt-date {
  color: var(--text-muted);
  font-size: 0.85rem;
  text-align: right;
  opacity: 0.7;
}

/* Carousel Navigation */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--dark-brown);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  z-index: 10;
}

.carousel-btn:hover {
  background: var(--dark-brown);
  color: var(--primary);
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.carousel-btn.prev {
  left: 10px;
}

.carousel-btn.next {
  right: 10px;
}

/* Carousel Indicators */
.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: var(--primary);
  width: 30px;
  border-radius: 6px;
}

.indicator:hover {
  background: var(--dark-brown);
}

.shop-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: var(--bg-light);
}

.shop-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  text-align: center;
  padding: 20px 20px;
  border-bottom: var(--primary) 4px solid;
  background-color: var(--bg-light);
}

.shop-header h1 {
  font-size: 4rem;
  margin: 0 auto;
  color: var(--text-dark);
  font-family: Arsis Dreg;
  font-weight: 400;
}

/* Burger Menu Styles */
.burger-menu {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  display: none; /* Hidden on desktop */
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.burger-line {
  width: 100%;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.burger-menu.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active .burger-line:nth-child(2) {
  opacity: 0;
}

.burger-menu.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* Desktop Navigation Menu */
.desktop-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.desktop-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.desktop-nav li {
  margin: 0;
}

.desktop-nav a {
  text-decoration: none;
  color: var(--text-dark);
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
  background: transparent;
}

.desktop-nav a:hover {
  transform: translateY(-1px);
  text-decoration: underline;
}

.desktop-nav .menu-icon {
  font-size: 1.3rem;
}

/* Mobile Navigation Menu (Sidebar) */
.nav-menu {
  position: fixed;
  left: -400px;
  top: 0;
  width: 300px;
  height: 100vh;
  background: var(--bg-light);
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  transition: left 0.3s ease;
  z-index: 1000;
  padding: 160px 30px 30px;
}

.nav-menu.active {
  left: 0;
}

.nav-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-menu li {
  margin-bottom: 20px;
}

.nav-menu a {
  text-decoration: none;
  color: var(--dark-brown);
  font-size: 1.2rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.nav-menu a:hover {
  background: var(--cream);
  color: var(--primary);
  transform: translateX(5px);
}

.nav-menu .menu-icon {
  font-size: 1.5rem;
}

/* Overlay for menu */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Products Section */
.products-title {
  text-align: center;
  font-size: 2.5rem;
  color: var(--dark-brown);
  margin-bottom: 30px;
  font-weight: 700;
}

.products-carousel-wrapper {
  position: relative;
  overflow: visible;
}

.products-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary);
  border: none;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  cursor: pointer;
  display: none; /* Hidden on desktop */
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--dark-brown);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  z-index: 10;
  font-weight: bold;
}

.products-carousel-btn:hover {
  background: linear-gradient(135deg, var(--dark-brown), var(--primary));
  color: white;
  transform: translateY(-50%) scale(1.15);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.products-carousel-btn.prev {
  left: -70px;
}

.products-carousel-btn.next {
  right: -70px;
}

.products-indicators {
  display: none; /* Hidden on desktop */
  justify-content: center;
  gap: 10px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.product-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.product-indicator.active {
  background: var(--primary);
  width: 30px;
  border-radius: 6px;
}

.product-indicator:hover {
  background: var(--dark-brown);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
  justify-items: center;
  align-items: start;
}

.product-card {
  background: var(--cream);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  width: 100%;
  max-width: 320px;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  border-color: var(--primary);
}

/* Free Shipping Badge */
.free-shipping-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
  color: white;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(76, 175, 80, 0.4);
  display: flex;
  align-items: center;
  gap: 4px;
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.6);
  }
}

.product-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  background: var(--cream);
}

/* Video styling */
video.product-image {
  cursor: pointer;
}

video.product-image:hover {
  opacity: 0.9;
}

.product-name {
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 10px;
  font-weight: 600;
}

.product-description {
  color: var(--text-muted);
  margin-bottom: 15px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.discount-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #d32f2f;
  color: white;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(211, 47, 47, 0.3);
}

.price-container {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.product-price {
  font-size: 1.8rem;
  color: var(--text-muted);
  font-weight: bold;
  margin-bottom: 0;
}

.original-price {
  font-size: 1.2rem;
  color: #999;
  text-decoration: line-through;
  font-weight: 500;
}

.product-stock {
  font-size: 0.9rem;
  color: var(--green);
  margin-bottom: 15px;
  font-weight: 500;
}

.product-stock.out-of-stock {
  color: #d32f2f;
}

.add-to-cart-btn {
  width: 100%;
  padding: 12px;
  background: var(--cream);
  color: #34403a;
  border: 1px solid #34403a;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Oswald", sans-serif;
}

.add-to-cart-btn:hover:not(:disabled) {
  background: var(--secondary);
  transform: scale(1.02);
}

.add-to-cart-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
}

/* Product Media Carousel Styles */
.product-media-carousel {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 15px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
}

.media-carousel-track {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  align-items: center;
}

.product-media-item {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--cream);
}

.media-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  z-index: 10;
  color: #34403a;
  font-weight: bold;
  line-height: 1;
}

.media-carousel-btn:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateY(-50%) scale(1.1);
}

.media-prev {
  left: 10px;
}

.media-next {
  right: 10px;
}

.media-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.media-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid rgba(52, 64, 58, 0.3);
}

.media-dot:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.2);
}

.media-dot.active {
  background: rgba(255, 255, 255, 1);
  border-color: #34403a;
  transform: scale(1.3);
}

/* Skeleton Loader Styles */
.product-card.skeleton {
  pointer-events: none;
  animation: none;
  border: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.product-card.skeleton:hover {
  transform: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.skeleton-image {
  width: 100%;
  height: 250px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: 8px;
  margin-bottom: 15px;
}

.skeleton-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.skeleton-title {
  width: 70%;
  height: 24px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: 4px;
}

.skeleton-text {
  width: 100%;
  height: 16px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: 4px;
}

.skeleton-text.short {
  width: 50%;
}

.skeleton-button {
  width: 100%;
  height: 44px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: 8px;
  margin-top: 5px;
}

@keyframes skeleton-loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* Comment Skeleton Styles */
.cmt-card.skeleton {
  pointer-events: none;
  background: var(--cream);
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 15px;
}

.cmt-card.skeleton .cmt-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.cmt-card.skeleton .skeleton-text {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: 4px;
}

/* Showcase Skeleton Styles */
.showcase-item.skeleton {
  pointer-events: none;
  opacity: 0.7;
}

.showcase-item.skeleton .skeleton-image {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
}

.showcase-item.skeleton .skeleton-text {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: 4px;
  margin: 10px auto 0;
}

.cart-sidebar {
  position: fixed;
  right: -400px;
  top: 0;
  width: 400px;
  height: 100vh;
  background: white;
  box-shadow: 4px 0 12px rgba(0, 0, 0, 1);
  transition: all 0.3s ease;
  z-index: 1002;
  display: flex;
  flex-direction: column;
}

.cart-sidebar.active {
  right: 0;
}

.cart-header {
  padding: 20px;
  background: var(--cream);
  color: var(--text-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-header h2 {
  margin: 0;
  color: var(--text-dark);
}

.close-cart {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--primary);
  cursor: pointer;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

.cart-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.cart-item-image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
}

video.cart-item-image {
  background: #000;
}

.cart-item-info {
  flex: 1;
}

.cart-item-name {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.cart-item-price {
  color: var(--text-muted);
  font-weight: bold;
}

.cart-item-quantity {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.qty-btn {
  width: 30px;
  height: 30px;
  border: 1px solid var(--primary);
  background: white;
  color: var(--primary);
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}

.qty-btn:hover {
  background: var(--primary);
  color: white;
}

.remove-btn {
  background: #d32f2f;
  color: white;
  border: none;
  padding: 5px 10px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.85rem;
  margin-top: 5px;
}

.cart-footer {
  padding: 20px;
  border-top: 2px solid var(--primary);
  background: var(--cream);
}

.cart-total {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--dark-brown);
  margin-bottom: 15px;
  display: grid;
  grid-template-columns: 1fr auto;
  justify-content: space-between;
}

.checkout-btn {
  width: 100%;
  padding: 15px;
  background: var(--green);
  color: var(--text-dark);
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  font-family: "Oswald", sans-serif;
  align-items: center;
}
.checkout-btn a img {
  vertical-align: middle;
  margin-right: 8px;
}
.cart-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--cream);
  color: white;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.cart-button:hover {
  transform: scale(1.1);
  background: var(--green);
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #d32f2f;
  color: white;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: bold;
}

.empty-cart {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-muted);
}

.admin-link {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 10px 20px;
  background: var(--dark-brown);
  color: rgb(0, 0, 0);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  z-index: 998;
}

.admin-link:hover {
  background: var(--primary);
}

/* Contact Modal Styles */
.contact-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  padding: 20px;
  animation: fadeIn 0.3s ease;
}

.contact-modal.active {
  display: flex;
}

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

.contact-modal-content {
  background: white;
  border-radius: 16px;
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.3s ease;
}

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

.contact-modal-header {
  background: var(--primary);
  padding: 30px;
  border-radius: 16px 16px 0 0;
  text-align: center;
  position: relative;
}

.contact-modal-header h2 {
  margin: 0;
  color: var(--text-dark);
  font-size: 2rem;
}

.contact-modal-header p {
  margin: 10px 0 0 0;
  color: var(--dark-brown);
  opacity: 0.9;
}

.close-contact-modal {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.1);
  border: none;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-dark);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-origin: center center;
}

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

.contact-modal-body {
  padding: 30px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: var(--cream);
  border-radius: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.contact-item:hover {
  background: var(--primary);
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-details {
  flex: 1;
}

.contact-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 5px;
}

.contact-value {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark-brown);
}

.contact-social {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 2px solid var(--cream);
}

.social-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 15px;
  background: var(--cream);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.social-btn:hover {
  background: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.social-icon {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.social-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .about {
    max-width: 92vw;
  }
  .burger-menu {
    display: flex; /* Show burger menu on mobile */
  }

  .desktop-nav {
    display: none; /* Hide desktop nav on mobile */
  }

  /* Hero Section Mobile */
  .hero-section {
    min-height: 85vh;
    padding: 60px 15px 40px;
  }

  .hero-title {
    font-size: 1.3rem;
    letter-spacing: 2px;
  }

  .hero-main {
    font-size: 2.8rem;
    margin-bottom: 20px;
  }

  .hero-description {
    font-size: 1.25rem;
    margin-bottom: 30px;
    padding: 0 10px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
    margin: 0 auto;
  }

  .hero-btn {
    width: 90%;
    max-width: 300px;
    padding: 14px 30px;
    font-size: 1rem;
    margin: 0 auto;
  }

  .hero-features {
    gap: 25px;
  }

  .feature-icon {
    font-size: 2rem;
  }

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

  .hero-scroll-indicator {
    bottom: 20px;
  }

  .hero-scroll-indicator span {
    font-size: 1.5rem;
  }

  .cart-sidebar {
    width: 100%;
    right: -100%;
  }

  /* Products Carousel on Mobile */
  .products-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  .products-carousel-wrapper {
    overflow: hidden;
    padding: 0 50px;
    margin: 0 -20px;
  }

  .products-carousel-btn {
    display: flex; /* Show on mobile */
  }

  .products-carousel-btn.prev {
    left: 5px;
  }

  .products-carousel-btn.next {
    right: 5px;
  }

  .products-indicators {
    display: flex; /* Show on mobile */
  }

  .products-grid {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 20px;
    margin-bottom: 20px;
    overflow-x: visible;
  }

  .product-card {
    max-width: 225px;
    flex-shrink: 0;
    margin: 0 auto;
  }

  /* Mobile Media Carousel Adjustments */
  .media-carousel-btn {
    width: 32px;
    height: 32px;
    font-size: 20px;
  }

  .media-prev {
    left: 5px;
  }

  .media-next {
    right: 5px;
  }

  .media-dots {
    bottom: 8px;
    gap: 6px;
  }

  .media-dot {
    width: 8px;
    height: 8px;
  }

  .shop-header h1 {
    font-size: 2rem;
  }

  .nav-menu {
    width: 80%;
    max-width: 300px;
  }
  .contact-modal {
    padding: 0;
  }
  .contact-modal-content {
    margin: 20px;
    max-height: 85vh;
  }

  .contact-modal-header {
    padding: 20px;
  }

  .contact-modal-header h2 {
    font-size: 1.5rem;
  }

  .contact-modal-body {
    padding: 20px;
  }

  .contact-social {
    grid-template-columns: repeat(2, 1fr);
  }

  .cmt-card {
    width: 25%;
    min-width: 0px;
  }

  .carousel-container {
    padding: 20px 50px;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .carousel-btn.prev {
    left: 5px;
  }

  .carousel-btn.next {
    right: 5px;
  }

  .cmt-section {
    padding: 20px 10px;
  }
}

/* Image Lightbox Styles */
.image-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  backdrop-filter: blur(5px);
}

.image-lightbox.active {
  display: flex;
  opacity: 1;
}

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

.lightbox-content img,
.lightbox-content video {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  transition: all 0.3s ease;
  color: #333;
  font-weight: 300;
  line-height: 1;
}

.lightbox-close:hover {
  background: white;
  transform: rotate(90deg);
  color: #d32f2f;
}

/* Lightbox Navigation Buttons */
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  transition: all 0.3s ease;
  color: #333;
  font-weight: 300;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
}

.lightbox-nav.visible {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-nav:hover {
  background: white;
  transform: translateY(-50%) scale(1.1);
  color: var(--primary);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

/* Lightbox Counter */
.lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 1rem;
  z-index: 10001;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox-counter.visible {
  opacity: 1;
}

/* Add pointer cursor to clickable media */
.clickable-media {
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.clickable-media:hover {
  transform: scale(1.02);
  opacity: 0.9;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .lightbox-close {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }

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

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

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

  .lightbox-content {
    max-width: 95vw;
    max-height: 85vh;
  }
}

/* Footer Styles */
.footer {
  background: linear-gradient(135deg, var(--dark-brown) 0%, #3d2817 100%);
  color: var(--cream);
  padding: 60px 0 0 0;
  margin-top: 80px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 40px 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary);
}

.footer-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--primary);
  color: var(--dark-brown);
  transform: translateY(-5px);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--primary);
  transform: translateX(5px);
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.footer-contact svg {
  flex-shrink: 0;
  opacity: 0.7;
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.3);
  padding: 25px 20px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0 0 10px 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

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

.footer-bottom-links span {
  color: rgba(255, 255, 255, 0.3);
}

/* Footer Mobile Responsive */
@media (max-width: 768px) {
  .footer {
    padding: 40px 0 0 0;
    margin-top: 60px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 20px 30px 20px;
  }

  .footer-title {
    font-size: 1.2rem;
  }

  .footer-bottom {
    padding: 20px 15px;
  }

  .footer-bottom-links {
    flex-direction: column;
    gap: 10px;
  }

  .footer-bottom-links span {
    display: none;
  }
}

/* Policy Modal Styles */
.policy-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.3s ease;
  overflow-y: auto;
  padding: 20px;
}

.policy-modal.active {
  display: flex;
  opacity: 1;
}

.policy-modal-content {
  background: white;
  border-radius: 12px;
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  position: relative;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.policy-modal-header {
  position: sticky;
  top: 0;
  background: linear-gradient(135deg, var(--dark-brown) 0%, #3d2817 100%);
  color: var(--cream);
  padding: 30px;
  border-radius: 12px 12px 0 0;
  z-index: 10;
}

.policy-modal-header h2 {
  margin: 0;
  font-size: 2rem;
  color: var(--primary);
}

.close-policy-modal {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  transition: all 0.3s ease;
  line-height: 1;
}

.close-policy-modal:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

.policy-modal-body {
  padding: 40px 30px;
  color: var(--dark-brown);
}

.policy-section {
  margin-bottom: 30px;
}

.policy-section:last-child {
  margin-bottom: 0;
}

.policy-section h3 {
  font-size: 1.4rem;
  color: var(--dark-brown);
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary);
}

.policy-section p {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 15px;
}

.policy-section ul {
  list-style: none;
  padding-left: 0;
  margin: 15px 0;
}

.policy-section ul li {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.policy-section ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

.policy-date {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #ddd;
  font-style: italic;
  color: #666;
}

/* Policy Modal Mobile Responsive */
@media (max-width: 768px) {
  .policy-modal {
    padding: 10px;
  }

  .policy-modal-content {
    max-height: 95vh;
    border-radius: 8px;
  }

  .policy-modal-header {
    padding: 20px;
    border-radius: 8px 8px 0 0;
  }

  .policy-modal-header h2 {
    font-size: 1.5rem;
    padding-right: 40px;
  }

  .close-policy-modal {
    width: 35px;
    height: 35px;
    font-size: 1.5rem;
  }

  .policy-modal-body {
    padding: 25px 20px;
  }

  .policy-section h3 {
    font-size: 1.2rem;
  }

  .policy-section p,
  .policy-section ul li {
    font-size: 0.95rem;
  }
}
