/* ===================================\n   HOMEPAGE — Page-Specific Styles\n   برتكس للتطريز\n   Fonts and base styles are in main.css\n   =================================== */
\n\nbody {
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
  z-index: -2;
}

.animated-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  opacity: 0.6;
}

.wave {
  position: absolute;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 215, 0, 0.08),
    transparent
  );
  animation: waveMove 15s infinite linear;
}

.wave-1 {
  top: 0;
  animation-delay: 0s;
  opacity: 0.3;
}
.wave-2 {
  top: 20%;
  animation-delay: 5s;
  opacity: 0.2;
}
.wave-3 {
  top: 40%;
  animation-delay: 10s;
  opacity: 0.25;
}

@keyframes waveMove {
  0% {
    transform: translateX(-50%) skewY(-3deg);
  }
  100% {
    transform: translateX(0%) skewY(-3deg);
  }
}

.rotating-square {
  position: absolute;
  width: 60px;
  height: 8px;
  background: linear-gradient(90deg, transparent, #ffd700, #ffa500);
  border-radius: 50% 0 0 50%;
  box-shadow:
    0 0 20px rgba(255, 215, 0, 0.8),
    0 0 40px rgba(255, 215, 0, 0.4),
    -100px 0 60px rgba(255, 215, 0, 0.2);
  animation: meteorFly 15s infinite ease-in-out;
}

.square-1 {
  top: 15%;
  left: 10%;
  animation-delay: 0s;
  width: 70px;
}
.square-2 {
  top: 60%;
  right: 15%;
  animation-delay: 5s;
  width: 50px;
}
.square-3 {
  bottom: 20%;
  left: 30%;
  animation-delay: 10s;
  width: 80px;
}
.square-4 {
  top: 40%;
  right: 40%;
  animation-delay: 7s;
  width: 60px;
}

@keyframes meteorFly {
  0% {
    transform: translateX(-200px) translateY(-200px) rotate(45deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateX(200px) translateY(200px) rotate(45deg);
    opacity: 0;
  }
}

.dots-container {
  position: absolute;
  width: 100%;
  height: 100%;
}

.glow-dot {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255, 215, 0, 0.8);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
  animation: dotGlow 3s infinite ease-in-out;
}

.dot-1 {
  top: 10%;
  left: 20%;
  animation-delay: 0s;
}
.dot-2 {
  top: 25%;
  left: 50%;
  animation-delay: 0.5s;
}
.dot-3 {
  top: 40%;
  left: 80%;
  animation-delay: 1s;
}
.dot-4 {
  top: 55%;
  left: 15%;
  animation-delay: 1.5s;
}
.dot-5 {
  top: 70%;
  left: 60%;
  animation-delay: 2s;
}
.dot-6 {
  top: 85%;
  left: 35%;
  animation-delay: 2.5s;
}
.dot-7 {
  top: 30%;
  left: 70%;
  animation-delay: 0.3s;
}
.dot-8 {
  top: 60%;
  right: 25%;
  animation-delay: 1.2s;
}

@keyframes dotGlow {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(2);
  }
}

.shooting-star {
  position: absolute;
  width: 2px;
  height: 2px;
  background: #ffd700;
  box-shadow: 0 0 10px 2px rgba(255, 215, 0, 0.8);
  animation: shootingStar 3s infinite ease-out;
}

.star-1 {
  top: 10%;
  left: 10%;
  animation-delay: 2s;
}
.star-2 {
  top: 30%;
  left: 60%;
  animation-delay: 5s;
}
.star-3 {
  top: 60%;
  left: 30%;
  animation-delay: 8s;
}

@keyframes shootingStar {
  0% {
    transform: translate(0, 0);
    opacity: 1;
  }
  100% {
    transform: translate(300px, 300px);
    opacity: 0;
  }
}

.gradient-circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 215, 0, 0.25) 0%,
    transparent 70%
  );
  filter: blur(50px);
  animation: circleFloat 12s infinite ease-in-out;
}

.circle-1 {
  width: 400px;
  height: 400px;
  top: -5%;
  left: -5%;
  animation-delay: 0s;
}
.circle-2 {
  width: 350px;
  height: 350px;
  top: 50%;
  right: -5%;
  animation-delay: 4s;
}
.circle-3 {
  width: 300px;
  height: 300px;
  bottom: -5%;
  left: 40%;
  animation-delay: 8s;
}

