/* ==========================================
   DESIGN SYSTEM — mamuliny-vkusnyashki.kz clone
   ========================================== */

/* CSS Variables */
:root {
  --color-maroon: #8b2e34;
  --color-maroon-dark: #8a0033;
  --color-dusty-rose: #917377;
  --color-beige: #e2ccc6;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-gray-light: #f5f5f5;
  --color-gray-border: #e0e0e0;
  --color-text: #333333;
  --font-main: 'Montserrat', 'Futura PT', Arial, sans-serif;
  --max-width: 1200px;
  --header-height: 80px;
}

/* Reset */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.5;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ==========================================
   HEADER
   ========================================== */
.main-header {
  background: var(--color-white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s;
}

.main-header.scrolled {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  height: var(--header-height);
  gap: 16px;
}

.logo img {
  width: 65px;
  height: 65px;
  object-fit: contain;
}

.main-nav {
  flex: 1;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-item>a {
  padding: 8px 10px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  transition: color 0.2s;
}

.nav-arrow {
  font-size: 10px;
  opacity: 0.6;
}

.nav-item>a:hover {
  color: var(--color-maroon);
}

/* Dropdowns */
.nav-item.has-dropdown {
  position: relative;
}

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--color-white);
  border-radius: 6px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  min-width: 220px;
  padding: 8px 0;
  z-index: 200;
}

.nav-item.has-dropdown:hover .dropdown {
  display: block;
}

.dropdown li a {
  padding: 8px 18px;
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: var(--color-text);
  transition: background 0.15s, color 0.15s;
}

.dropdown li a:hover {
  background: var(--color-gray-light);
  color: var(--color-maroon);
}

/* Catalog mega-dropdown */
.dropdown-catalog {
  min-width: 480px;
  padding: 16px 20px;
}

.dropdown-catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px 20px;
}

.dropdown-catalog-item {
  display: flex;
  flex-direction: column;
  padding: 10px 12px;
  border-radius: 6px;
  transition: background 0.15s;
}

.dropdown-catalog-item:hover {
  background: var(--color-gray-light);
}

.dropdown-catalog-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-maroon);
  line-height: 1.3;
  text-decoration: none;
  display: block;
}

.dropdown-catalog-title:hover {
  text-decoration: underline;
}

.dropdown-catalog-sub {
  font-size: 11px;
  font-weight: 400;
  color: var(--color-dusty-rose);
  line-height: 1.4;
  margin-top: 2px;
}

.dropdown-catalog-link {
  color: var(--color-dusty-rose);
  text-decoration: none;
  transition: color 0.15s;
}

.dropdown-catalog-link:hover {
  color: var(--color-maroon);
  text-decoration: underline;
}

/* Header Right */
.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.city-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.city-links a {
  font-size: 11px;
  font-weight: 400;
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.city-dot {
  font-size: 6px;
  color: var(--color-maroon);
}

.city-links a:hover {
  color: var(--color-maroon);
}

.header-socials {
  display: flex;
  gap: 8px;
}

.social-circle {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-dusty-rose);
  border-radius: 50%;
  transition: background 0.2s, transform 0.2s;
}

.social-circle:hover {
  background: var(--color-maroon);
  transform: scale(1.05);
}

.lang-switch {
  display: flex;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
}

.lang-switch a {
  padding: 4px 6px;
  color: var(--color-dusty-rose);
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}

.lang-switch a.lang-active {
  color: var(--color-maroon);
  background: rgba(139, 46, 52, 0.08);
}

.lang-switch a:hover {
  color: var(--color-maroon);
}

/* Burger */
.burger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.burger-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-top-row {
  display: none;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
  position: relative;
  padding: 50px 0 40px;
  background: var(--color-white);
  overflow: hidden;
}

/* Decorative background blobs */
.hero-deco {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
}

.hero-deco-1 {
  width: 400px;
  height: 400px;
  background: rgba(226, 204, 198, 0.3);
  top: -100px;
  left: -100px;
}

.hero-deco-2 {
  width: 300px;
  height: 300px;
  background: rgba(139, 46, 52, 0.06);
  top: 50px;
  right: -50px;
}

.hero-deco-3 {
  width: 200px;
  height: 200px;
  background: rgba(226, 204, 198, 0.25);
  bottom: -50px;
  left: 40%;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}

