:root {
  --background: #f8f9fc;
  --foreground: #2d2d3a;
  --primary: #5b6abf;
  --primary-foreground: #f8f9fc;
  --muted: #eef0f5;
  --muted-foreground: #6b7280;
  --card: #ffffff;
  --border: #d4d6e0;
  --radius: 0.75rem;
  --font-sans: "Inter", system-ui, sans-serif;
  --font-serif: "Cormorant Unicase", serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--background);
  color: var(--foreground);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

main {
  flex: 1;
}


.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  border-bottom: 1px solid var(--border);
  background: rgba(248, 249, 252, 0.8);
  backdrop-filter: blur(12px);
}

.header-inner {
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.logo-icon {
  display: flex;
  width: 2rem;
  height: 2rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  background: var(--primary);
  color: var(--primary-foreground);
  font-size: 0.75rem;
  font-weight: 700;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.nav-link {
  color: var(--muted-foreground);
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--foreground);
}

.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  border-radius: 0.375rem;
  background: transparent;
  color: var(--muted-foreground);
  cursor: pointer;
  transition: color 0.2s;
}

.menu-toggle:hover {
  color: var(--foreground);
}

.hidden {
  display: none;
}

.nav-mobile {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}

.nav-mobile.open {
  max-height: 16rem;
}

.nav-link-mobile {
  display: block;
  padding: 0.625rem 0.75rem;
  margin: 0 1rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  transition:
    color 0.2s,
    background 0.2s;
}

.nav-link-mobile:hover {
  color: var(--foreground);
  background: var(--muted);
}

.nav-link-mobile:last-child {
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
  .menu-toggle {
    display: none;
  }
}

/* ===== Hero ===== */
.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}


.hero-content {
  position: relative;
  z-index: 10;
  max-width: 48rem;
  text-align: center;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-title {
    color: white;
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.hero-title-accent {
  color: white
}

.hero-description {
  font-size: 1.125rem;
  color: darkgrey;
  max-width: 36rem;
  margin: 0 auto;
  line-height: 1.625;
}

.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.scroll-label {
  font-size: 0.75rem;
    color: darkgrey;
  animation: pulse 2s ease-in-out infinite;
}

.scroll-arrow {
  color: var(--muted-foreground);
  animation: bounce 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

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

/* ===== Section Common ===== */
.section {
  padding: 5rem 0;
  position: relative;
}

.section-header {
  margin-bottom: 3rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}

@media (min-width: 640px) {
  .section-title {
    font-size: 2.25rem;
  }
}

.section-subtitle {
  color: var(--muted-foreground);
  max-width: 28rem;
  margin: 0 auto;
}

/* ===== Gallery ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  text-align: left;
  width: 100%;
  font-family: inherit;
  padding: 0;
}

.gallery-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -8px rgba(45, 45, 58, 0.1);
}

.gallery-card:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.gallery-card-image {
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-card-icon {
  width: 4rem;
  height: 4rem;
  color: rgba(255, 255, 255, 0.6);
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
  transition: transform 0.3s ease;
}

.gallery-card:hover .gallery-card-icon {
  transform: scale(1.1);
}

.gallery-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem;
}

.gallery-card-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.25;
}

.gallery-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.125rem 0.625rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  background: var(--muted);
  color: var(--muted-foreground);
}

/* ===== About ===== */
.about-section {
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}

.about-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    #e0e7ff 0%,
    #ddd6fe 30%,
    #fce7f3 60%,
    #fae8ff 100%
  );
}

.about-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, #cbd5e1 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.2;
}

.about-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    var(--background),
    transparent,
    var(--background)
  );
}

.about-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .about-content {
    flex-direction: row;
    gap: 4rem;
  }
}

.about-image {
  width: 100%;
  max-width: 24rem;
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .about-image {
    width: 41.666667%;
  }
}

.about-image-placeholder {
  aspect-ratio: 3 / 4;
  width: 100%;
  max-width: 24rem;
  margin: 0 auto;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: linear-gradient(135deg, #fde68a, #ffedd5, #fff1f2);
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 8px 10px -6px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
  color: rgba(255, 255, 255, 0.7);
}

.about-image-icon {
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.05));
}

.about-image-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-text {
  width: 100%;
}

@media (min-width: 1024px) {
  .about-text {
    width: 58.333333%;
  }
}

.accent-line {
  height: 0.25rem;
  width: 4rem;
  border-radius: 9999px;
  background: rgba(91, 106, 191, 0.3);
  margin-top: 0.5rem;
}

.about-paragraphs {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

.about-paragraph {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--muted-foreground);
}

/* ===== Process / Timeline ===== */
.process-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, #cbd5e1 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.1;
}

