@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,400;1,600&display=swap');

:root {
  --primary-color: #0f172a;
  --primary-light: #1e293b;
  --accent-color: #c5a880;
  --accent-hover: #b08d60;
  --accent-soft: rgba(197, 168, 128, 0.15);
  --bg-main: #fcfbfa;
  --bg-surface: #ffffff;
  --bg-alt: #f4f2ee;
  --text-main: #18181b;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --border-color: #e2e8f0;
  --border-light: #f1f5f9;
  --card-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.06), 0 8px 10px -6px rgba(15, 23, 42, 0.04);
  --card-shadow-hover: 0 20px 35px -5px rgba(15, 23, 42, 0.12), 0 10px 15px -5px rgba(15, 23, 42, 0.08);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

button, input, textarea, select {
  font-family: inherit;
  border: none;
  outline: none;
}

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  transition: var(--transition);
}

.nav-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--primary-color);
}

.brand-logo i {
  color: var(--accent-color);
  font-size: 1.35rem;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
  position: relative;
  padding: 0.3rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-color);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.cart-btn-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--bg-alt);
  border-radius: var(--radius-full);
  color: var(--primary-color);
  font-size: 1.1rem;
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.cart-btn-link:hover {
  background: var(--primary-color);
  color: #ffffff;
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--accent-color);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  min-width: 20px;
  height: 20px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.hamburger-btn {
  display: none;
  background: transparent;
  font-size: 1.4rem;
  color: var(--primary-color);
  cursor: pointer;
  padding: 0.4rem;
  transition: var(--transition);
}

.hamburger-btn:hover {
  color: var(--accent-color);
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 75%;
  height: 100vh;
  background: #ffffff;
  z-index: 2000;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 2.5rem 1.5rem;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav-drawer.open {
  right: 0;
}

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

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

.drawer-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 2rem;
}

.drawer-close-btn {
  background: var(--bg-alt);
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary-color);
  cursor: pointer;
  transition: var(--transition);
}

.drawer-close-btn:hover {
  background: var(--primary-color);
  color: #ffffff;
}

.mobile-links-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.mobile-link {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-main);
  padding: 0.5rem 1rem;
  display: block;
  width: 100%;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.mobile-link:hover,
.mobile-link.active {
  color: var(--accent-color);
  background: var(--accent-soft);
}

.mobile-drawer-footer {
  margin-top: auto;
  width: 100%;
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.mobile-cart-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  padding: 0.85rem 1.2rem;
  background: var(--primary-color);
  color: #ffffff;
  border-radius: var(--radius-md);
  font-weight: 600;
}

.main-content {
  flex: 1;
}

.hero-3d-hologram-stage {
  position: relative;
  min-height: 95vh;
  background: 
    linear-gradient(180deg, rgba(6, 9, 17, 0.78) 0%, rgba(11, 15, 25, 0.84) 50%, rgba(6, 9, 17, 0.96) 100%),
    radial-gradient(circle at 50% 30%, rgba(21, 29, 48, 0.4) 0%, rgba(6, 9, 17, 0.9) 100%),
    url('./images/hero.jpg') center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 1.5rem 4rem 1.5rem;
  overflow: hidden;
}

.hologram-ambient-light {
  position: absolute;
  border-radius: var(--radius-full);
  pointer-events: none;
  z-index: 1;
}

.hologram-ambient-light.light-top {
  width: 750px;
  height: 750px;
  background: radial-gradient(circle, rgba(197, 168, 128, 0.25) 0%, rgba(197, 168, 128, 0.12) 30%, rgba(197, 168, 128, 0.04) 55%, transparent 75%);
  top: -180px;
  left: 50%;
  transform: translateX(-50%);
  animation: holoPulse 7s ease-in-out infinite alternate;
}

.hologram-ambient-light.light-bottom {
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.18) 0%, rgba(56, 189, 248, 0.08) 35%, rgba(56, 189, 248, 0.02) 55%, transparent 75%);
  bottom: -130px;
  left: 50%;
  transform: translateX(-50%);
  animation: holoPulse 9s ease-in-out infinite alternate-reverse;
}

