* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

:root {
  --pink-light: #fff1f6;
  --pink-medium: #ffd6e7;
  --pink-dark: #f78fb3;
  --pink-brown: #e75480;
  --dark-pink: #8c5a5a;
  --accent-color: #ff85a2;
  --text-dark: #4a4035;
  --text-light: #8b7d6b;
  --beige-light: #f5f1ea;
  --beige-medium: #e8dfd5;
}

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

body {
  background-color: var(--pink-light);
  color: var(--text-dark);
  line-height: 1.6;
}

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

/* Header & Navigation */
header {
  background-color: #fde2eb;
  box-shadow: 0 2px 10px rgba(140, 90, 90, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--pink-dark);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.logo {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--dark-pink);
  text-decoration: none;
  letter-spacing: -0.5px;
  cursor: pointer;
  font-family: "Caveat", cursive;
}

.logo span {
  color: var(--dark-pink);
  font-family: "Caveat", cursive;
}

.nav-links {
  display: flex;
  list-style: none;
  position: relative;
}

.nav-links li {
  margin-left: 25px;
  position: relative;
}

.catalog-dropdown {
  position: relative;
}

.catalog-dropdown > a {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--pink-light);
  min-width: 200px;
  box-shadow: 0 5px 20px rgba(140, 90, 90, 0.1);
  border: 1px solid var(--pink-dark);
  border-radius: 2px;
  z-index: 1000;
  padding: 10px 0;
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: var(--dark-pink);
  text-decoration: none;
  transition: background-color 0.3s;
  border-bottom: 1px solid var(--pink-medium);
  cursor: pointer;
}

.dropdown-menu a:last-child {
  border-bottom: none;
}

.dropdown-menu a:hover {
  background-color: var(--pink-medium);
  color: var(--pink-brown);
}

.nav-links a {
  text-decoration: none;
  color: var(--dark-pink);
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
  cursor: pointer;
}

.nav-links a:hover {
  color: var(--pink-brown);
}

.nav-links a.active {
  color: var(--pink-brown);
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--pink-brown);
}

.cart-icon {
  position: relative;
  cursor: pointer;
  margin-left: 25px;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: var(--pink-brown);
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 0.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.burger {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--dark-pink);
}

/* Main page sections */
.main-page-section {
  display: block;
}

.individual-page {
  display: none;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 0;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.hero-image {
  width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 10px 30px rgba(140, 90, 90, 0.1);
}

.hero-image img {
  width: 100%;
  height: auto;
  max-height: 80vh;
  object-fit: contain;
  display: block;
}

.hero-image-desktop {
  display: block;
}

.hero-image-mobile {
  display: none;
}

@media (max-width: 800px) {
  .hero-image-desktop {
    display: none;
  }
  .hero-image-mobile {
    display: block;
  }
}

.hero-content {
  text-align: center;
  margin-top: 20px;
}

/* Catalog Section */
.section-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 50px;
  color: var(--dark-pink);
  font-weight: 300;
  position: relative;
  padding-bottom: 15px;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background-color: var(--pink-brown);
}

.catalog {
  padding: 80px 0;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

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

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

.product-card {
  background-color: white;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(140, 90, 90, 0.05);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  border: 1px solid var(--pink-medium);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(140, 90, 90, 0.1);
}

.product-image {
  height: 500px;
  width: 100%;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s;
}

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

.zoom-icon {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: rgba(255, 255, 255, 0.9);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-pink);
  opacity: 0;
  transition:
    opacity 0.3s,
    transform 0.3s;
  transform: scale(0.8);
}

.product-image:hover .zoom-icon {
  opacity: 1;
  transform: scale(1);
}

.product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: rgba(231, 84, 128, 0.9);
  color: white;
  padding: 5px 12px;
  border-radius: 1px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.sale-badge {
  background-color: rgba(255, 77, 77, 0.9);
}

.product-info {
  padding: 25px;
}

.product-title {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--dark-pink);
  font-weight: 400;
}

.product-description {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 0.95rem;
  min-height: 60px;
  line-height: 1.7;
}

