/* ============================================================
   Veluna Atelier — Product Landing Page Styles
   Design System: Luxury · Premium · Modern
   ============================================================ */

/* --- Custom Properties --- */
:root {
  --vel-midnight: #1a2744;
  --vel-midnight-light: #2c3e5a;
  --vel-midnight-deep: #121a2e;
  --vel-champagne: #d4b896;
  --vel-champagne-dark: #b8956a;
  --vel-plum: #8b5e83;
  --vel-plum-light: #a87ba0;
  --vel-ivory: #f7f5f2;
  --vel-ivory-dark: #ece7e0;
  --vel-warm-gray: #9a928a;
  --vel-text: #2a2520;
  --vel-text-muted: #6b6560;
  --vel-white: #ffffff;
  --vel-success: #3d8b6e;
  --vel-danger: #c45c5c;

  --vel-font-display: 'Cormorant Garamond', Georgia, serif;
  --vel-font-body: 'Outfit', system-ui, sans-serif;

  --vel-radius-sm: 8px;
  --vel-radius-md: 16px;
  --vel-radius-lg: 24px;
  --vel-radius-xl: 32px;

  --vel-shadow-soft: 0 4px 24px rgba(26, 39, 68, 0.06);
  --vel-shadow-medium: 0 8px 40px rgba(26, 39, 68, 0.1);
  --vel-shadow-float: 0 12px 48px rgba(26, 39, 68, 0.15);

  --vel-glass: rgba(255, 255, 255, 0.72);
  --vel-glass-border: rgba(255, 255, 255, 0.4);

  --vel-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --vel-transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

  --vel-header-height: 72px;
  --vel-announce-height: 40px;
  --vel-wrap-max: 1280px;
  --vel-wrap-pad: clamp(16px, 4vw, 32px);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--vel-font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--vel-text);
  background: var(--vel-ivory);
  overflow-x: hidden;
}

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

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

a:hover {
  color: var(--vel-plum);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

.vel-wrap {
  max-width: var(--vel-wrap-max);
  margin: 0 auto;
  padding: 0 var(--vel-wrap-pad);
}

.vel-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --- Buttons --- */
.vel-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: var(--vel-radius-sm);
  transition: all var(--vel-transition);
  white-space: nowrap;
}

.vel-btn--sm {
  padding: 8px 16px;
  font-size: 13px;
}

.vel-btn--lg {
  padding: 16px 32px;
  font-size: 15px;
}

.vel-btn--block {
  width: 100%;
}

.vel-btn--primary {
  background: linear-gradient(135deg, var(--vel-midnight) 0%, var(--vel-midnight-light) 100%);
  color: var(--vel-white);
  box-shadow: var(--vel-shadow-soft);
}

.vel-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--vel-shadow-medium);
  color: var(--vel-white);
}

.vel-btn--accent {
  background: linear-gradient(135deg, var(--vel-champagne-dark) 0%, var(--vel-champagne) 100%);
  color: var(--vel-midnight-deep);
}

.vel-btn--accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(212, 184, 150, 0.4);
  color: var(--vel-midnight-deep);
}

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

.vel-btn--outline:hover {
  background: var(--vel-midnight);
  color: var(--vel-white);
}

.vel-btn--ghost {
  background: transparent;
  color: var(--vel-midnight);
}

.vel-btn--ghost:hover {
  background: rgba(26, 39, 68, 0.06);
  color: var(--vel-midnight);
}

/* --- Announcement Bar --- */
.vel-announce {
  background: linear-gradient(90deg, var(--vel-midnight-deep) 0%, var(--vel-midnight) 50%, var(--vel-plum) 100%);
  color: var(--vel-champagne);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  height: var(--vel-announce-height);
  display: flex;
  align-items: center;
  position: relative;
  z-index: 100;
  transition: height var(--vel-transition), opacity var(--vel-transition);
}

.vel-announce.is-hidden {
  height: 0;
  opacity: 0;
  overflow: hidden;
}

.vel-announce__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
}

.vel-announce__text {
  display: flex;
  align-items: center;
  gap: 10px;
}

.vel-announce__pulse {
  width: 8px;
  height: 8px;
  background: var(--vel-champagne);
  border-radius: 50%;
  animation: vel-pulse 2s ease-in-out infinite;
}

@keyframes vel-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.vel-announce__close {
  position: absolute;
  right: var(--vel-wrap-pad);
  color: var(--vel-champagne);
  opacity: 0.7;
  padding: 4px;
  transition: opacity var(--vel-transition);
}