.hologram-grid-floor {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 45%;
  background-size: 40px 40px;
  background-image: 
    linear-gradient(to right, rgba(197, 168, 128, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(197, 168, 128, 0.08) 1px, transparent 1px);
  transform: perspective(600px) rotateX(65deg);
  transform-origin: bottom center;
  mask-image: linear-gradient(to top, black 20%, transparent 90%);
  -webkit-mask-image: linear-gradient(to top, black 20%, transparent 90%);
  pointer-events: none;
  z-index: 1;
}

.hologram-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hologram-header-content {
  max-width: 820px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 3.5rem;
}

.hologram-pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1.4rem;
  background: rgba(197, 168, 128, 0.15);
  border: 1px solid rgba(197, 168, 128, 0.35);
  border-radius: var(--radius-full);
  color: #fce7cf;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.hologram-pill-tag i {
  color: var(--accent-color);
}

.hologram-main-headline {
  font-family: var(--font-serif);
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hologram-line-sub {
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent-color);
  font-family: var(--font-sans);
  margin-bottom: 0.35rem;
}

.hologram-line-main {
  background: linear-gradient(135deg, #ffffff 0%, #ecd3b4 50%, #c5a880 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 40px rgba(197, 168, 128, 0.3);
}

.hologram-description {
  font-size: 1.1rem;
  color: #cbd5e1;
  line-height: 1.7;
  max-width: 680px;
  margin-bottom: 2rem;
}

.hologram-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.hero-prism-btn-men {
  background: linear-gradient(135deg, #c5a880 0%, #9e7f55 100%);
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(197, 168, 128, 0.4);
}

.hero-prism-btn-men:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 30px rgba(197, 168, 128, 0.55);
}

.hero-prism-btn-women {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  backdrop-filter: blur(10px);
}

.hero-prism-btn-women:hover {
  background: #ffffff;
  color: var(--primary-color);
  transform: translateY(-3px) scale(1.02);
}

.hologram-3d-scene-container {
  position: relative;
  width: 100%;
  max-width: 640px;
  height: 490px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 3.5rem;
  z-index: 10;
}

.hologram-prism-carousel {
  position: relative;
  width: 290px;
  height: 410px;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  transform: perspective(1200px) translateZ(-240px) rotateY(0deg);
  -webkit-transform: perspective(1200px) translateZ(-240px) rotateY(0deg);
  transition: transform 0.85s cubic-bezier(0.2, 0.85, 0.3, 1.05);
}

.prism-facet {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  border-radius: var(--radius-lg);
  background: #0f172a;
  border: 1.5px solid rgba(197, 168, 128, 0.45);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 25px rgba(197, 168, 128, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  transform-style: flat;
  -webkit-transform-style: flat;
  isolation: isolate;
  will-change: transform;
}

.prism-facet.active-facet {
  border-color: rgba(197, 168, 128, 0.95);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), 0 0 35px rgba(197, 168, 128, 0.3);
  z-index: 5;
}

.prism-facet.facet-front {
  transform: rotateY(0deg) translateZ(240px);
  -webkit-transform: rotateY(0deg) translateZ(240px);
}

.prism-facet.facet-right {
  transform: rotateY(90deg) translateZ(240px);
  -webkit-transform: rotateY(90deg) translateZ(240px);
}

.prism-facet.facet-back {
  transform: rotateY(180deg) translateZ(240px);
  -webkit-transform: rotateY(180deg) translateZ(240px);
}

.prism-facet.facet-left {
  transform: rotateY(270deg) translateZ(240px);
  -webkit-transform: rotateY(270deg) translateZ(240px);
}

.prism-facet-img {
  width: 100%;
  height: 245px;
  overflow: hidden;
  background: #0f172a;
  position: relative;
  border-radius: calc(var(--radius-lg) - 1.5px) calc(var(--radius-lg) - 1.5px) 0 0;
  transform: translateZ(0);
}

.prism-facet-img a {
  display: block;
  width: 100%;
  height: 100%;
}

.prism-facet-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s ease;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: high-quality;
  display: block;
  transform: translateZ(0);
}

