/* ================================================================
   JULIA GALLERY — Modern Art Marketplace CSS
   Font: Poppins | Primary: rgba(1,68,33) | Style: Soft, Light, Pro
   ================================================================ */

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

/* ================================================================
   ROOT & RESET
   ================================================================ */
:root {
  --color-1: rgba(253, 184, 6);
  --color-2: rgba(1, 68, 33);
  --color-2-dark: rgba(1, 50, 24);
  --color-2-soft: rgba(1, 68, 33, 0.08);
  --color-text: #1a1a1a;
  --color-mid: #555;
  --color-light: #888;
  --color-border: #e8e8e8;
  --bg: #ffffff;
  --bg-soft: #f8f9fa;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.14);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --box-shadow-s: 0 2px 12px rgba(0, 0, 0, 0.06);
  --box-shadow-s-bottom: 0 6px 20px rgba(0, 0, 0, 0.08);
  --promo-h: 42px;
  --navbar-h: 72px;
}

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

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--color-text);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, span, input, li, ul, p, button, a, textarea, select {
  font-family: 'Poppins', sans-serif;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; }

/* ================================================================
   PROMO BAR — Animated marquee
   ================================================================ */
.art-promo-bar {
  position: sticky;
  top: 0;
  z-index: 1002;
  background: #0a0a0a;
  color: #ffffff;
  height: var(--promo-h);
  overflow: hidden;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.3px;
  line-height: var(--promo-h);
}

/* Individual promo items */
.promo-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  padding: 0 16px;
  color: #fff;
  font-size: 12.5px;
  font-weight: 500;
}

.promo-sep {
  color: var(--color-1);
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
  opacity: 0.85;
  line-height: 1;
}

.promo-marquee {
  display: flex;
  align-items: center;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.promo-marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  height: 100%;
  animation: promoScroll 32s linear infinite;
}

.promo-marquee-track:hover {
  animation-play-state: paused;
}

.promo-marquee-inner {
  white-space: nowrap;
  padding: 0 60px;
  display: flex;
  align-items: center;
  gap: 0;
}

@keyframes promoScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ================================================================
   NAVBAR
   ================================================================ */
.art-navbar {
  position: relative;
  z-index: 1001;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 60px;
  background: transparent;
}

.art-navbar.art-navbar-scrolled {
  position: fixed;
  width: 100%;
  top: var(--promo-h);
  left: 0;
  z-index: 1001;
  padding: 12px 60px;
  background: var(--color-2);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.logo {
  width: 120px;
  height: auto;
}

.art-logo {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 2px;
}

.art-menu .item {
  margin: 0 12px;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.92;
  cursor: pointer;
}

.art-menu .item:hover {
  opacity: 1;
  border-bottom: 1px solid rgba(255,255,255,0.6);
}

.art-navbar.art-navbar-scrolled .art-menu a:hover {
  opacity: 1;
  color: var(--color-1);
  border-bottom: 1px solid var(--color-1);
}

.art-navbar.art-navbar-scrolled .top-header-right {
  color: var(--color-1);
}

.top-header-right {
  display: flex;
  gap: 20px;
  align-items: center;
  color: #fff;
}

.top-header-right i {
  font-size: 1.6rem;
  cursor: pointer;
}

/* Dropdown */
.menu-item {
  display: inline-block;
  position: relative;
}

.menu-item .drop-menu {
  position: absolute;
  top: 110%;
  left: 0;
  background: #fff;
  box-shadow: var(--shadow-md);
  padding: 20px 30px;
  display: none;
  z-index: 1000;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
}

.menu-item .drop-menu::after {
  content: "";
  position: absolute;
  top: -8px;
  left: 0;
  width: 100%;
  height: 20px;
  background: transparent;
}

.menu-item .drop-menu::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 40px;
  width: 0; height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #fff;
}

.menu-item:hover .drop-menu {
  display: block;
}

.drop-menu-items {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.drop-menu-items a {
  color: #333;
  font-size: 13px;
  font-weight: 400;
  white-space: nowrap;
  transition: var(--transition);
}

.drop-menu-items a:hover {
  color: var(--color-2);
}

/* ================================================================
   HERO
   ================================================================ */
.art-hero {
  position: relative;
  height: 100vh;
  background: url('/images/hero.jpg') center/cover no-repeat;
  color: #fff;
}

.art-bg-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}

.art-overlay {
  position: absolute;
  inset: 0;
  background: rgba(1, 68, 33, 0.62);
  z-index: 1;
}

.art-navbar, .art-hero-content {
  position: relative;
  z-index: 2;
}

.art-hero-content {
  position: relative;
  z-index: 2;
  height: calc(100vh - 120px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

.art-collection {
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 18px;
}

.art-hero-content h1 {
  font-size: 52px;
  font-weight: 300;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.art-hero-content p {
  font-size: 16px;
  opacity: 0.85;
  margin-bottom: 36px;
  max-width: 520px;
}

.art-btn {
  padding: 14px 42px;
  border: 1.5px solid var(--color-1);
  color: var(--color-1);
  text-decoration: none;
  letter-spacing: 2px;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  transition: var(--transition);
  border-radius: 4px;
}

.art-btn:hover {
  background: var(--color-1);
  color: #000;
}

.art-btn-outline {
  padding: 12px 38px;
  border: 1.5px solid #fff;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 500;
  transition: var(--transition);
}

.art-btn-outline:hover {
  background: #fff;
  color: #000;
}

.special-p {
  color: var(--color-1);
  font-weight: 600;
}

.logo-bg { background: var(--color-2); }

/* ================================================================
   SECTION HEADER
   ================================================================ */
.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  margin: 30px 0 20px;
}

.section-header h1 {
  color: var(--color-2);
  font-size: 2.8rem;
  font-weight: 400;
  letter-spacing: -0.5px;
}

.section-header span {
  color: var(--color-light);
  font-size: 14px;
}

/* ================================================================
   PRODUCT CARDS (home / collections)
   ================================================================ */
.products-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  padding: 20px;
  gap: 18px;
}

.product-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
}

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

