/* ============================================
   SHOP PAGE - Premium Sacred Geometry Design
   ============================================ */

/* ---------- Shop Hero ---------- */
.shop-hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--gradient-soft);
  padding-top: 100px;
  text-align: center;
}

.shop-hero__sacred {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.shop-hero__mandala {
  width: 100%;
  max-width: 700px;
  height: auto;
  color: var(--color-accent);
  animation: mandalaRotate 180s linear infinite;
}

@keyframes mandalaRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.shop-hero__gradient {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle,
    rgba(201, 168, 108, 0.2) 0%,
    rgba(201, 168, 108, 0.05) 40%,
    transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

.shop-hero__gradient:first-of-type {
  top: -20%;
  right: -10%;
  animation: floatGlow 10s ease-in-out infinite;
}

.shop-hero__gradient--2 {
  bottom: -30%;
  left: -15%;
  animation: floatGlow 12s ease-in-out infinite reverse;
}

.shop-hero__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  animation: fadeInUp 1s ease forwards;
}

.shop-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: rgba(201, 168, 108, 0.1);
  border: 1px solid rgba(201, 168, 108, 0.3);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 2rem;
}

.shop-hero__badge-icon {
  animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.shop-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 300;
  color: var(--color-primary);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.shop-hero__title em {
  font-style: italic;
  color: var(--color-accent);
}

.shop-hero__text {
  font-size: 1.2rem;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 3rem;
}

.shop-hero__scroll {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-accent);
  animation: bounceDown 2s ease-in-out infinite;
}

.shop-hero__scroll span {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

/* ---------- Featured Product ---------- */
.shop-featured {
  padding: var(--space-xl) 0;
  margin-top: -100px;
  position: relative;
  z-index: 2;
}

.shop-featured__card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  padding: 4rem;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  border: 2px solid rgba(201, 168, 108, 0.2);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.shop-featured__badge {
  position: absolute;
  top: 2rem;
  right: 2rem;
  padding: 0.5rem 1.25rem;
  background: var(--gradient-gold);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.shop-featured__content {
  display: flex;
  gap: 2.5rem;
}

.shop-featured__icon {
  width: 120px;
  height: 120px;
  flex-shrink: 0;
  color: var(--color-accent);
  animation: gentlePulse 4s ease-in-out infinite;
}

@keyframes gentlePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.shop-featured__info {
  flex: 1;
}

.shop-featured__category {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

.shop-featured__title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.shop-featured__description {
  color: var(--color-text-light);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.shop-featured__includes {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.shop-featured__includes li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--color-text);
}

.shop-featured__includes svg {
  color: var(--color-accent);
  flex-shrink: 0;
}

.shop-featured__action {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding-left: 3rem;
  border-left: 1px solid var(--color-border);
}

.shop-featured__price-amount {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 400;
  color: var(--color-primary);
}

/* Decorative elements */
.shop-featured__decoration {
  position: absolute;
  pointer-events: none;
}

.shop-featured__decoration--1 {
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cg fill='none' stroke='%23c9a86c' stroke-width='0.3' opacity='0.2'%3E%3Ccircle cx='50' cy='50' r='45'/%3E%3Ccircle cx='50' cy='50' r='35'/%3E%3Ccircle cx='50' cy='50' r='25'/%3E%3C/g%3E%3C/svg%3E");
  background-size: contain;
}

.shop-featured__decoration--2 {
  bottom: -30px;
  right: -30px;
  width: 150px;
  height: 150px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cg fill='none' stroke='%231a2f23' stroke-width='0.3' opacity='0.1'%3E%3Cpolygon points='50,10 90,50 50,90 10,50'/%3E%3Cpolygon points='50,25 75,50 50,75 25,50'/%3E%3C/g%3E%3C/svg%3E");
  background-size: contain;
}

/* ---------- Products Section ---------- */
.shop-products {
  padding: var(--space-xl) 0 var(--space-xxl);
}

.shop-products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

/* ---------- Process Section ---------- */
.shop-process {
  padding: var(--space-xxl) 0;
  background: var(--gradient-spiritual);
  position: relative;
  overflow: hidden;
}

.shop-process__bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.shop-process__sacred {
  width: 100%;
  height: 100%;
  color: var(--color-accent);
}

.shop-process .section__badge {
  background: rgba(201, 168, 108, 0.2);
  border-color: rgba(201, 168, 108, 0.4);
}

.shop-process .section__title {
  color: var(--color-white);
}

.shop-process__steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.shop-process__step {
  flex: 1;
  max-width: 300px;
  text-align: center;
  padding: 2rem;
}

.shop-process__step-number {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 300;
  color: rgba(201, 168, 108, 0.3);
  line-height: 1;
  margin-bottom: 1rem;
}

.shop-process__step-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  padding: 1rem;
  background: rgba(201, 168, 108, 0.15);
  border-radius: 50%;
  color: var(--color-accent);
  transition: all var(--transition-base);
}

.shop-process__step:hover .shop-process__step-icon {
  background: var(--color-accent);
  color: var(--color-primary);
  transform: scale(1.1);
}

.shop-process__step-icon svg {
  width: 100%;
  height: 100%;
}

.shop-process__step-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--color-white);
  margin-bottom: 0.75rem;
}