@keyframes circleFloat {
  0%,
  100% {
    transform: translate(0, 0);
  }
  33% {
    transform: translate(50px, -50px);
  }
  66% {
    transform: translate(-30px, 30px);
  }
}

.border-line {
  position: absolute;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 215, 0, 0.3),
    transparent
  );
  animation: borderSlide 8s infinite linear;
}

.line-horizontal-1 {
  top: 25%;
  left: 0;
  width: 100%;
  height: 1px;
  animation-delay: 0s;
}
.line-horizontal-2 {
  top: 75%;
  left: 0;
  width: 100%;
  height: 1px;
  animation-delay: 4s;
}

@keyframes borderSlide {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

:root {
  --primary-gold: #ffd700;
  --primary-gold-dark: #daa520;
  --primary-gold-light: #fff4cc;
  --primary-black: #1a1a1a;
  --gradient-primary: linear-gradient(135deg, #ffd700 0%, #ffa500 100%);
  --gradient-dark: linear-gradient(135deg, #c2c2c2 0%, #d2e2b7 100%);
  --text-primary: #2c3e50;
  --text-secondary: #546e7a;
  --background-light: #f8f9fa;
  --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 15px 50px rgba(0, 0, 0, 0.12);
  --shadow-strong: 0 20px 60px rgba(0, 0, 0, 0.18);
}

.store-vision-enhanced {
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
  font-family: "Tajawal", "Cairo", sans-serif;
}

.vision-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.vision-header {
  text-align: center;
  margin-bottom: 60px;
}

.vision-title {
  font-size: clamp(1.8rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.3;
  margin: 0;
  font-family: "Cairo", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.brand-name {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  animation: shimmer 3s ease-in-out infinite;
  font-weight: 900;
  letter-spacing: 2px;
  text-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

@keyframes shimmer {
  0%,
  100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.2);
  }
}

.tagline {
  color: #ffffff;
  font-weight: 600;
  font-size: 0.65em;
  letter-spacing: 1px;
}

.vision-story {
  background: rgba(20, 20, 20, 0.8);
  backdrop-filter: blur(10px);
  padding: 50px 40px;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  margin-bottom: 60px;
  position: relative;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.vision-story::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gradient-primary);
  border-radius: 24px 24px 0 0;
}

.story-highlight {
  margin-bottom: 30px;
}

.story-lead {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 400;
  color: #f5f5f5;
  line-height: 1.8;
  margin: 0;
  font-family: "Cairo", sans-serif;
}

.highlight-text {
  font-weight: 700;
  color: #ffd700;
  position: relative;
  display: inline-block;
}

.highlight-text::after {
  content: "";
  position: absolute;
  bottom: 2px;
  right: 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--primary-gold-light),
    transparent
  );
  z-index: -1;
  animation: highlightSlide 2s ease-in-out infinite;
}

@keyframes highlightSlide {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.6;
  }
}

.story-description {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  line-height: 2;
  color: #d0d0d0;
  margin: 25px 0;
}

.story-description strong {
  color: #ffd700;
  font-weight: 700;
}

.story-mission {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  line-height: 2;
  color: #f0f0f0;
  font-weight: 500;
  margin: 25px 0 0;
  padding-top: 25px;
  border-top: 2px solid rgba(255, 215, 0, 0.3);
}

.mission-highlight {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  position: relative;
}