/* Hero Circles */
.hero-circles {
  display: flex;
  align-items: center;
  position: relative;
  flex-shrink: 0;
}

.circle {
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid var(--color-white);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
  transition: transform 0.4s ease;
}

.circle:hover {
  transform: scale(1.05);
}

.circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.circle-1 {
  width: 200px;
  height: 200px;
  z-index: 1;
}

.circle-2 {
  width: 260px;
  height: 260px;
  z-index: 2;
  margin-left: -40px;
}

.circle-3 {
  width: 180px;
  height: 180px;
  z-index: 1;
  margin-left: -40px;
}

/* Hero Text */
.hero-text {
  flex: 1;
  text-align: center;
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  color: var(--color-maroon);
  letter-spacing: 4px;
  line-height: 1.1;
  margin-bottom: 8px;
}

.hero-subtitle {
  font-size: 18px;
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: 24px;
  letter-spacing: 1px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-bottom: 20px;
}

.hero-sub-links {
  display: flex;
  gap: 24px;
  justify-content: center;
}

.hero-sub-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
  padding: 4px 8px;
  border-bottom: 1px solid transparent;
  transition: all 0.2s;
}

.hero-sub-links a:hover {
  color: var(--color-maroon);
  border-bottom-color: var(--color-maroon);
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  font-family: var(--font-main);
  transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, opacity 0.2s, transform 0.2s;
  text-align: center;
  white-space: nowrap;
}

.btn-maroon-pill {
  background: var(--color-maroon);
  color: var(--color-white);
  font-size: 13px;
  text-transform: lowercase;
}

.btn-maroon-pill:hover {
  background: var(--color-maroon-dark);
}

.btn-gray-pill {
  background: var(--color-dusty-rose);
  color: var(--color-white);
  font-size: 13px;
  text-transform: lowercase;
}

.btn-gray-pill:hover {
  background: #7a6063;
}

.btn-beige {
  background: var(--color-beige);
  color: var(--color-black);
}

.btn-beige:hover {
  background: #d4beb8;
}

.btn-dusty-sm {
  background: var(--color-dusty-rose);
  color: var(--color-white);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  padding: 10px 24px;
  border-radius: 5px;
  font-family: var(--font-main);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-dusty-sm:hover {
  background: var(--color-maroon-dark);
}

.btn-promo {
  background: var(--color-maroon-dark);
  color: var(--color-white);
  text-transform: uppercase;
  font-size: 12px;
  padding: 10px 24px;
  border-radius: 50px;
  border: 1px solid var(--color-maroon-dark);
}

.btn-promo:hover {
  background: var(--color-dusty-rose);
  border-color: var(--color-white);
}

/* ==========================================
   CATALOG SECTION
   ========================================== */
.catalog-section {
  padding: 0 0 30px;
}

.catalog-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.catalog-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--color-gray-light);
  border-radius: 12px;
  padding: 14px 16px;
  border: 1px solid var(--color-gray-border);
  transition: all 0.25s ease;
  overflow: hidden;
}

.catalog-card:hover {
  background: var(--color-beige);
  transform: translateY(-2px);
  border-color: var(--color-dusty-rose);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.catalog-card-img {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}

.catalog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.catalog-card-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.catalog-card-text strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-maroon);
}

.catalog-card-text span {
  font-size: 12px;
  color: #777;
  line-height: 1.3;
}

/* ==========================================
   SEARCH SECTION
   ========================================== */
.search-section {
  padding: 20px 0 30px;
}

.search-bar-container {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  background: var(--color-gray-light);
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid var(--color-gray-border);
  transition: border-color 0.2s;
}

.search-bar-container:focus-within {
  border-color: var(--color-maroon);
}

.search-icon {
  padding-left: 16px;
  display: flex;
  align-items: center;
}

.search-input {
  flex: 1;
  padding: 12px 16px;
  border: none;
  background: transparent;
  font-size: 14px;
  font-family: var(--font-main);
  color: var(--color-text);
  outline: none;
}

.search-input::placeholder {
  color: #999;
}

.search-btn {
  background: var(--color-maroon);
  color: var(--color-white);
  border: none;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-main);
  cursor: pointer;
  transition: background-color 0.2s;
  border-radius: 0 30px 30px 0;
}