.prism-facet:hover .prism-facet-img img {
  transform: scale(1.05);
}

.prism-facet-info {
  padding: 1.1rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  width: 100%;
  background: #0f172a;
  position: relative;
  z-index: 2;
  border-radius: 0 0 calc(var(--radius-lg) - 1.5px) calc(var(--radius-lg) - 1.5px);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.prism-facet-badge {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-color);
  -webkit-font-smoothing: antialiased;
  line-height: 1.2;
}

.prism-facet-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  -webkit-font-smoothing: antialiased;
  line-height: 1.3;
}

.prism-facet-price {
  font-size: 1.2rem;
  font-weight: 800;
  color: #38bdf8;
  margin-bottom: 0.35rem;
  -webkit-font-smoothing: antialiased;
  line-height: 1.2;
}

.prism-facet-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-color);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition);
  -webkit-font-smoothing: antialiased;
  line-height: 1.2;
}

.prism-facet-link:hover {
  color: #ffffff;
  gap: 0.65rem;
}

.prism-hologram-ring {
  position: absolute;
  bottom: 0px;
  width: 440px;
  height: 140px;
  border-radius: 50%;
  border: 1.5px solid rgba(197, 168, 128, 0.35);
  box-shadow: 0 0 40px rgba(197, 168, 128, 0.3), inset 0 0 25px rgba(56, 189, 248, 0.2);
  transform: rotateX(75deg);
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

.prism-podium-base {
  position: absolute;
  bottom: 25px;
  width: 320px;
  height: 90px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(197, 168, 128, 0.35) 0%, rgba(15, 23, 42, 0.8) 70%, transparent 100%);
  transform: rotateX(75deg);
  pointer-events: none;
  z-index: 1;
}

.prism-controls-wrapper {
  position: absolute;
  bottom: -20px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  z-index: 10;
}

.prism-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(197, 168, 128, 0.4);
  color: #ffffff;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.prism-nav-btn:hover {
  background: var(--accent-color);
  color: #ffffff;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(197, 168, 128, 0.5);
}

.prism-indicators {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.indicator-dot {
  padding: 0.25rem 0.65rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  color: #94a3b8;
  font-size: 0.72rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.indicator-dot.active,
.indicator-dot:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: #ffffff;
  box-shadow: 0 0 10px rgba(197, 168, 128, 0.5);
}

.hologram-features-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  padding: 1.5rem 2.5rem;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(14px);
  width: 100%;
  max-width: 980px;
}

.holo-feature-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: left;
}

.holo-feature-box i {
  font-size: 1.4rem;
  color: var(--accent-color);
}

.holo-feature-text {
  display: flex;
  flex-direction: column;
}

.holo-feature-text strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
}

.holo-feature-text span {
  font-size: 0.78rem;
  color: #94a3b8;
}

.holo-feature-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.12);
}

@keyframes holoPulse {
  0% {
    transform: translateX(-50%) scale(0.9);
    opacity: 0.3;
  }
  100% {
    transform: translateX(-50%) scale(1.15);
    opacity: 0.55;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 2rem;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  background: var(--accent-color);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(197, 168, 128, 0.4);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(197, 168, 128, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
}

.btn-secondary:hover {
  background: #ffffff;
  color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-dark {
  background: var(--primary-color);
  color: #ffffff;
}

.btn-dark:hover {
  background: var(--accent-color);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--primary-color);
  border: 1.5px solid var(--primary-color);
}

.btn-outline:hover {
  background: var(--primary-color);
  color: #ffffff;
}

.section-wrapper {
  max-width: 1320px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem auto;
}

.section-badge {
  display: inline-block;
  color: var(--accent-color);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
}

.hero-3d-cards-section {
  background: var(--bg-alt);
  padding: 5rem 1.5rem;
}

.hero-3d-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  perspective: 1200px;
}

.hero-3d-card {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border-color);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-3d-card:hover {
  transform: translateY(-10px) rotateY(3deg) rotateX(2deg);
  box-shadow: var(--card-shadow-hover);
}

.hero-3d-img-box {
  width: 100%;
  height: 340px;
  overflow: hidden;
  position: relative;
  background: #e2e8f0;
}

.hero-3d-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-3d-card:hover .hero-3d-img-box img {
  transform: scale(1.05);
}

.hero-3d-content {
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.hero-3d-tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-color);
  margin-bottom: 0.35rem;
}