.shop-process__step-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.7;
}

.shop-process__connector {
  width: 80px;
  flex-shrink: 0;
  padding-top: 8rem;
  color: var(--color-accent);
  opacity: 0.4;
}

/* ---------- Trust Section ---------- */
.shop-trust {
  padding: var(--space-xl) 0;
  background: var(--color-secondary);
}

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

.shop-trust__item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  transition: all var(--transition-base);
}

.shop-trust__item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201, 168, 108, 0.2);
}

.shop-trust__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  padding: 0.75rem;
  background: rgba(201, 168, 108, 0.1);
  border-radius: var(--radius-md);
  color: var(--color-accent);
}

.shop-trust__icon svg {
  width: 100%;
  height: 100%;
}

.shop-trust__content h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-primary);
  margin-bottom: 0.25rem;
}

.shop-trust__content p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin: 0;
}

/* ---------- FAQ Section ---------- */
.shop-faq {
  padding: var(--space-xxl) 0;
  position: relative;
  overflow: hidden;
}

.shop-faq__decoration {
  position: absolute;
  top: 50%;
  right: -10%;
  width: 500px;
  height: 500px;
  transform: translateY(-50%);
  color: var(--color-accent);
  pointer-events: none;
}

.shop-faq__inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.shop-faq__header {
  text-align: center;
  margin-bottom: 3rem;
}

.shop-faq__list {
  margin-bottom: 3rem;
}

.shop-faq__item {
  border-bottom: 1px solid var(--color-border);
}

.shop-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.75rem 0;
  cursor: pointer;
  list-style: none;
  transition: all var(--transition-fast);
}

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

.shop-faq__question span:first-child {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-primary);
}

.shop-faq__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--color-accent);
  transition: transform var(--transition-base);
}

.shop-faq__item[open] .shop-faq__icon {
  transform: rotate(45deg);
}

.shop-faq__item[open] .shop-faq__question span:first-child {
  color: var(--color-accent);
}

.shop-faq__answer {
  padding-bottom: 1.75rem;
}

.shop-faq__answer p {
  color: var(--color-text-light);
  line-height: 1.8;
  margin: 0;
}

.shop-faq__answer strong {
  color: var(--color-primary);
}

.shop-faq__cta {
  text-align: center;
  padding: 2.5rem;
  background: rgba(201, 168, 108, 0.05);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(201, 168, 108, 0.15);
}

.shop-faq__cta p {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--color-primary);
  margin-bottom: 1.25rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 1200px) {
  .shop-featured__card {
    grid-template-columns: 1fr;
  }

  .shop-featured__action {
    flex-direction: row;
    justify-content: space-between;
    padding-left: 0;
    padding-top: 2rem;
    border-left: none;
    border-top: 1px solid var(--color-border);
  }
}

@media (max-width: 992px) {
  .shop-products__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .shop-process__steps {
    flex-direction: column;
    align-items: center;
  }

  .shop-process__connector {
    width: 2px;
    height: 60px;
    padding: 0;
    transform: rotate(90deg);
  }

  .shop-trust__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .shop-hero {
    min-height: 60vh;
    padding-top: 120px;
  }

  .shop-featured {
    margin-top: -50px;
  }

  .shop-featured__card {
    padding: 2rem;
  }

  .shop-featured__content {
    flex-direction: column;
    gap: 1.5rem;
  }

  .shop-featured__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
  }

  .shop-featured__includes {
    grid-template-columns: 1fr;
  }

  .shop-featured__badge {
    position: static;
    display: inline-block;
    margin-bottom: 1.5rem;
  }

  .shop-products__grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }

  .shop-trust__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .shop-featured__action {
    flex-direction: column;
    align-items: stretch;
  }

  .shop-featured__price {
    text-align: center;
  }
}

/* ============================================
   COSMIC CLOCKWORK SHOP ENHANCEMENTS
   Sacred Geometry & Mystical Vitality
   ============================================ */

/* Shop Hero Cosmic Enhancement */
.shop-hero-cosmic {
  position: relative;
}