.image-wrapper {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--bg-soft);
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.promo-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #e74c3c;
  color: #fff;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  z-index: 2;
}

.product-actions {
  position: absolute;
  bottom: -50px;
  left: 0; right: 0;
  display: flex;
  justify-content: center;
  padding: 12px;
  transition: var(--transition);
  z-index: 3;
}

.product-card:hover .product-actions {
  bottom: 0;
}

.action-btn {
  background: #fff;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  box-shadow: var(--shadow);
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--color-text);
  transition: var(--transition);
}

.action-btn:hover {
  background: var(--color-2);
  color: #fff;
}

.product-info {
  padding: 16px 14px;
  text-align: center;
  flex-grow: 1;
}

.product-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 8px;
  line-height: 1.4;
  height: 2.8em;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.price-stack {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.old-price {
  color: var(--color-light);
  text-decoration: line-through;
  font-size: 12px;
}

.current-price {
  font-size: 14px;
  color: var(--color-text);
}

.current-price strong {
  font-size: 16px;
  color: var(--color-2);
}

/* ================================================================
   COLLECTIONS SECTION
   ================================================================ */
.art-collections {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  height: 80vh;
}

.art-collection-item {
  position: relative;
  overflow: hidden;
}

.art-collection-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.art-collection-item:hover img {
  transform: scale(1.05);
}

.art-collection-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.48);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 30px;
}

.art-collection-overlay h2 {
  font-size: 38px;
  font-weight: 300;
  margin-bottom: 10px;
}

.art-collection-overlay p {
  font-size: 15px;
  opacity: 0.9;
  margin-bottom: 24px;
}

/* ================================================================
   REVIEWS
   ================================================================ */
.art-reviews {
  padding: 80px 60px;
  text-align: center;
}

.art-review-summary {
  display: inline-block;
  border: 1px solid var(--color-border);
  padding: 8px 20px;
  border-radius: 8px;
  margin-bottom: 40px;
  font-size: 14px;
}

/* Review Swiper container */
.review-swiper {
  width: 100%;
  position: relative;
  padding: 0 30px;
  box-sizing: border-box;
}

.review-swiper .swiper-slide {
  height: 380px;
  /* portrait ratio — width is controlled by slidesPerView */
}

.review-swiper .swiper-wrapper {
  align-items: stretch;
}

.review-swiper .swiper-button-prev,
.review-swiper .swiper-button-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  padding: 10px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.12);
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
  color: var(--color-2);
  transition: var(--transition);
}

.review-swiper .swiper-button-prev::after,
.review-swiper .swiper-button-next::after {
  font-size: 10px !important;
  font-weight: 800;
}

.review-swiper .swiper-button-prev:hover,
.review-swiper .swiper-button-next:hover {
  background: var(--color-1);
  border-color: var(--color-1);
  color: #000;
}

.review-swiper .swiper-button-disabled { opacity: 0.3; }

.art-review-card {
  position: relative;
  width: 100%;
  height: 100%;
  flex: unset;
  border-radius: 20px;
  overflow: hidden;
  background: #000;
  cursor: pointer;
  border: 2px solid transparent;
  background-image: linear-gradient(#000, #000),
                    linear-gradient(135deg, #d4af37 0%, #f9e29c 50%, #b8860b 100%);
  background-origin: border-box;
  background-clip: content-box, border-box;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  transition: var(--transition);
}

.art-review-card:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 30px rgba(212,175,55,0.3);
}

.art-review-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: opacity 0.3s;
}

.art-review-card:hover video { opacity: 1; }

.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 60%, rgba(0,0,0,0.6));
  pointer-events: none;
}

.play-button {
  width: 55px; height: 55px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(5px);
  border: 2px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  transition: var(--transition);
}

.art-review-card:hover .play-button {
  background: var(--color-1);
  border-color: var(--color-1);
  transform: scale(1.1);
}

.video-container.playing .play-button {
  opacity: 0; transform: scale(0.5);
}

.art-review-content {
  max-width: 700px;
  margin: auto;
}

.art-quote { font-size: 120px; color: #eee; line-height: 1; }
.art-review-text { font-size: 20px; margin: -40px 0 30px; }
.art-review-stars { font-size: 20px; margin-bottom: 10px; }
.art-review-author { font-size: 14px; font-weight: 600; }

/* Review gallery — now handled by Swiper (.review-swiper) */

.art-review-prev, .art-review-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: #fff;
  color: #333;
  box-shadow: var(--shadow);
  font-size: 22px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.art-review-prev:hover, .art-review-next:hover {
  background: var(--color-1);
  color: #000;
}

.art-review-prev { left: -10px; }
.art-review-next { right: -10px; }

.art-review-prev:disabled, .art-review-next:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.art-review-content-wrapper { position: relative; margin-top: 50px; }
.art-review-content-viewport { overflow: hidden; }
.art-review-content-slider { display: flex; transition: transform 0.45s ease; }
.art-review-content-slide { flex: 0 0 100%; text-align: center; padding: 40px 20px; }

.art-review-content-wrapper .art-review-prev,
.art-review-content-wrapper .art-review-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  font-size: 32px;
  cursor: pointer;
  z-index: 10;
}