.hero-3d-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.hero-3d-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.hero-3d-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-3d-link:hover {
  color: var(--accent-color);
  gap: 0.7rem;
}

.featured-split-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.featured-card {
  position: relative;
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: var(--transition);
}

.featured-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-shadow-hover);
}

.featured-img-wrap {
  width: 100%;
  height: 420px;
  overflow: hidden;
  position: relative;
}

.featured-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-card:hover .featured-img-wrap img {
  transform: scale(1.04);
}

.featured-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background: rgba(15, 23, 42, 0.85);
  color: #ffffff;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  backdrop-filter: blur(6px);
}

.featured-body {
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.featured-category-title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.6rem;
}

.featured-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  max-width: 440px;
  line-height: 1.6;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.category-card {
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: var(--transition);
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--card-shadow-hover);
}

.category-img-box {
  width: 100%;
  height: 320px;
  overflow: hidden;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-img-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card:hover .category-img-box img {
  transform: scale(1.05);
}

.category-body {
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.category-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.4rem;
}

.category-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.page-banner {
  background: var(--primary-color);
  color: #ffffff;
  padding: 4.5rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(197, 168, 128, 0.18) 0%, rgba(15, 23, 42, 0.95) 75%);
}

.page-banner-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-banner-badge {
  color: var(--accent-color);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.page-banner-title {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.page-banner-subtitle {
  color: var(--text-light);
  font-size: 1.05rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.product-card {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: var(--transition);
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--card-shadow-hover);
  border-color: rgba(197, 168, 128, 0.4);
}

.product-img-box {
  width: 100%;
  height: 320px;
  overflow: hidden;
  position: relative;
  background: #f8fafc;
  flex-shrink: 0;
}

.product-img-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.product-info {
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  width: 100%;
}

.product-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.35rem;
  min-height: 2.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
  line-height: 1.4;
  min-height: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--accent-hover);
  margin-bottom: 1.25rem;
}

.add-to-cart-btn {
  width: 100%;
  padding: 0.8rem 1rem;
  background: var(--primary-color);
  color: #ffffff;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: var(--transition);
}

.add-to-cart-btn:hover {
  background: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(197, 168, 128, 0.4);
}

.editorial-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}

.editorial-section.reverse {
  grid-template-columns: 0.9fr 1.1fr;
}

.editorial-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  height: 520px;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
}

.editorial-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
}

.editorial-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem;
}

.editorial-tag {
  color: var(--accent-color);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.editorial-title {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.25;
  margin-bottom: 1rem;
}

.editorial-desc {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.collage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.collage-item {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: var(--transition);
}

.collage-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-shadow-hover);
}

.collage-img-box {
  width: 100%;
  height: 380px;
  overflow: hidden;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
}

.collage-img-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
  transition: transform 0.6s ease;
}

.collage-item:hover .collage-img-box img {
  transform: scale(1.05);
}

.collage-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.collage-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.4rem;
}

.collage-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3.5rem;
  align-items: start;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.contact-info-card {
  background: var(--bg-surface);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.contact-info-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}

.contact-info-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.contact-items-list {
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-sizing: border-box;
}

.contact-item-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.25rem 1rem;
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  text-align: center;
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--primary-color);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-item-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

.contact-item-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary-color);
  word-break: break-word;
  overflow-wrap: anywhere;
  max-width: 100%;
  text-align: center;
  display: inline-block;
}

.contact-form-card {
  background: var(--bg-surface);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--card-shadow);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.form-group {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.form-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-color);
  text-align: left;
}

.form-input,
.form-textarea {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 0.9rem 1.1rem;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  background: #ffffff;
  color: var(--text-main);
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

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

.form-submit-btn {
  width: 100%;
  padding: 1rem;
  background: var(--primary-color);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

.form-submit-btn:hover {
  background: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(197, 168, 128, 0.4);
}

.cart-layout {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.cart-items-panel {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--card-shadow);
  padding: 2rem;
}

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

.cart-items-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color);
}