.vel-announce__close:hover {
  opacity: 1;
}

/* --- Header --- */
.vel-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: var(--vel-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--vel-glass-border);
  height: var(--vel-header-height);
  display: flex;
  align-items: center;
}

.vel-header__grid {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: clamp(16px, 3vw, 32px);
  width: 100%;
}

.vel-header__brand {
  flex-shrink: 0;
}

.vel-header__logo {
  height: 36px;
  width: auto;
}

.vel-search {
  position: relative;
  max-width: 420px;
  width: 100%;
  justify-self: center;
}

.vel-search__field {
  width: 100%;
  padding: 10px 48px 10px 16px;
  font-size: 14px;
  border: 1.5px solid var(--vel-ivory-dark);
  border-radius: 100px;
  background: var(--vel-white);
  color: var(--vel-text);
  transition: border-color var(--vel-transition), box-shadow var(--vel-transition);
}

.vel-search__field:focus {
  outline: none;
  border-color: var(--vel-champagne);
  box-shadow: 0 0 0 3px rgba(212, 184, 150, 0.2);
}

.vel-search__field::placeholder {
  color: var(--vel-warm-gray);
}

.vel-search__submit {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--vel-midnight);
  color: var(--vel-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--vel-transition);
}

.vel-search__submit img {
  object-fit: contain;
}

.vel-search__submit:hover {
  background: var(--vel-plum);
}

.vel-nav__list {
  display: flex;
  gap: 28px;
}

.vel-nav__link {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
}

.vel-nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--vel-champagne);
  transition: width var(--vel-transition);
}

.vel-nav__link:hover::after {
  width: 100%;
}

.vel-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.vel-header__icon-btn {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vel-midnight);
  transition: background var(--vel-transition);
}

.vel-header__icon-btn:hover {
  background: rgba(26, 39, 68, 0.06);
}

.vel-header__badge {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 18px;
  height: 18px;
  background: var(--vel-plum);
  color: var(--vel-white);
  font-size: 10px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vel-header__menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  padding: 4px;
}

.vel-header__menu-toggle span {
  display: block;
  height: 2px;
  background: var(--vel-midnight);
  border-radius: 2px;
  transition: all var(--vel-transition);
}

.vel-header__menu-toggle.is-active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.vel-header__menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.vel-header__menu-toggle.is-active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Mobile Drawer --- */
.vel-drawer {
  position: fixed;
  top: var(--vel-header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--vel-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 80;
  transform: translateX(100%);
  transition: transform var(--vel-transition);
  padding: 32px var(--vel-wrap-pad);
}

.vel-drawer.is-open {
  transform: translateX(0);
}

.vel-drawer__nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.vel-drawer__nav a {
  font-size: 18px;
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 1px solid var(--vel-ivory-dark);
}

.vel-drawer__nav hr {
  border: none;
  border-top: 1px solid var(--vel-ivory-dark);
  margin: 8px 0;
}

/* --- Breadcrumb --- */
.vel-crumb {
  padding: 16px 0;
  background: var(--vel-white);
  border-bottom: 1px solid var(--vel-ivory-dark);
}

.vel-crumb__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: var(--vel-text-muted);
}

.vel-crumb__list li:not(:last-child)::after {
  content: '/';
  margin-left: 8px;
  color: var(--vel-warm-gray);
}

.vel-crumb__list a:hover {
  color: var(--vel-plum);
}

.vel-crumb__list li[aria-current="page"] {
  color: var(--vel-midnight);
  font-weight: 500;
}

/* --- Product Layout --- */
.vel-product {
  padding: clamp(32px, 5vw, 64px) 0;
}

.vel-product__layout {
  display: grid;
  grid-template-columns: 1fr 1fr 320px;
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

/* --- Gallery --- */
.vel-gallery__stage {
  position: relative;
  background: var(--vel-white);
  border-radius: var(--vel-radius-lg);
  overflow: hidden;
  box-shadow: var(--vel-shadow-soft);
  aspect-ratio: 1;
}

.vel-gallery__hero {
  width: 100%;
  height: 100%;
}

.vel-gallery__main-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity var(--vel-transition);
}

.vel-gallery__main-img.is-fading {
  opacity: 0;
}

.vel-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 100px;
}