/* ================================================================
   INSTAGRAM
   ================================================================ */
.art-instagram {
  text-align: center;
  padding: 80px 0 40px;
  background: #fff;
}

.art-instagram-sub {
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-light);
  margin-bottom: 8px;
}

.art-instagram-title {
  font-size: 40px;
  font-weight: 400;
  color: var(--color-text);
  margin: 10px 0 30px;
}

.art-instagram-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.art-insta-item {
  position: relative;
  display: block;
  overflow: hidden;
}

.art-insta-item img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.art-insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(1, 68, 33, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.art-insta-overlay i {
  font-size: 40px;
  color: #fff;
}

.art-insta-item:hover img { transform: scale(1.05); }
.art-insta-item:hover .art-insta-overlay { opacity: 1; }

/* ================================================================
   VALUES SECTION — New card design
   ================================================================ */
.art-values {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
  padding: 50px 60px;
  background: #fff;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  flex-wrap: wrap;
}

.art-value {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 40px;
  border-right: 1px solid var(--color-border);
  flex: 1;
  min-width: 220px;
}

.art-value:last-child {
  border-right: none;
}

.art-value-icon {
  width: 54px;
  height: 54px;
  background: rgba(1, 68, 33, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.art-value-icon i {
  font-size: 26px;
  color: var(--color-2);
}

.art-value-text h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 4px;
}

.art-value-text p {
  font-size: 12px;
  color: var(--color-light);
  line-height: 1.5;
}

/* ================================================================
   PRESS / PARTNERS
   ================================================================ */
.art-press {
  text-align: center;
  padding: 40px 60px;
  background: var(--bg-soft);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.art-press-title {
  font-weight: 600;
  font-size: 14px;
  color: var(--color-mid);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.art-press-logos {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
}

.art-press-logos img {
  height: 55px;
  object-fit: contain;
  filter: grayscale(40%);
  opacity: 0.8;
  transition: var(--transition);
}

.art-press-logos img:hover {
  filter: grayscale(0);
  opacity: 1;
}

/* ================================================================
   FOOTER — Dark minimal
   ================================================================ */
.art-footer {
  background: #0d1117;
  padding: 70px 60px 30px;
  color: #b0b0b0;
}

.art-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

.art-footer-logo {
  width: 120px;
  filter: brightness(0) invert(1);
  margin-bottom: 18px;
  transform: none;
}

.side-1 p {
  font-size: 13px;
  color: #777;
  line-height: 1.8;
  margin-bottom: 6px;
}

.side-1 span {
  color: #ccc;
  font-weight: 600;
  text-decoration: none;
  margin-right: 4px;
}

.art-footer h4 {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.art-footer a {
  display: block;
  margin-bottom: 10px;
  text-decoration: none;
  color: #777;
  font-size: 13px;
  transition: color 0.2s;
}

.art-footer a:hover {
  color: var(--color-1);
}

.art-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.art-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  color: #aaa;
  font-size: 19px;
  transition: var(--transition);
  margin-bottom: 0;
}

.art-socials a:hover {
  background: var(--color-2);
  color: #fff;
}

.art-socials i { font-size: 19px; }

.art-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 24px;
  text-align: center;
  font-size: 13px;
  color: #444;
}

/* ================================================================
   PRODUCT PAGE — Gallery (new: main + horizontal thumbs)
   ================================================================ */
.art-product-page {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  padding: 30px 40px 60px;
  max-width: 1300px;
  margin: 0 auto;
}

/* Gallery column */
.art-gallery {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: sticky;
  top: calc(var(--promo-h) + var(--navbar-h) + 20px);
  align-self: flex-start;
}

/* Main viewer with arrows — fixed height so every image is identical */
.art-gallery-viewer {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
 
}

.art-main-image-wrap {
  width: 100%;
  height: 100%;
  position: relative;
}

.art-main-image-wrap img {
  width: 100%;
  height: 520px;
  object-fit: contain;
  display: block;
  transition: opacity 0.22s ease;
    border-radius: 10px;

}

.gallery-counter {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 20px;
  z-index: 3;
}

.gallery-discount-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #e74c3c;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  z-index: 3;
}

.gallery-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  transition: var(--transition);
}

.gallery-nav-btn:hover {
  background: var(--color-2);
  color: #fff;
  border-color: var(--color-2);
}

.gallery-prev-btn { left: 10px; }
.gallery-next-btn { right: 10px; }

/* Thumbnail strip wrapper + nav buttons */
.art-thumbs-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
}

.art-thumbs-wrapper .art-thumbs {
  flex: 1;
  min-width: 0;
}

.art-thumbs-btn {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--color-border);
  box-shadow: var(--shadow);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  padding: 0;
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
}

.art-thumbs-btn.visible {
  opacity: 1;
  pointer-events: auto;
}

.art-thumbs-btn:hover {
  background: var(--color-2);
  color: #fff;
  border-color: var(--color-2);
}

/* Horizontal thumbnails */
.art-thumbs {
  display: flex;
  flex-direction: row;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  touch-action: pan-x;
  -webkit-mask-image: linear-gradient(to right, black 85%, transparent 100%);
  mask-image: linear-gradient(to right, black 85%, transparent 100%);
}