.cart-clear-btn {
  font-size: 0.85rem;
  color: #ef4444;
  background: transparent;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: var(--transition);
}

.cart-clear-btn:hover {
  text-decoration: underline;
}

.cart-table {
  width: 100%;
  border-collapse: collapse;
}

.cart-table th {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  padding: 0.75rem 0.5rem;
  border-bottom: 1px solid var(--border-color);
}

.cart-table td {
  padding: 1.25rem 0.5rem;
  border-bottom: 1px solid var(--border-light);
  text-align: center;
  vertical-align: middle;
}

.cart-product-cell {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: left;
}

.cart-thumb {
  width: 70px;
  height: 85px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
  background: #f1f5f9;
}

.cart-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-details {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.cart-item-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary-color);
}

.cart-item-size {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.cart-qty-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  background: var(--bg-alt);
  overflow: hidden;
}

.qty-btn {
  background: transparent;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.8rem;
  color: var(--primary-color);
  transition: var(--transition);
}

.qty-btn:hover {
  background: var(--accent-color);
  color: #ffffff;
}

.qty-val {
  width: 32px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-color);
}

.cart-remove-btn {
  background: transparent;
  color: #94a3b8;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  padding: 0.4rem;
}

.cart-remove-btn:hover {
  color: #ef4444;
  transform: scale(1.15);
}

.cart-summary-panel {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--card-shadow);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.summary-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  width: 100%;
}

.summary-rows-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1.5rem;
}

.summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.summary-row.total {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary-color);
  padding-top: 0.5rem;
}

.checkout-btn {
  width: 100%;
  padding: 1rem;
  background: var(--accent-color);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  box-shadow: 0 4px 15px rgba(197, 168, 128, 0.4);
}

.checkout-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(197, 168, 128, 0.5);
}