.timeline {
  position: relative;
  max-width: 56rem;
  margin: 0 auto;
}

.timeline-line {
  display: none;
  position: absolute;
  left: 23px;
  top: 2.5rem;
  bottom: 2.5rem;
  width: 2px;
  background: linear-gradient(
    to bottom,
    rgba(91, 106, 191, 0.4),
    rgba(91, 106, 191, 0.2),
    rgba(91, 106, 191, 0.4)
  );
}

@media (min-width: 768px) {
  .timeline-line {
    display: block;
  }
}

.timeline-stages {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

@media (min-width: 768px) {
  .timeline-stages {
    gap: 4rem;
  }
}

.timeline-stage {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .timeline-stage {
    flex-direction: row;
    gap: 2rem;
  }
}

.timeline-marker {
  display: none;
}

@media (min-width: 768px) {
  .timeline-marker {
    display: flex;
    width: 46px;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
  }
}

.timeline-number {
  position: relative;
  z-index: 10;
  display: flex;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: var(--primary);
  color: var(--primary-foreground);
  font-size: 0.875rem;
  font-weight: 700;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border: 4px solid var(--background);
}

.timeline-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  width: 100%;
}

@media (min-width: 768px) {
  .timeline-card {
    flex-direction: row;
  }
}

.timeline-card-image {
  width: 100%;
}

@media (min-width: 768px) {
  .timeline-card-image {
    width: 41.666667%;
  }
}

.timeline-card-image-inner {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.timeline-card-icon {
  width: 4rem;
  height: 4rem;
  color: rgba(255, 255, 255, 0.6);
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.05));
}

.timeline-card-text {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 0.5rem;
}

@media (min-width: 768px) {
  .timeline-card-text {
    width: 41.666667%;
  }
}

.timeline-mobile-number {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .timeline-mobile-number {
    display: none;
  }
}

.timeline-mobile-badge {
  display: flex;
  width: 2rem;
  height: 2rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: var(--primary);
  color: var(--primary-foreground);
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.timeline-stage-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.timeline-stage-description {
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--muted-foreground);
}


/* ===== Modal ===== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-overlay.open {
  display: flex;
}

.modal {
  background: var(--card);
  border-radius: var(--radius);
  max-width: 28rem;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  animation: modal-in 0.2s ease-out;
}

@keyframes modal-in {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.modal-image {
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-image-icon {
  width: 6rem;
  height: 6rem;
  color: rgba(255, 255, 255, 0.6);
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.05));
}

.modal-body {
  padding: 1.5rem;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  border-radius: 9999px;
  background: var(--muted);
  color: var(--muted-foreground);
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s;
}

.modal-close:hover {
  background: var(--border);
  color: var(--foreground);
}

.modal-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.modal-description {
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.modal-materials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}

/* ===== Footer ===== */
.site-footer {
  border-top: 1px solid var(--border);
  background: rgba(238, 240, 245, 0.3);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 3rem 1rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.625;
}

.footer-heading {
  font-size: 0.875rem;
  font-weight: 600;
}

.footer-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--foreground);
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: var(--muted);
  color: var(--muted-foreground);
  transition:
    color 0.2s,
    background 0.2s;
}

.footer-social:hover {
  color: var(--foreground);
  background: rgba(107, 114, 128, 0.1);
}

.footer-bottom {
  border-top: 1px solid var(--border);
}

.footer-copy {
  padding: 1rem;
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* ===== Animations ===== */
.animate {
  opacity: 0;
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.animate.visible {
  opacity: 1;
}

.fade-in-up {
  transform: translateY(20px);
}



.delay-100 {
  transition-delay: 100ms;
}

.delay-150 {
  transition-delay: 150ms;
}

.delay-200 {
  transition-delay: 200ms;
}

.delay-300 {
  transition-delay: 300ms;
}

.gallery-card.animate {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

.gallery-card.animate.visible {
  opacity: 1;
  transform: translateY(0);
}

.timeline-card.animate {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

.timeline-card.animate.visible {
  opacity: 1;
  transform: translateY(0);
}

.about-paragraph.animate {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

.about-paragraph.animate.visible {
  opacity: 1;
  transform: translateY(0);
}


.about-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.about-image-placeholder {
    width: 100%;
    height: 100%;
}

.about-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease-out;
}

.about-image-placeholder:hover img {
    transform: scale(1.1);
}


.footer-socials {
    display: flex;
    gap: 12px;
}
.footer-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: inherit;
    transition: color 0.2s ease;
}
.footer-social:hover {
    color: #0088cc;
}


.image-scale{
    transition: transform 0.5s ease;
    transform: scale(1);
}
.image-scale:hover{
    transform: scale(1.1);
}
.text-center {
    padding: 15px;
    text-align: center;
}


#background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: brightness(0.6) contrast(1.1);
}

/* Add some content at the bottom of the video/page */
.content {
  position: fixed;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  color: #f1f1f1;
  width: 100%;
  padding: 20px;
}

/* ===== Product Card ===== */
.product-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

@media (min-width: 768px) {
  .product-card {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.product-card-image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover .product-card-image img {
  transform: scale(1.05);
}

.product-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 0.875rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 10;
}

.product-card-badge.new {
  background: #10b981;
  color: white;
}

.product-card-badge.hit {
  background: var(--primary);
  color: var(--primary-foreground);
}

.product-card-badge.sale {
  background: #ef4444;
  color: white;
}

.product-card-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem;
  justify-content: center;
}

@media (min-width: 768px) {
  .product-card-content {
    padding: 2.5rem;
  }
}

.product-card-header {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.product-card-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

@media (min-width: 640px) {
  .product-card-title {
    font-size: 2.25rem;
  }
}

.product-card-price {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
  font-family: var(--font-sans);
}

.product-card-price-old {
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--muted-foreground);
  text-decoration: line-through;
  margin-left: 0.75rem;
}

.product-card-description {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--muted-foreground);
}

.product-card-specs {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.25rem;
  background: var(--background);
  border-radius: 0.5rem;
  border: 1px solid var(--border);
}

.product-card-specs-title {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted-foreground);
}