.art-thumbs::-webkit-scrollbar { display: none; }

.art-thumb {
  /* desktop: 6 visible, 5 gaps of 10px → (100% - 50px) / 6 */
  width: calc((100% - 50px) / 6);
  aspect-ratio: 1;
  flex-shrink: 0;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 2px solid var(--color-border);
  cursor: pointer;
  transition: border-color 0.2s;
  scroll-snap-align: start;
}

@media (max-width: 768px) {
  /* mobile: 4 visible, 3 gaps of 10px → (100% - 30px) / 4 */
  .art-thumb {
    width: calc((100% - 30px) / 4);
  }
}

.art-thumb.active,
.art-thumb:hover {
  border-color: var(--color-2);
}

/* ================================================================
   PRODUCT PAGE — Info (right side)
   ================================================================ */
.art-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.art-title {
  font-size: 26px;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.3;
}

/* Rating */
.art-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 16px;
  color: #f5a623;
}

.art-rating span {
  color: var(--color-mid);
  font-size: 13px;
  margin-left: 8px;
}

/* Viewers */
.art-viewers {
  background: #fff9e6;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: #856404;
  width: fit-content;
}

/* Price */
.art-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}

.art-price-new {
  font-size: 30px;
  font-weight: 800;
  color: var(--color-text);
}

.art-price-old {
  text-decoration: line-through;
  color: #aaa;
  font-size: 17px;
}

.art-badge {
  background: #e74c3c;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px;
  vertical-align: middle;
}

/* Savings */
.art-savings {
  background: #e8f5e9;
  color: #2e7d32;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  display: inline-block;
}

/* Trust badges row */
.art-product-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.art-product-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 500;
  color: #2e7d32;
}

.art-product-badge::before {
  content: '✓';
  font-weight: 700;
  font-size: 14px;
}

/* Tagline */
.art-tagline {
  background: linear-gradient(135deg, #f0faf4, #e8f5e9);
  border-left: 3px solid var(--color-2);
  padding: 12px 16px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 13px;
  color: var(--color-2);
  font-weight: 500;
  line-height: 1.6;
}

/* Variants */
.art-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.art-section p {
  font-size: 13px;
  font-weight: 600;
  color: #333;
}

.art-label {
  font-size: 13px;
  font-weight: 600;
  color: #444;
}

.variant-selected-label {
  font-weight: 700;
  color: var(--color-2);
}

.art-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.art-option {
  padding: 8px 18px;
  border: 1.5px solid var(--color-border);
  background: #fff;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.art-option:hover {
  border-color: var(--color-2);
  color: var(--color-2);
}

.art-option.active {
  background: var(--color-2);
  color: #fff;
  border-color: var(--color-2);
}

.art-option-img {
  width: 64px;
  height: 64px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  object-fit: cover;
  transition: border-color 0.2s;
}

.art-option-img:hover,
.art-option-img.active {
  border-color: var(--color-2);
}

/* Quantity row */
.art-qty-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.art-qty-label {
  font-size: 13px;
  font-weight: 600;
  color: #444;
  white-space: nowrap;
}

.art-qty {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #fff;
}

.art-qty button {
  width: 40px;
  height: 44px;
  border: none;
  background: none;
  font-size: 20px;
  cursor: pointer;
  color: var(--color-mid);
  transition: background 0.2s;
}

.art-qty button:hover {
  background: var(--bg-soft);
}

.art-qty span {
  width: 44px;
  text-align: center;
  font-weight: 700;
  font-size: 15px;
}

/* ================================================================
   INLINE ORDER FORM CARD
   ================================================================ */
.art-order-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
}

.art-order-card-header {
  background: #15202b;
  color: #fff;
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
}

.art-order-card-header i {
  margin-right: 6px;
  font-size: 16px;
}

.art-order-secure {
  font-size: 12px;
  opacity: 0.7;
  display: flex;
  align-items: center;
  gap: 4px;
}

.art-order-card-body {
  background: #fff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.art-confirm-btn {
  width: 100%;
  background: var(--color-2);
  color: #fff;
  border: none;
  padding: 15px 20px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
}

.art-confirm-btn:hover {
  background: var(--color-2-dark);
}

.art-confirm-btn i { font-size: 18px; }

.art-order-trust {
  display: flex;
  justify-content: space-around;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid #f0f0f0;
  text-align: center;
}

.art-order-trust span {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  color: #999;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.art-order-trust i {
  font-size: 20px;
  color: var(--color-2);
}

/* Input shared styles (used in modals + inline form) */
.input {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 4px 14px;
  margin-bottom: 12px;
  background: #fff;
  transition: border-color 0.2s;
}

.input:focus-within {
  border-color: var(--color-2);
}

.input i {
  font-size: 18px;
  color: #bbb;
  flex-shrink: 0;
}

.input-element {
  flex: 1;
  border: none;
  padding: 12px 0;
  outline: none;
  font-size: 14px;
  background: transparent;
  font-family: 'Poppins', sans-serif;
}

.input-element::placeholder {
  color: #bbb;
}

.input-textarea {
  align-items: flex-start;
  padding-top: 10px;
}

.input-textarea i {
  margin-top: 2px;
}

.input-textarea textarea {
  resize: none;
  min-height: 64px;
  line-height: 1.5;
}

