/* ==========================================================================
   Theme: Violet
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@700&display=swap');

:root {
  --theme-primary: #7c3aed;
  --theme-primary-hover: #6d28d9;
  --theme-primary-light: #ede9fe;
  --theme-accent: #c4b5fd;
  --theme-bg: #fafaf9;
  --theme-surface: #ffffff;
  --theme-soft: #f4f4f5;
  --theme-text: #18181b;
  --theme-muted: #71717a;
  --theme-border: #e4e4e7;
  --theme-star: #f59e0b;
  --theme-dark: #18181b;
  --theme-card-radius: 1.5rem;
  --theme-card-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --theme-btn-radius: 9999px;
}

body {
  background: var(--theme-bg);
  color: var(--theme-text);
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.logo-font {
  color: var(--theme-primary);
  font-family: 'Playfair Display', Georgia, serif;
}

.promo-bar {
  background: var(--theme-primary-hover);
  color: #fff;
  font-size: 14px;
  padding: 8px 16px;
  text-align: center;
}

.geo-banner {
  align-items: center;
  background-color: var(--theme-primary-hover);
  color: #fff;
  display: flex;
  font-size: 14px;
  justify-content: center;
  padding: 8px 16px;
  position: relative;
  text-align: center;
}

.geo-banner img {
  height: 14px;
  margin-right: 8px;
  width: 20px;
}

.geo-banner .close-btn {
  background: none;
  border: 0;
  color: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  position: absolute;
  right: 10px;
  top: 8px;
}

.site-header {
  background: #fff;
  border-bottom: 1px solid var(--theme-border);
}

.site-nav a:hover,
.section-link,
.footer-links a:hover,
.footer-meta a:hover,
.footer-social a:hover,
.footer-social i:hover,
.brand-link {
  color: var(--theme-primary);
}

.nav-toggle,
.mobile-menu-link {
  color: var(--theme-text);
}

.mobile-menu {
  border-color: var(--theme-border);
}

.mobile-menu-link {
  border-color: var(--theme-border);
}

.nav-search {
  align-items: center;
  display: flex;
  flex: 1 1 28rem;
  margin: 0 2rem;
  max-width: 36rem;
}

.nav-search-form {
  position: relative;
  width: 100%;
}

.nav-search-input {
  background: var(--theme-soft) !important;
  border: 1px solid #d4d4d8 !important;
  border-radius: 9999px !important;
  box-shadow: none !important;
  color: var(--theme-text);
  display: block;
  font-size: 0.875rem !important;
  height: 44px !important;
  line-height: 44px !important;
  margin: 0 !important;
  padding: 0 1.25rem 0 2.75rem !important;
  text-indent: 0 !important;
  width: 100% !important;
}

.nav-search-input:focus {
  border-color: var(--theme-primary) !important;
  outline: none !important;
}

.nav-search-button {
  align-items: center;
  background: transparent !important;
  border: 0 !important;
  color: #a1a1aa;
  display: flex;
  height: 44px;
  justify-content: center;
  left: 0.875rem;
  padding: 0 !important;
  position: absolute;
  top: 0;
  width: 1.5rem;
}

.hero-home {
  align-items: center;
  background:
    linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.45)),
    url('/images/home-1/slides/1-bg.jpg') center/cover no-repeat;
  color: #fff;
  display: flex;
  justify-content: center;
  min-height: 580px;
  padding: 3rem 1.5rem;
  text-align: center;
}

.btn-primary {
  align-items: center;
  background: #fff;
  border: 0;
  border-radius: var(--theme-btn-radius);
  color: var(--theme-primary);
  display: inline-flex;
  font-size: 1.125rem;
  font-weight: 600;
  gap: 0.5rem;
  justify-content: center;
  padding: 0.875rem 2.5rem;
  transition: background 0.2s ease, color 0.2s ease;
}

.btn-primary:hover {
  background: var(--theme-primary-light);
}

.section-label {
  color: var(--theme-primary);
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-link,
.section-subcopy,
.footer-copy,
.footer-links,
.footer-social,
.footer-meta,
.rating-count {
  color: var(--theme-muted);
}

.collection-card {
  display: block;
  transition: transform 0.3s ease, color 0.3s ease;
}

.collection-card-media {
  background: linear-gradient(180deg, #fbf9ff 0%, #f5f3ff 100%);
  border: 1px solid rgba(124, 58, 237, 0.1);
  border-radius: 1.5rem;
  box-shadow: 0 22px 50px -34px rgba(76, 29, 149, 0.35);
}

.collection-card-art {
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0)),
    linear-gradient(155deg, rgba(255, 255, 255, 0.96), rgba(237, 233, 254, 0.8));
  padding: 1rem;
  position: relative;
}

.collection-card-art::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.5));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.collection-thumb-stack {
  height: 100%;
  position: relative;
  width: 100%;
}

.collection-thumb-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 1.1rem;
  box-shadow: 0 18px 34px -24px rgba(24, 24, 27, 0.45);
  overflow: hidden;
  position: absolute;
}

.collection-thumb-main {
  height: calc(100% - 1.25rem);
  left: 0.1rem;
  top: 0.82rem;
  transform: rotate(-3deg);
  width: calc(68% - 0.1rem);
  z-index: 3;
}

.collection-thumb-accent {
  filter: saturate(0.84);
  opacity: 0.95;
  right: 0;
  width: 38%;
}

.collection-thumb-accent-one {
  height: 45%;
  top: 0.9rem;
  transform: rotate(5deg);
  z-index: 2;
}

.collection-thumb-accent-two {
  bottom: 0.9rem;
  height: 41%;
  transform: rotate(2deg);
  z-index: 1;
}

.collection-thumb-image {
  display: block;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease, filter 0.35s ease;
  width: 100%;
}

.collection-thumb-fallback {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.45));
  height: 100%;
}

.collection-card-icon {
  color: rgba(124, 58, 237, 0.4);
}

.collection-card-title {
  color: var(--theme-text);
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.35;
  margin: 0;
  min-height: 2.6em;
  text-wrap: balance;
}

.collection-card:hover,
.product-card:hover {
  transform: translateY(-6px);
}

.collection-card:hover .collection-thumb-main .collection-thumb-image {
  filter: saturate(1.03);
  transform: scale(1.04);
}

.collection-card:hover .collection-thumb-accent .collection-thumb-image {
  filter: saturate(0.92);
  transform: scale(1.03);
}

.product-card-shell {
  background: #fff;
  border: 1px solid var(--theme-border);
  border-radius: var(--theme-card-radius);
}

.product-card-media {
  background: var(--theme-soft);
}

.product-card:hover {
  transform: translateY(-8px);
}

.product-card:hover .product-card-shell {
  box-shadow: var(--theme-card-shadow);
}

.product-card:hover .product-card-title {
  color: var(--theme-primary);
}

.price-badge {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 1px 3px rgb(0 0 0 / 0.1);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  position: absolute;
  right: 0.75rem;
  top: 0.75rem;
}

.products-section {
  background: #fff;
}

.star-rating .fa-star,
.star-rating .fa-star-half-alt,
.star-rating .fa-star-half-stroke,
.star-rating .fa-regular.fa-star {
  color: var(--theme-star);
}

.trust-bar {
  background: var(--theme-dark);
  color: #fff;
}

.trust-icon {
  color: var(--theme-accent);
}

.trust-copy {
  color: #a1a1aa;
}

.site-footer {
  background: var(--theme-soft);
}

.footer-brand {
  color: var(--theme-primary);
  display: inline-block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.mobile-buy-wrap {
  background: #fff;
  border-top: 1px solid var(--theme-border);
}

.mobile-buy-btn {
  align-items: center;
  background: var(--theme-primary-hover);
  border: 0;
  border-radius: var(--theme-btn-radius);
  color: #fff;
  display: inline-flex;
  font-weight: 600;
  justify-content: center;
  padding: 0.75rem 1rem;
}

.mobile-buy-btn:hover {
  background: var(--theme-primary);
}

.content-wrapper {
  background: #fff;
  border-radius: 1rem;
  line-height: 1.8;
  margin: 2rem auto;
  max-width: 800px;
  padding: 40px;
}

.content-wrapper h1,
.content-wrapper h2,
.content-wrapper h3 {
  font-weight: 700;
  margin-bottom: 20px;
}

.content-wrapper p,
.content-wrapper ul,
.content-wrapper table {
  margin-bottom: 20px;
}

.content-wrapper ul {
  padding-left: 20px;
}

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

.content-wrapper th,
.content-wrapper td {
  border: 1px solid var(--theme-border);
  padding: 16px;
  text-align: left;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