.vel-badge--limited {
  background: linear-gradient(135deg, var(--vel-plum) 0%, var(--vel-plum-light) 100%);
  color: var(--vel-white);
  animation: vel-float-badge 3s ease-in-out infinite;
}

@keyframes vel-float-badge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.vel-gallery__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--vel-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--vel-glass-border);
  color: var(--vel-midnight);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all var(--vel-transition);
  z-index: 2;
}

.vel-gallery__stage:hover .vel-gallery__nav {
  opacity: 1;
}

.vel-gallery__nav img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.vel-announce__close img {
  width: 14px;
  height: 14px;
  object-fit: contain;
  opacity: 0.8;
}

.vel-announce__close:hover img {
  opacity: 1;
}

.vel-gallery__nav--prev { left: 12px; }
.vel-gallery__nav--next { right: 12px; }

.vel-gallery__nav:hover {
  background: var(--vel-white);
  box-shadow: var(--vel-shadow-medium);
  transform: translateY(-50%) scale(1.05);
}

.vel-gallery__wish {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--vel-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--vel-glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vel-plum);
  transition: all var(--vel-transition);
  z-index: 2;
}

.vel-gallery__wish:hover {
  background: var(--vel-white);
  transform: scale(1.1);
}

.vel-gallery__wish.is-active {
  color: var(--vel-danger);
}

.vel-gallery__thumbs {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
}

.vel-gallery__thumb {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: var(--vel-radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  transition: all var(--vel-transition);
  opacity: 0.6;
}

.vel-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vel-gallery__thumb:hover,
.vel-gallery__thumb.is-active {
  opacity: 1;
  border-color: var(--vel-champagne);
  box-shadow: var(--vel-shadow-soft);
}

.vel-gallery__thumb.is-active {
  transform: scale(1.05);
}

/* --- Product Info --- */
.vel-info__collection {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vel-plum);
  margin-bottom: 8px;
  display: block;
}

.vel-info__title {
  font-family: var(--vel-font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--vel-midnight);
  margin-bottom: 12px;
}

.vel-info__rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.vel-stars {
  display: flex;
  gap: 2px;
  color: var(--vel-champagne-dark);
}

.vel-stars img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.vel-info__rating-text {
  font-size: 14px;
  color: var(--vel-text-muted);
}

.vel-info__sku {
  font-size: 13px;
  color: var(--vel-text-muted);
  margin-bottom: 24px;
}

/* --- Price Box --- */
.vel-pricebox {
  background: linear-gradient(135deg, rgba(26, 39, 68, 0.03) 0%, rgba(139, 94, 131, 0.05) 100%);
  border: 1px solid var(--vel-ivory-dark);
  border-radius: var(--vel-radius-md);
  padding: 24px;
  margin-bottom: 24px;
}

.vel-pricebox__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.vel-pricebox__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--vel-text-muted);
}

.vel-pricebox__tag {
  background: var(--vel-plum);
  color: var(--vel-white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
}

.vel-pricebox__amounts {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 8px;
}

.vel-pricebox__current {
  font-family: var(--vel-font-display);
  font-size: clamp(28px, 3.5vw, 36px);
  font-weight: 700;
  color: var(--vel-midnight);
}

.vel-pricebox__original {
  font-size: 18px;
  color: var(--vel-warm-gray);
  text-decoration: line-through;
}

.vel-pricebox__installment {
  font-size: 13px;
  color: var(--vel-text-muted);
  margin-bottom: 12px;
}

.vel-pricebox__installment a {
  color: var(--vel-plum);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.vel-pricebox__stock {
  font-size: 13px;
  font-weight: 600;
}

.vel-pricebox__stock--ok {
  color: var(--vel-success);
}

/* --- Feature Box --- */
.vel-featurebox {
  margin-bottom: 28px;
}

.vel-featurebox__heading {
  font-family: var(--vel-font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--vel-midnight);
  margin-bottom: 16px;
}

.vel-featurebox__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vel-featurebox__list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.vel-featurebox__icon {
  flex-shrink: 0;
  margin-top: 4px;
}

.vel-featurebox__icon img {
  display: block;
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.vel-float img {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.vel-featurebox__list strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--vel-midnight);
  margin-bottom: 2px;
}

.vel-featurebox__list p {
  font-size: 13px;
  color: var(--vel-text-muted);
  line-height: 1.5;
}

/* --- Purchase --- */
.vel-purchase {
  margin-bottom: 24px;
}

.vel-purchase__qty {
  margin-bottom: 16px;
}

.vel-purchase__qty-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--vel-text-muted);
  margin-bottom: 8px;
}