.shop-hero-cosmic::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 5%;
  width: 400px;
  height: 400px;
  transform: translateY(-50%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 400'%3E%3Cg fill='none' stroke='%23c9a86c' stroke-width='0.3' opacity='0.1'%3E%3Ccircle cx='200' cy='200' r='190'/%3E%3Ccircle cx='200' cy='200' r='150'/%3E%3Ccircle cx='200' cy='200' r='110'/%3E%3Ccircle cx='200' cy='200' r='70'/%3E%3Ccircle cx='200' cy='200' r='30'/%3E%3Cline x1='200' y1='10' x2='200' y2='390'/%3E%3Cline x1='10' y1='200' x2='390' y2='200'/%3E%3Cline x1='55' y1='55' x2='345' y2='345'/%3E%3Cline x1='345' y1='55' x2='55' y2='345'/%3E%3C/g%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  animation: clockworkRotate 180s linear infinite;
}

@keyframes clockworkRotate {
  from { transform: translateY(-50%) rotate(0deg); }
  to { transform: translateY(-50%) rotate(360deg); }
}

/* Enhanced Mandala Animation */
.shop-hero__mandala-enhanced {
  position: relative;
}

.shop-hero__mandala-enhanced::before {
  content: '';
  position: absolute;
  inset: -20%;
  background: radial-gradient(
    circle at center,
    rgba(201, 168, 108, 0.1) 0%,
    transparent 50%
  );
  animation: mandalaPulse 6s ease-in-out infinite;
}

@keyframes mandalaPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

/* Featured Card Sacred Geometry */
.shop-featured__card-cosmic {
  position: relative;
}

.shop-featured__card-cosmic::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg,
    transparent,
    var(--color-accent),
    var(--color-accent-light),
    var(--color-accent),
    transparent
  );
  opacity: 0;
  transition: opacity 0.5s ease;
}

.shop-featured__card-cosmic:hover::before {
  opacity: 1;
}

/* Process Step Cosmic Connectors */
.shop-process__cosmic-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg,
    transparent,
    rgba(201, 168, 108, 0.3),
    rgba(201, 168, 108, 0.5),
    rgba(201, 168, 108, 0.3),
    transparent
  );
  z-index: 0;
}

.shop-process__step-cosmic {
  position: relative;
  z-index: 1;
}

.shop-process__step-cosmic::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150%;
  height: 150%;
  background: radial-gradient(
    ellipse at center,
    rgba(201, 168, 108, 0.05) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.shop-process__step-cosmic:hover::after {
  opacity: 1;
}

/* Trust Item Cosmic Glow */
.shop-trust__item-cosmic {
  position: relative;
  overflow: hidden;
}

.shop-trust__item-cosmic::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    transparent 0%,
    rgba(201, 168, 108, 0.05) 50%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.shop-trust__item-cosmic:hover::after {
  opacity: 1;
}

/* FAQ Sacred Geometry Background */
.shop-faq__cosmic-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cg fill='none' stroke='%23c9a86c' stroke-width='0.2' opacity='0.03'%3E%3Cpolygon points='50,10 90,50 50,90 10,50'/%3E%3Ccircle cx='50' cy='50' r='35'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 100px 100px;
  pointer-events: none;
}

/* FAQ Question Cosmic Hover */
.shop-faq__question-cosmic {
  position: relative;
}

.shop-faq__question-cosmic::before {
  content: '';
  position: absolute;
  left: -1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 0;
  background: var(--gradient-gold);
  border-radius: 2px;
  transition: height 0.3s ease;
}

.shop-faq__item[open] .shop-faq__question-cosmic::before {
  height: 50%;
}

/* Product Card Cosmic Enhancement */
.product-card-shop-cosmic {
  position: relative;
}

.product-card-shop-cosmic::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg,
    transparent,
    var(--color-accent),
    transparent
  );
  transform: scaleX(0);
  transition: transform 0.5s ease;
}

.product-card-shop-cosmic:hover::after {
  transform: scaleX(1);
}

/* Cosmic Floating Elements */
.shop-cosmic-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--color-accent);
  border-radius: 50%;
  opacity: 0.3;
  animation: cosmicFloat 15s ease-in-out infinite;
}

@keyframes cosmicFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.2;
  }
  25% {
    transform: translate(20px, -30px) scale(1.5);
    opacity: 0.4;
  }
  50% {
    transform: translate(-10px, -50px) scale(1);
    opacity: 0.3;
  }
  75% {
    transform: translate(15px, -20px) scale(1.2);
    opacity: 0.5;
  }
}

/* Vitality Energy Lines */
.vitality-line {
  position: absolute;
  width: 1px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(201, 168, 108, 0.2),
    transparent
  );
  animation: vitalityPulse 4s ease-in-out infinite;
}

@keyframes vitalityPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}