.product-price {
  font-weight: 600;
  color: var(--pink-brown);
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.product-sale-price {
  color: #ff4d4d;
}

.product-original-price {
  text-decoration: line-through;
  color: var(--text-light);
  font-size: 1rem;
  margin-left: 10px;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 20px;
  padding: 12px 0;
  border-top: 1px solid var(--pink-medium);
  border-bottom: 1px solid var(--pink-medium);
  letter-spacing: 0.3px;
}

.add-to-cart {
  width: 100%;
  padding: 12px;
  background-color: var(--pink-brown);
  color: white;
  border: none;
  border-radius: 1px;
  cursor: pointer;
  font-weight: 500;
  transition: background-color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.add-to-cart:hover {
  background-color: var(--pink-dark);
}

/* Image Modal with Video Support - БЕЗ ЧЕРНЫХ ПОЛОС */
.image-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 241, 246, 0.98);
  z-index: 1100;
  overflow: hidden;
  padding: 20px;
  box-sizing: border-box;
}

.image-modal-content {
  position: relative;
  width: 100%;
  max-width: 1200px;
  height: calc(100% - 40px);
  margin: 20px auto;
  animation: zoomIn 0.3s;
  display: flex;
  flex-direction: column;
  background-color: transparent;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.image-slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-media {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(140, 90, 90, 0.05);
}

.slider-media img,
.slider-media video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  height: auto;
  max-width: 95%;
  max-height: 95%;
  object-fit: contain;
  background-color: transparent;
  transition: opacity 0.3s;
  border-radius: 2px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.slider-media video {
  background-color: #000;
}

@media (max-width: 768px) {
  .slider-media img,
  .slider-media video {
    max-width: 95vw;
    max-height: 80vh;
  }
  .slider-media {
    padding: 10px;
  }
}

@media (max-width: 480px) {
  .slider-media img,
  .slider-media video {
    max-width: 98vw;
    max-height: 70vh;
  }
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--pink-medium);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--dark-pink);
  transition: all 0.3s;
  z-index: 10;
  box-shadow: 0 3px 10px rgba(140, 90, 90, 0.1);
}

.slider-btn:hover {
  background-color: white;
  color: var(--pink-brown);
  border-color: var(--pink-brown);
  box-shadow: 0 5px 15px rgba(231, 84, 128, 0.2);
}

.prev-btn {
  left: 20px;
}

.next-btn {
  right: 20px;
}

.media-counter {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background-color: rgba(255, 255, 255, 0.95);
  color: var(--dark-pink);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  z-index: 10;
  border: 1px solid var(--pink-medium);
  box-shadow: 0 3px 10px rgba(140, 90, 90, 0.1);
}

.media-counter span {
  margin-left: 5px;
}

.close-image-modal {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2.5rem;
  cursor: pointer;
  color: var(--dark-pink);
  transition: all 0.3s;
  z-index: 10;
  background-color: rgba(255, 255, 255, 0.95);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--pink-medium);
  box-shadow: 0 3px 10px rgba(140, 90, 90, 0.1);
}

.close-image-modal:hover {
  color: var(--pink-brown);
  background-color: white;
  border-color: var(--pink-brown);
  transform: rotate(90deg);
}

.image-modal-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  color: var(--dark-pink);
  padding: 25px 20px;
  background: linear-gradient(to top, rgba(255, 241, 246, 0.95), transparent);
  z-index: 10;
}

