/* ===== ЗАГАЛЬНІ СТИЛІ ===== */

:root {
  --color-primary: #d4a574;
  --color-secondary: #c9a485;
  --color-accent: #b89968;
  --color-dark: #2c2c2c;
  --color-text: #4a4a4a;
  --color-text-light: #7a7a7a;
  --color-bg: #faf8f6;
  --color-white: #ffffff;
  --color-cream: #f5f1ed;
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
  
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-pill: 999px;
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== HERO SECTION ===== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: 
    linear-gradient(135deg, rgba(250, 248, 246, 0.7) 0%, rgba(245, 241, 237, 0.75) 100%),
    url('https://images.unsplash.com/photo-1441986300917-64674bd600d8?q=80&w=2400&fit=crop') center/cover no-repeat fixed;
  padding: 80px 24px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  animation: float 8s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-30px, -30px); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2), rgba(250, 248, 246, 0.5));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  width: 100%;
  display: flex;
  align-items: stretch;
  justify-content: center;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  padding: 40px 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.photo-wrapper {
  position: relative;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  padding: 5px;
  box-shadow: var(--shadow-lg), 0 0 0 12px rgba(212, 165, 116, 0.1);
  transition: var(--transition);
}

.photo-wrapper:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg), 0 0 0 16px rgba(212, 165, 116, 0.15);
}

.photo-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  background: var(--color-cream);
}

.photo-wrapper.placeholder::after {
  content: '📸';
  position: absolute;
  inset: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  background: linear-gradient(135deg, #f9f7f5, #f0ebe6);
  border-radius: 50%;
}

.hero-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.hero-logo {
  display: flex;
  justify-content: center;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 16px;
  line-height: 1.2;
  animation: fadeInUp 0.8s ease-out;
  letter-spacing: -0.5px;
}

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

.hero-subtitle {
  font-size: 24px;
  color: var(--color-text-light);
  margin-bottom: 0;
  font-weight: 400;
  animation: fadeInUp 0.8s ease-out 0.1s both;
}

.brand {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: var(--color-primary);
  font-style: italic;
}

.hero-description {
  font-size: 19px;
  line-height: 1.9;
  color: var(--color-text);
  margin-bottom: 36px;
  max-width: 520px;
  font-weight: 400;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-bullets {
  list-style: disc;
  text-align: left;
  margin: 8px 0 16px;
  padding-left: 22px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-text);
}

.hero-bullets li + li {
  margin-top: 6px;
}

.hero-actions {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 18px;
  border-radius: var(--radius-pill);
  border: none;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  color: #ffffff;
  background: var(--color-primary);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.hero-btn--instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.hero-btn--telegram {
  background: #0088cc;
}

.hero-btn--viber {
  background: #7360f2;
}

.hero-btn--messenger {
  background: #0084ff;
}

.hero-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  align-self: center;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  color: var(--color-dark);
  font-weight: 600;
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.hero-phone i {
  color: var(--color-primary);
}

.hero-phone:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
  border-color: rgba(212, 165, 116, 0.5);
}

/* ===== SECTIONS ===== */

section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 50px;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 16px;
  letter-spacing: -0.3px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
  border-radius: var(--radius-pill);
}

.section-subtitle {
  font-size: 20px;
  color: var(--color-text-light);
  font-weight: 400;
}

/* ===== ПРО МЕНЕ ===== */

.about-me {
  background: var(--color-white);
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-content p {
  font-size: 19px;
  line-height: 2;
  color: var(--color-text);
  margin-bottom: 24px;
  font-weight: 400;
}

.about-content p:last-child {
  margin-bottom: 0;
}

/* ===== ПРО МАГАЗИН ===== */

.about-store {
  background: var(--color-cream);
  position: relative;
  overflow: hidden;
}

.about-store::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
}

.about-store::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
}

.store-description-wrapper {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto 50px;
}

.store-decoration {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  opacity: 0.6;
}

.left-decoration {
  align-items: flex-end;
}

.right-decoration {
  align-items: flex-start;
}