.search-btn:hover {
  background: var(--color-maroon-dark);
}

/* ==========================================
   PRODUCT SECTIONS
   ========================================== */
.product-section {
  padding: 0 0 40px;
}

.section-title-pill {
  text-align: center;
  margin-bottom: 30px;
}

.section-title-pill a {
  display: inline-block;
  background: var(--color-maroon);
  color: var(--color-white);
  padding: 12px 40px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  border-radius: 0;
  transition: background 0.2s;
}

.section-title-pill a:hover {
  background: var(--color-maroon-dark);
}

.products-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 0 0 10px;
  transition: transform 0.2s;
}

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

.product-img {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 4px;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

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

.product-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.3;
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.product-tag {
  font-size: 12px;
  color: #6e8bae;
  font-weight: 400;
}

.snowflake {
  color: #4da6ff;
}

.product-price {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-black);
}

.product-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}

.product-qty {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--color-gray-border);
  border-radius: 4px;
  overflow: hidden;
}

.qty-btn {
  width: 32px;
  height: 32px;
  background: var(--color-white);
  border: none;
  cursor: pointer;
  font-size: 14px;
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  font-family: var(--font-main);
}

.qty-btn:hover {
  background: var(--color-gray-light);
}

.qty-value {
  width: 36px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  border-left: 1px solid var(--color-gray-border);
  border-right: 1px solid var(--color-gray-border);
  height: 32px;
  line-height: 32px;
}

.order-btn {
  background: var(--color-dusty-rose);
  color: var(--color-white);
  border: none;
  border-radius: 5px;
  padding: 8px 20px;
  font-size: 11px;
  font-weight: 500;
  font-family: var(--font-main);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background 0.2s;
}

.order-btn:hover {
  background: var(--color-maroon-dark);
}

.order-btn.in-cart {
  background: #4caf50;
}
.order-btn.in-cart:hover {
  background: #43a047;
}

/* Product card link */
.product-card-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;
  width: 100%;
}

/* ==========================================
   PRODUCT DETAIL PAGE
   ========================================== */
.product-detail {
  padding: 20px 0 60px;
}

.product-detail-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.product-breadcrumb {
  font-size: 13px;
  color: #999;
  margin-bottom: 24px;
}

.product-breadcrumb a {
  color: var(--color-maroon);
  text-decoration: none;
  transition: opacity 0.2s;
}

.product-breadcrumb a:hover {
  opacity: 0.7;
}

.product-breadcrumb span {
  color: var(--color-text);
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* Gallery */
.product-detail-gallery {
  position: sticky;
  top: calc(var(--header-height) + 20px);
}

.product-detail-main-img {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: var(--color-gray-light);
}

.product-detail-main-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Info */
.product-detail-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.3;
  margin: 0 0 16px;
}

.product-detail-price-block {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 20px;
}

.product-detail-price {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-maroon);
}

.product-detail-old-price {
  font-size: 18px;
  color: #bbb;
  text-decoration: line-through;
}

.product-detail-order {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.product-detail-qty {
  border: 1px solid var(--color-gray-border);
  border-radius: 6px;
}

.product-detail-order-btn {
  padding: 12px 36px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 6px;
}

.product-detail-meta {
  font-size: 14px;
  color: #666;
  margin-bottom: 8px;
}

.product-detail-meta strong {
  color: var(--color-text);
}

.product-detail-description {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--color-gray-border);
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-text);
}

.product-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.product-detail-tag {
  background: var(--color-gray-light);
  color: var(--color-dusty-rose);
  font-size: 12px;
  font-weight: 500;
  padding: 4px 14px;
  border-radius: 20px;
  border: 1px solid var(--color-gray-border);
}

/* Related */
.product-detail-related {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--color-gray-border);
}

.product-detail-related-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 24px;
  text-align: center;
}

/* ==========================================
   PRODUCT SLIDER
   ========================================== */
.products-slider-wrapper {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
}

.products-slider-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding: 4px 0;
  flex: 1;
}

.products-slider-track::-webkit-scrollbar {
  display: none;
}

.products-slider-track .product-card {
  flex: 0 0 calc(25% - 18px);
  min-width: 200px;
  scroll-snap-align: start;
}