.image-modal-info h3 {
  font-size: 1.5rem;
  margin-bottom: 5px;
  font-weight: 400;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.image-modal-info p {
  color: var(--text-light);
  font-size: 1rem;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

/* Стили для всех кнопок без явных стилей */
button:not(.add-to-cart):not(.quantity-btn):not(.slider-btn):not(
    .decrease-btn
  ):not(.increase-btn):not(.remove-btn):not(#closeSuccessModal) {
  background-color: var(--pink-brown);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 2px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

button:not(.add-to-cart):not(.quantity-btn):not(.slider-btn):not(
    .decrease-btn
  ):not(.increase-btn):not(.remove-btn):not(#closeSuccessModal):hover {
  background-color: var(--pink-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(231, 84, 128, 0.2);
}

button:not(.add-to-cart):not(.quantity-btn):not(.slider-btn):not(
    .decrease-btn
  ):not(.increase-btn):not(.remove-btn):not(#closeSuccessModal):active {
  transform: translateY(0);
}

/* Стили для кнопок "Добавить в корзину" на других страницах */
.btn,
.btn-secondary {
  background-color: var(--pink-brown);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 2px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
}

.btn:hover,
.btn-secondary:hover {
  background-color: var(--pink-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(231, 84, 128, 0.2);
  color: white;
}

.btn-secondary {
  background-color: var(--dark-pink);
}

.btn-secondary:hover {
  background-color: var(--pink-brown);
}

/* Стили для иконок в кнопках */
.btn i,
.btn-secondary i,
button:not(.add-to-cart):not(.quantity-btn):not(.slider-btn) i {
  font-size: 0.9em;
}

/* Why Us Section */
.why-us {
  padding: 80px 0;
  background-color: var(--pink-medium);
  margin-bottom: 40px;
  position: relative;
}

.why-us::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--pink-brown),
    transparent
  );
}

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

.why-us h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: var(--dark-pink);
  font-weight: 300;
  position: relative;
  padding-bottom: 15px;
}

.why-us h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background-color: var(--pink-brown);
}

.why-us p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 50px;
  font-style: italic;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

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

.feature {
  text-align: center;
  padding: 30px 20px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 2px;
  transition: transform 0.3s;
}

.feature:hover {
  transform: translateY(-5px);
}

.feature i {
  font-size: 2.5rem;
  color: var(--pink-brown);
  margin-bottom: 20px;
}

.feature h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--dark-pink);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.feature p {
  font-size: 0.9rem;
  color: var(--text-light);
  font-style: normal;
  margin-bottom: 0;
  line-height: 1.6;
}

/* Cart Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(140, 90, 90, 0.7);
  z-index: 1000;
  overflow-y: auto;
}

.modal-content {
  background-color: var(--pink-light);
  margin: 50px auto;
  padding: 40px;
  border-radius: 1px;
  width: 90%;
  max-width: 900px;
  position: relative;
  border: 1px solid var(--pink-dark);
  box-shadow: 0 10px 40px rgba(140, 90, 90, 0.15);
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--text-light);
  transition: color 0.3s;
}

.close-modal:hover {
  color: var(--dark-pink);
}

.modal-content h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: var(--dark-pink);
  font-weight: 300;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--pink-medium);
}

.cart-items {
  margin-bottom: 30px;
  max-height: 400px;
  overflow-y: auto;
  padding-right: 10px;
}

.cart-items::-webkit-scrollbar {
  width: 6px;
}

.cart-items::-webkit-scrollbar-track {
  background: var(--pink-medium);
  border-radius: 1px;
}

.cart-items::-webkit-scrollbar-thumb {
  background: var(--pink-brown);
  border-radius: 1px;
}

.cart-item {
  display: flex;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--pink-medium);
  gap: 20px;
}

.cart-item-image {
  width: 80px;
  height: 80px;
  border-radius: 1px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid var(--pink-dark);
  cursor: pointer;
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-info {
  flex-grow: 1;
}

.cart-item-info h4 {
  margin-bottom: 8px;
  font-size: 1.1rem;
  color: var(--dark-pink);
  font-weight: 500;
}

.cart-item-price {
  font-weight: 600;
  color: var(--pink-brown);
  font-size: 1.1rem;
}

.cart-item-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.quantity-btn {
  background-color: var(--pink-medium);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 1px;
  cursor: pointer;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-pink);
  transition: all 0.3s;
}

.quantity-btn:hover {
  background-color: var(--pink-brown);
  color: white;
}

.cart-total {
  text-align: right;
  font-size: 1.5rem;
  font-weight: 500;
  margin: 40px 0;
  padding-top: 25px;
  border-top: 2px solid var(--pink-medium);
  color: var(--dark-pink);
}

/* Empty cart message */
.empty-cart {
  text-align: center;
  padding: 60px 0;
  color: var(--text-light);
}

.empty-cart i {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--pink-dark);
}