/* Secondary action buttons */
.art-buy-whatsapp {
  background: #25D366;
  color: #fff;
  height: 50px;
  width: 100%;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background 0.3s;
}

.art-buy-whatsapp:hover { background: #1ebe5d; }
.art-buy-whatsapp i { font-size: 20px; }

.art-add-cart {
  background: var(--color-text);
  color: #fff;
  height: 50px;
  width: 100%;
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.3s;
}

.art-add-cart:hover { background: #333; }
.art-add-cart i { font-size: 18px; }

.art-wishlist {
  text-align: center;
  font-size: 13px;
  color: var(--color-light);
  cursor: pointer;
  transition: color 0.2s;
}

.art-wishlist:hover { color: var(--color-text); }

/* Subdescription */
.art-subdescription {
  font-size: 13px;
  color: var(--color-mid);
  line-height: 1.7;
  border-top: 1px solid var(--color-border);
  padding-top: 14px;
}

/* Description section */
.art-description {
  padding: 30px 40px 40px;
  max-width: 1300px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.8;
  color: var(--color-mid);
}

/* ================================================================
   STICKY BOTTOM BAR (mobile)
   ================================================================ */
.art-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #fff;
  border-top: 1px solid var(--color-border);
  padding: 12px 20px;
  z-index: 500;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
}

.art-sticky-bar-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.art-sticky-bar-price strong {
  font-size: 20px;
  font-weight: 800;
}

.art-sticky-bar-price del {
  color: #aaa;
  font-size: 14px;
}

.art-sticky-btn {
  background: var(--color-2);
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.3s;
}

.art-sticky-btn:hover { background: var(--color-2-dark); }

/* ================================================================
   BEFORE / AFTER COMPARE
   ================================================================ */
.art-compare-section {
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  background: var(--bg-soft);
}

.art-compare-wrapper {
  position: relative;
  width: 100%;
  max-width: 1100px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  user-select: none;
  border-radius: var(--radius);
}

.art-compare-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.art-after-wrapper {
  position: absolute;
  inset: 0;
  width: 50%;
  overflow: hidden;
}

.art-label-before,
.art-label-after {
  position: absolute;
  top: 14px;
  background: rgba(0,0,0,0.5);
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  z-index: 5;
}

.art-label-before { left: 14px; }
.art-label-after  { right: 14px; }

.art-slider-handle {
  position: absolute;
  top: 0; left: 50%;
  height: 100%;
  transform: translateX(-50%);
  z-index: 10;
  cursor: ew-resize;
}

.art-slider-line {
  width: 2px;
  height: 100%;
  background: #fff;
}

.art-slider-button {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 38px; height: 38px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  color: #333;
}

/* ================================================================
   WHATSAPP MODAL
   ================================================================ */
.art-whatsapp-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.art-whatsapp-modal.active {
  display: flex;
}

.art-whatsapp-box {
  background: #fff;
  width: 480px;
  max-width: 92%;
  padding: 28px;
  border-radius: 16px;
  position: relative;
  animation: fadeUp 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;
}

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

.art-whatsapp-close {
  position: absolute;
  right: 18px;
  top: 12px;
  font-size: 26px;
  cursor: pointer;
  color: #aaa;
  line-height: 1;
}

.art-whatsapp-close:hover { color: #333; }

.art-whatsapp-box h2 {
  margin: 0 0 18px;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  color: var(--color-text);
}

.art-whatsapp-product {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  background: var(--bg-soft);
  padding: 14px;
  border-radius: var(--radius-sm);
}

.art-whatsapp-product img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.art-whatsapp-product-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
}

.art-whatsapp-send {
  width: 100%;
  background: #25D366;
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.3s;
}

.art-whatsapp-send:hover { background: #1ebe5d; }
.art-whatsapp-send i { font-size: 20px; }

/* Website Order Modal (kept for cart flow) */
.art-website-order-modal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.75);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.art-website-order-modal.active { display: flex; }

.art-website-order-box {
  background: #fff;
  width: 90%;
  max-width: 500px;
  border-radius: 16px;
  padding: 28px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.art-website-order-close {
  position: absolute;
  top: 14px; right: 18px;
  font-size: 28px;
  cursor: pointer;
  color: #aaa;
}

.art-website-order-close:hover { color: #333; }

.art-order-product {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  padding: 12px;
  background: var(--bg-soft);
  border-radius: var(--radius-sm);
}

.art-order-product img {
  width: 80px; height: 80px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.art-order-product-info { flex: 1; font-size: 13px; }
.art-order-product-info strong { display: block; margin-bottom: 5px; }

.art-website-order-send {
  width: 100%;
  padding: 14px;
  background: var(--color-2);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 10px;
  transition: background 0.3s;
}

.art-website-order-send:hover { background: var(--color-2-dark); }

/* ================================================================
   MOBILE MENU (redesigned)
   ================================================================ */
.art-mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(2px);
  display: none;
  z-index: 9998;
}

.art-mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: 300px;
  max-width: 88%;
  height: 100%;
  background: #fff;
  z-index: 9999;
  transition: right 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  box-shadow: -6px 0 50px rgba(0, 0, 0, 0.18);
}

.art-mobile-menu::-webkit-scrollbar { display: none; }
.art-mobile-menu.active   { right: 0; }
.art-mobile-overlay.active { display: block; }

/* Header */
.art-mobile-header {
  background: var(--color-2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  flex-shrink: 0;
}

.art-mobile-header .logo-bg { background: transparent; }

.art-mobile-header img {
  width: 86px;
  filter: brightness(0) invert(1);
}

.close-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  line-height: 1;
}

.close-btn:hover { background: rgba(255,255,255,0.3); }

/* Subtitle strip */
.art-mobile-subtitle {
  background: var(--color-2-soft);
  text-align: center;
  font-size: 11.5px;
  padding: 9px 16px;
  color: var(--color-2);
  border-bottom: 1px solid var(--color-border);
  line-height: 1.6;
  flex-shrink: 0;
}

/* List */
.art-mobile-list {
  padding: 4px 0;
  flex: 1;
}

.art-mobile-list > a {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 20px;
  color: #1a1a1a;
  font-size: 13.5px;
  font-weight: 600;
  border-bottom: 1px solid #f2f2f2;
  text-decoration: none;
  transition: all 0.2s;
}

.art-mobile-list > a:hover {
  background: var(--color-2-soft);
  color: var(--color-2);
  padding-left: 26px;
}

.art-mobile-list > a i {
  font-size: 17px;
  color: var(--color-2);
  flex-shrink: 0;
}

/* Accordion */
.mobile-accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 20px;
  cursor: pointer;
  font-size: 13.5px;
  font-weight: 600;
  color: #1a1a1a;
  border-bottom: 1px solid #f2f2f2;
  transition: all 0.2s;
}

.mobile-accordion-header:hover {
  background: var(--color-2-soft);
  color: var(--color-2);
}

.mobile-accordion-header .icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--bg-soft);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 400;
  color: var(--color-2);
  flex-shrink: 0;
  transition: transform 0.25s ease, background 0.2s;
  line-height: 1;
}