/* Slider Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-70%);
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--color-gray-border);
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-maroon);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: background 0.2s, box-shadow 0.2s, opacity 0.2s, transform 0.2s;
  opacity: 0;
}

.products-slider-wrapper:hover .slider-arrow {
  opacity: 1;
}

.slider-arrow:hover {
  background: var(--color-maroon);
  color: var(--color-white);
  box-shadow: 0 4px 14px rgba(139, 46, 52, 0.3);
  transform: translateY(-70%) scale(1.08);
}

.slider-arrow-left {
  left: 4px;
}

.slider-arrow-right {
  right: 4px;
}

.slider-arrow:disabled {
  opacity: 0.25 !important;
  cursor: default;
  pointer-events: none;
}

/* Slider Dots */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-gray-border);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  padding: 0;
}

.slider-dot:hover {
  background: var(--color-dusty-rose);
  transform: scale(1.3);
}

.slider-dot.active {
  background: var(--color-maroon);
  transform: scale(1.2);
}

/* Hide dots if 4 or fewer products (all visible) */
.slider-dots:empty {
  display: none;
}

@media (max-width: 768px) {
  .products-slider-track .product-card {
    flex: 0 0 calc(50% - 12px);
    min-width: 160px;
  }

  .slider-arrow {
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 480px) {
  .products-slider-track .product-card {
    flex: 0 0 80%;
    min-width: 0;
  }
}

.section-order-buttons {
  max-width: var(--max-width);
  margin: 24px auto 0;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  gap: 16px;
}

/* ==========================================
   WHATSAPP FLOATING BUTTON
   ========================================== */
.whatsapp-float {
  position: fixed;
  bottom: 70px;
  right: 20px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* ==========================================
   SCROLL TO TOP BUTTON
   ========================================== */
.scroll-top-btn {
  position: fixed;
  bottom: 70px;
  left: 20px;
  width: 44px;
  height: 44px;
  background: var(--color-maroon);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s, transform 0.2s;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top-btn:hover {
  transform: scale(1.1);
  background: var(--color-maroon-dark);
}

/* ==========================================
   FOOTER
   ========================================== */
.main-footer {
  position: relative;
  margin-top: auto;
}

/* Decorative stamp */
.footer-stamp {
  position: absolute;
  top: -20px;
  right: 60px;
  width: 120px;
  height: 120px;
  border: 3px solid var(--color-maroon);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-maroon);
  letter-spacing: 2px;
  transform: rotate(-15deg);
  background: var(--color-white);
  z-index: 2;
  text-align: center;
  line-height: 1.3;
}

.footer-wave {
  margin-bottom: -2px;
}

.footer-wave svg {
  display: block;
  width: 100%;
  height: 60px;
}

.footer-body {
  background: var(--color-maroon);
  padding: 40px 0 24px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-logo img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.footer-social-icons {
  display: flex;
  gap: 10px;
}

.footer-social-circle {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  transition: background 0.2s;
}

.footer-social-circle:hover {
  background: rgba(255, 255, 255, 0.25);
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  color: var(--color-white);
  font-size: 13px;
  font-weight: 400;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.footer-col a:hover {
  opacity: 1;
}

.footer-bottom {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
}

.footer-bottom a {
  color: var(--color-white);
  font-size: 12px;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.footer-bottom a:hover {
  opacity: 1;
}

/* ==========================================
   BOTTOM PROMO BAR
   ========================================== */
.bottom-promo-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #6b3a56, #8b4a6b);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  gap: 16px;
  transition: transform 0.3s ease;
}

.bottom-promo-bar.hidden {
  transform: translateY(100%);
}

.promo-inner {
  display: flex;
  align-items: center;
  gap: 16px;
}

.promo-text {
  color: var(--color-white);
  font-size: 13px;
  font-weight: 400;
}

.promo-close {
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 18px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
  padding: 4px 8px;
}

.promo-close:hover {
  opacity: 1;
}

/* ==========================================
   RESPONSIVE
   ========================================== */

/* Hide city links on smaller screens */
@media (max-width: 1200px) {
  .city-links {
    display: none;
  }

  .nav-item>a {
    font-size: 11px;
    padding: 8px 6px;
  }
}

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

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

  .hero-inner {
    flex-direction: column;
    gap: 30px;
  }

  .hero-text {
    text-align: center;
  }

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

@media (max-width: 768px) {
  :root {
    --header-height: 56px;
  }

  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .product-detail-gallery {
    position: static;
  }

  .product-detail-title {
    font-size: 22px;
  }

  .product-detail-price {
    font-size: 22px;
  }

  .main-nav {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-white);
    padding: 20px;
    z-index: 999;
    overflow-y: auto;
  }

  .main-nav.open {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .nav-item>a {
    font-size: 14px;
    padding: 10px 0;
  }

  .dropdown {
    position: static;
    box-shadow: none;
    padding: 0 0 0 16px;
  }

  .nav-item.has-dropdown:hover .dropdown {
    display: none;
  }

  .nav-item.has-dropdown.active .dropdown {
    display: block;
  }

  .dropdown-catalog {
    min-width: unset;
    padding: 8px 0;
  }

  .dropdown-catalog-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .dropdown-catalog-item {
    padding: 8px 12px;
  }

  .nav-top-row {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
  }

  .nav-top-row a {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-dusty-rose);
  }

  .nav-top-row a.lang-active {
    color: var(--color-maroon);
  }

  .burger-btn {
    display: flex;
  }

  .header-right {
    display: none;
  }

  .hero-circles {
    gap: 0;
  }

  .circle-1 {
    width: 120px;
    height: 120px;
  }

  .circle-2 {
    width: 160px;
    height: 160px;
    margin-left: -20px;
  }

  .circle-3 {
    width: 110px;
    height: 110px;
    margin-left: -20px;
  }

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

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

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .hero-sub-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

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

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

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

  .footer-stamp {
    display: none;
  }

  .promo-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .promo-text {
    font-size: 12px;
  }
}

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

  .product-name {
    font-size: 12px;
    min-height: auto;
  }

  .product-price {
    font-size: 14px;
  }

  .product-actions {
    flex-direction: column;
    gap: 6px;
  }

  .section-title-pill a {
    font-size: 13px;
    padding: 10px 24px;
    letter-spacing: 2px;
  }

  .search-bar-container {
    margin: 0 20px;
  }
}

/* ==========================================
   NEW PAGE COMPONENTS
   ========================================== */

/* Category Page */
.category-page {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px 20px 60px;
}

.category-page-title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: var(--color-maroon);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.category-page-subs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-bottom: 32px;
}

.category-page-sub-link {
  font-size: 14px;
  color: var(--color-dusty-rose);
  text-decoration: none;
  padding: 6px 16px;
  border: 1px solid var(--color-dusty-rose);
  border-radius: 20px;
  transition: all 0.2s;
}

.category-page-sub-link:hover {
  background: var(--color-maroon);
  color: var(--color-white);
  border-color: var(--color-maroon);
}

.category-page-empty {
  text-align: center;
  padding: 60px 20px;
  font-size: 16px;
  color: #999;
}

/* Page Content Section */
.page-content-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px 20px 60px;
}

