   * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;
      background-color: #fefaf5;
      color: #2b2a28;
      line-height: 1.4;
    }

    :root {
      --dark: #2b2a28;
      --gold: #c8ae66;
      --gold-light: #dbbc7c;
      --card-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.02);
      --transition: all 0.25s ease;
    }

    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* header */
    .header {
      background-color: #ffffff;
      border-bottom: 1px solid rgba(43, 42, 40, 0.08);
      padding: 1rem 0;
      position: sticky;
      top: 0;
      z-index: 100;
      backdrop-filter: blur(2px);
      background-color: rgba(255, 255, 255, 0.96);
    }

    .nav-wrapper {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 20px;
    }

    .logo img {
      height: 52px;
      width: auto;
      display: block;
      object-fit: contain;
    }

    .nav-links {
      display: flex;
      gap: 2rem;
      list-style: none;
    }
    .nav-links a {
      text-decoration: none;
      font-weight: 500;
      color: var(--dark);
      transition: var(--transition);
    }
    .nav-links a:hover {
      color: var(--gold);
    }

    /* hero */
    .hero {
      padding: 4rem 0 3rem 0;
      text-align: center;
      background: linear-gradient(145deg, #fffaf3 0%, #ffffff 100%);
    }
    .hero h1 {
      font-size: 3.2rem;
      font-weight: 700;
      color: var(--dark);
      line-height: 1.2;
      letter-spacing: -0.02em;
    }
    .hero h1 span {
      color: var(--gold);
    }
    .hero p {
      font-size: 1.2rem;
      color: #5a5856;
      margin-top: 1rem;
      max-width: 580px;
      margin-left: auto;
      margin-right: auto;
    }

    /* секции */
    .products-section, .delivery-section, .requisites-section {
      padding: 3rem 0 2rem;
    }
    .section-title {
      font-size: 2rem;
      font-weight: 600;
      margin-bottom: 2rem;
      text-align: center;
      position: relative;
      display: inline-block;
      width: 100%;
    }
    .section-title:after {
      content: '';
      display: block;
      width: 70px;
      height: 3px;
      background: var(--gold);
      margin: 0.6rem auto 0;
      border-radius: 4px;
    }

    /* грид карточек */
    .products-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
      gap: 2rem;
      margin-top: 1rem;
    }

    /* карточка товара */
    .product-card {
      background: #ffffff;
      border-radius: 28px;
      overflow: hidden;
      transition: var(--transition);
      box-shadow: var(--card-shadow);
      display: flex;
      flex-direction: column;
      border: 1px solid rgba(200, 174, 102, 0.2);
    }
    .product-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 28px 38px -14px rgba(0, 0, 0, 0.12);
      border-color: var(--gold-light);
    }

    /* СЛАЙДЕР — УВЕЛИЧЕНА ВЫСОТА, фото заполняют всё пространство без пустот */
    .slider-container {
      position: relative;
      width: 100%;
      background-color: #f2ede5;
      overflow: hidden;
    }
    
    /* Увеличиваем высоту карточки: делаем соотношение 3/4 (выше стандартного) чтобы фото занимало больше места */
    .slider-container {
      aspect-ratio: 3 / 4;
    }
    
    .slider-images {
      display: flex;
      width: 100%;
      height: 100%;
      transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    }
    
    .slider-img {
      min-width: 100%;
      height: 100%;
      object-fit: cover;      /* Заполняет всё пространство, не оставляя пустот */
      object-position: center center;
      background-color: #f2ede5;
    }
    
    .slider-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(43, 42, 40, 0.7);
      backdrop-filter: blur(4px);
      border: none;
      width: 38px;
      height: 38px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      color: white;
      font-size: 1.2rem;
      transition: 0.2s;
      z-index: 10;
    }
    .slider-btn:hover {
      background: var(--gold);
      color: var(--dark);
    }
    .btn-prev {
      left: 12px;
    }
    .btn-next {
      right: 12px;
    }
    .slider-dots {
      position: absolute;
      bottom: 15px;
      left: 0;
      right: 0;
      display: flex;
      justify-content: center;
      gap: 10px;
      z-index: 10;
    }
    .dot {
      width: 8px;
      height: 8px;
      background: rgba(255,255,240,0.85);
      border-radius: 50%;
      cursor: pointer;
      transition: 0.2s;
    }
    .dot.active {
      background: var(--gold);
      width: 24px;
      border-radius: 10px;
    }

    .product-info {
      padding: 1.4rem 1.2rem 1.6rem;
      flex: 1;
      display: flex;
      flex-direction: column;
    }
    .product-title {
      font-size: 1.35rem;
      font-weight: 700;
      margin-bottom: 0.4rem;
      color: var(--dark);
    }
    .product-desc {
      font-size: 0.85rem;
      color: #6b6a68;
      margin: 0.5rem 0 0.8rem;
      line-height: 1.4;
    }
    .price-row {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      margin-top: auto;
      flex-wrap: wrap;
      gap: 12px;
    }
    .price {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--gold);
    }
    .old-price {
      font-size: 0.85rem;
      text-decoration: line-through;
      color: #aaa7a2;
      margin-left: 6px;
    }
    .btn-card {
      background-color: var(--dark);
      color: white;
      border: none;
      padding: 0.7rem 1.2rem;
      border-radius: 40px;
      font-weight: 600;
      font-size: 0.85rem;
      cursor: pointer;
      transition: var(--transition);
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: 'Inter', sans-serif;
    }
    .btn-card:hover {
      background-color: var(--gold);
      color: var(--dark);
      transform: scale(0.97);
    }

    /* доставка */
    .delivery-content {
      background: #fff;
      border-radius: 32px;
      padding: 2rem;
      text-align: center;
      box-shadow: var(--card-shadow);
      border: 1px solid rgba(200,174,102,0.25);
    }
    .delivery-content i {
      font-size: 2.8rem;
      color: var(--gold);
      margin-bottom: 1rem;
    }
    .delivery-content h3 {
      font-size: 1.6rem;
      margin-bottom: 0.75rem;
    }

    /* реквизиты */
    .requisites-box {
      background: #ffffff;
      border-radius: 32px;
      padding: 2rem;
      border: 1px solid rgba(200,174,102,0.3);
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      justify-content: space-between;
    }
    .requisites-left, .requisites-right {
      flex: 1;
      min-width: 240px;
    }
    .requisites-left h4, .requisites-right h4 {
      font-size: 1.3rem;
      color: var(--gold);
      margin-bottom: 1rem;
      border-left: 3px solid var(--gold);
      padding-left: 12px;
    }
    .requisites-right a {
      color: var(--dark);
      text-decoration: none;
    }
    .requisites-right a:hover {
      color: var(--gold);
    }
    .insta-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #f3f0ea;
      padding: 8px 16px;
      border-radius: 40px;
      margin-top: 12px;
      transition: 0.2s;
    }
    .insta-link:hover {
      background: var(--gold-light);
    }

    /* попап */
    .popup-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.6);
      backdrop-filter: blur(5px);
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: center;
      visibility: hidden;
      opacity: 0;
      transition: visibility 0.2s, opacity 0.2s;
    }
    .popup-overlay.active {
      visibility: visible;
      opacity: 1;
    }
    .popup-container {
      background: #fff;
      max-width: 460px;
      width: 90%;
      border-radius: 40px;
      padding: 2rem 1.8rem;
      position: relative;
      text-align: center;
      box-shadow: 0 30px 40px rgba(0,0,0,0.3);
    }
    .close-popup {
      position: absolute;
      top: 18px;
      right: 22px;
      font-size: 1.8rem;
      cursor: pointer;
      color: #aaa;
    }
    .close-popup:hover {
      color: var(--dark);
    }
    .form-group {
      margin-bottom: 1.2rem;
      text-align: left;
    }
    .form-group input {
      width: 100%;
      padding: 12px 16px;
      border: 1px solid #ddd9d1;
      border-radius: 60px;
      font-size: 1rem;
      font-family: 'Inter', sans-serif;
    }
    .form-group input:focus {
      outline: none;
      border-color: var(--gold);
    }
    .popup-submit {
      background: var(--dark);
      color: white;
      border: none;
      padding: 12px;
      border-radius: 60px;
      font-weight: 600;
      width: 100%;
      cursor: pointer;
    }
    .popup-submit:hover {
      background: var(--gold);
      color: var(--dark);
    }
    .success-msg {
      color: #2c7a4a;
      background: #e8f3ed;
      padding: 10px;
      border-radius: 60px;
      margin-top: 12px;
    }

    .footer {
      background-color: #2b2a28;
      color: #e2ded7;
      padding: 2rem 0;
      margin-top: 2rem;
      text-align: center;
      font-size: 0.8rem;
    }

    /* Адаптив — на мобилках тоже увеличиваем высоту, фото заполняет экран без пустот */
    @media (max-width: 768px) {
      .container {
        padding: 0 18px;
      }
      .hero h1 {
        font-size: 2.2rem;
      }
      .nav-wrapper {
        flex-direction: column;
        align-items: center;
      }
      .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.5rem;
      }
      /* На мобильных устройствах сохраняем высокое соотношение 3/4, чтобы фото выглядело эффектно */
      .slider-container {
        aspect-ratio: 3 / 4;
      }
      .slider-btn {
        width: 32px;
        height: 32px;
        font-size: 1rem;
      }
    }

    @media (max-width: 480px) {
      .hero h1 {
        font-size: 1.8rem;
      }
      .slider-container {
        aspect-ratio: 3 / 4;
      }
      .product-title {
        font-size: 1.2rem;
      }
      .price {
        font-size: 1.3rem;
      }
      .btn-card {
        padding: 0.5rem 0.9rem;
        font-size: 0.75rem;
      }
    }