.why-choose-us {
  background: rgba(20, 20, 20, 0.8);
  backdrop-filter: blur(10px);
  padding: 50px 40px;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  position: relative;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.why-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.icon-wrapper {
  display: inline-block;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.heart-icon {
  font-size: 3rem;
  display: inline-block;
  filter: drop-shadow(0 4px 8px rgba(255, 215, 0, 0.5));
}

.why-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #ffd700;
  margin: 15px 0 0;
  font-family: "Cairo", sans-serif;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.feature-card {
  background: linear-gradient(
    145deg,
    rgba(30, 30, 30, 0.9) 0%,
    rgba(20, 20, 20, 0.9) 100%
  );
  padding: 10px 30px;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid rgba(255, 215, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #ffd700 0%, #ffa500 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.feature-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 10px 40px rgba(255, 215, 0, 0.3);
  border-color: #ffd700;
}

.feature-card:hover::before {
  opacity: 0.1;
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: inline-block;
  filter: grayscale(0);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.feature-card:hover .feature-icon {
  transform: scale(1.2) rotate(5deg);
  filter: drop-shadow(0 4px 12px rgba(255, 215, 0, 0.4));
}

.feature-content {
  position: relative;
  z-index: 1;
}

.feature-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffd700;
  margin: 0 0 15px;
  font-family: "Cairo", sans-serif;
}

.feature-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #d0d0d0;
  margin: 0;
}

.decoration-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

.floating-thread {
  position: absolute;
  width: 2px;
  height: 100px;
  background: linear-gradient(
    180deg,
    transparent,
    var(--primary-gold),
    transparent
  );
  opacity: 0.15;
  animation: floatThread 15s ease-in-out infinite;
}

.thread-1 {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}
.thread-2 {
  top: 60%;
  right: 15%;
  animation-delay: 5s;
}
.thread-3 {
  top: 40%;
  left: 80%;
  animation-delay: 10s;
}

@keyframes floatThread {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.1;
  }
  50% {
    transform: translateY(-50px) rotate(180deg);
    opacity: 0.2;
  }
}

/* Contact Section */
.contact-section-enhanced {
  padding: 90px 20px 70px;
  position: relative;
  z-index: 2;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-header {
  text-align: center;
  margin-bottom: 50px;
}

.contact-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: #ffd700;
  margin-bottom: 10px;
  font-family: "Cairo", sans-serif;
}

.contact-subtitle {
  color: #d0d0d0;
  font-size: 1.1rem;
  margin: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 30px;
}

.contact-info-card,
.contact-form-card {
  background: rgba(20, 20, 20, 0.82);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.18);
  border-radius: 24px;
  padding: 35px 28px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-info-icon {
  width: 54px;
  height: 54px;
  min-width: 54px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ffd700 0%, #ffa500 100%);
  color: #111;
  font-size: 1.2rem;
  box-shadow: 0 8px 22px rgba(255, 215, 0, 0.22);
}

.contact-info-item h4 {
  margin: 0 0 6px;
  color: #ffd700;
  font-size: 1.15rem;
  font-weight: 800;
}

.contact-info-item p {
  margin: 0;
  color: #e5e5e5;
  line-height: 1.8;
}

.contact-socials {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.contact-socials__label {
  color: #ffd700;
  font-weight: 700;
  font-size: 0.92rem;
  margin: 0 0 12px;
  letter-spacing: 0.3px;
}

.social-circle-container {
  display: flex;
  justify-content: flex-start;
  gap: 12px;
  flex-wrap: wrap;
}

.social-circle {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease,
    background 0.18s ease;
  backdrop-filter: blur(6px);
}

/* Brand colors applied on hover only — restful at rest, expressive on interaction */
.social-circle.whatsapp:hover {
  color: #25d366;
  border-color: #25d366;
  background: rgba(37, 211, 102, 0.12);
}
.social-circle.facebook:hover {
  color: #1877f2;
  border-color: #1877f2;
  background: rgba(24, 119, 242, 0.12);
}
.social-circle.telegram:hover {
  color: #0088cc;
  border-color: #0088cc;
  background: rgba(0, 136, 204, 0.12);
}
.social-circle.instagram:hover {
  color: #dd2a7b;
  border-color: #dd2a7b;
  background: rgba(221, 42, 123, 0.12);
}

.social-circle:hover {
  transform: translateY(-3px);
}

.social-circle:focus-visible {
  outline: 2px solid #ffd700;
  outline-offset: 2px;
}

@media (max-width: 480px) {
  .social-circle {
    width: 46px;
    height: 46px;
    font-size: 20px;
    border-radius: 12px;
  }
  .social-circle-container {
    gap: 10px;
  }
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  color: #ffd700;
  font-weight: 700;
}

.contact-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  border-radius: 14px;
  padding: 14px 16px;
  transition: all 0.3s ease;
}

.contact-input:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: #ffd700;
  box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.12);
  color: #fff;
}

.contact-input::placeholder {
  color: #bbb;
}

.contact-submit-btn {
  width: 100%;
  border: none;
  border-radius: 14px;
  padding: 15px 20px;
  font-weight: 800;
  color: #111;
  background: linear-gradient(135deg, #ffd700 0%, #ffa500 100%);
  transition: all 0.3s ease;
}

.contact-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(255, 215, 0, 0.22);
}