.mobile-accordion.active .mobile-accordion-header .icon {
  transform: rotate(45deg);
  background: var(--color-2);
  color: #fff;
  border-color: var(--color-2);
}

.mobile-accordion-body {
  max-height: 0;
  overflow: hidden;
  background: #fafafa;
  transition: max-height 0.35s ease;
}

.mobile-accordion-body a {
  display: flex;
  align-items: center;
  padding: 10px 20px 10px 34px;
  font-size: 13px;
  color: #555;
  font-weight: 500;
  border-bottom: 1px solid #f0f0f0;
  text-decoration: none;
  transition: color 0.2s, padding-left 0.2s;
}

.mobile-accordion-body a::before {
  content: "›";
  color: var(--color-2);
  font-size: 16px;
  font-weight: 700;
  margin-right: 8px;
  flex-shrink: 0;
}

.mobile-accordion-body a:hover { color: var(--color-2); padding-left: 40px; }

.mobile-accordion.active .mobile-accordion-body { max-height: 320px; }

/* Footer */
.art-mobile-footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--color-border);
  padding: 18px 20px;
  flex-shrink: 0;
  font-size: 13px;
  color: #555;
}

.art-mobile-footer p {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
  color: #444;
  font-size: 12.5px;
}

.art-mobile-footer p i {
  color: var(--color-2);
  font-size: 16px;
  flex-shrink: 0;
}

/* ================================================================
   CART SIDEBAR
   ================================================================ */
.art-cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.art-cart-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.art-cart-sidebar {
  position: fixed;
  top: 0; right: 0;
  width: 380px;
  max-width: 100%;
  height: 100vh;
  background: #fff;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s ease;
}

.art-cart-sidebar.active { transform: translateX(0); }

.art-cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid var(--color-border);
}

.art-cart-header h3 {
  font-size: 17px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.art-cart-header h3 span {
  background: #111;
  color: #fff;
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 20px;
}

.art-cart-header button {
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
}

.art-cart-info {
  padding: 12px 20px;
  font-size: 13px;
  background: #f7f7f7;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  gap: 10px;
}

.art-cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 15px 20px;
}

.art-cart-item {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
}

.art-cart-item img {
  width: 70px !important;
  height: 70px !important;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  object-fit: cover !important;
}

.art-cart-item strong {
  display: block;
  font-size: 13px;
  margin-bottom: 4px;
}

.art-cart-item p {
  font-size: 12px;
  color: var(--color-mid);
  margin-bottom: 6px;
}

.art-cart-qty {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}

.art-cart-qty button {
  width: 26px; height: 26px;
  border: 1px solid var(--color-border);
  background: #fff;
  cursor: pointer;
  font-size: 16px;
  border-radius: 4px;
}

.art-cart-qty span { min-width: 20px; text-align: center; }

.art-cart-item > button {
  margin-left: auto;
  background: none;
  border: none;
  font-size: 13px;
  color: #aaa;
  cursor: pointer;
}

.art-cart-footer {
  border-top: 1px solid var(--color-border);
  padding: 18px 20px;
}

.art-cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  margin-bottom: 14px;
  font-weight: 700;
}

.art-cart-command {
  width: 100%;
  background: var(--color-2);
  color: var(--color-1);
  border: none;
  padding: 14px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 8px;
  margin-bottom: 8px;
}

.art-cart-web {
  width: 100%;
  background: #111;
  color: #fff;
  border: none;
  padding: 14px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 8px;
}

.cart-icon { position: relative; cursor: pointer; }

.cart-count {
  position: absolute;
  top: -6px; right: -8px;
  background: #ff3b30;
  color: #fff;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 50%;
  font-weight: 700;
}