.page-title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: var(--color-maroon);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.page-subtitle {
  text-align: center;
  font-size: 15px;
  color: var(--color-dusty-rose);
  margin-bottom: 30px;
}

/* ---- Reviews Carousel ---- */
.reviews-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 30px;
}

.reviews-phones {
  display: flex;
  gap: 32px;
}

.phone-frame {
  width: 260px;
  height: 520px;
  background: #111;
  border-radius: 32px;
  padding: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--color-dusty-rose);
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  flex-shrink: 0;
}

.carousel-arrow:hover {
  background: var(--color-beige);
  border-color: var(--color-maroon);
}

/* ---- Press Cards ---- */
.press-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 30px;
}

.press-card {
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-maroon) 0%, var(--color-dusty-rose) 100%);
  color: var(--color-white);
  min-height: 260px;
  transition: transform 0.25s, box-shadow 0.25s;
}

.press-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(139, 46, 52, 0.25);
}

.press-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
  transition: background 0.25s;
}

.press-card:hover .press-card-overlay {
  background: rgba(0, 0, 0, 0.05);
}

.press-card-content {
  position: relative;
  z-index: 1;
  padding: 30px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.press-card-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}

.press-card-content p {
  font-size: 13px;
  opacity: 0.85;
  margin-bottom: 16px;
  line-height: 1.4;
}

.press-card-btn {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: var(--color-white);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  align-self: flex-start;
  transition: background 0.2s;
}

.press-card:hover .press-card-btn {
  background: rgba(255, 255, 255, 0.35);
}