.product-card-spec {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  padding: 0.375rem 0;
  border-bottom: 1px solid var(--border);
}

.product-card-spec:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.product-card-spec:first-child {
  padding-top: 0;
}

.product-card-spec-label {
  color: var(--muted-foreground);
}

.product-card-spec-value {
  font-weight: 500;
  color: var(--foreground);
}

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

.product-card-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 0.5rem;
}

.btn-order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  color: var(--primary-foreground);
  background: var(--primary);
  cursor: pointer;
  transition:
    background 0.2s ease,
    transform 0.1s ease,
    box-shadow 0.2s ease;
  box-shadow: 0 4px 12px rgba(91, 106, 191, 0.25);
}

.btn-order:hover {
  background: #4c5aa6;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(91, 106, 191, 0.35);
}

.btn-order:active {
  transform: translateY(0);
}

.btn-order svg {
  width: 20px;
  height: 20px;
}

.btn-quick-view {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
  font-family: inherit;
  color: var(--foreground);
  background: transparent;
  cursor: pointer;
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.btn-quick-view:hover {
  color: var(--primary);
  border-color: var(--primary);
  background: rgba(91, 106, 191, 0.05);
}

.btn-quick-view svg {
  width: 18px;
  height: 18px;
}

/* ===== Order Modal ===== */
.order-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.order-modal-overlay.open {
  display: flex;
}

.order-modal {
  background: var(--card);
  border-radius: var(--radius);
  max-width: 500px;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  animation: modal-in 0.2s ease-out;
  max-height: 90vh;
  overflow-y: auto;
}

.order-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.order-modal-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
}

.order-modal-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  border-radius: 0.375rem;
  background: transparent;
  color: var(--muted-foreground);
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s;
}

.order-modal-close:hover {
  background: var(--muted);
  color: var(--foreground);
}

.order-modal-body {
  padding: 1.5rem;
}

.order-modal-product {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: var(--background);
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  margin-bottom: 1.5rem;
}

.order-modal-product-image {
  width: 60px;
  height: 60px;
  border-radius: 0.375rem;
  overflow: hidden;
  flex-shrink: 0;
}

.order-modal-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.order-modal-product-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}

.order-modal-product-name {
  font-weight: 600;
  font-size: 0.9375rem;
}

.order-modal-product-price {
  font-size: 0.875rem;
  color: var(--primary);
  font-weight: 600;
}

.order-modal .form-group {
  margin-bottom: 1.25rem;
}

.order-modal .btn-primary {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
}

@media (min-width: 768px) {
  .order-modal-body {
    padding: 2rem;
  }
}

/* ===== Contact Form ===== */
.contact-form-wrapper {
  max-width: 500px;
  margin: 0 auto;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: var(--card);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
}

.form-input,
.form-textarea {
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 0.375rem;
  font-size: 1rem;
  font-family: inherit;
  color: var(--foreground);
  background: var(--background);
  transition: border-color 0.2s;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(91, 106, 191, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.375rem;
  font-size: 1rem;
  font-weight: 500;
  font-family: inherit;
  color: var(--primary-foreground);
  background: var(--primary);
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.1s;
}

.btn-primary:hover {
  background: #4c5aa6;
}

.btn-primary:active {
  transform: scale(0.98);
}

@media (min-width: 640px) {
  .contact-form {
    padding: 2.5rem;
  }
}