.art-cart-toast {
  position: fixed;
  top: 90px; left: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #22c55e;
  color: #fff;
  padding: 14px 20px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  transform: translateX(-120%);
  opacity: 0;
  z-index: 10000;
  transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.art-cart-toast i { font-size: 20px; }

.art-cart-toast.show {
  transform: translateX(0);
  opacity: 1;
}

/* Cart order summary */
.art-order-summary {
  background: var(--bg-soft);
  padding: 15px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
}

.art-order-summary h3 { margin-bottom: 10px; font-size: 15px; }

.art-cart-order-item {
  display: flex;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--color-border);
}

.art-cart-order-item img {
  width: 50px; height: 50px;
  object-fit: cover;
  border-radius: 6px;
}

.art-cart-order-item-details { flex: 1; font-size: 12px; }
.art-cart-order-item-details strong { display: block; font-size: 13px; }

/* ================================================================
   COLLECTION PAGE
   ================================================================ */
.collection-page {
  width: 100%;
  margin-top: 40px;
  background: #fff;
  padding: 20px;
  box-sizing: border-box;
}

.collection-title {
  text-align: center;
  font-size: 42px;
  font-weight: 300;
  margin-bottom: 36px;
}

.collection-layout {
  display: flex;
  gap: 40px;
}

.collection-sidebar {
  border-right: 1px solid var(--color-border);
  padding-right: 20px;
  min-width: 220px;
}

.filter-title { font-size: 18px; margin-bottom: 20px; }

.filter-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-tags a {
  padding: 6px 14px;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  font-size: 13px;
  text-decoration: none;
  color: var(--color-text);
  transition: var(--transition);
}

.filter-tags a:hover,
.filter-tags a.active {
  background: var(--color-text);
  color: #fff;
  border-color: var(--color-text);
}

.btn {
  padding: 8px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 13px;
  cursor: pointer;
  background: #fff;
  color: var(--color-text);
}

.btn:hover { background: var(--color-1); border-color: var(--color-1); }
.btn-success { color: #fff; background: var(--color-2); border-color: var(--color-2); }

.filter-block { margin-bottom: 28px; }

.filter-header {
  font-size: 16px;
  padding: 10px 0;
  border-top: 1px solid var(--color-border);
  cursor: pointer;
}

.color-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  padding-top: 14px;
}

.color-dot {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  display: block;
}

.collection-products { width: 100%; }

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

.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 28px 0;
}

.pagination a {
  width: 40px; height: 40px;
  border-radius: 8px;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--color-text);
  font-size: 14px;
  transition: var(--transition);
}

.pagination a.active,
.pagination a:hover {
  background: var(--color-2);
  color: #fff;
  border-color: var(--color-2);
}

.no-products {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 0;
  color: #aaa;
}

.collection-header {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 28px;
}

.collection-header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.collection-header h1 { font-size: 24px; font-weight: 700; }
.collection-count { color: var(--color-light); font-size: 14px; }

.collection-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  background: var(--bg-soft);
  padding: 14px;
  border-radius: var(--radius);
  box-sizing: border-box;
}

.collection-filters input,
.collection-filters select {
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid var(--color-border);
  font-size: 14px;
  outline: none;
  min-width: 160px;
  font-family: 'Poppins', sans-serif;
}

.collection-filters input:focus,
.collection-filters select:focus {
  border-color: var(--color-2);
}

.collection-filters button {
  padding: 10px 18px;
  border-radius: 10px;
  border: none;
  background: var(--color-2);
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
}

/* ================================================================
   INFO PAGE
   ================================================================ */
.art-page-hero {
  background: linear-gradient(135deg, var(--color-2), var(--color-2-dark));
  padding: 80px 20px;
  text-align: center;
  color: #fff;
}