.empty-cart-state {
  padding: 4rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.empty-cart-icon {
  width: 90px;
  height: 90px;
  border-radius: var(--radius-full);
  background: var(--bg-alt);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.empty-cart-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.empty-cart-desc {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 440px;
  margin-bottom: 2rem;
}

.site-footer {
  background: var(--primary-color);
  color: #ffffff;
  padding: 5rem 1.5rem 2rem 1.5rem;
  margin-top: auto;
  border-top: 1px solid var(--primary-light);
}

.footer-container {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.45rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
}

.footer-logo i {
  color: var(--accent-color);
}

.footer-brand-desc {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 320px;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.social-icon-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.social-icon-btn:hover {
  background: var(--accent-color);
  color: #ffffff;
  border-color: var(--accent-color);
  transform: translateY(-3px);
}

.footer-col-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.25rem;
  letter-spacing: 0.5px;
}

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

.footer-link {
  font-size: 0.9rem;
  color: var(--text-light);
  transition: var(--transition);
}

.footer-link:hover {
  color: var(--accent-color);
  padding-left: 4px;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-light);
  font-size: 0.9rem;
}

.footer-contact-row i {
  color: var(--accent-color);
  font-size: 1rem;
}

.footer-bottom {
  max-width: 1320px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: left;
  color: var(--text-light);
  font-size: 0.85rem;
}

.toast-container {
  position: fixed;
  top: 25px;
  right: 25px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
}

.toast-msg {
  pointer-events: auto;
  min-width: 300px;
  max-width: 420px;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.92rem;
  font-weight: 600;
  animation: toastSlideIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.toast-msg.toast-success {
  background: #0f172a;
  color: #ffffff;
  border-left: 5px solid #10b981;
}

.toast-msg.toast-success i {
  color: #10b981;
  font-size: 1.2rem;
}

.toast-msg.toast-error {
  background: #0f172a;
  color: #ffffff;
  border-left: 5px solid #ef4444;
}

.toast-msg.toast-error i {
  color: #ef4444;
  font-size: 1.2rem;
}

.toast-msg.fade-out {
  opacity: 0;
  transform: translateX(100%);
}

@keyframes toastSlideIn {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.breadcrumb-nav {
  padding: 1.25rem 0 2rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  max-width: 100%;
}

.breadcrumb-nav::-webkit-scrollbar {
  display: none;
}

.breadcrumb-nav a {
  color: var(--text-muted);
  font-weight: 500;
  flex-shrink: 0;
}

.breadcrumb-nav a:hover {
  color: var(--accent-color);
}

.breadcrumb-separator {
  font-size: 0.7rem;
  color: var(--text-light);
  flex-shrink: 0;
}

.breadcrumb-current {
  color: var(--primary-color);
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

.product-detail-layout {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr;
  gap: 3.5rem;
  align-items: start;
  margin-bottom: 4.5rem;
}

.product-detail-gallery {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.detail-main-img-box {
  width: 100%;
  height: 580px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border-color);
  background: var(--bg-surface);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.detail-main-img-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  transition: transform 0.6s ease;
}

.detail-main-img-box:hover img {
  transform: scale(1.04);
}

.detail-gallery-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background: rgba(15, 23, 42, 0.85);
  color: #ffffff;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.gallery-trust-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 1rem;
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  text-align: center;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
}

.trust-item i {
  color: var(--accent-color);
  font-size: 1.1rem;
}

.product-detail-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.detail-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.detail-category-tag {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-color);
}

.detail-sku {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 600;
}

.detail-product-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.2;
}

.detail-rating-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.rating-stars {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  color: #eab308;
  font-size: 0.9rem;
}

.rating-count {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

.detail-price-box {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.detail-price-current {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
}

.detail-stock-status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #10b981;
  font-size: 0.85rem;
  font-weight: 700;
}

.detail-stock-status i {
  font-size: 0.6rem;
}

.detail-description-text {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.detail-size-section {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.size-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.size-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary-color);
}

.size-chart-btn {
  background: transparent;
  color: var(--accent-color);
  font-size: 0.85rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  transition: var(--transition);
}

.size-chart-btn:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}

.detail-size-options {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.detail-size-pill {
  min-width: 44px;
  height: 44px;
  padding: 0 0.85rem;
  border-radius: var(--radius-sm);
  background: var(--bg-surface);
  border: 1.5px solid var(--border-color);
  color: var(--text-main);
  font-size: 0.9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.detail-size-pill:hover,
.detail-size-pill.active {
  background: var(--primary-color);
  color: #ffffff;
  border-color: var(--primary-color);
}

.detail-actions-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.detail-qty-stepper {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  background: var(--bg-surface);
  height: 52px;
  overflow: hidden;
}

.detail-qty-btn {
  width: 40px;
  height: 100%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  cursor: pointer;
  font-size: 0.9rem;
  transition: var(--transition);
}

.detail-qty-btn:hover {
  background: var(--bg-alt);
}

.detail-qty-val {
  width: 40px;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-color);
}

.detail-add-cart-btn {
  flex: 1;
  height: 52px;
  background: var(--primary-color);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  cursor: pointer;
  transition: var(--transition);
}

.detail-add-cart-btn:hover {
  background: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(197, 168, 128, 0.4);
}

.detail-wishlist-btn {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--bg-surface);
  border: 1.5px solid var(--border-color);
  color: var(--text-muted);
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.detail-wishlist-btn:hover {
  border-color: #ef4444;
  color: #ef4444;
  transform: translateY(-2px);
}

.detail-wishlist-btn.active {
  background: #fef2f2;
  border-color: #ef4444;
  color: #ef4444;
}

.delivery-estimate-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem;
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

.delivery-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--primary-color);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.delivery-text-group {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.delivery-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-color);
}

.delivery-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.product-accordion-container {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-top: 1px solid var(--border-color);
  padding-top: 1.5rem;
}

.accordion-item {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  background: var(--bg-surface);
  overflow: hidden;
}

.accordion-trigger {
  width: 100%;
  padding: 1.1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-color);
  cursor: pointer;
  transition: var(--transition);
}

.accordion-trigger:hover {
  background: var(--bg-alt);
}