.vel-qty-control {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--vel-ivory-dark);
  border-radius: var(--vel-radius-sm);
  overflow: hidden;
}

.vel-qty-control__btn {
  width: 44px;
  height: 44px;
  font-size: 18px;
  color: var(--vel-midnight);
  transition: background var(--vel-transition);
}

.vel-qty-control__btn:hover {
  background: var(--vel-ivory-dark);
}

.vel-qty-control__input {
  width: 56px;
  height: 44px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-left: 1.5px solid var(--vel-ivory-dark);
  border-right: 1.5px solid var(--vel-ivory-dark);
  background: var(--vel-white);
  -moz-appearance: textfield;
}

.vel-qty-control__input::-webkit-outer-spin-button,
.vel-qty-control__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.vel-purchase__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* --- Delivery --- */
.vel-delivery {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid var(--vel-ivory-dark);
  border-bottom: 1px solid var(--vel-ivory-dark);
  margin-bottom: 20px;
}

.vel-delivery__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.vel-delivery__item img {
  flex-shrink: 0;
  color: var(--vel-midnight);
}

.vel-delivery__item strong {
  display: block;
  font-size: 14px;
  color: var(--vel-midnight);
  margin-bottom: 2px;
}

.vel-delivery__item span {
  font-size: 13px;
  color: var(--vel-text-muted);
}

/* --- Trust Badges --- */
.vel-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.vel-trust__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 8px;
  background: var(--vel-white);
  border-radius: var(--vel-radius-sm);
  box-shadow: var(--vel-shadow-soft);
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--vel-text-muted);
  transition: transform var(--vel-transition);
}

.vel-trust__item:hover {
  transform: translateY(-2px);
}

.vel-trust__item img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.vel-delivery__item img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex-shrink: 0;
}
.vel-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: calc(var(--vel-header-height) + 16px);
}

.vel-promo {
  position: relative;
  background: linear-gradient(145deg, var(--vel-midnight) 0%, var(--vel-midnight-light) 60%, var(--vel-plum) 100%);
  color: var(--vel-white);
  border-radius: var(--vel-radius-md);
  padding: 28px 24px;
  overflow: hidden;
}

.vel-promo__glow {
  position: absolute;
  top: -40%;
  right: -20%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(212, 184, 150, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.vel-promo__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vel-champagne);
  margin-bottom: 8px;
  display: block;
}

.vel-promo__title {
  font-family: var(--vel-font-display);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}

.vel-promo__desc {
  font-size: 13px;
  opacity: 0.85;
  line-height: 1.5;
  margin-bottom: 16px;
}

.vel-promo__perks {
  font-size: 13px;
  margin-bottom: 16px;
}

.vel-promo__perks li {
  padding: 4px 0;
  padding-left: 16px;
  position: relative;
}

.vel-promo__perks li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--vel-champagne);
  font-size: 10px;
}

.vel-promo__expiry {
  font-size: 11px;
  opacity: 0.6;
  font-style: italic;
}

.vel-auth-card {
  background: var(--vel-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--vel-glass-border);
  border-radius: var(--vel-radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vel-auth-card__title {
  font-family: var(--vel-font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--vel-midnight);
}

.vel-auth-card__text {
  font-size: 13px;
  color: var(--vel-text-muted);
  line-height: 1.5;
}

.vel-infobox {
  background: var(--vel-white);
  border-radius: var(--vel-radius-md);
  padding: 24px;
  box-shadow: var(--vel-shadow-soft);
}

.vel-infobox__title {
  font-family: var(--vel-font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--vel-midnight);
  margin-bottom: 8px;
}

.vel-infobox__text {
  font-size: 13px;
  color: var(--vel-text-muted);
  margin-bottom: 12px;
  line-height: 1.5;
}

.vel-infobox__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--vel-plum);
  display: inline-block;
  margin-bottom: 16px;
}

.vel-infobox__hours {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 12px;
  color: var(--vel-warm-gray);
  padding-top: 12px;
  border-top: 1px solid var(--vel-ivory-dark);
}

/* --- Section Titles --- */
.vel-section-title {
  font-family: var(--vel-font-display);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 600;
  color: var(--vel-midnight);
  margin-bottom: clamp(24px, 4vw, 40px);
  text-align: center;
}