/* ── Gallery — design tokens ───────────────────── */
:root {
  --gallery-img-height: 340px;
  --gallery-arrow-size: 40px;
  --gallery-arrow-space: 56px;
  /* offset = center arrow inside the padding area */
  --gallery-arrow-offset: calc(
    (var(--gallery-arrow-space) - var(--gallery-arrow-size)) / 2
  );
}
@media (max-width: 767.98px) {
  :root {
    --gallery-img-height: 300px;
  }
}
@media (max-width: 575.98px) {
  :root {
    --gallery-img-height: 260px;
    --gallery-arrow-space: 46px;
  }
}

/* ── Outer wrapper: dedicated arrow lanes via inline padding ── */
.gallery-swiper-outer {
  position: relative;
  padding-inline: var(--gallery-arrow-space);
}

/* ── Swiper sits inside the outer wrapper, arrows are outside it ── */
.gallery-swiper {
  padding-top: 8px !important;
  padding-bottom: 2.5rem !important;
}

/* Slides fill available width — width controlled by slidesPerView in JS */
.gallery-swiper .swiper-slide {
  height: auto !important;
}

/* ── Navigation buttons ─────────────────────────────────────── */
.gallery-nav-btn {
  position: absolute;
  /* top is set precisely by JS after render; 40% is a CSS-only fallback */
  top: 45% !important;
  transform: translateY(-50%);
  z-index: 10;
  width: var(--gallery-arrow-size);
  height: var(--gallery-arrow-size);
  border-radius: 50%;
  background: rgba(10, 10, 20, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    opacity 0.2s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}
.gallery-nav-btn:hover {
  background: rgba(197, 155, 62, 0.9);
  border-color: rgba(197, 155, 62, 0.6);
  box-shadow: 0 4px 14px rgba(197, 155, 62, 0.4);
  color: #fff;
}
/* Swiper adds .swiper-button-disabled when at boundary (loop=false) */
.gallery-nav-btn.swiper-button-disabled {
  opacity: 0.25;
  cursor: not-allowed;
  pointer-events: none;
}
/* RTL: prev is on the right, next is on the left */
.gallery-nav-prev {
  right: var(--gallery-arrow-offset);
  left: auto;
}
.gallery-nav-next {
  left: var(--gallery-arrow-offset);
  right: auto;
}

/* ── Feature-card adjustments inside swiper ── */
.gallery-swiper .feature-card {
  height: 100% !important;
  display: flex;
  flex-direction: column;
}
.gallery-swiper .feature-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.25) !important;
}