.empty-cart h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--dark-pink);
  font-weight: 400;
}

/* Checkout Form */
.checkout-form h3 {
  margin-bottom: 25px;
  color: var(--dark-pink);
  padding-top: 25px;
  border-top: 2px solid var(--pink-medium);
  font-weight: 400;
  font-size: 1.5rem;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
  font-weight: 500;
  color: var(--dark-pink);
  font-size: 0.95rem;
}

.form-group input {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--pink-dark);
  border-radius: 1px;
  font-size: 1rem;
  transition: border 0.3s;
  background-color: white;
  color: var(--text-dark);
}

.form-group input:focus {
  outline: none;
  border-color: var(--pink-brown);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

/* Telegram notification */
.telegram-notification {
  background-color: rgba(0, 136, 204, 0.1);
  padding: 15px;
  border-radius: 2px;
  margin-top: 20px;
  border-left: 3px solid #0088cc;
  display: flex;
  align-items: center;
  gap: 12px;
}

.telegram-notification i {
  color: #0088cc;
  font-size: 1.2rem;
}

.telegram-notification p {
  color: var(--text-dark);
  font-size: 0.9rem;
  margin: 0;
}

/* Footer */
footer {
  background-color: var(--dark-pink);
  color: var(--pink-light);
  padding: 50px 0 30px;
  margin-top: 80px;
  border-top: 1px solid var(--pink-brown);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-section {
  flex: 1;
  min-width: 250px;
  margin-bottom: 30px;
}

.footer-section h3 {
  font-size: 1.3rem;
  margin-bottom: 25px;
  color: var(--pink-light);
  font-weight: 400;
  position: relative;
  padding-bottom: 10px;
}

.footer-section h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 1px;
  background-color: var(--pink-brown);
}

.footer-section p {
  color: var(--pink-medium);
  margin-bottom: 15px;
  line-height: 1.7;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icons a {
  color: var(--pink-light);
  font-size: 1.3rem;
  transition: color 0.3s;
  opacity: 0.8;
}

.social-icons a:hover {
  color: var(--pink-medium);
  opacity: 1;
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(247, 143, 179, 0.3);
  color: var(--pink-medium);
  font-size: 0.9rem;
  margin-top: 20px;
}

/* Новые разделы */
.discounts-section,
.stickers10x6-section,
.stickers10x15-section,
.wholesale-section {
  padding: 80px 0;
  background-color: var(--pink-light);
}

/* Wholesale Page Styles */
.wholesale-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.wholesale-photo {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(140, 90, 90, 0.1);
  transition: transform 0.3s;
  height: 600px;
}

.wholesale-photo:hover {
  transform: translateY(-5px);
}

.wholesale-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s;
}

.wholesale-photo:hover img {
  transform: scale(1.05);
}

.photo-description {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.3s;
}

.wholesale-photo:hover .photo-description {
  transform: translateY(0);
}

.photo-description h3 {
  margin-bottom: 5px;
  font-size: 1.2rem;
}

.photo-description p {
  font-size: 0.9rem;
  opacity: 0.9;
  margin: 0;
}

.custom-stickers-section {
  padding: 100px 0;
  text-align: center;
  background-color: var(--pink-medium);
}

.custom-stickers-content {
  max-width: 700px;
  margin: 0 auto;
  padding: 50px;
  background-color: white;
  border-radius: 2px;
  border: 1px solid var(--pink-dark);
}

.custom-stickers-content h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: var(--dark-pink);
  font-weight: 300;
}

.custom-stickers-content p {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 30px;
}

.wholesale-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.info-card {
  background: white;
  padding: 30px;
  border-radius: 2px;
  text-align: center;
  border: 1px solid var(--pink-medium);
  transition: transform 0.3s;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(140, 90, 90, 0.1);
}

.info-card i {
  font-size: 2.5rem;
  color: var(--pink-brown);
  margin-bottom: 20px;
}

.info-card h3 {
  color: var(--dark-pink);
  margin-bottom: 15px;
  font-weight: 500;
}