.art-page-hero h1 {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.art-page-content {
  padding: 60px 20px;
  background: var(--bg-soft);
}

.art-page-container {
  max-width: 900px;
  margin: auto;
  background: #fff;
  padding: 50px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.art-page-container h2, .art-page-container h3 { margin-top: 28px; }
.art-page-container p { line-height: 1.8; color: var(--color-mid); margin-bottom: 14px; }
.art-page-container img { max-width: 100%; border-radius: 10px; margin: 20px 0; }

/* ================================================================
   SWIPER (reviews)
   ================================================================ */
swiper-container { width: 100%; height: 100%; }

swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #444;
  display: flex;
  justify-content: center;
  align-items: center;
}

swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1200px) {
  .art-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 1024px) {
  .collection-layout { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .drop-menu-items { grid-template-columns: repeat(4, 1fr); }
  .products-container { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1000px) {
  .art-menu { display: none; }
  .products-container { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 992px) {
  .art-product-page {
    grid-template-columns: 1fr;
    padding: 20px;
    gap: 24px;
  }

  .art-gallery {
    position: static;
  }

  .art-sticky-bar { display: flex; }
}

@media (max-width: 900px) {
  .art-instagram-grid { grid-template-columns: repeat(2, 1fr); }
  .art-insta-item img { height: 220px; }
  .art-values { flex-direction: column; padding: 30px 20px; }
  .art-value { border-right: none; border-bottom: 1px solid var(--color-border); padding: 20px 10px; width: 100%; max-width: 100%; }
  .art-value:last-child { border-bottom: none; }
  .art-footer-grid { grid-template-columns: 1fr 1fr; }
  .art-collections { grid-template-columns: 1fr; height: auto; }
  .art-collection-item { height: 50vh; }
  .art-compare-wrapper { aspect-ratio: 4 / 5; }
}

@media (max-width: 768px) {
  .art-navbar { padding: 16px 20px; }
  .art-navbar.art-navbar-scrolled { padding: 10px 20px; }
  .art-footer { padding: 50px 20px 24px; }
  .art-footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .art-press { padding: 30px 20px; }
  .art-press-logos { gap: 24px; }
  .art-press-logos img { height: 42px; }
  .section-header h1 { font-size: 2rem; }
  .collection-header-top { flex-direction: column; align-items: flex-start; }
  .collection-filters { flex-direction: column; align-items: stretch; }
  .collection-filters input, .collection-filters select, .collection-filters button { width: 100%; }
}

@media (max-width: 750px) {
  .products-container { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .products-container { grid-template-columns: repeat(1, 1fr); }
  .products-grid { grid-template-columns: repeat(1, 1fr); }
  .art-cart-toast { right: 15px; left: 15px; width: auto; }
  .art-reviews { padding: 50px 0; }
  .art-review-summary { margin: 0 20px 30px; }
  .review-swiper { padding: 0; }
  .review-swiper .swiper-slide { height: 70vh; }
  .review-swiper .swiper-button-prev { left: 8px; }
  .review-swiper .swiper-button-next { right: 8px; }
  .art-hero-content h1 { font-size: 32px; }
  .art-instagram { padding: 50px 0 30px; }
  .art-instagram-title { font-size: 28px; }
}

@media (max-width: 480px) {
  .art-product-page { padding: 14px; }
  .art-title { font-size: 20px; }
  .art-price-new { font-size: 24px; }
  .art-order-trust { font-size: 9px; }
  .art-order-trust i { font-size: 17px; }
  .art-gallery-viewer { height: 320px; }
  .art-main-image-wrap img { height: 320px; }
}

/* ================================================================
   HEADER SPACER  (below fixed scrolled header)
   ================================================================ */
.art-header-spacer {
  height: var(--navbar-h);
}

/* ================================================================
   TABS — Description / Livraison / Paiement
   ================================================================ */
.art-tabs-section {
  max-width: 1300px;
  margin: 0 auto 60px;
  padding: 0 40px;
}

.art-tab-nav {
  display: flex;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 0;
}

.art-tab-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 18px 40px;
  border: none;
  background: none;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #aaa;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.art-tab-btn .tab-icon {
  font-size: 22px;
  color: inherit;
}

.art-tab-btn.active {
  color: var(--color-text);
  font-weight: 700;
  border-bottom-color: #f59e0b;
}

.art-tab-btn:not(.active):hover {
  color: #666;
}

.art-tab-panel {
  display: none;
  padding: 36px 0;
}

.art-tab-panel.active {
  display: block;
}

/* Description panel */
.art-tab-description {
  font-size: 14px;
  line-height: 1.85;
  color: var(--color-mid);
}

/* Livraison / Paiement info box */
.art-tab-info-box {
  background: #f8fdf9;
  border: 1px solid #d4edda;
  border-radius: var(--radius);
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 700px;
}

.art-tab-info-item {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .art-tabs-section { padding: 0 16px; }
  .art-tab-btn { padding: 14px 20px; font-size: 13px; }
  .art-tab-info-box { padding: 20px 18px; }
}

@media (max-width: 500px) {
  .art-tab-btn { padding: 12px 14px; }
  .art-tab-btn span { display: none; }
  .art-tab-btn .tab-icon { font-size: 26px; }
}

/* ================================================================
   PRODUCT REVIEWS SECTION
   ================================================================ */
.art-product-reviews {
  max-width: 1300px;
  margin: 0 auto 70px;
  padding: 0 40px;
}

.art-reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--color-border);
}

.art-reviews-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.art-reviews-count {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text);
}

.art-reviews-avg {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 18px;
  color: #f5a623;
}

.art-avg-num {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-mid);
  margin-left: 4px;
}

.art-reviews-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

/* Individual review card */
.art-review-item {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s ease;
}

.art-review-item:hover {
  box-shadow: var(--shadow-md);
}

.review-top {
  display: flex;
  align-items: center;
  gap: 14px;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  font-weight: 700;
  color: #444;
  flex-shrink: 0;
  border: 2px solid rgba(0,0,0,0.06);
}

.review-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.review-name {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: 5px;
}

.review-badge {
  color: #1d9bf0;
  font-size: 15px;
  display: flex;
  align-items: center;
}

.review-stars {
  font-size: 14px;
  color: #f5a623;
  display: flex;
  gap: 1px;
}

.review-comment {
  font-size: 13.5px;
  color: var(--color-mid);
  line-height: 1.8;
  font-style: italic;
  margin: 0;
  border-left: 3px solid var(--color-2-soft);
  padding-left: 12px;
}

.no-reviews-msg {
  text-align: center;
  color: #aaa;
  padding: 40px 0;
  font-size: 14px;
  grid-column: 1 / -1;
}

:root{
  --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
    --tw-shadow: 0 0 #0000;
}

.bxshadow{
  /* background-color: rgba(244, 244, 244, 0.632); */
  padding: 10px;
  box-sizing: border-box;
  border: 1px solid rgb(225, 225, 225);
  box-shadow: 0 2px 8px rgba(225, 225, 225, 0.8);
  border-radius: 10px;

}

@media (max-width: 768px) {
  .art-product-reviews { padding: 0 16px; }
  .art-reviews-list { grid-template-columns: 1fr; }
  .art-review-item { padding: 18px 16px; }
  .art-reviews-count { font-size: 16px; }



}