/* ── Image wrapper ── */
.product-img-wrap {
  overflow: hidden;
  height: var(--gallery-img-height);
  border-radius: 12px;
  flex-shrink: 0;
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── No Products Box ─────────────────────────── */
.no-products-box {
  padding: 2.5rem 2rem;
  border-radius: 16px;
  color: #ffd700;
  background: rgba(255, 215, 0, 0.05);
  border: 1px dashed rgba(255, 215, 0, 0.3);
}

/* ── Modal Product Image ─────────────────────── */
.modal-product-img {
  max-height: 500px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  border-radius: 12px;
}

/* ── Track Order Section ─────────────────────── */
.track-section {
  position: relative;
  z-index: 2;
}

/* Scoped to gallery swiper — no scale/zoom */
.gallery-swiper .gallery-img {
  cursor: pointer;
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
  transition: none;
}
.gallery-swiper .gallery-img:focus-visible {
  outline: 3px solid #ffd700;
  outline-offset: 2px;
}
.modal-body .btn {
  border-radius: 12px;
  padding: 12px 28px;
  font-weight: 600;
  transition: all 0.25s ease;
  border: none;
  backdrop-filter: blur(6px);
}

/* Primary button */
.modal-body .btn-primary {
  background: linear-gradient(135deg, #000, #333);
  color: #fff;
}

.modal-body .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  background: linear-gradient(135deg, #111, #444);
}

/* WhatsApp / Success button */
.modal-body .btn-success {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
}

.modal-body .btn-success:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.45);
  background: linear-gradient(135deg, #1ebe5d, #0f7d6f);
}

/* Click animation */
.modal-body .btn:active {
  transform: translateY(0);
  box-shadow: none;
}

.text-muted.py-4 {
  font-size: 1.1rem;
  border-radius: 15px;
  padding: 2rem !important;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #2e75b6;
  color: white;
  padding: 8px;
  text-decoration: none;
  z-index: 100;
}

.skip-link:focus {
  top: 0;
}

@media (max-width: 991px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .store-vision-enhanced {
    padding: 60px 15px;
  }

  .vision-story,
  .why-choose-us {
    padding: 35px 25px;
    border-radius: 16px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-card {
    padding: 25px 20px;
  }

  .story-lead {
    font-size: 1.2rem;
  }

  .why-title {
    font-size: 1.8rem;
  }

  .contact-section-enhanced {
    padding: 70px 15px 50px;
  }

  .contact-info-card,
  .contact-form-card {
    padding: 24px 18px;
    border-radius: 18px;
  }

  .contact-title {
    font-size: 1.9rem;
  }

  .contact-subtitle {
    font-size: 1rem;
  }
}

[data-aos] {
  opacity: 0;
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

[data-aos].aos-animate {
  opacity: 1;
}

[data-aos="fade-down"].aos-animate {
  transform: translateY(0);
}
[data-aos="fade-up"].aos-animate {
  transform: translateY(0);
}
[data-aos="fade-right"].aos-animate {
  transform: translateX(0);
}
[data-aos="fade-left"].aos-animate {
  transform: translateX(0);
}
[data-aos="zoom-in"].aos-animate {
  transform: scale(1);
}

[data-aos="fade-down"] {
  transform: translateY(-30px);
}
[data-aos="fade-up"] {
  transform: translateY(30px);
}
[data-aos="fade-right"] {
  transform: translateX(-30px);
}
[data-aos="fade-left"] {
  transform: translateX(30px);
}
[data-aos="zoom-in"] {
  transform: scale(0.95);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (prefers-contrast: high) {
  .product-carousel .carousel-control-prev,
  .product-carousel .carousel-control-next {
    background-color: rgba(0, 0, 0, 0.9);
    border: 2px solid white;
  }
}

@media print {
  .decoration-elements,
  .floating-thread {
    display: none;
  }

  .store-vision-enhanced {
    background: white;
  }
}
.modal-header {
  display: flex;
  justify-content: space-between !important;
  align-items: center;
  width: 100%;
}

/* ── Gallery section wrapper ────────────────────── */
.gallery-section {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 20px 3rem;
}
.gallery-group {
  margin-bottom: 3.5rem;
}
.gallery-group-title {
  text-align: center;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 900;
  margin: 0 0 1.75rem;
  position: relative;
  padding-bottom: 1rem;
}
.gallery-group-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, #ffbf00, #d4af37);
  border-radius: 2px;
}
/* The side-bar span is no longer used — hide it */
.gallery-group-line {
  display: none;
}
@media (max-width: 575.98px) {
  .gallery-group-title {
    font-size: 1.4rem;
  }
  /* Hide arrows on small devices — cards expand to full width */
  .gallery-nav-btn {
    display: none !important;
  }
  .gallery-swiper-outer {
    padding-inline: 0;
  }
}

/* ── Pagination dots ── */
.gallery-swiper .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.3);
  opacity: 1;
}
.gallery-swiper .swiper-pagination-bullet-active {
  background: #ffbf00;
}

/* ── Gallery lightbox — same dark-gold aesthetic as .feature-card */
/* ID selector beats any single-class rule in main.css / Bootstrap */
#galleryLightbox .modal-content {
  background: linear-gradient(
    145deg,
    rgba(22, 22, 32, 0.97) 0%,
    rgba(12, 12, 20, 0.97) 100%
  ) !important;
  border: 2px solid rgba(255, 215, 0, 0.22) !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  box-shadow:
    0 8px 40px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(255, 215, 0, 0.06) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* Subtle gold shimmer line at top (mirrors feature-card::before) */
#galleryLightbox .modal-content::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 2px !important;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 215, 0, 0.5),
    transparent
  ) !important;
  z-index: 1 !important;
}

/* ── Close button ───────────────────────────────────────────── */
.gallery-lightbox-close {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
  cursor: pointer;
}
.gallery-lightbox-close:hover {
  background: rgba(220, 50, 50, 0.75);
  border-color: rgba(220, 50, 50, 0.5);
  color: #fff;
}

/* ── Image area ─────────────────────────────────────────────── */
.gallery-lightbox-img-wrap {
  max-height: 68vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}
.gallery-lightbox-img {
  max-width: 100%;
  max-height: 68vh;
  object-fit: contain;
  display: block;
}

/* ── Info footer ─────────────────────────────────────────────── */
.gallery-lightbox-info {
  padding: 1.1rem 1.5rem 1.4rem;
  text-align: center;
  background: rgba(255, 215, 0, 0.03);
  border-top: 1px solid rgba(255, 215, 0, 0.12);
}
.lightbox-title {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.lightbox-desc {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
  margin-bottom: 0.5rem;
}