.info-card p {
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

.wholesale-contact {
  background: white;
  padding: 50px;
  border-radius: 2px;
  text-align: center;
  border: 1px solid var(--pink-dark);
  max-width: 800px;
  margin: 0 auto;
}

.wholesale-contact h3 {
  color: var(--dark-pink);
  margin-bottom: 15px;
  font-size: 1.8rem;
}

.wholesale-contact p {
  color: var(--text-light);
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.contact-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.contact-buttons .btn {
  min-width: 200px;
}

.contact-details {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.contact-details p {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--dark-pink);
  font-weight: 500;
  margin-bottom: 0;
}

.contact-details i {
  color: var(--pink-brown);
}

/* Back to home button */
.back-to-home {
  display: inline-block;
  margin-top: 30px;
  color: var(--pink-brown);
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s;
}

.back-to-home:hover {
  color: var(--dark-pink);
}

/* Sticker-like elements */
.sticker-note {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 10px 15px;
  border-radius: 1px;
  font-size: 0.85rem;
  color: var(--text-light);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  border: 1px dashed var(--pink-dark);
  transform: rotate(-2deg);
  z-index: 1;
}

/* Loading spinner */
.spinner {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border: 5px solid var(--pink-medium);
  border-top: 5px solid var(--pink-brown);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  z-index: 2000;
}

@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Responsive */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .features {
    grid-template-columns: repeat(2, 1fr);
  }
  .wholesale-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .wholesale-photo {
    height: 500px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: var(--pink-light);
    flex-direction: column;
    align-items: center;
    padding: 25px 0;
    box-shadow: 0 5px 15px rgba(140, 90, 90, 0.1);
    border-top: 1px solid var(--pink-medium);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    margin: 12px 0;
    width: 100%;
    text-align: center;
  }

  /* Стили для мобильного дроп-меню каталога */
  .catalog-dropdown {
    width: 100%;
  }

  .catalog-dropdown > a {
    justify-content: center;
    padding: 10px 0;
  }

  .dropdown-menu {
    position: static;
    display: none;
    width: 100%;
    box-shadow: none;
    border: none;
    background-color: rgba(255, 255, 255, 0.9);
    margin-top: 10px;
    padding: 15px 0;
    border-radius: 2px;
    animation: slideDown 0.3s ease-out;
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .dropdown-menu a {
    padding: 12px 20px;
    border-bottom: 1px solid rgba(231, 84, 128, 0.1);
    font-size: 0.95rem;
  }

  .dropdown-menu a:last-child {
    border-bottom: none;
  }

  .dropdown-menu a:hover {
    background-color: rgba(231, 84, 128, 0.1);
  }

  .catalog-dropdown > a i {
    font-size: 0.8rem;
    margin-left: 8px;
    transition: transform 0.3s;
  }

  .burger {
    display: block;
  }

  .hero {
    padding: 0;
    display: block;
    margin: 0;
    padding: 0;
  }

  .hero-image {
    max-height: 50vh;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .features {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .cart-item {
    flex-wrap: wrap;
  }

  .cart-item-image {
    width: 70px;
    height: 70px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .wholesale-gallery {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .wholesale-photo {
    height: 450px;
  }

  .contact-buttons {
    flex-direction: column;
    align-items: center;
  }

  .contact-buttons .btn {
    width: 100%;
    max-width: 300px;
  }

  .contact-details {
    flex-direction: column;
    gap: 15px;
  }

  .wholesale-contact {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 0;
  }
  .hero-image {
    max-height: 40vh;
  }
  .modal-content {
    padding: 25px;
    width: 95%;
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .product-card {
    margin-bottom: 0;
  }
  .product-image {
    height: 250px;
  }
  .product-info {
    padding: 15px;
  }
  .cart-item-actions {
    width: 100%;
    justify-content: flex-end;
    margin-top: 15px;
  }
  .catalog,
  .why-us,
  .discounts-section,
  .stickers10x6-section,
  .stickers10x15-section,
  .wholesale-section,
  .custom-stickers-section {
    padding: 60px 0;
  }
  .custom-stickers-content {
    padding: 30px 20px;
  }
  .wholesale-photo {
    height: 400px;
  }
}