/* --- Specification --- */
.vel-spec {
  padding: clamp(48px, 6vw, 80px) 0;
  background: var(--vel-white);
}

.vel-spec__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.vel-spec__list {
  display: flex;
  flex-direction: column;
}

.vel-spec__row {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--vel-ivory-dark);
  font-size: 14px;
}

.vel-spec__row dt {
  color: var(--vel-text-muted);
  font-weight: 500;
}

.vel-spec__row dd {
  color: var(--vel-midnight);
  font-weight: 600;
  text-align: right;
}

.vel-spec__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--vel-ivory);
  border-radius: var(--vel-radius-lg);
  padding: 32px;
}

.vel-spec__visual img {
  max-width: 320px;
}

/* --- Article --- */
.vel-article {
  padding: clamp(48px, 6vw, 80px) 0;
  background: linear-gradient(180deg, var(--vel-ivory) 0%, var(--vel-white) 100%);
}

.vel-article__inner {
  max-width: 780px;
}

.vel-article__header {
  text-align: center;
  margin-bottom: 48px;
}

.vel-article__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vel-plum);
  margin-bottom: 12px;
  display: block;
}

.vel-article__title {
  font-family: var(--vel-font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--vel-midnight);
  margin-bottom: 12px;
}

.vel-article__meta {
  font-size: 13px;
  color: var(--vel-warm-gray);
}

.vel-article__body h3 {
  font-family: var(--vel-font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--vel-midnight);
  margin: 40px 0 16px;
}

.vel-article__body p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--vel-text);
  margin-bottom: 20px;
}

.vel-article__lead {
  font-size: 18px !important;
  line-height: 1.7 !important;
  color: var(--vel-midnight-light) !important;
  font-weight: 400;
}

/* --- FAQ --- */
.vel-faq {
  padding: clamp(48px, 6vw, 80px) 0;
  background: var(--vel-white);
}

.vel-faq__list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vel-faq__item {
  background: var(--vel-ivory);
  border-radius: var(--vel-radius-md);
  overflow: hidden;
  transition: box-shadow var(--vel-transition);
}

.vel-faq__item[open] {
  box-shadow: var(--vel-shadow-soft);
}

.vel-faq__question {
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--vel-midnight);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color var(--vel-transition);
}

.vel-faq__question::-webkit-details-marker {
  display: none;
}

.vel-faq__question::after {
  content: '';
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  border-right: 2px solid var(--vel-midnight);
  border-bottom: 2px solid var(--vel-midnight);
  transform: rotate(45deg);
  margin-top: -4px;
  transition: transform var(--vel-transition);
}

.vel-faq__item[open] .vel-faq__question::after {
  transform: rotate(225deg);
  margin-top: 4px;
}

.vel-faq__question:hover {
  color: var(--vel-plum);
}

.vel-faq__answer {
  padding: 0 24px 20px;
}

.vel-faq__answer p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--vel-text-muted);
}

/* --- Reviews --- */
.vel-reviews {
  padding: clamp(48px, 6vw, 80px) 0;
  background: linear-gradient(180deg, var(--vel-white) 0%, var(--vel-ivory) 100%);
}

.vel-reviews__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: clamp(24px, 4vw, 40px);
  flex-wrap: wrap;
}

.vel-reviews__header .vel-section-title {
  margin-bottom: 0;
}

.vel-reviews__summary {
  display: flex;
  align-items: center;
  gap: 10px;
}

.vel-reviews__score {
  font-family: var(--vel-font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--vel-champagne-dark);
}

.vel-reviews__count {
  font-size: 13px;
  color: var(--vel-text-muted);
}

.vel-reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 20px;
}

.vel-review-card {
  background: var(--vel-white);
  border-radius: var(--vel-radius-md);
  padding: 24px;
  box-shadow: var(--vel-shadow-soft);
  transition: transform var(--vel-transition), box-shadow var(--vel-transition);
}

.vel-review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--vel-shadow-medium);
}

.vel-review-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.vel-review-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--vel-midnight) 0%, var(--vel-plum) 100%);
  color: var(--vel-white);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vel-review-card__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--vel-midnight);
}

.vel-review-card__date {
  font-size: 12px;
  color: var(--vel-warm-gray);
}

.vel-review-card__stars {
  margin-left: auto;
  color: var(--vel-champagne-dark);
  font-size: 14px;
  letter-spacing: 1px;
}

.vel-review-card__text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--vel-text-muted);
}