/* ---- Blog Grid ---- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 10px;
}

.blog-card {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid var(--color-gray-border);
  transition: transform 0.25s, box-shadow 0.25s;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}

.blog-card-img {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s;
}

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

.blog-card-body {
  padding: 16px 18px 20px;
}

.blog-card-body h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-maroon);
  margin-bottom: 6px;
  line-height: 1.3;
}

.blog-card-body p {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
}

/* ---- Partners Section ---- */
.partners-section {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partners-block {
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}

.partners-contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: 24px 0 30px;
}

.partners-phone {
  font-size: 22px;
  font-weight: 600;
  color: var(--color-maroon);
  transition: opacity 0.2s;
}

.partners-phone:hover {
  opacity: 0.7;
}

.partners-email {
  font-size: 15px;
  color: var(--color-dusty-rose);
  transition: color 0.2s;
}

.partners-email:hover {
  color: var(--color-maroon);
}

.partners-login-btn {
  display: inline-block;
}

.btn-dusty-pill {
  background: var(--color-dusty-rose);
  color: var(--color-white);
  padding: 12px 32px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s;
}

.btn-dusty-pill:hover {
  background: var(--color-maroon);
}

/* ---- Promo Cards ---- */
.promo-cards {
  max-width: 600px;
  margin: 30px auto 0;
}

.promo-card {
  background: var(--color-gray-light);
  border: 1px solid var(--color-gray-border);
  border-radius: 12px;
  padding: 30px 28px;
  text-align: center;
}

.promo-card-badge {
  display: inline-block;
  background: var(--color-maroon);
  color: var(--color-white);
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

.promo-card-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text);
  margin-bottom: 12px;
}

.promo-card-sub {
  font-size: 13px;
  color: #888;
  line-height: 1.5;
}

/* ---- Recipes ---- */
.recipes-filter {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 30px;
}

.filter-btn {
  padding: 8px 22px;
  border-radius: 20px;
  border: 1px solid var(--color-gray-border);
  background: var(--color-white);
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text);
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn:hover {
  border-color: var(--color-dusty-rose);
  color: var(--color-maroon);
}

.filter-btn.active {
  background: var(--color-maroon);
  color: var(--color-white);
  border-color: var(--color-maroon);
}

.recipes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.recipe-card {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid var(--color-gray-border);
  transition: transform 0.25s, box-shadow 0.25s;
}

.recipe-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}

.recipe-card-img {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.recipe-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s;
}

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

.recipe-card-body {
  padding: 16px 18px 20px;
}

.recipe-card-body h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-maroon);
  margin-bottom: 6px;
}

.recipe-card-body p {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
}

/* ---- New Page Responsive ---- */
@media (max-width: 768px) {
  .press-cards {
    grid-template-columns: 1fr;
  }

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

  .reviews-phones {
    flex-direction: column;
    align-items: center;
  }

  .phone-frame {
    width: 220px;
    height: 440px;
  }
}

@media (max-width: 480px) {

  .blog-grid,
  .recipes-grid {
    grid-template-columns: 1fr;
  }

  .page-title {
    font-size: 22px;
  }

  .phone-frame {
    width: 200px;
    height: 400px;
  }
}

/* ==========================================
   PAGINATION
   ========================================== */
nav[role="navigation"] {
  display: flex;
  justify-content: center;
}
nav[role="navigation"] > div {
  display: none;
}
nav[role="navigation"] > div:last-child {
  display: flex;
  align-items: center;
  gap: 4px;
}
nav[role="navigation"] span[aria-current="page"] > span,
nav[role="navigation"] a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border-radius: 6px;
  font-size: 14px;
  font-family: var(--font-main);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
nav[role="navigation"] span[aria-current="page"] > span {
  background: var(--color-maroon);
  color: #fff;
  font-weight: 600;
}
nav[role="navigation"] a {
  background: #f5f5f5;
  color: var(--color-text);
}
nav[role="navigation"] a:hover {
  background: var(--color-gray-border);
}
nav[role="navigation"] span[aria-disabled="true"] > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  font-size: 14px;
  color: #ccc;
}

/* ==========================================
   CART ICON (HEADER)
   ========================================== */
/* ==========================================
   CART FAB (floating action button)
   ========================================== */