.accordion-trigger i {
  font-size: 0.85rem;
  transition: transform 0.3s ease;
  color: var(--accent-color);
}

.accordion-item.active .accordion-trigger i {
  transform: rotate(180deg);
}

.accordion-content {
  display: none;
  padding: 0 1.25rem 1.25rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.accordion-item.active .accordion-content {
  display: block;
}

.size-chart-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(6px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.size-chart-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.size-chart-modal {
  background: var(--bg-surface);
  width: 100%;
  max-width: 640px;
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border-color);
  padding: 2rem;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.size-chart-modal-overlay.active .size-chart-modal {
  transform: translateY(0);
}

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

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

.modal-close-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
}

.modal-close-btn:hover {
  background: var(--primary-color);
  color: #ffffff;
}

.size-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
}

.size-table th {
  background: var(--bg-alt);
  padding: 0.85rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-color);
  border: 1px solid var(--border-color);
  text-align: center;
}

.size-table td {
  padding: 0.85rem;
  font-size: 0.88rem;
  text-align: center;
  border: 1px solid var(--border-color);
  color: var(--text-main);
}

.size-table tr:nth-child(even) {
  background: #fafaf9;
}

.size-guide-tip {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.size-guide-tip i {
  color: var(--accent-color);
}

@media (max-width: 1024px) {
  .product-detail-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .product-detail-gallery {
    position: static;
  }

  .detail-main-img-box {
    height: 480px;
  }

  .hologram-main-headline {
    font-size: 3.2rem;
  }

  .hologram-features-bar {
    gap: 1.5rem;
    padding: 1.25rem 1.75rem;
  }

  .hero-3d-grid,
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .category-grid,
  .collage-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .editorial-section,
  .editorial-section.reverse {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .editorial-img-wrap {
    height: 420px;
  }
}

@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }

  .hamburger-btn {
    display: block;
  }

  .detail-product-title {
    font-size: 2rem;
  }

  .detail-main-img-box {
    height: 380px;
  }

  .hologram-main-headline {
    font-size: 2.6rem;
  }

  .hologram-line-sub {
    font-size: 1.1rem;
  }

  .hologram-description {
    font-size: 0.98rem;
  }

  .hologram-3d-scene-container {
    height: 450px;
  }

  .hologram-prism-carousel {
    width: 250px;
    height: 370px;
    transform: perspective(1200px) translateZ(-190px) rotateY(0deg);
    -webkit-transform: perspective(1200px) translateZ(-190px) rotateY(0deg);
  }

  .prism-facet.facet-front {
    transform: rotateY(0deg) translateZ(190px);
    -webkit-transform: rotateY(0deg) translateZ(190px);
  }

  .prism-facet.facet-right {
    transform: rotateY(90deg) translateZ(190px);
    -webkit-transform: rotateY(90deg) translateZ(190px);
  }

  .prism-facet.facet-back {
    transform: rotateY(180deg) translateZ(190px);
    -webkit-transform: rotateY(180deg) translateZ(190px);
  }

  .prism-facet.facet-left {
    transform: rotateY(270deg) translateZ(190px);
    -webkit-transform: rotateY(270deg) translateZ(190px);
  }

  .prism-hologram-ring {
    width: 360px;
    height: 110px;
    bottom: -5px;
  }

  .hologram-features-bar {
    flex-direction: column;
    gap: 1.25rem;
    align-items: center;
    text-align: center;
  }

  .holo-feature-box {
    justify-content: center;
    text-align: center;
    flex-direction: column;
    gap: 0.4rem;
  }

  .holo-feature-divider {
    display: none;
  }

  .featured-split-grid {
    grid-template-columns: 1fr;
  }

  .category-grid,
  .collage-grid {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2.25rem;
    width: 100%;
  }

  .contact-info-card,
  .contact-form-card {
    padding: 2rem 1.5rem;
    width: 100%;
  }

  .cart-layout {
    grid-template-columns: 1fr;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .footer-brand-col {
    align-items: flex-start;
  }

  .footer-socials {
    justify-content: flex-start;
  }

  .footer-contact-row {
    justify-content: flex-start;
  }

  .cart-table,
  .cart-table thead,
  .cart-table tbody,
  .cart-table th,
  .cart-table td,
  .cart-table tr {
    display: block;
  }

  .cart-table thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }

  .cart-table tr {
    background: var(--bg-alt);
    border-radius: var(--radius-md);
    padding: 1rem;
    margin-bottom: 1.25rem;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .cart-table td {
    padding: 0.25rem 0;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  .cart-table td.cart-product-cell-wrapper {
    justify-content: flex-start;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid var(--border-color);
  }

  .cart-table td::before {
    content: attr(data-label);
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
  }

  .cart-table td.cart-product-cell-wrapper::before {
    display: none;
  }
}

@media (max-width: 580px) {
  .breadcrumb-nav {
    font-size: 0.8rem;
    gap: 0.4rem;
    padding: 0.85rem 0 1.25rem 0;
    white-space: nowrap;
    overflow-x: auto;
    width: 100%;
  }

  .detail-product-title {
    font-size: 1.75rem;
  }

  .gallery-trust-bar {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    padding: 0.75rem 0.5rem;
  }

  .trust-item {
    font-size: 0.72rem;
    gap: 0.2rem;
  }

  .trust-item i {
    font-size: 0.95rem;
  }

  .detail-actions-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.6rem;
    width: 100%;
  }

  .detail-qty-stepper {
    height: 48px;
    border-radius: var(--radius-md);
    flex-shrink: 0;
  }

  .detail-qty-btn {
    width: 34px;
  }

  .detail-qty-val {
    width: 32px;
    font-size: 0.95rem;
  }

  .detail-add-cart-btn {
    flex: 1;
    height: 48px;
    font-size: 0.92rem;
    padding: 0 0.8rem;
    border-radius: var(--radius-md);
    white-space: nowrap;
  }

  .detail-wishlist-btn {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: var(--radius-md);
  }

  .hologram-main-headline {
    font-size: 2.1rem;
  }

  .hologram-cta-row {
    flex-direction: column;
    width: 100%;
  }

  .hero-prism-btn-men,
  .hero-prism-btn-women {
    width: 100%;
  }

  .hologram-3d-scene-container {
    height: 400px;
  }

  .hologram-prism-carousel {
    width: 220px;
    height: 330px;
    transform: perspective(1200px) translateZ(-150px) rotateY(0deg);
    -webkit-transform: perspective(1200px) translateZ(-150px) rotateY(0deg);
  }

  .prism-facet.facet-front {
    transform: rotateY(0deg) translateZ(150px);
    -webkit-transform: rotateY(0deg) translateZ(150px);
  }

  .prism-facet.facet-right {
    transform: rotateY(90deg) translateZ(150px);
    -webkit-transform: rotateY(90deg) translateZ(150px);
  }

  .prism-facet.facet-back {
    transform: rotateY(180deg) translateZ(150px);
    -webkit-transform: rotateY(180deg) translateZ(150px);
  }

  .prism-facet.facet-left {
    transform: rotateY(270deg) translateZ(150px);
    -webkit-transform: rotateY(270deg) translateZ(150px);
  }

  .prism-facet-img {
    height: 180px;
  }

  .prism-hologram-ring {
    width: 280px;
    height: 80px;
    bottom: -5px;
  }

  .section-wrapper {
    padding: 3.5rem 1.25rem;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    width: 100%;
  }

  .contact-info-card,
  .contact-form-card {
    padding: 1.75rem 1.25rem;
    border-radius: var(--radius-md);
    width: 100%;
  }

  .contact-info-title {
    font-size: 1.5rem;
  }

  .contact-item-box {
    padding: 1.1rem 0.85rem;
    width: 100%;
  }

  .contact-item-value {
    font-size: 0.88rem;
  }

  .form-input,
  .form-textarea {
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
  }

  .hero-3d-grid,
  .products-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 1.9rem;
  }

  .page-banner-title {
    font-size: 2.2rem;
  }

  .mobile-nav-drawer {
    width: 85%;
  }
}