/* --- Related Products --- */
.vel-related {
  padding: clamp(48px, 6vw, 80px) 0;
  background: var(--vel-white);
}

.vel-related__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}

.vel-product-card {
  background: var(--vel-ivory);
  border-radius: var(--vel-radius-md);
  overflow: hidden;
  transition: transform var(--vel-transition), box-shadow var(--vel-transition);
}

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

.vel-product-card__link {
  display: block;
  color: inherit;
}

.vel-product-card__link:hover {
  color: inherit;
}

.vel-product-card__img {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--vel-white);
}

.vel-product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform var(--vel-transition);
}

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

.vel-product-card__name {
  font-family: var(--vel-font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--vel-midnight);
  padding: 16px 16px 4px;
}

.vel-product-card__price {
  font-size: 15px;
  font-weight: 600;
  color: var(--vel-plum);
  padding: 0 16px 16px;
}

/* --- Footer --- */
.vel-footer {
  background: var(--vel-midnight-deep);
  color: rgba(255, 255, 255, 0.7);
  padding: clamp(48px, 6vw, 64px) 0 32px;
}

.vel-footer__grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  margin-bottom: 48px;
}

.vel-footer__tagline {
  font-size: 14px;
  margin-top: 16px;
  line-height: 1.6;
  max-width: 280px;
}

.vel-footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.vel-footer__heading {
  font-family: var(--vel-font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--vel-white);
  margin-bottom: 16px;
}

.vel-footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vel-footer__col a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--vel-transition);
}

.vel-footer__col a:hover {
  color: var(--vel-champagne);
}

.vel-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
  flex-wrap: wrap;
  gap: 16px;
}

.vel-footer__legal {
  display: flex;
  gap: 24px;
}

.vel-footer__legal a {
  color: rgba(255, 255, 255, 0.5);
}

.vel-footer__legal a:hover {
  color: var(--vel-champagne);
}

/* --- Floating Button --- */
.vel-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 70;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: linear-gradient(135deg, var(--vel-plum) 0%, var(--vel-plum-light) 100%);
  color: var(--vel-white);
  border-radius: 100px;
  box-shadow: var(--vel-shadow-float);
  font-size: 14px;
  font-weight: 600;
  transition: all var(--vel-transition);
  animation: vel-float-btn 4s ease-in-out infinite;
}

.vel-float:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 56px rgba(139, 94, 131, 0.35);
  color: var(--vel-white);
}

@keyframes vel-float-btn {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.vel-float__label {
  display: none;
}

@media (min-width: 768px) {
  .vel-float__label {
    display: inline;
  }
}

/* ============================================================
   Responsive Breakpoints
   ============================================================ */

@media (max-width: 1100px) {
  .vel-product__layout {
    grid-template-columns: 1fr 1fr;
  }

  .vel-sidebar {
    grid-column: 1 / -1;
    flex-direction: row;
    flex-wrap: wrap;
    position: static;
  }

  .vel-sidebar > * {
    flex: 1 1 280px;
  }
}

@media (max-width: 900px) {
  .vel-header__grid {
    grid-template-columns: auto 1fr auto;
  }

  .vel-nav {
    display: none;
  }

  .vel-search {
    display: none;
  }

  .vel-header__menu-toggle {
    display: flex;
  }

  .vel-header__actions .vel-btn--ghost,
  .vel-header__actions .vel-btn--accent {
    display: none;
  }

  .vel-spec__grid {
    grid-template-columns: 1fr;
  }

  .vel-spec__visual {
    order: -1;
  }

  .vel-footer__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .vel-product__layout {
    grid-template-columns: 1fr;
  }

  .vel-gallery__nav {
    opacity: 1;
  }

  .vel-trust {
    grid-template-columns: 1fr;
  }

  .vel-sidebar {
    flex-direction: column;
  }

  .vel-reviews__grid {
    grid-template-columns: 1fr;
  }

  .vel-footer__nav {
    grid-template-columns: 1fr 1fr;
  }

  .vel-footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  :root {
    --vel-header-height: 60px;
  }

  .vel-gallery__thumb {
    width: 60px;
    height: 60px;
  }

  .vel-footer__nav {
    grid-template-columns: 1fr;
  }

  .vel-float {
    bottom: 16px;
    right: 16px;
    padding: 14px;
    border-radius: 50%;
  }
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* --- Focus Visible --- */
:focus-visible {
  outline: 2px solid var(--vel-champagne);
  outline-offset: 2px;
}