.cart-fab {
  position: fixed;
  bottom: 136px;
  right: 20px;
  width: 56px;
  height: 56px;
  background: #fff;
  border: 2px solid var(--color-maroon);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s, box-shadow 0.2s;
}
.cart-fab svg {
  stroke: var(--color-maroon);
}
.cart-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
}
.cart-fab-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background: #ff4444;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  min-width: 20px;
  height: 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  line-height: 1;
  border: 2px solid #fff;
}

/* ==========================================
   CART MODAL OVERLAY + CONTAINER
   ========================================== */
.cart-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1100;
}
.cart-overlay.active {
  display: block;
}
.cart-modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 12px;
  width: 560px;
  max-width: 95vw;
  max-height: 90vh;
  overflow-y: auto;
  z-index: 1101;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  padding: 30px 32px;
}
.cart-modal.active {
  display: block;
}
.cart-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.cart-modal-header h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text);
  margin: 0;
}
.cart-close {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #999;
  transition: color 0.2s;
  line-height: 1;
  padding: 0;
}
.cart-close:hover {
  color: var(--color-text);
}

/* ==========================================
   CART ITEMS
   ========================================== */
.cart-items {
  margin-bottom: 16px;
}
.cart-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--color-gray-border);
}
.cart-item-img {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}
.cart-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart-item-info {
  flex: 1;
  min-width: 0;
}
.cart-item-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.3;
}
.cart-item-qty {
  display: flex;
  align-items: center;
  border: 1px solid var(--color-gray-border);
  border-radius: 4px;
  flex-shrink: 0;
}
.cart-item-qty button {
  width: 28px;
  height: 28px;
  background: #fff;
  border: none;
  cursor: pointer;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-item-qty button:hover {
  background: #f5f5f5;
}
.cart-item-qty span {
  width: 28px;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  border-left: 1px solid var(--color-gray-border);
  border-right: 1px solid var(--color-gray-border);
  height: 28px;
  line-height: 28px;
}
.cart-item-price {
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  min-width: 80px;
  text-align: right;
}
.cart-item-remove {
  background: none;
  border: none;
  cursor: pointer;
  color: #ccc;
  font-size: 18px;
  transition: color 0.2s;
  padding: 4px;
  flex-shrink: 0;
}
.cart-item-remove:hover {
  color: var(--color-maroon);
}
.cart-empty {
  text-align: center;
  padding: 30px 0;
  color: #999;
  font-size: 15px;
}

/* ==========================================
   CART SUBTOTAL & TOTALS
   ========================================== */
.cart-subtotal {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 24px;
  padding-top: 8px;
}

.cart-totals {
  margin: 16px 0;
}
.cart-totals-row {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  font-size: 14px;
  margin-bottom: 4px;
}
.cart-totals-final {
  font-weight: 700;
  font-size: 16px;
}

/* ==========================================
   CART FORM
   ========================================== */
.cart-form input[type="text"],
.cart-form input[type="email"],
.cart-form input[type="tel"] {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--color-gray-border);
  border-radius: 6px;
  font-size: 14px;
  font-family: var(--font-main);
  margin-bottom: 10px;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.cart-form input:focus {
  border-color: var(--color-maroon);
}
.cart-form-note {
  font-size: 12px;
  color: #999;
  margin-bottom: 12px;
}
.cart-delivery-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 12px 0;
  flex-wrap: wrap;
}
.cart-checkbox-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}
.cart-checkbox-label input[type="checkbox"] {
  accent-color: var(--color-maroon);
}
.cart-delivery-info {
  font-size: 12px;
  color: #888;
}
.cart-submit-btn {
  width: 100%;
  padding: 14px;
  background: var(--color-maroon);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-main);
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.2s;
  text-transform: uppercase;
}
.cart-submit-btn:hover {
  background: var(--color-maroon-dark);
}
.cart-submit-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
}

/* ==========================================
   CART RESPONSIVE
   ========================================== */
@media (max-width: 768px) {
  .cart-fab {
    bottom: 136px;
    right: 16px;
    width: 52px;
    height: 52px;
  }
  .cart-modal {
    width: 100%;
    max-width: 100vw;
    height: 100vh;
    max-height: 100vh;
    border-radius: 0;
    top: 0;
    left: 0;
    transform: none;
    padding: 20px;
  }
}