.decoration-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.2), rgba(201, 164, 133, 0.15));
  border: 2px solid rgba(212, 165, 116, 0.3);
}

.decoration-line {
  width: 2px;
  height: 80px;
  background: linear-gradient(to bottom, rgba(212, 165, 116, 0.4), transparent);
}

.decoration-icon {
  font-size: 32px;
  opacity: 0.5;
  animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.store-description {
  text-align: center;
  max-width: 800px;
}

.store-description p {
  font-size: 19px;
  line-height: 2;
  color: var(--color-text);
  margin-bottom: 20px;
  font-weight: 400;
}

.store-features {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-pill);
  border: 1px solid rgba(212, 165, 116, 0.2);
  transition: var(--transition);
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.feature-item i {
  color: var(--color-primary);
  font-size: 18px;
}

.feature-item span {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text);
  font-family: 'Poppins', sans-serif;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.product-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(250, 248, 246, 0.9));
  padding: 40px 28px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 2px solid rgba(212, 165, 116, 0.15);
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.05) 0%, transparent 70%);
  opacity: 0;
  transition: var(--transition);
}

.product-card:hover::before {
  opacity: 1;
}

.product-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary);
  background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(250, 248, 246, 0.95));
}

.product-icon {
  font-size: 52px;
  margin-bottom: 24px;
  filter: grayscale(0.1);
  transition: var(--transition);
  display: inline-block;
}

.product-card:hover .product-icon {
  transform: scale(1.1) rotate(5deg);
  filter: grayscale(0);
}

.product-card h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 14px;
  font-family: 'Poppins', sans-serif;
}

.product-card p {
  font-size: 17px;
  color: var(--color-text-light);
  line-height: 1.7;
  font-weight: 400;
}

/* ===== КОНТАКТИ ===== */

.contact {
  background: var(--color-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 32px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(250, 248, 246, 0.9));
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

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

.contact-card i {
  font-size: 32px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-value {
  font-size: 19px;
  font-weight: 600;
  color: var(--color-dark);
  font-family: 'Poppins', sans-serif;
}

.telegram-card i {
  color: #0088cc;
}

.telegram-card:hover {
  border-color: #0088cc;
  background: linear-gradient(135deg, rgba(0, 136, 204, 0.05), rgba(0, 136, 204, 0.02));
}

.viber-card i {
  color: #7360f2;
}

.viber-card:hover {
  border-color: #7360f2;
  background: linear-gradient(135deg, rgba(115, 96, 242, 0.05), rgba(115, 96, 242, 0.02));
}

.phone-card i {
  color: var(--color-primary);
}

.phone-card:hover {
  border-color: var(--color-primary);
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.08), rgba(212, 165, 116, 0.02));
}

/* ===== FOOTER ===== */

.footer {
  background: var(--color-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 40px 0;
  text-align: center;
}

.footer p {
  margin: 0;
  font-size: 15px;
}

.footer-small {
  font-size: 13px;
  margin-top: 8px !important;
  opacity: 0.6;
}

/* ===== АДАПТИВНІСТЬ ===== */

@media (max-width: 968px) {
  .hero-content {
    padding: 32px 24px;
  }

  .hero-title {
    font-size: 48px;
  }

  .hero-subtitle {
    font-size: 22px;
  }

  .hero-description {
    max-width: 100%;
  }

  .hero-social {
    justify-content: center;
  }

  .section-title {
    font-size: 40px;
  }

  .store-description-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .store-decoration {
    display: none;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 60px 16px;
    min-height: auto;
  }

  .hero-content {
    padding: 32px 24px;
  }

  .photo-wrapper {
    width: 180px;
    height: 180px;
  }

  .store-features {
    gap: 16px;
  }

  .feature-item {
    padding: 10px 16px;
  }

  .hero-title {
    font-size: 38px;
  }

  .hero-subtitle {
    font-size: 20px;
  }

  .hero-description {
    font-size: 17px;
  }

  .section-title {
    font-size: 32px;
  }

  section {
    padding: 60px 0;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: 24px;
  }
}
