/* ========================================
   FONTS
======================================== */
@font-face {
  font-family: 'ZT Neue Ralewe';
  src: url('fonts/ZTNeueRalewe-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'ZT Neue Ralewe';
  src: url('fonts/ZTNeueRalewe-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'ZT Neue Ralewe';
  src: url('fonts/ZTNeueRalewe-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'ZT Neue Ralewe';
  src: url('fonts/ZTNeueRalewe-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'ZT Neue Ralewe';
  src: url('fonts/ZTNeueRalewe-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Involve';
  src: url('fonts/Involve-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Involve';
  src: url('fonts/Involve-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Involve';
  src: url('fonts/Involve-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* ========================================
   CSS VARIABLES
======================================== */
:root {
  --color-beige: #F6F1EA;
  --color-brown: #403731;
  --color-orange: #A65738;
  --color-white: #FFFFFF;
  
  --font-display: 'ZT Neue Ralewe', Georgia, serif;
  --font-body: 'Involve', -apple-system, BlinkMacSystemFont, sans-serif;
  
  --container-width: 1440px;
  --content-width: 1400px;
}

/* ========================================
   RESET & BASE
======================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-brown);
  background-color: var(--color-beige);
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

/* ========================================
   LAYOUT
======================================== */
.page-wrapper {
  width: 100%;
  max-width: 100vw;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--color-beige);
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
}

/* ========================================
   HEADER
======================================== */
.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--color-beige);
  height: 120px;
  display: flex;
  justify-content: center;
  transition: box-shadow 0.3s ease;
}

.header__inner {
  width: 100%;
  max-width: var(--container-width);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px;
}

.header__logo {
  width: 165px;
  height: 32px;
}

.header__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 80px;
}

.header__nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 17px;
  line-height: 1.5;
  color: var(--color-orange);
  text-transform: uppercase;
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.header__nav-link:hover {
  opacity: 0.7;
  transform: translateY(-1px);
}

/* Burger menu - hidden on desktop */
.header__burger {
  display: none;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: var(--color-orange);
  border: none;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0;
  transition: transform 0.3s ease;
}

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

.header__burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-beige);
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Burger open state */
.header__burger.is-open .header__burger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.header__burger.is-open .header__burger-line:nth-child(2) {
  opacity: 0;
}

.header__burger.is-open .header__burger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ========================================
   BUTTONS
======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  border-radius: 100px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.btn--primary {
  background-color: var(--color-orange);
  color: var(--color-white);
  height: 55px;
  padding: 0 20px;
  min-width: 200px;
}

.btn--primary:hover {
  background-color: #8a4830;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(166, 87, 56, 0.3);
}

.btn--primary:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(166, 87, 56, 0.2);
}

.btn--outline-white {
  background: transparent;
  border: 1px solid var(--color-beige);
  color: var(--color-beige);
  height: 40px;
  padding: 0 17px;
}

.btn--outline-white:hover {
  background-color: rgba(246, 241, 234, 0.1);
  transform: translateY(-2px);
}

.btn--outline-white:active {
  transform: translateY(0);
}

.btn--outline-orange {
  background: transparent;
  border: 1px solid var(--color-orange);
  color: var(--color-orange);
  height: 40px;
  padding: 0 17px;
}

.btn--outline-orange:hover {
  background-color: rgba(166, 87, 56, 0.1);
  transform: translateY(-2px);
}

.btn--outline-orange:active {
  transform: translateY(0);
}

/* ========================================
   HERO SECTION
======================================== */
.hero {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 240px 20px 120px;
  background-color: var(--color-beige);
  position: relative;
  overflow: visible;
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 140px;
  line-height: 0.9;
  text-transform: uppercase;
  text-align: center;
  color: var(--color-brown);
  max-width: 1120px;
}

.hero__main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 120px;
  width: 100%;
}

.hero__video-placeholder {
  width: 100%;
  max-width: 1400px;
  height: auto;
  aspect-ratio: 7 / 3;
  background-color: var(--color-orange);
  border-radius: 10px;
  position: relative;
}

/* Allow hero to scale on large screens */
@media (min-width: 1441px) {
  .hero {
    max-width: 100%;
    padding-left: 40px;
    padding-right: 40px;
  }
  
  .hero__video-placeholder {
    max-width: 100%;
  }
}

/* Falling Snow Effect */
.snowflake {
  position: fixed;
  top: -10px;
  background-color: #ffffff;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  animation: fall linear forwards;
}

@keyframes fall {
  0% {
    transform: translateY(-10px) translateX(0);
  }
  100% {
    transform: translateY(110vh) translateX(20px);
  }
}
.hero__video-placeholder::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  width: 100%;
  height: 12px;
  background-color: #ffffff;
  border-radius: 10px 10px 0 0;
  z-index: 2;
  box-shadow: 0 -2px 4px rgba(255, 255, 255, 0.5);
}

.hero__video-placeholder::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 12px;
  background: radial-gradient(circle at 10px 0, #ffffff 10px, transparent 10.5px);
  background-size: 20px 12px;
  background-repeat: repeat-x;
  z-index: 2;
  border-radius: 10px 10px 0 0;
}

.hero__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.hero__cta-title {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 70px;
  line-height: 1.05;
  color: var(--color-brown);
  max-width: 656px;
}

/* Phone mockup - positioned relative to hero section */
.hero__phone-wrapper {
  position: absolute;
  top: 420px;
  left: 50%;
  transform: translateX(-50%);
  width: 619px;
  height: 694px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 10;
}

.hero__phone-shadow {
  position: absolute;
  width: 400px;
  height: 786px;
  background-color: var(--color-brown);
  border-radius: 55px;
  opacity: 0.25;
  filter: blur(15px);
  transform: rotate(35deg) translate(-20px, 10px);
}

.hero__phone {
  width: 400px;
  height: 786px;
  transform: rotate(35deg);
  position: relative;
  z-index: 1;
}

.hero__phone img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ========================================
   MEET EXPLORE SECTION
======================================== */
.meet-explore {
  width: calc(100% - 40px);
  max-width: var(--content-width);
  margin: 0 auto;
  height: 600px;
  border-radius: 10px;
  background: linear-gradient(312deg, rgba(64, 55, 49, 0.00) 36.21%, #403731 76.98%), url('images/meet-explore-bg-new.png') lightgray 50% / cover no-repeat;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.meet-explore__container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  padding: 40px;
  width: 100%;
  height: 100%;
}

.meet-explore__top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.meet-explore__content {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 648px;
}

.meet-explore__title {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 70px;
  line-height: 1.05;
  color: var(--color-beige);
  max-width: 534px;
}

.meet-explore__text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-beige);
  max-width: 420px;
}

.meet-explore__bottom {
  display: flex;
  align-items: center;
  gap: 20px;
}

.meet-explore__app-logo-wrapper {
  width: 55px;
  height: 55px;
  flex-shrink: 0;
}

.meet-explore__app-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.meet-explore__download-btn {
  width: 200px;
  height: 55px;
}

.meet-explore__blog-btn {
  height: 40px;
  padding: 0 17px;
  border-color: var(--color-beige);
  color: var(--color-beige);
}

.meet-explore__blog-btn:hover {
  background-color: rgba(246, 241, 234, 0.1);
}

/* ========================================
   SPACER
======================================== */
.spacer {
  width: 100%;
  height: 120px;
  background-color: var(--color-beige);
}

/* ========================================
   FEATURES SECTION
======================================== */
.features {
  width: 100%;
  padding: 120px 20px;
  background-color: var(--color-white);
}

.features__header {
  text-align: left;
  margin-bottom: 60px;
  max-width: var(--content-width);
  margin-left: auto;
  margin-right: auto;
}

.features__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 100px;
  line-height: 0.9;
  text-transform: uppercase;
  color: var(--color-brown);
  max-width: 828px;
}

/* Features Grid - 3 rows layout */
.features__grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: var(--content-width);
  margin: 0 auto;
}

.features__row {
  display: flex;
  gap: 10px;
}

/* Base card styles */
.feature-card {
  border-radius: 10px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

/* Card background variants */
.feature-card--beige {
  background-color: var(--color-beige);
}

.feature-card--beige .feature-card__title,
.feature-card--beige .feature-card__text {
  color: var(--color-brown);
}

.feature-card--orange {
  background-color: var(--color-orange);
}

.feature-card--orange .feature-card__title,
.feature-card--orange .feature-card__text {
  color: var(--color-beige);
}

/* Half-width cards (695px in 1400px container) */
.feature-card--half {
  width: calc(50% - 5px);
  height: 600px;
}

/* Full-width card (Cigar Journal) */
.feature-card--full {
  width: 100%;
  height: 620px;
}

.feature-card__content {
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
  z-index: 1;
}

.feature-card__title {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 45px;
  line-height: 1.05;
}

.feature-card__text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  max-width: 358px;
}

.feature-card__image {
  position: absolute;
  pointer-events: none;
}

.feature-card__image img {
  max-width: none;
}

/* Individual card image positioning based on Figma */
.feature-card__image--community {
  top: 223px;
  left: 160px;
}

.feature-card__image--community img {
  width: 374px;
  height: auto;
  filter: drop-shadow(-10px 0 15px rgba(64, 55, 49, 0.20));
}

/* Cigar Database - multiple stacked cards */
.feature-card__images-database {
  position: absolute;
  top: 240px;
  left: 148px;
  width: 400px;
  height: 300px;
}

.feature-card__images-database .database-card1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: -10px 0 15px rgba(64, 55, 49, 0.15);
}

.feature-card__images-database .database-card2 {
  position: absolute;
  top: 40px;
  left: 100px;
  width: 200px;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: -10px 0 15px rgba(64, 55, 49, 0.15);
}

.feature-card__images-database .database-card3 {
  position: absolute;
  top: 80px;
  left: 200px;
  width: 200px;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: -10px 0 15px rgba(64, 55, 49, 0.15);
}

/* Cigar Journal - content positioned in middle-left */
.feature-card__content--journal {
  position: absolute;
  top: 245px;
  left: 40px;
}

/* Cigar Journal multiple images container */
.feature-card__images-journal {
  position: absolute;
  top: 0;
  right: 0;
  width: 700px;
  height: 100%;
  pointer-events: none;
}

.feature-card__images-journal .journal-phone {
  position: absolute;
  top: 40px;
  left: 0;
  width: 275px;
  height: 540px;
  object-fit: contain;
  filter: drop-shadow(-9px 0 11px rgba(64, 55, 49, 0.25));
}

.feature-card__images-journal .journal-card1 {
  position: absolute;
  top: 145px;
  left: 245px;
  width: 245px;
  height: 265px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: -10px -10px 20px rgba(64, 55, 49, 0.10);
}

.feature-card__images-journal .journal-card2 {
  position: absolute;
  top: 261px;
  left: 209px;
  width: 245px;
  height: 245px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 14px 14px 20px rgba(64, 55, 49, 0.05);
}

/* Events & Networking - two stacked cards */
.feature-card__images-events {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.feature-card__images-events .events-card1 {
  position: absolute;
  top: 264px;
  left: 129px;
  width: 256px;
  height: 230px;
  object-fit: cover;
  border-radius: 10px;
}

.feature-card__images-events .events-card2 {
  position: absolute;
  top: 324px;
  left: 308px;
  width: 256px;
  height: 196px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: -20px 10px 20px rgba(64, 55, 49, 0.10);
}

/* Shop & Lounge - phone image */
.feature-card__image--lounge {
  top: 215px;
  left: 161px;
}

.feature-card__image--lounge img {
  width: 374px;
  height: auto;
  filter: drop-shadow(-10px 0 15px rgba(64, 55, 49, 0.20));
}

/* ========================================
   DOWNLOAD APP SECTION
======================================== */
.download-app {
  width: 100%;
  min-height: 636px;
  background-color: var(--color-brown);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 20px;
  text-align: center;
  position: relative;
}

.download-app__logo {
  width: 55px;
  height: 55px;
  margin-bottom: 20px;
}

.download-app__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 80px;
  line-height: 0.9;
  text-transform: uppercase;
  color: var(--color-beige);
  max-width: 800px;
  margin-bottom: 30px;
}

.download-app__text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-beige);
  opacity: 0.5;
  max-width: 438px;
  margin-bottom: 44px;
}

/* ========================================
   REVIEWS SECTION
======================================== */
.reviews {
  width: 100%;
  padding: 120px 0 120px 20px; /* Right padding 0 for scroll effect */
  background-color: var(--color-white);
  overflow: hidden;
}

.reviews__header {
  margin-bottom: 40px;
  max-width: var(--content-width);
  margin-left: auto;
  margin-right: auto;
  padding-right: 20px;
}

.reviews__title {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 70px;
  line-height: 1.05;
  color: var(--color-brown);
  max-width: 512px;
}

.reviews__container {
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
}

.reviews__grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
}

/* Review card with avatar on top */
.review-card {
  width: calc(25% - 15px); /* 4 cards with 20px gap */
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding-top: 40px;
}

.review-card__avatar-wrapper {
  position: relative;
  z-index: 2;
  margin-bottom: -40px;
}

.review-card__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.review-card__body {
  background-color: var(--color-beige);
  border-radius: 10px;
  padding: 60px 20px 30px;
  width: 100%;
  height: 100%; /* Fill available height */
  display: flex;
  flex-direction: column;
  flex: 1; /* Grow to match height */
}

.review-card__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 30px;
}

.review-card__name {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.2;
  color: var(--color-brown);
  margin-bottom: 4px;
}

.review-card__username {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  line-height: 1.2;
  color: var(--color-brown);
  opacity: 0.5;
}

.review-card__text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.55;
  color: var(--color-brown);
  text-align: center;
}

.review-card__text strong {
  font-weight: 600;
}

/* ========================================
   ARTICLES SECTION
======================================== */
.articles {
  width: 100%;
  padding: 0 20px 120px;
  background-color: var(--color-white);
}

.articles__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  max-width: var(--content-width);
  margin-left: auto;
  margin-right: auto;
}

.articles__title {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 70px;
  line-height: 1.05;
  color: var(--color-brown);
}

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

.article-card {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.article-card__image-wrapper {
  width: 100%;
  aspect-ratio: 19 / 15; /* Matches actual image proportions 1140x900 */
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}

.article-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.article-card:hover .article-card__image {
  transform: scale(1.05);
}

.article-card__title {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.2;
  color: var(--color-brown);
  margin-bottom: 8px;
}

.article-card__date {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  color: var(--color-brown);
  opacity: 0.6;
}

/* ========================================
   FOOTER
======================================== */
.footer {
  width: 100%;
  background-color: var(--color-beige);
  padding: 120px 20px 30px;
}

.footer__inner {
  max-width: var(--content-width);
  margin: 0 auto;
  display: flex;
  gap: 40px;
}

/* Left Column: Install Card */
.footer__install-card {
  width: 460px;
  height: 600px;
  background-color: var(--color-brown);
  border-radius: 10px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}

.footer__install-logo {
  width: 70px;
  height: 70px;
  margin-bottom: 40px;
}

.footer__install-title {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 45px;
  line-height: 1.05;
  color: var(--color-white);
  max-width: 282px;
  margin-bottom: auto; /* Push content down */
}

.footer__install-btn {
  width: 100%;
  max-width: 380px;
}

/* Right Column: Content */
.footer__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 600px;
}

.footer__nav-row {
  display: flex;
  gap: 30px;
}

.footer__column {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 160px;
}

.footer__column-title {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  line-height: 1.05;
  color: var(--color-brown);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer__link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-orange);
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.footer__link:hover {
  opacity: 0.7;
}

.footer__social-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 118px;
  height: 40px;
  border: 1px solid var(--color-orange);
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--color-orange);
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s ease;
}

.footer__social-link:hover {
  background-color: var(--color-orange);
  color: var(--color-white);
}

.footer__bottom-section {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.footer__legal-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
}

.footer__disclaimer {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 12px;
  line-height: 1.4;
  color: var(--color-brown);
  opacity: 0.5;
  max-width: 298px;
}

.footer__copyright-row {
  display: flex;
  align-items: center;
  gap: 40px;
}

.footer__copyright {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: var(--color-brown);
}

.footer__top-btn {
  width: 60px;
  height: 30px;
  border: 1px solid var(--color-orange);
  border-radius: 100px;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.footer__top-btn:hover {
  background-color: var(--color-orange);
}

.footer__top-btn svg path {
  transition: stroke 0.2s ease;
}

.footer__top-btn:hover svg path {
  stroke: var(--color-white);
}

/* ========================================
   ANIMATIONS
======================================== */

/* Keyframes */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.97);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

/* Scroll-triggered animation states */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.6s cubic-bezier(0.22, 1, 0.36, 1),
              transform 1.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Scale variant */
.animate-scale {
  opacity: 0;
  transform: scale(0.98);
  transition: opacity 1.6s cubic-bezier(0.22, 1, 0.36, 1),
              transform 1.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.animate-scale.is-visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays for cards */
.stagger-1 { transition-delay: 0s; }
.stagger-2 { transition-delay: 0.15s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.45s; }
.stagger-5 { transition-delay: 0.6s; }

/* Ripple effect for buttons */
.btn {
  position: relative;
  overflow: hidden;
}

.btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transform: scale(0);
  animation: ripple 0.6s linear;
  pointer-events: none;
}

.btn--outline-white .ripple,
.btn--outline-orange .ripple {
  background: rgba(166, 87, 56, 0.2);
}

/* Premium shimmer button */
.btn--shimmer {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn--shimmer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.1) 30%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0.1) 70%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg) translateX(-150%);
  animation: shimmer-sheen 4s infinite;
  z-index: -1;
  pointer-events: none;
}

@keyframes shimmer-sheen {
  0% {
    transform: skewX(-20deg) translateX(-150%);
  }
  40% {
    transform: skewX(-20deg) translateX(150%);
  }
  100% {
    transform: skewX(-20deg) translateX(150%);
  }
}

/* Review card hover */
.review-card {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.review-card:hover {
  transform: translateY(-4px);
}

.review-card__body {
  transition: box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.review-card:hover .review-card__body {
  box-shadow: 0 10px 30px rgba(64, 55, 49, 0.1);
}

/* Article card enhanced hover */
.article-card {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.article-card:hover {
  transform: translateY(-4px);
}

/* Footer install card hover */
.footer__install-card {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer__install-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(64, 55, 49, 0.2);
}

/* Meet explore card hover */
.meet-explore {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.meet-explore:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(64, 55, 49, 0.2);
}

/* Hero title entrance animation */
.hero__title {
  animation: fadeUp 1.6s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}

.hero__cta-title {
  animation: fadeUp 1.6s cubic-bezier(0.22, 1, 0.36, 1) 0.5s both;
}

.hero__cta .btn {
  animation: fadeUp 1.6s cubic-bezier(0.22, 1, 0.36, 1) 0.8s both;
}

.hero__video-placeholder {
  animation: scaleIn 1.6s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}

/* Accessibility: Respect user preference for reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .animate-on-scroll,
  .animate-scale {
    opacity: 1;
    transform: none;
  }
}

/* ========================================
   LEGAL PAGES (Privacy Policy, Terms of Use)
======================================== */
.legal-page {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 155px 40px 120px;
  background-color: var(--color-beige);
}

.legal-page__container {
  display: flex;
  gap: 140px;
  align-items: flex-start;
}

/* Left Column - Title */
.legal-page__header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex-shrink: 0;
}

.legal-page__title {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 70px;
  line-height: 1.05;
  color: var(--color-brown);
}

.legal-page__date {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  color: var(--color-brown);
  opacity: 0.5;
}

/* Right Column - Content */
.legal-page__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 700px;
  padding-right: 120px;
  flex-shrink: 0;
}

.legal-page__intro {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-brown);
}

.legal-page__intro p {
  margin-bottom: 14px;
}

.legal-page__intro p:last-child {
  margin-bottom: 0;
}

.legal-page__intro ol {
  list-style: decimal;
  margin-bottom: 14px;
  padding-left: 0;
}

.legal-page__intro ol li {
  margin-left: 24px;
  margin-bottom: 10px;
  line-height: 1.5;
}

.legal-page__intro ol li:last-child {
  margin-bottom: 0;
}

/* Sections */
.legal-page__sections {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.legal-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.legal-section__title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.4;
  color: var(--color-brown);
}

.legal-section__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.legal-section__content > p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-brown);
}

.legal-section__content a {
  color: var(--color-orange);
  text-decoration: underline;
}

.legal-section__content a:hover {
  text-decoration: none;
}

/* Subsections */
.legal-subsection {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.legal-subsection__title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-brown);
}

.legal-subsection p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-brown);
}

.legal-subsection ul {
  list-style: disc;
  padding-left: 0;
}

.legal-subsection ul li {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-brown);
  margin-left: 24px;
  margin-bottom: 10px;
}

.legal-subsection ul li:last-child {
  margin-bottom: 0;
}

/* ========================================
   BLOG PAGES
======================================== */

/* Blog Listing Page */
.blog-page {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 155px 40px 120px;
  background-color: var(--color-beige);
}

.blog-page__container {
  max-width: 1200px;
}

.blog-page__header {
  margin-bottom: 60px;
}

.blog-page__title {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 80px;
  line-height: 1.05;
  color: var(--color-brown);
  margin-bottom: 20px;
}

.blog-page__subtitle {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: var(--color-brown);
  opacity: 0.6;
}

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

/* Blog Card */
.blog-card {
  background-color: var(--color-white);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(64, 55, 49, 0.1);
}

.blog-card--featured {
  grid-column: span 3;
}

.blog-card--featured .blog-card__link {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.blog-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.blog-card__image-wrapper {
  overflow: hidden;
  border-radius: 10px;
}

.blog-card--featured .blog-card__image-wrapper {
  height: 400px;
}

.blog-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.blog-card__content {
  padding: 30px;
}

.blog-card--featured .blog-card__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 40px 40px 0;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.blog-card__date {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  color: var(--color-brown);
  opacity: 0.5;
}

.blog-card__read-time {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  color: var(--color-brown);
  opacity: 0.5;
}

.blog-card__title {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2;
  color: var(--color-brown);
  margin-bottom: 10px;
}

.blog-card--featured .blog-card__title {
  font-size: 40px;
  line-height: 1.05;
  margin-bottom: 15px;
}

.blog-card__subtitle {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-brown);
  opacity: 0.7;
  margin-bottom: 15px;
}

.blog-card__excerpt {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-brown);
  opacity: 0.6;
}

.blog-card--featured .blog-card__excerpt {
  font-size: 16px;
}

/* ========================================
   ARTICLE PAGE - DESKTOP TWO-COLUMN LAYOUT
======================================== */
.article-page {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 155px 40px 120px;
  background-color: var(--color-beige);
}

.article {
  max-width: 1360px;
  margin: 0 auto;
}

/* Article Header - Two columns: title left, hero right */
.article__header {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 120px;
}

.article__header-content {
  flex: 0 0 500px;
  display: flex;
  flex-direction: column;
  height: 500px;
}

.article__back-link {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: var(--color-orange);
  text-decoration: none;
  transition: opacity 0.2s ease;
  margin-bottom: 20px;
}

.article__back-link:hover {
  opacity: 0.7;
}

.article__title {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 70px;
  line-height: 1.05;
  color: var(--color-brown);
  margin-bottom: 16px;
}

.article__date {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.05;
  color: var(--color-brown);
  opacity: 0.5;
}

/* Article Hero - Right side */
.article__hero {
  flex: 0 0 800px;
  height: 500px;
  border-radius: 10px;
  overflow: hidden;
}

.article__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Article Intro - Two columns */
.article__intro {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 120px;
}

.article__intro-left {
  flex: 0 0 500px;
}

.article__intro-right {
  flex: 0 0 800px;
}

/* Article Table of Contents */
.article__toc {
  background-color: rgba(64, 55, 49, 0.05);
  border-radius: 12px;
  padding: 24px 28px;
  margin-bottom: 40px;
  max-width: 500px;
}

.article__toc-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-brown);
  margin-bottom: 16px;
  opacity: 0.6;
}

.article__toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.article__toc-list li {
  position: relative;
  padding-left: 16px;
}

.article__toc-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background-color: var(--color-orange);
  border-radius: 50%;
}

.article__toc-list a {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.4;
  color: var(--color-brown);
  text-decoration: none;
  transition: color 0.2s ease;
}

.article__toc-list a:hover {
  color: var(--color-orange);
}

/* Article Content */
.article__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Article Section - Two columns: text left, image right */
.article__section {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: flex-start;
  scroll-margin-top: 100px;
}

.article__section[id] {
  scroll-margin-top: 100px;
}

.article__section-content {
  flex: 0 0 500px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.article__subtitle {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 32px;
  line-height: 1.05;
  color: var(--color-brown);
}

.article__lead {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-brown);
  opacity: 0.7;
}

.article__section-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.4;
  color: var(--color-brown);
}

.article__content p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-brown);
}

.article__content strong {
  font-weight: 700;
}

.article__quote {
  padding: 0;
  margin: 0;
  border: none;
}

.article__quote p {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #D3AB9B;
}

/* Section Image - Right column */
.article__section-image {
  flex: 0 0 800px;
  height: 632px;
  border-radius: 10px;
  overflow: hidden;
}

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

.article__figure {
  margin: 20px 0;
  border-radius: 10px;
  overflow: hidden;
}

.article__image {
  width: 100%;
  height: auto;
  display: block;
}

.article__list {
  list-style: disc;
  padding-left: 0;
  margin: 0;
}

.article__list li {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-brown);
  margin-left: 24px;
  margin-bottom: 10px;
}

.article__list li:last-child {
  margin-bottom: 0;
}

.article__link {
  color: var(--color-orange);
  text-decoration: underline;
}

.article__link:hover {
  text-decoration: none;
}

/* ========================================
   STANDARD ARTICLE LAYOUT (single column)
======================================== */
.article--standard {
  max-width: 800px;
}

.article--standard .article__header {
  display: block;
  margin-bottom: 30px;
}

.article--standard .article__meta {
  margin-bottom: 20px;
}

.article--standard .article__title {
  font-size: 60px;
  margin-bottom: 16px;
}

.article--standard .article__hero {
  margin-bottom: 40px;
  border-radius: 10px;
  overflow: hidden;
  height: auto;
}

.article--standard .article__hero-image {
  width: 100%;
  height: auto;
  display: block;
}

.article--standard .article__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.article--standard .article__section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.article--standard .article__subtitle {
  font-size: 32px;
  margin-bottom: 10px;
}

.article--standard .article__section-title {
  font-size: 24px;
  margin-bottom: 10px;
}

.article--standard .article__figure {
  margin: 20px 0;
  border-radius: 10px;
  overflow: hidden;
}

.article--standard .article__image {
  width: 100%;
  height: auto;
  display: block;
}

/* Article CTA */
.article__cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 40px;
  background-color: var(--color-white);
  border-radius: 10px;
  margin-top: 20px;
}

.article__cta p {
  margin: 0;
}

/* Article Footer */
.article__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  margin-top: 40px;
  border-top: 1px solid rgba(64, 55, 49, 0.1);
}

.article__tags {
  display: flex;
  gap: 10px;
}

.article__tag {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 12px;
  color: var(--color-brown);
  padding: 6px 12px;
  background-color: var(--color-white);
  border-radius: 20px;
}

.article__share {
  display: flex;
  align-items: center;
  gap: 15px;
}

.article__share-label {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: var(--color-brown);
  opacity: 0.5;
}

.article__share-link {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: var(--color-orange);
  text-decoration: none;
}

.article__share-link:hover {
  text-decoration: underline;
}

/* Header active link */
.header__nav-link--active {
  color: var(--color-orange);
}

/* ========================================
   RESPONSIVE - DESKTOP (1250px)
======================================== */
@media (max-width: 1250px) {
  /* Header - Show burger earlier to prevent nav squishing */
  .header__nav {
    display: none;
  }
  
  .header__burger {
    display: flex;
  }
  
  .header__inner {
    padding: 20px 30px;
  }
}

/* ========================================
   RESPONSIVE - TABLET (768px)
======================================== */
@media (max-width: 1024px) {
  
  /* Header - Adjustments for tablet */
  .header {
    height: auto;
  }
  
  .header__inner {
    padding: 30px;
  }

  .header__logo {
    width: 134px;
    height: 26px;
  }
  
  /* Burger already shown by 1250px rule */
  
  .header__burger-line {
    width: 31px;
  }
  
  /* Hero - tablet layout (768px Figma) */
  .hero {
    padding: 155px 10px 60px;
    overflow: visible;
    max-width: 768px;
  }
  
  .hero__content {
    gap: 60px;
    width: 100%;
  }
  
  .hero__title {
    font-size: 140px;
    font-weight: 800;
    line-height: 0.9;
    width: 728px;
    max-width: 100%;
  }
  
  .hero__main {
    flex-direction: column;
    gap: 60px;
    align-items: center;
  }
  
  .hero__video-placeholder {
    width: 728px;
    max-width: 100%;
    height: 400px;
  }
  
  .hero__cta {
    gap: 20px;
  }
  
  .hero__cta-title {
    font-size: 32px;
    line-height: 1.05;
    width: 728px;
    max-width: 100%;
  }
  
  /* Phone - exact Figma: left: 110.52px, top: 468.51px, 525.167×589.016 */
  .hero__phone-wrapper {
    left: 50%;
    top: 468.51px;
    transform: translateX(calc(-50% - 10px));
    width: 525.167px;
    height: 589.016px;
  }
  
  .hero__phone-shadow {
    width: 270px;
    height: 530px;
    border-radius: 30px;
  }
  
  .hero__phone {
    width: 270px;
    height: 530px;
  }
  
  /* Meet Explore - exact Figma 728x728px */
  .meet-explore {
    width: 728px;
    max-width: calc(100% - 40px);
    height: 728px;
    padding: 0;
    margin: 0 auto;
  }
  
  .meet-explore__container {
    padding: 40px;
  }
  
  .meet-explore__top {
    gap: 20px;
  }
  
  .meet-explore__content {
    gap: 15px;
  }
  
  .meet-explore__title {
    font-size: 60px;
    line-height: 1.05;
    max-width: 476px;
  }
  
  .meet-explore__text {
    font-size: 16px;
    line-height: 1.5;
    max-width: 376px;
  }
  
  .meet-explore__bottom {
    gap: 20px;
  }
  
  .meet-explore__app-logo-wrapper {
    width: 55px;
    height: 55px;
  }
  
  .meet-explore__download-btn {
    width: 200px;
    height: 55px;
  }
  
  .meet-explore__blog-btn {
    height: 40px;
    padding: 0 17px;
  }
  
  /* Spacer - exact Figma 60px */
  .spacer {
    height: 60px;
  }
  
  /* Features - exact Figma 768px */
  .features {
    padding: 60px 20px;
  }
  
  .features__title {
    font-size: 80px;
    line-height: 0.9;
  }
  
  .features__header {
    margin-bottom: 40px;
  }
  
  .features__grid {
    gap: 10px;
    max-width: 728px;
  }
  
  .feature-card--half {
    width: calc(50% - 5px);
    height: 480px;
  }
  
  .feature-card--full {
    width: 100%;
    height: 480px;
  }
  
  .feature-card__title {
    font-size: 32px;
    line-height: 1.05;
  }
  
  .feature-card__text {
    font-size: 16px;
    line-height: 1.5;
  }

  .feature-card--community .feature-card__text {
    max-width: 223px;
  }

  .feature-card--database .feature-card__text {
    max-width: 249px;
  }
  
  /* Adjust card images for tablet - exact Figma positions */
  .feature-card__image--community {
    top: 223px;
    left: 62px;
  }
  
  .feature-card__image--community img {
    width: 256px;
  }
  
  .feature-card__images-database {
    top: 221px;
    left: 70px;
    width: 219px;
    height: 219px;
  }
  
  .feature-card__images-database .database-card1 {
    width: 139px;
    height: 139px;
    top: 0;
    left: 0;
  }
  
  .feature-card__images-database .database-card2 {
    width: 139px;
    height: 139px;
    top: 40px;
    left: 40px;
  }
  
  .feature-card__images-database .database-card3 {
    width: 139px;
    height: 139px;
    top: 80px;
    left: 80px;
  }
  
  /* Journal card - full width 728px */
  .feature-card__content--journal {
    position: static;
    max-width: 243px;
    padding: 0;
  }

  .feature-card__images-journal {
    top: 0;
    left: 0;
    right: auto;
    width: 100%;
    height: 100%;
  }
  
  .feature-card__images-journal .journal-phone {
    width: 204px;
    height: 400px;
    top: 40px;
    left: 444px;
    right: auto;
  }
  
  .feature-card__images-journal .journal-card1 {
    width: 155px;
    height: 168px;
    top: 195px;
    left: 340px;
    right: auto;
  }
  
  .feature-card__images-journal .journal-card2 {
    width: 155px;
    height: 155px;
    top: 256px;
    left: 304px;
    right: auto;
    bottom: auto;
  }
  
  .feature-card__images-events .events-card1 {
    top: 231px;
    left: 60px;
    width: 168px;
    height: 151px;
  }
  
  .feature-card__images-events .events-card2 {
    top: 271px;
    left: 130px;
    width: 168px;
    height: 129px;
  }
  
  .feature-card__image--lounge {
    top: 215px;
    left: 37px;
  }
  
  .feature-card__image--lounge img {
    width: 256px;
  }
  
  /* Download App */
  .download-app {
    padding: 80px 20px;
    min-height: 500px;
  }
  
  .download-app__title {
    font-size: 50px;
  }
  
  .download-app__text {
    max-width: 380px;
  }
  
  /* Reviews - horizontal scroll carousel */
  .reviews {
    padding: 60px 0 0 20px;
    overflow: visible;
  }
  
  .reviews__container {
    max-width: none;
  }
  
  .reviews__header {
    margin-bottom: 40px;
  }
  
  .reviews__title {
    font-size: 60px;
    line-height: 1.05;
    max-width: 435px;
  }
  
  .reviews__grid {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 40px;
    padding-right: 20px;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
  }
  
  .reviews__grid::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
  }
  
  .review-card {
    width: 260px;
    min-width: 260px;
    flex-shrink: 0;
    padding-top: 38px;
  }
  
  .review-card__avatar {
    width: 70px;
    height: 70px;
  }
  
  .review-card__avatar-wrapper {
    margin-bottom: -35px;
  }
  
  .review-card__body {
    padding: 55px 20px 25px;
    min-height: 337px;
  }
  
  .review-card__name {
    font-size: 17px;
    line-height: 1.05;
  }
  
  .review-card__username {
    font-size: 12px;
    opacity: 0.5;
  }
  
  .review-card__text {
    font-size: 14px;
    line-height: 1.55;
  }
  
  /* Articles - horizontal scroll carousel */
  .articles {
    padding: 60px 0 60px 20px;
  }
  
  .articles__header {
    margin-bottom: 40px;
    padding-right: 20px;
  }
  
  .articles__title {
    font-size: 60px;
    line-height: 1.05;
  }
  
  .articles__grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 40px;
    padding-right: 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  
  .articles__grid::-webkit-scrollbar {
    display: none;
  }
  
  .article-card {
    width: 260px;
    min-width: 260px;
    flex-shrink: 0;
  }
  
  .article-card__image {
    height: 200px;
    border-radius: 10px;
  }
  
  .article-card__content {
    margin-top: 14px;
  }
  
  .article-card__title {
    font-size: 20px;
    line-height: 1.05;
    margin-bottom: 12px;
  }
  
  .article-card__date {
    font-size: 14px;
    opacity: 0.5;
  }
  
  .articles__footer {
    margin-top: 40px;
    padding-right: 20px;
  }
  
  .articles__btn {
    height: 40px;
    padding: 0 17px;
  }
  
  /* Footer - exact Figma tablet layout */
  .footer {
    padding: 60px 20px;
  }
  
  .footer__inner {
    max-width: 100%;
    flex-direction: row;
    gap: 30px;
  }
  
  .footer__install-card {
    width: clamp(320px, 45vw, 460px);
    min-width: 320px;
    max-width: none;
    min-height: 522px;
    height: auto;
    padding: 40px;
    flex-shrink: 0;
    align-items: center;
    text-align: center;
  }
  
  .footer__install-logo {
    width: 70px;
    height: 70px;
    margin-bottom: 40px;
  }
  
  .footer__install-title {
    font-size: 32px;
    line-height: 1.05;
    max-width: 216px;
  }
  
  .footer__install-btn {
    width: 200px;
    height: 55px;
    margin-top: auto;
  }
  
  .footer__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
    height: auto;
    justify-content: flex-start;
    min-width: 0;
    max-width: none;
  }
  
  .footer__nav-row {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
  }
  
  .footer__column {
    min-width: auto;
    flex-shrink: 0;
  }
  
  .footer__column-title {
    font-size: 13px;
    margin-bottom: 12px;
  }
  
  .footer__links {
    gap: 6px;
  }
  
  .footer__link {
    font-size: 14px;
    line-height: 1.5;
    word-break: break-word;
  }
  
  .footer__social-links {
    gap: 6px;
  }
  
  .footer__social-link {
    width: 118px;
    height: 40px;
    font-size: 14px;
  }
  
  .footer__legal {
    margin-top: 0;
  }
  
  .footer__contact {
    margin-top: 0;
  }
  
  .footer__bottom-section {
    gap: 30px;
  }
  
  .footer__legal-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
  
  .footer__disclaimer {
    font-size: 12px;
    max-width: 298px;
    line-height: 1.4;
    opacity: 0.5;
  }
  
  .footer__copyright-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  
  .footer__copyright {
    font-size: 14px;
  }
  
  .footer__top-btn {
    width: 60px;
    height: 30px;
  }

  /* Mobile nav menu styles for tablet */
  .header__inner {
    position: relative;
  }

  .header__nav.is-open {
    display: flex;
    position: absolute;
    top: 95px;
    right: 30px;
    width: 190px;
    height: auto;
    min-height: 210px;
    background-color: var(--color-white);
    border-radius: 10px;
    padding: 20px 24px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 8px 20px rgba(64, 55, 49, 0.12);
    z-index: 1001;
  }

  .header__nav.is-open::before {
    content: '';
    position: absolute;
    top: 8px;
    left: -8px;
    width: 190px;
    height: 100%;
    background-color: rgba(64, 55, 49, 0.08);
    border-radius: 10px;
    filter: blur(12px);
    z-index: -1;
  }
  
  .header__nav.is-open .header__nav-link {
    font-size: 13px;
    line-height: 1.5;
    display: block;
    height: 20px;
  }

  .header__nav.is-open .header__nav-link:hover {
    transform: none;
  }
  
  body.menu-open {
    overflow: hidden;
  }
  
  /* Legal Pages - Tablet */
  .legal-page {
    padding: 155px 20px 80px;
  }
  
  .legal-page__container {
    flex-direction: column;
    gap: 40px;
  }
  
  .legal-page__title {
    font-size: 50px;
  }
  
  .legal-page__content {
    width: 100%;
    padding-right: 0;
  }
  
  /* Blog Pages - Tablet */
  .blog-page {
    padding: 130px 20px 80px;
  }
  
  .blog-page__title {
    font-size: 60px;
  }
  
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .blog-card--featured {
    grid-column: span 2;
  }
  
  .blog-card--featured .blog-card__link {
    grid-template-columns: 1fr;
  }
  
  .blog-card--featured .blog-card__image-wrapper {
    height: 300px;
  }
  
  .blog-card--featured .blog-card__content {
    padding: 30px;
  }
  
  .blog-card--featured .blog-card__title {
    font-size: 32px;
  }
  
  /* Article Page - Tablet: Convert to single column */
  .article-page {
    padding: 130px 20px 80px;
  }
  
  .article {
    max-width: 100%;
  }
  
  /* Standard article tablet */
  .article--standard .article__title {
    font-size: 50px;
  }
  
  .article--standard .article__subtitle {
    font-size: 28px;
  }
  
  .article__header {
    flex-direction: column;
    margin-bottom: 40px;
  }
  
  .article__header-content {
    flex: none;
    width: 100%;
    height: auto;
    margin-bottom: 20px;
  }
  
  .article__hero {
    flex: none;
    width: 100%;
    height: 400px;
  }
  
  .article__title {
    font-size: 60px;
  }
  
  .article__intro {
    flex-direction: column;
    margin-bottom: 60px;
  }
  
  .article__intro-left,
  .article__intro-right {
    flex: none;
    width: 100%;
  }
  
  .article__intro-left {
    margin-bottom: 20px;
  }
  
  .article__section {
    flex-direction: column;
  }
  
  .article__section-content {
    flex: none;
    width: 100%;
    order: 1;
  }
  
  .article__section-image {
    flex: none;
    width: 100%;
    height: 400px;
    order: 2;
    margin-top: 30px;
  }
  
  .article__subtitle {
    font-size: 28px;
  }
}

/* ========================================
   RESPONSIVE - MOBILE (600px and below)
======================================== */
@media (max-width: 600px) {
  
  /* Hero - fluid continuation of 320px layout */
  .hero {
    padding: 110px 16px 50px;
    overflow: visible;
  }
  
  .hero__content {
    gap: 60px;
    align-items: center;
    text-align: center;
  }
  
  .hero__title {
    font-size: clamp(50px, 10.5vw, 68px);
    line-height: 0.9;
    width: 100%;
    max-width: 520px;
  }
  
  .hero__main {
    gap: 40px;
  }
  
  .hero__video-placeholder {
    width: min(440px, calc(100% - 32px));
    max-width: 100%;
    height: auto;
    aspect-ratio: 300 / 212;
  }
  
  .hero__cta-title {
    font-size: clamp(24px, 5vw, 32px);
    line-height: 1.05;
    width: 100%;
    max-width: 320px;
  }
  
  .hero__cta .btn {
    height: 45px;
    font-size: 12px;
    min-width: 0;
  }
  
  .hero__phone-wrapper {
    display: flex;
    position: absolute;
    top: clamp(208px, 40vw, 260px);
    left: 50%;
    width: clamp(311px, 72vw, 460px);
    height: auto;
    aspect-ratio: 311.167 / 348.986;
    transform: translateX(calc(-50% + clamp(20px, 8vw, 40px)));
  }

  .hero__phone-shadow {
    width: clamp(160px, 36vw, 220px);
    height: auto;
    aspect-ratio: 160 / 314;
    border-radius: 30px;
    opacity: 0.18;
    filter: blur(10px);
    transform: rotate(35deg) translate(-8px, 6px);
  }

  .hero__phone {
    width: clamp(160px, 36vw, 220px);
    height: auto;
    aspect-ratio: 160 / 314;
    transform: rotate(35deg);
  }
  
  /* Meet Explore */
  .meet-explore {
    width: calc(100% - 20px);
    max-width: 728px;
    margin: 0 auto;
    height: clamp(540px, 120vw, 728px);
  }
  
  .meet-explore__title {
    font-size: clamp(30px, 7vw, 48px);
    line-height: 1.05;
    max-width: 237px;
  }

  .meet-explore__container {
    padding: 20px;
  }

  .meet-explore__top {
    width: 260px;
  }

  .meet-explore__content {
    max-width: 260px;
  }

  .meet-explore__text {
    font-size: clamp(13px, 2.6vw, 14px);
    line-height: 1.4;
    max-width: 260px;
  }

  .meet-explore__blog-btn {
    height: 30px;
    padding: 0 17px;
    font-size: 12px;
  }

  .meet-explore__bottom {
    width: 260px;
    gap: 20px;
  }

  .meet-explore__app-logo-wrapper {
    width: 45px;
    height: 45px;
  }

  .meet-explore__download-btn {
    flex: 1;
    width: auto;
    height: 45px;
    font-size: 12px;
  }
  
  /* Features - stack cards vertically */
  .features__title {
    font-size: 48px;
  }
  
  .features__row {
    flex-direction: column;
  }
  
  .feature-card--half {
    width: 100%;
    height: auto;
    min-height: 450px;
  }
  
  .feature-card--full {
    height: auto;
    min-height: 450px;
  }
  
  .feature-card__title {
    font-size: 32px;
  }

  .feature-card__images-database {
    top: auto;
    bottom: clamp(20px, 4vw, 30px);
    left: clamp(20px, 8vw, 70px);
    right: auto;
    width: clamp(200px, 55vw, 280px);
    max-width: none;
    z-index: 1;
    height: auto;
    aspect-ratio: 1;
  }

  .feature-card--database .feature-card__content {
    z-index: 2;
  }

  .feature-card__images-database .database-card1,
  .feature-card__images-database .database-card2,
  .feature-card__images-database .database-card3 {
    width: 60%;
    height: auto;
    aspect-ratio: 1;
    object-fit: contain;
  }

  .feature-card__images-database .database-card1 {
    left: 0;
    top: 0;
  }

  .feature-card__images-database .database-card2 {
    left: 18%;
    top: 18%;
  }

  .feature-card__images-database .database-card3 {
    left: 36%;
    top: 36%;
  }

  .feature-card__images-journal {
    top: 0;
    left: 0;
    right: auto;
    width: 100%;
    height: 100%;
  }

  .feature-card__images-journal .journal-phone {
    width: clamp(180px, 40vw, 210px);
    height: auto;
    left: clamp(70px, 18vw, 120px);
    top: clamp(120px, 22vw, 170px);
    right: auto;
  }

  .feature-card__images-journal .journal-card1 {
    width: clamp(140px, 32vw, 170px);
    height: auto;
    left: clamp(20px, 6vw, 50px);
    top: clamp(220px, 45vw, 300px);
    right: auto;
    bottom: auto;
  }

  .feature-card__images-journal .journal-card2 {
    width: clamp(150px, 34vw, 175px);
    height: auto;
    left: clamp(30px, 8vw, 60px);
    top: clamp(280px, 55vw, 350px);
    right: auto;
    bottom: auto;
  }
  
  /* Download App */
  .download-app__title {
    font-size: 40px;
  }
  
  /* Reviews */
  .reviews__title {
    font-size: 40px;
  }
  
  .reviews__grid {
    gap: 15px;
  }
  
  .review-card {
    min-width: 280px;
  }
  
  /* Articles - single column */
  .articles__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  
  .articles__title {
    font-size: 40px;
  }
  
  .articles__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  /* Footer */
  .footer__install-title {
    font-size: 28px;
  }
}

/* ========================================
   RESPONSIVE - MOBILE (480px and below)
======================================== */
@media (max-width: 480px) {
  
  /* Header */
  .header__inner {
    padding: 20px;
  }
  
  .header__logo {
    width: 103px;
    height: 20px;
  }
  
  .header__burger {
    width: 32px;
    height: 32px;
    gap: 3px;
  }
  
  .header__burger-line {
    width: 12px;
    height: 1.5px;
  }
  
  .header__burger.is-open .header__burger-line:nth-child(1) {
    transform: translateY(4px) rotate(45deg);
  }
  
  .header__burger.is-open .header__burger-line:nth-child(2) {
    opacity: 0;
  }
  
  .header__burger.is-open .header__burger-line:nth-child(3) {
    transform: translateY(-4px) rotate(-45deg);
  }
  
  .header__nav.is-open {
    top: 62px;
    right: 20px;
  }
  
  /* Hero */
  
  /* Meet Explore */
  .meet-explore {
    width: calc(100% - 20px);
    max-width: 728px;
    margin: 0 auto;
    height: clamp(540px, 140vw, 680px);
  }
  
  .meet-explore__title {
    font-size: clamp(30px, 8vw, 36px);
  }
  
  .meet-explore__text {
    font-size: 13px;
  }
  
  /* Spacer */
  .spacer {
    height: 60px;
  }
  
  /* Features */
  .features {
    padding: 60px 15px;
  }
  
  .features__title {
    font-size: 36px;
  }
  
  .feature-card {
    padding: 25px;
  }
  
  .feature-card--half,
  .feature-card--full {
    height: auto;
    min-height: 420px;
  }

  .feature-card--database {
    min-height: clamp(460px, 110vw, 560px);
  }
  
  .feature-card__title {
    font-size: 28px;
  }
  
  .feature-card__text {
    font-size: 13px;
    max-width: 100%;
  }
  
  /* Adjust card images for mobile */
  .feature-card__image--community {
    top: 150px;
    left: 50px;
  }
  
  .feature-card__image--community img {
    width: 250px;
  }
  
  .feature-card__images-database {
    top: auto;
    bottom: 25px;
    left: clamp(20px, 8vw, 50px);
    right: auto;
    width: clamp(200px, 60vw, 260px);
    max-width: none;
    z-index: 1;
    height: auto;
    aspect-ratio: 1;
  }

  .feature-card--database .feature-card__content {
    z-index: 2;
  }
  
  .feature-card__images-database .database-card1 {
    width: 60%;
    height: auto;
    aspect-ratio: 1;
    object-fit: contain;
    left: 0;
    top: 0;
  }
  
  .feature-card__images-database .database-card2 {
    width: 60%;
    height: auto;
    aspect-ratio: 1;
    object-fit: contain;
    left: 18%;
    top: 18%;
  }
  
  .feature-card__images-database .database-card3 {
    width: 60%;
    height: auto;
    aspect-ratio: 1;
    object-fit: contain;
    left: 36%;
    top: 36%;
  }

  .feature-card__images-journal {
    top: 0;
    left: 0;
    right: auto;
    width: 100%;
    height: 100%;
  }
  
  .feature-card__images-journal .journal-phone {
    width: clamp(180px, 44vw, 210px);
    height: auto;
    left: clamp(70px, 18vw, 120px);
    top: clamp(120px, 24vw, 170px);
    right: auto;
  }
  
  .feature-card__images-journal .journal-card1 {
    width: clamp(140px, 32vw, 170px);
    height: auto;
    left: clamp(20px, 6vw, 50px);
    top: clamp(220px, 46vw, 300px);
    right: auto;
    bottom: auto;
  }
  
  .feature-card__images-journal .journal-card2 {
    width: clamp(150px, 34vw, 175px);
    height: auto;
    left: clamp(30px, 8vw, 60px);
    top: clamp(280px, 56vw, 350px);
    right: auto;
    bottom: auto;
  }
  
  .feature-card__images-events .events-card1 {
    top: 160px;
    left: 50%;
    transform: translateX(-80%);
    width: 160px;
  }
  
  .feature-card__images-events .events-card2 {
    top: 200px;
    left: 50%;
    transform: translateX(-20%);
    width: 160px;
  }
  
  .feature-card__image--lounge {
    top: 150px;
    left: 50px;
  }
  
  .feature-card__image--lounge img {
    width: 250px;
  }
  
  /* Download App */
  .download-app {
    padding: 60px 15px;
    min-height: 400px;
  }
  
  .download-app__logo {
    width: 45px;
    height: 45px;
  }
  
  .download-app__title {
    font-size: 32px;
    margin-bottom: 20px;
  }
  
  .download-app__text {
    font-size: 14px;
    max-width: 100%;
    margin-bottom: 30px;
  }
  
  /* Reviews */
  .reviews {
    padding: 30px 0 30px 10px;
    overflow: visible;
  }
  
  .reviews__container {
    max-width: none;
  }
  
  .reviews__header {
    margin-bottom: 20px;
    padding-right: 0;
  }
  
  .reviews__title {
    font-size: clamp(30px, 7vw, 36px);
    line-height: 1.05;
    width: 220px;
    max-width: 220px;
  }
  
  .reviews__grid {
    gap: 10px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-right: 10px;
  }
  
  .reviews__grid::-webkit-scrollbar {
    display: none;
  }
  
  .review-card {
    width: 260px;
    min-width: 260px;
    height: 338px;
    padding-top: 0;
    flex-shrink: 0;
  }
  
  .review-card__avatar-wrapper {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 0;
  }
  
  .review-card__avatar {
    width: 70px;
    height: 70px;
  }
  
  .review-card__body {
    width: 260px;
    height: 303px;
    margin-top: 35px;
    padding: 45px 20px 20px;
    min-height: 0;
  }
  
  .review-card__info {
    margin-bottom: 16px;
  }
  
  .review-card__name {
    font-size: 17px;
    line-height: 1.05;
  }

  .review-card__username {
    font-size: 12px;
    line-height: 1.05;
  }
  
  .review-card__text {
    font-size: 13px;
    line-height: 1.55;
  }
  
  /* Articles */
  .articles {
    padding: 0 15px 60px;
  }
  
  .articles__title {
    font-size: 32px;
  }
  
  .article-card__title {
    font-size: 18px;
  }
  
  /* Footer - 600px breakpoint */
  .footer {
    padding: 30px clamp(8px, 2vw, 16px);
  }
  
  .footer__inner {
    flex-direction: column;
    gap: 30px;
    align-items: stretch;
  }
  
  .footer__install-card {
    width: 100%;
    max-width: none;
    height: 305px;
    padding: clamp(24px, 5vw, 40px);
    align-items: center;
    text-align: center;
  }

  .footer__install-logo {
    width: 60px;
    height: 60px;
    margin-bottom: clamp(24px, 5vw, 40px);
  }
  
  .footer__install-title {
    font-size: 24px;
    line-height: 1.05;
    max-width: 260px;
    margin-bottom: auto;
  }

  .footer__install-btn {
    width: clamp(195px, 60vw, 260px);
    height: 45px;
    margin-top: auto;
  }
  
  .footer__content {
    height: auto;
    max-width: 100%;
    gap: 30px;
  }
  
  .footer__nav-row {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
  }

  .footer__nav-row .footer__column {
    min-width: auto;
    flex: 1 1 118px;
  }

  .footer__nav-row .footer__column:last-child {
    flex-basis: 100%;
  }

  .footer__column-title {
    font-size: 13px;
  }

  .footer__link {
    font-size: 13px;
  }

  .footer__social-link {
    width: 118px;
    height: 30px;
    font-size: 13px;
  }
  
  .footer__bottom-section {
    flex-direction: column;
    gap: 30px;
  }

  .footer__legal-bar {
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
  }

  .footer__disclaimer {
    font-size: 10px;
    max-width: 100%;
    line-height: 1.4;
  }

  .footer__copyright-row {
    width: 100%;
    justify-content: space-between;
  }

  .footer__copyright {
    font-size: 13px;
  }

  .footer__top-btn {
    width: 60px;
    height: 30px;
  }
  
  /* Standard article 600px */
  .article--standard .article__title {
    font-size: 36px;
  }
  
  .article--standard .article__subtitle {
    font-size: 24px;
  }
  
  .article--standard .article__section-title {
    font-size: 20px;
  }
}

/* ========================================
   RESPONSIVE - MOBILE SMALL (320px)
======================================== */
@media (max-width: 375px) {
  
  /* Header - exact Figma 320px */
  .header__inner {
    height: 72px;
    padding: 0 10px;
  }
  
  .header__logo {
    width: 110px;
  }
  
  /* Hero - mobile fluid */
  .hero {
    padding: 110px 10px 40px;
    min-height: auto;
    overflow: visible;
  }
  
  .hero__content {
    gap: 60px;
    align-items: center;
    text-align: center;
  }
  
  .hero__title {
    font-size: 50px;
    line-height: 0.9;
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
  
  .hero__main {
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }
  
  .hero__video-placeholder {
    width: 300px;
    max-width: 100%;
    height: 212px;
    aspect-ratio: auto;
  }
  
  .hero__cta {
    align-items: center;
    text-align: center;
    gap: 20px;
    width: 100%;
  }
  
  .hero__cta-title {
    font-size: 24px;
    width: 100%;
    max-width: 242px;
    text-align: center;
  }
  
  .hero__cta .btn {
    width: 195px;
    min-width: 0;
    max-width: none;
    height: 45px;
    font-size: 12px;
    padding: 0 20px;
  }
  
  .hero__phone-wrapper {
    display: flex;
    position: absolute;
    top: 208.507px;
    left: 50%;
    width: 311.167px;
    height: 348.986px;
    transform: translateX(-50%);
  }

  .hero__phone-shadow {
    width: 160px;
    height: 314px;
    aspect-ratio: 160 / 314;
    border-radius: 26px;
    opacity: 0.15;
    filter: blur(6px);
    transform: rotate(35deg) translate(-4px, 3px);
  }

  .hero__phone {
    width: 160px;
    height: 314px;
    aspect-ratio: 160 / 314;
    transform: rotate(35deg);
  }
  
  /* Meet Explore - mobile fluid */
  .meet-explore {
    width: calc(100% - 20px);
    max-width: 340px;
    min-height: 500px;
    height: auto;
    padding: 20px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
  }
  
  .meet-explore__container {
    display: contents;
  }
  
  .meet-explore__top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
  }
  
  .meet-explore__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    width: 100%;
  }
  
  .meet-explore__title {
    font-size: clamp(26px, 8vw, 30px);
    line-height: 1.05;
    width: 100%;
  }
  
  .meet-explore__text {
    font-size: 13px;
    line-height: 1.4;
    width: 100%;
  }
  
  .meet-explore__blog-btn {
    height: 30px;
    padding: 0 17px;
    font-size: 12px;
  }
  
  .meet-explore__bottom {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
  }
  
  .meet-explore__app-logo-wrapper {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
  }
  
  .meet-explore__download-btn {
    flex: 1;
    width: auto;
    height: 45px;
    font-size: 12px;
  }
  
  /* Spacer */
  .spacer {
    height: 30px;
  }
  
  /* Features - exact Figma 320px */
  .features {
    padding: 30px 10px;
  }
  
  .features__header {
    margin-bottom: 20px;
  }
  
  .features__title {
    font-size: clamp(36px, 12vw, 45px);
    line-height: 1;
  }
  
  .features__grid {
    max-width: calc(100% - 20px);
    width: 100%;
    gap: 10px;
  }
  
  .feature-card--half,
  .feature-card--full {
    width: 100%;
    height: auto;
    min-height: 400px;
  }
  
  .feature-card--journal {
    min-height: 500px;
  }
  
  .feature-card {
    padding: 20px;
    overflow: hidden;
  }
  
  .feature-card__title {
    font-size: clamp(20px, 6vw, 24px);
    line-height: 1.05;
  }
  
  .feature-card__text {
    font-size: 13px;
    line-height: 1.4;
    max-width: 100%;
  }
  
  /* Card images - mobile fluid */
  .feature-card__image--community {
    top: 50%;
    left: 10%;
    right: -20%;
  }
  
  .feature-card__image--community img {
    width: 80%;
    max-width: 260px;
  }
  
  .feature-card__images-database {
    position: absolute;
    top: auto;
    bottom: 20px;
    left: 10%;
    right: auto;
    width: 70%;
    max-width: 220px;
    aspect-ratio: 1;
  }
  
  .feature-card__images-database .database-card1 {
    position: absolute;
    width: 60%;
    aspect-ratio: 1;
    left: 0;
    top: 0;
  }
  
  .feature-card__images-database .database-card2 {
    position: absolute;
    width: 60%;
    aspect-ratio: 1;
    left: 18%;
    top: 18%;
  }
  
  .feature-card__images-database .database-card3 {
    position: absolute;
    width: 60%;
    aspect-ratio: 1;
    left: 36%;
    top: 36%;
  }
  
  .feature-card__content--journal {
    position: static;
    max-width: 219px;
  }
  
  .feature-card__images-journal {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  .feature-card__images-journal .journal-phone {
    width: 180px;
    height: 353px;
    left: 74px;
    top: 153px;
    right: auto;
  }
  
  .feature-card__images-journal .journal-card1 {
    width: 155px;
    height: 168px;
    left: 20px;
    top: 273px;
    right: auto;
  }
  
  .feature-card__images-journal .journal-card2 {
    width: 155px;
    height: 155px;
    left: 30px;
    top: 333px;
    right: auto;
    bottom: auto;
  }
  
  .feature-card__images-events .events-card1 {
    top: 180px;
    left: 50%;
    transform: translateX(-80%);
    width: 168px;
    height: 151px;
  }
  
  .feature-card__images-events .events-card2 {
    top: 220px;
    left: 50%;
    transform: translateX(-20%);
    width: 168px;
    height: 129px;
  }
  
  .feature-card__image--lounge {
    top: 175px;
    left: 20px;
  }
  
  .feature-card__image--lounge img {
    width: 240px;
  }
  
  /* Download App - exact Figma 320px */
  .download-app {
    width: 100%;
    min-height: 421px;
    padding: 30px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
  }
  
  .download-app__logo {
    width: 45px;
    height: 45px;
    margin-bottom: 20px;
  }
  
  .download-app__title {
    font-size: 50px;
    line-height: 0.9;
    text-align: center;
    width: 300px;
    max-width: 300px;
    margin-bottom: 40px;
  }
  
  .download-app__text {
    font-size: 13px;
    line-height: 1.4;
    max-width: 260px;
    width: 260px;
    text-align: center;
    opacity: 0.5;
    margin-bottom: 20px;
  }
  
  .download-app .btn {
    width: 195px;
    height: 45px;
    font-size: 12px;
  }
  
  /* Reviews - exact Figma 320px */
  .reviews {
    padding: 30px 0 30px 10px;
    overflow: visible;
  }

  .reviews__container {
    max-width: none;
  }
  
  .reviews__header {
    margin-bottom: 20px;
    padding-right: 0;
  }
  
  .reviews__title {
    font-size: 30px;
    line-height: 1.05;
    width: 220px;
    max-width: 220px;
  }
  
  .reviews__grid {
    gap: 10px;
    width: 100%;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-right: 10px;
  }

  .reviews__grid::-webkit-scrollbar {
    display: none;
  }
  
  .review-card {
    width: 260px;
    min-width: 260px;
    height: 338px;
    padding-top: 0;
    scroll-snap-align: start;
  }

  .review-card__avatar-wrapper {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 0;
  }

  .review-card__avatar {
    width: 70px;
    height: 70px;
  }
  
  .review-card__body {
    width: 260px;
    height: 303px;
    margin-top: 35px;
    min-height: 0;
    padding: 45px 20px 20px;
  }
  
  .review-card__name {
    font-size: 17px;
    line-height: 1.05;
  }

  .review-card__username {
    font-size: 12px;
  }
  
  .review-card__text {
    font-size: 13px;
    line-height: 1.55;
  }
  
  /* Articles - exact Figma 320px */
  .articles {
    padding: 0 0 30px 10px;
  }
  
  .articles__header {
    margin-bottom: 20px;
    padding-right: 10px;
  }
  
  .articles__title {
    font-size: 30px;
    line-height: 1.05;
  }
  
  .articles__grid {
    gap: 10px;
  }
  
  .article-card {
    width: 260px;
    min-width: 260px;
  }
  
  .article-card__image {
    height: 200px;
  }
  
  .article-card__title {
    font-size: 16px;
  }
  
  .article-card__date {
    font-size: 10px;
  }
  
  .articles__btn {
    height: 30px;
    padding: 0 15px;
    font-size: 12px;
  }
  
  /* Footer - exact Figma 320px (stacked layout) */
  .footer {
    padding: 30px 10px;
  }
  
  .footer__inner {
    flex-direction: column;
    gap: 30px;
    align-items: stretch;
  }
  
  .footer__install-card {
    width: 100%;
    max-width: none;
    min-width: 0;
    height: 305px;
    padding: 30px;
    align-items: center;
    text-align: center;
  }
  
  .footer__install-logo {
    width: 60px;
    height: 60px;
    margin-bottom: 30px;
  }
  
  .footer__install-title {
    font-size: 24px;
    max-width: 216px;
    margin-bottom: 30px;
  }
  
  .footer__install-btn {
    width: 100%;
    max-width: 280px;
    height: 45px;
    margin-top: auto;
  }
  
  .footer__content {
    max-width: 100%;
    height: auto;
    gap: 30px;
  }
  
  .footer__nav-row {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
  }
  
  .footer__column {
    min-width: auto;
    flex: 1;
  }
  
  .footer__column-title {
    font-size: 13px;
  }
  
  .footer__link {
    font-size: 13px;
  }
  
  .footer__social-link {
    width: 118px;
    height: 30px;
    font-size: 13px;
  }
  
  .footer__bottom-section {
    gap: 30px;
  }
  
  .footer__legal-bar {
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
  }
  
  .footer__disclaimer {
    font-size: 10px;
    max-width: 100%;
    line-height: 1.4;
  }
  
  .footer__copyright-row {
    width: 100%;
    justify-content: space-between;
  }
  
  .footer__copyright {
    font-size: 13px;
  }
  
  .footer__top-btn {
    width: 60px;
    height: 30px;
  }
  
  /* Standard article 320px */
  .article--standard .article__title {
    font-size: 28px;
  }
  
  .article--standard .article__subtitle {
    font-size: 20px;
  }
  
  .article--standard .article__section-title {
    font-size: 18px;
  }
  
  /* Legal Pages - Mobile 320px */
  .legal-page {
    padding: 102px 10px 60px;
  }
  
  .legal-page__container {
    gap: 30px;
  }
  
  .legal-page__title {
    font-size: 30px;
  }
  
  .legal-page__date {
    font-size: 13px;
  }
  
  .legal-page__content {
    gap: 30px;
  }
  
  .legal-page__intro {
    font-size: 14px;
  }
  
  .legal-page__intro p {
    margin-bottom: 10px;
  }
  
  .legal-page__intro ol li {
    margin-bottom: 8px;
  }
  
  .legal-page__sections {
    gap: 25px;
  }
  
  .legal-section {
    gap: 15px;
  }
  
  .legal-section__title {
    font-size: 16px;
  }
  
  .legal-section__content {
    gap: 15px;
  }
  
  .legal-section__content > p {
    font-size: 14px;
  }
  
  .legal-subsection {
    gap: 10px;
  }
  
  .legal-subsection__title {
    font-size: 14px;
  }
  
  .legal-subsection p {
    font-size: 14px;
  }
  
  .legal-subsection ul li {
    font-size: 14px;
    margin-bottom: 8px;
  }
  
  /* Blog Pages - Mobile 320px */
  .blog-page {
    padding: 102px 10px 60px;
  }
  
  .blog-page__header {
    margin-bottom: 30px;
  }
  
  .blog-page__title {
    font-size: 40px;
  }
  
  .blog-page__subtitle {
    font-size: 14px;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .blog-card--featured {
    grid-column: span 1;
  }
  
  .blog-card--featured .blog-card__image-wrapper {
    height: 200px;
  }
  
  .blog-card--featured .blog-card__content {
    padding: 20px;
  }
  
  .blog-card--featured .blog-card__title {
    font-size: 24px;
  }
  
  .blog-card__content {
    padding: 20px;
  }
  
  .blog-card__title {
    font-size: 18px;
  }
  
  .blog-card__excerpt {
    font-size: 13px;
  }
  
  /* Article Page - Mobile 320px */
  .article-page {
    padding: 102px 10px 60px;
  }
  
  .article__header {
    margin-bottom: 30px;
  }
  
  .article__hero {
    height: 250px;
  }
  
  .article__title {
    font-size: 30px;
  }
  
  .article__intro {
    margin-bottom: 40px;
  }
  
  .article__subtitle {
    font-size: 24px;
  }
  
  .article__section-content {
    gap: 20px;
  }
  
  .article__section-image {
    height: 250px;
    margin-top: 20px;
  }
  
  .article__section-title {
    font-size: 18px;
  }
  
  .article__content p,
  .article__section-text p,
  .article__list li {
    font-size: 14px;
  }
  
  .article__quote p {
    font-size: 14px;
  }
  
  .article__cta {
    padding: 20px;
  }
  
  .article__footer {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}

/* ========================================
   EXPLORE PAGE
======================================== */

/* Explore Hero */
.explore-hero {
  background-color: var(--color-beige);
  padding: 180px 20px 120px;
}

.explore-hero__container {
  max-width: var(--content-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.explore-hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 80px;
  line-height: 0.9;
  text-align: center;
  text-transform: uppercase;
  color: var(--color-brown);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.explore-hero__title br {
  display: inline;
}

/* Explore Search */
.explore-search {
  position: relative;
  width: 728px;
  max-width: 100%;
  height: 55px;
}

.explore-search__icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  color: var(--color-brown);
  opacity: 0.5;
}

.explore-search__input {
  width: 100%;
  height: 55px;
  padding: 0 20px 0 56px;
  border: none;
  border-radius: 10px;
  background-color: #fff;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-brown);
  outline: none;
  transition: box-shadow 0.2s ease;
}

.explore-search__input::placeholder {
  color: var(--color-brown);
  opacity: 0.3;
}

.explore-search__input:focus {
  box-shadow: 0 0 0 2px var(--color-orange);
}

/* Explore Stats */
.explore-stats {
  display: flex;
  gap: 30px;
}

.explore-stats__item {
  width: 140px;
  height: 80px;
  border-radius: 10px;
  background-color: rgba(64, 55, 49, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.explore-stats__number {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 24px;
  line-height: 0.9;
  color: var(--color-brown);
  text-transform: uppercase;
  letter-spacing: 0.48px;
  text-align: center;
  margin-bottom: 8px;
}

.explore-stats__label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  line-height: 1;
  color: var(--color-brown);
  opacity: 0.5;
  text-transform: uppercase;
  text-align: center;
}

/* Explore Filters */
.explore-filters {
  padding: 40px;
  background-color: #fff;
  width: 100%;
  max-width: none;
  margin: 0;
  text-align: left;
  align-self: stretch; /* Override page-wrapper centering */
}

.explore-filters__container {
  width: 100%;
  max-width: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  margin: 0;
  padding: 0;
}

/* Reset all filters button (X) - hidden by default */
.explore-filters__reset {
  width: 45px;
  height: 45px;
  border: 1px solid var(--color-brown);
  border-radius: 50%;
  background: transparent;
  display: none; /* Hidden by default, shown via JS */
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  color: var(--color-brown);
  transition: background-color 0.2s ease;
  flex-shrink: 0;
}

.explore-filters__reset.is-visible {
  display: flex;
}

.explore-filters__reset svg {
  width: 10px;
  height: 10px;
  display: block;
}

.explore-filters__reset:hover {
  background-color: rgba(64, 55, 49, 0.05);
}

/* Filter settings button (sliders icon) */
.explore-filters__settings {
  width: 60px;
  height: 45px;
  border: 1px solid rgba(64, 55, 49, 0.1);
  border-radius: 20px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  color: var(--color-brown);
  transition: background-color 0.2s ease, border-color 0.2s ease;
  flex-shrink: 0;
}

.explore-filters__settings svg {
  width: 20px;
  height: 20px;
  display: block;
  flex-shrink: 0;
}

.explore-filters__settings:hover {
  background-color: var(--color-beige);
  border-color: var(--color-brown);
}

.explore-filters__chips {
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.explore-filters__chips::-webkit-scrollbar {
  display: none;
}

.explore-filters__chip {
  height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 20px;
  border: 1px solid rgba(64, 55, 49, 0.1);
  border-radius: 100px;
  background: transparent;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  color: var(--color-brown);
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.explore-filters__chip span {
  display: block;
  margin-top: 1px; /* Optical center correction */
}

.explore-filters__chip--brand {
  padding: 0 20px;
}

.explore-filters__chip svg {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  opacity: 0.6;
  display: block;
  margin-top: 0;
}

.explore-filters__chip:hover {
  background-color: var(--color-beige);
  border-color: var(--color-brown);
}

/* Active chip state */
.explore-filters__chip--active {
  border-color: var(--color-brown);
}

/* Active chip badge (count) */
.explore-filters__chip-badge {
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  background-color: var(--color-orange);
  border-radius: 3px;
  font-size: 10px;
  font-weight: 500;
  color: #fff;
  line-height: 1;
}

.explore-filters__chip--active .explore-filters__chip-badge {
  display: flex;
}

/* Active chip close button */
.explore-filters__chip-close {
  display: none;
  align-items: center;
  justify-content: center;
  width: 12px;
  height: 12px;
  color: var(--color-brown);
  opacity: 0.6;
}

.explore-filters__chip-close svg {
  width: 6px;
  height: 6px;
}

.explore-filters__chip--active .explore-filters__chip-close {
  display: flex;
}

/* Arrow icon */
.explore-filters__chip-arrow {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  opacity: 0.6;
  display: block;
}

/* Hide arrow when chip is active */
.explore-filters__chip--active .explore-filters__chip-arrow {
  display: none;
}

/* Explore Results */
.explore-results {
  padding: 0 40px 40px;
  background-color: #fff;
  width: 100%;
  align-self: stretch; /* Override page-wrapper centering */
}

.explore-results__container {
  width: 100%;
}

.explore-results__count {
  display: none; /* Hidden - not in Figma design */
}

.explore-results__load-more {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

/* Explore Loader */
.explore-loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 80px 20px;
}

.explore-loader__spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--color-beige);
  border-top-color: var(--color-orange);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.explore-loader p {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-brown);
  opacity: 0.5;
}

/* Skeleton Loading Cards */
.skeleton-card {
  width: 354px;
  border-radius: 10px;
  overflow: hidden;
}

.skeleton-card__image {
  height: 170px;
  background: linear-gradient(90deg, #f0ebe4 25%, #e8e3dc 50%, #f0ebe4 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

.skeleton-card__content {
  background: #fff;
  padding: 30px;
  margin-top: -20px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(64, 55, 49, 0.1);
}

.skeleton-card__title {
  height: 24px;
  width: 80%;
  background: linear-gradient(90deg, #f0ebe4 25%, #e8e3dc 50%, #f0ebe4 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 4px;
  margin-bottom: 12px;
}

.skeleton-card__text {
  height: 14px;
  width: 100%;
  background: linear-gradient(90deg, #f0ebe4 25%, #e8e3dc 50%, #f0ebe4 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 4px;
  margin-bottom: 8px;
}

.skeleton-card__text:nth-child(3) {
  width: 90%;
}

.skeleton-card__text:nth-child(4) {
  width: 70%;
}

.skeleton-card__tags {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.skeleton-card__tag {
  height: 28px;
  width: 50px;
  background: linear-gradient(90deg, #f0ebe4 25%, #e8e3dc 50%, #f0ebe4 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 4px;
}

/* Cigars Grid */
.cigars-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

/* Cigar Card */
.cigar-card {
  position: relative;
  width: 354px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.cigar-card:hover {
  transform: translateY(-4px);
}

.cigar-card__image-wrapper {
  position: relative;
  height: 170px;
  background-color: var(--color-beige);
  border-radius: 10px 10px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cigar-card__image {
  max-width: 70%;
  max-height: 70%;
  object-fit: contain;
}

.cigar-card__image[src*="Unknown_cigar"] {
  max-width: 60%;
  max-height: 60%;
  opacity: 0.9;
}

.cigar-card__actions {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  gap: 10px;
}

.cigar-card__action-btn {
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-brown);
  opacity: 0.5;
  transition: all 0.2s ease;
}

.cigar-card__action-btn:hover {
  opacity: 1;
  color: var(--color-orange);
}

.cigar-card__content {
  position: relative;
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
  margin-top: -20px;
  box-shadow: 0 5px 20px rgba(64, 55, 49, 0.1);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cigar-card__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cigar-card__text-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cigar-card__title {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.2;
  color: var(--color-brown);
}

.cigar-card__description {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-brown);
  height: 65px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cigar-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cigar-card__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-radius: 4px;
  background-color: var(--color-beige);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 12px;
  line-height: 1;
  color: var(--color-orange);
  text-transform: lowercase;
}

.cigar-card__footer {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

/* .cigar-card__link removed */

.cigar-card__meta {
  display: flex;
  align-items: center;
  gap: 9px;
}

.cigar-card__country {
  display: flex;
  align-items: center;
  gap: 4px;
}

.cigar-card__flag {
  font-size: 16px;
  line-height: 1;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cigar-card__flag img {
  display: block;
  object-fit: contain;
}

.cigar-card__country-name {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  line-height: 1;
  color: var(--color-brown);
}

.cigar-card__rating {
  display: flex;
  align-items: center;
  gap: 4px;
}

.cigar-card__star {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.cigar-card__score {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  line-height: 1;
  color: var(--color-brown);
}

/* Filter Panel (Mobile/Tablet) */
.filter-panel {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: flex-end;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.filter-panel--open {
  pointer-events: auto;
  opacity: 1;
}

.filter-panel__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(64, 55, 49, 0.5);
}

.filter-panel__content {
  position: relative;
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  background-color: #fff;
  border-radius: 20px 20px 0 0;
  display: flex;
  flex-direction: column;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.filter-panel--open .filter-panel__content {
  transform: translateY(0);
}

.filter-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 20px;
  border-bottom: 1px solid rgba(64, 55, 49, 0.1);
}

.filter-panel__title {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 18px;
  color: var(--color-brown);
}

.filter-panel__close {
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--color-brown);
}

.filter-panel__body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

.filter-panel__search {
  margin-bottom: 20px;
}

.filter-panel__search-input {
  width: 100%;
  height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(64, 55, 49, 0.1);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-brown);
  outline: none;
}

.filter-panel__search-input:focus {
  border-color: var(--color-orange);
}

.filter-panel__options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.filter-panel__option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.filter-panel__option:hover {
  background-color: var(--color-beige);
}

.filter-panel__option input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--color-orange);
  cursor: pointer;
}

.filter-panel__option label {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-brown);
  cursor: pointer;
}

.filter-panel__footer {
  padding: 20px;
  border-top: 1px solid rgba(64, 55, 49, 0.1);
}

.filter-panel__apply {
  width: 100%;
}
.filter-panel__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.filter-panel__reset {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--color-orange);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: opacity 0.2s ease;
}

.filter-panel__reset:hover {
  opacity: 0.7;
}

.filter-panel__handle {
  width: 40px;
  height: 4px;
  background-color: rgba(64, 55, 49, 0.2);
  border-radius: 2px;
  margin: 12px auto 0;
  display: none;
}

@media (max-width: 768px) {
  .filter-panel__handle {
    display: block;
  }
  
  .filter-panel__close {
    display: none;
  }
}

body.filter-panel-open {
  overflow: hidden;
}

body.age-gate-open {
  overflow: hidden;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background-color: rgba(64, 55, 49, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.age-gate__dialog {
  width: 300px;
  background-color: var(--color-beige);
  border-radius: 10px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.age-gate__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  color: var(--color-brown);
}

.age-gate__title {
  width: 100%;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.05;
}

.age-gate__desc {
  width: 100%;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  line-height: 1.4;
}

.age-gate__link {
  color: var(--color-orange);
}

.age-gate__confirm {
  width: 195px;
  height: 45px;
  border-radius: 100px;
  background-color: var(--color-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  line-height: 1;
  color: var(--color-white);
  text-transform: uppercase;
}

@media (min-width: 481px) {
  .age-gate__dialog {
    width: 500px;
    padding: 60px;
    gap: 40px;
  }

  .age-gate__content {
    gap: 20px;
  }

  .age-gate__title {
    font-size: 32px;
  }

  .age-gate__desc {
    font-size: 14px;
  }

  .age-gate__confirm {
    width: 200px;
    height: 55px;
    font-size: 14px;
  }
}

@media (min-width: 1025px) {
  .age-gate__dialog {
    width: 600px;
  }

  .age-gate__title {
    font-size: 45px;
  }

  .age-gate__desc {
    font-size: 16px;
    line-height: 1.5;
  }
}

.filter-panel__option--radio {
  border-bottom: 1px solid rgba(64, 55, 49, 0.1);
}

.filter-panel__option--radio:last-child {
  border-bottom: none;
}

.filter-panel__option input[type="radio"] {
  width: 20px;
  height: 20px;
  accent-color: var(--color-orange);
  cursor: pointer;
}

/* Explore Responsive - Large Desktop (1440px+) */
@media (min-width: 1441px) {
  .explore-hero {
    padding: 180px 60px 80px;
  }
  
  .explore-filters {
    padding: 40px 60px;
  }
  
  .explore-results {
    padding: 0 60px 60px;
  }
}

/* Explore Responsive - Desktop (1280px) */
@media (max-width: 1280px) {
  .explore-hero__title {
    font-size: 70px;
  }
  
  .explore-search {
    width: 600px;
  }
  
  .cigars-grid {
    gap: 30px;
  }
}

/* Explore Responsive - Tablet Landscape (1024px) */
@media (max-width: 1024px) {
  .explore-hero {
    padding: 140px 30px 60px;
  }
  
  .explore-hero__title {
    font-size: 56px;
  }
  
  .explore-search {
    width: 100%;
    max-width: 560px;
  }
  
  .explore-stats {
    gap: 20px;
  }
  
  .explore-stats__item {
    width: 120px;
    height: 70px;
  }
  
  .explore-stats__number {
    font-size: 20px;
  }
  
  .explore-filters {
    padding: 30px;
  }
  
  .explore-filters__chips {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  
  .explore-filters__chips::-webkit-scrollbar {
    display: none;
  }
  
  .explore-results {
    padding: 0 30px 30px;
  }
  
  .cigars-grid {
    gap: 24px;
  }
  
  .cigar-card {
    width: calc(50% - 12px);
    max-width: none;
  }
}

/* Explore Responsive - Tablet Portrait (768px) */
@media (max-width: 768px) {
  .explore-hero {
    padding: 120px 20px 50px;
  }
  
  .explore-hero__container {
    gap: 30px;
  }
  
  .explore-hero__title {
    font-size: 44px;
  }
  
  .explore-search {
    width: 100%;
    height: 50px;
  }
  
  .explore-search__input {
    height: 50px;
    font-size: 15px;
    padding: 0 16px 0 48px;
  }
  
  .explore-search__icon {
    left: 14px;
    width: 22px;
    height: 22px;
  }
  
  .explore-stats {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }
  
  .explore-stats__item {
    width: 100px;
    height: 60px;
  }
  
  .explore-stats__number {
    font-size: 18px;
    margin-bottom: 6px;
  }
  
  .explore-stats__label {
    font-size: 9px;
  }
  
  .explore-filters {
    padding: 20px;
  }
  
  .explore-filters__container {
    flex-wrap: nowrap; /* keep icon and chips on one row */
    align-items: center;
    gap: 12px;
  }
  
  .explore-filters__reset {
    width: 40px;
    height: 40px;
  }
  
  .explore-filters__settings {
    width: 50px;
    height: 40px;
    flex-shrink: 0;
  }
  
  .explore-filters__chips {
    display: flex;
    flex: 1 1 auto;
    min-width: 0;
    overflow-x: auto;
    flex-wrap: nowrap;
    gap: 10px;
    -webkit-overflow-scrolling: touch;
  }
  
  .explore-filters__chip {
    flex-shrink: 0;
    padding: 10px 14px;
    font-size: 12px;
    border-radius: 16px;
  }
  
  .explore-filters__chip--brand {
    padding: 10px 14px;
  }
  
  .explore-results {
    padding: 0 20px 20px;
  }
  
  .cigars-grid {
    gap: 20px;
  }
  
  .cigar-card {
    width: 100%;
    max-width: 354px;
  }
  
  .cigar-card__image-wrapper {
    height: 150px;
  }
  
  .cigar-card__content {
    padding: 24px;
    margin-top: -15px;
    gap: 16px;
  }
  
  .cigar-card__title {
    font-size: 18px;
  }
  
  .cigar-card__description {
    font-size: 13px;
    -webkit-line-clamp: 3;
    line-clamp: 3;
  }
  
  .cigar-card__tags {
    gap: 8px;
  }
  
  .cigar-card__tag {
    font-size: 11px;
    padding: 4px 10px;
  }
  
  .skeleton-card {
    width: 100%;
    max-width: 354px;
  }
}

/* Explore Responsive - Mobile (480px) */
@media (max-width: 480px) {
  .explore-hero {
    padding: 110px 16px 40px;
  }
  
  .explore-hero__container {
    gap: 24px;
  }
  
  .explore-hero__title {
    font-size: 36px;
    line-height: 0.95;
  }
  
  .explore-search {
    height: 48px;
  }
  
  .explore-search__input {
    height: 48px;
    font-size: 14px;
    padding: 0 14px 0 44px;
    border-radius: 8px;
  }
  
  .explore-search__icon {
    left: 12px;
    width: 20px;
    height: 20px;
  }
  
  .explore-stats {
    gap: 10px;
  }
  
  .explore-stats__item {
    width: calc(33.33% - 7px);
    min-width: 90px;
    height: 56px;
    border-radius: 8px;
  }
  
  .explore-stats__number {
    font-size: 16px;
    margin-bottom: 4px;
  }
  
  .explore-stats__label {
    font-size: 8px;
    letter-spacing: 0.3px;
  }
  
  .explore-filters {
    padding: 16px;
  }
  
  .explore-filters__container {
    gap: 10px;
  }
  
  .explore-filters__reset {
    width: 36px;
    height: 36px;
  }
  
  .explore-filters__reset svg {
    width: 8px;
    height: 8px;
  }
  
  .explore-filters__settings {
    width: 44px;
    height: 36px;
    border-radius: 16px;
  }
  
  .explore-filters__settings svg {
    width: 18px;
    height: 18px;
  }
  
  .explore-filters__chips {
    gap: 8px;
  }
  
  .explore-filters__chip {
    padding: 8px 12px;
    font-size: 11px;
    border-radius: 14px;
  }
  
  .explore-filters__chip svg {
    width: 14px;
    height: 14px;
  }
  
  .explore-results {
    padding: 0 16px 16px;
  }
  
  .cigars-grid {
    gap: 16px;
  }
  
  .cigar-card__image-wrapper {
    height: 140px;
    border-radius: 8px 8px 0 0;
  }
  
  .cigar-card__content {
    padding: 20px;
    margin-top: -12px;
    border-radius: 8px;
    gap: 14px;
  }
  
  .cigar-card__actions {
    top: 12px;
    right: 12px;
    gap: 8px;
  }
  
  .cigar-card__action-btn {
    width: 28px;
    height: 28px;
  }
  
  .cigar-card__title {
    font-size: 16px;
  }
  
  .cigar-card__description {
    font-size: 12px;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
  
  .cigar-card__footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .cigar-card__tags {
    width: 100%;
  }
  
  .skeleton-card__content {
    padding: 20px;
  }
}

/* Explore Responsive - Small Mobile (375px) */
@media (max-width: 375px) {
  .explore-hero {
    padding: 100px 12px 36px;
  }
  
  .explore-hero__title {
    font-size: 30px;
  }
  
  .explore-search__input {
    font-size: 13px;
  }
  
  .explore-stats__item {
    min-width: 80px;
    height: 50px;
  }
  
  .explore-stats__number {
    font-size: 14px;
  }
  
  .explore-stats__label {
    font-size: 7px;
  }
  
  .explore-filters {
    padding: 20px 10px;
  }
  
  .explore-filters__container {
    gap: 5px;
  }
  
  .explore-filters__reset {
    width: 30px;
    height: 30px;
  }
  
  .explore-filters__reset svg {
    width: 6px;
    height: 6px;
  }
  
  .explore-filters__settings {
    width: 40px;
    height: 30px;
    border-radius: 20px;
  }
  
  .explore-filters__settings svg {
    width: 16px;
    height: 16px;
    display: block;
  }
  
  .explore-filters__chips {
    gap: 5px;
  }
  
  .explore-filters__chip {
    height: 30px;
    padding: 0 12px;
    font-size: 10px;
    gap: 4px;
    border-radius: 100px;
    line-height: 1;
  }
  
  .explore-filters__chip--brand {
    padding: 0 12px;
  }
  
  .explore-filters__chip svg {
    width: 12px;
    height: 12px;
  }
  
  .explore-results {
    padding: 0 10px 10px;
  }
  
  .cigars-grid {
    gap: 12px;
  }
  
  .cigar-card__content {
    padding: 16px;
  }
  
  .cigar-card__title {
    font-size: 15px;
  }
  
  .cigar-card__tag {
    font-size: 10px;
    padding: 3px 8px;
  }
}

/* Filter Panel Responsive - Tablet (side panel on left) */
@media (min-width: 769px) {
  .filter-panel {
    align-items: stretch;
    justify-content: flex-start;
  }
  
  .filter-panel__content {
    max-width: 500px;
    max-height: 100vh;
    height: 100%;
    border-radius: 0;
    transform: translateX(-100%);
  }
  
  .filter-panel--open .filter-panel__content {
    transform: translateX(0);
  }
  
  .filter-panel__header {
    padding: 24px 30px;
  }
  
  .filter-panel__body {
    padding: 20px 30px;
  }
  
  .filter-panel__footer {
    padding: 20px 30px;
    margin-top: auto;
  }
  
  .filter-panel__apply {
    height: 55px;
  }
}

/* Filter Panel Responsive - Mobile */
@media (max-width: 768px) {
  .filter-panel__content {
    width: 100%;
    max-width: none;
    border-radius: 20px 20px 0 0;
  }
  
  .filter-panel__header {
    padding: 16px 20px;
  }
  
  .filter-panel__title {
    font-size: 18px;
  }
  
  .filter-panel__body {
    padding: 16px 20px;
  }
  
  .filter-panel__option {
    padding: 10px 14px;
  }
  
  .filter-panel__option label {
    font-size: 13px;
  }
  
  .filter-panel__footer {
    padding: 16px 20px;
  }
}

@media (max-width: 480px) {
  .filter-panel__content {
    border-radius: 16px 16px 0 0;
  }
  
  .filter-panel__header {
    padding: 14px 16px;
  }
  
  .filter-panel__title {
    font-size: 16px;
  }
  
  .filter-panel__close {
    width: 28px;
    height: 28px;
  }
  
  .filter-panel__body {
    padding: 14px 16px;
  }
  
  .filter-panel__search-input {
    height: 38px;
    font-size: 13px;
  }
  
  .filter-panel__option {
    padding: 8px 12px;
    gap: 10px;
  }
  
  .filter-panel__option input[type="checkbox"] {
    width: 18px;
    height: 18px;
  }
  
  .filter-panel__option label {
    font-size: 12px;
  }
  
  .filter-panel__footer {
    padding: 14px 16px;
  }
}

/* Header transparent variant for explore */
.header--transparent {
  background-color: var(--color-beige);
}

/* Header white variant for cigar page */
.header--white {
  background-color: #fff;
}

.header__nav-link--active {
  color: var(--color-orange);
  font-weight: 600;
}

/* ========================================
   CIGAR PAGE
   ======================================== */

.cigar-page {
  padding: 120px 40px 120px;
  background-color: #fff;
  min-height: 100vh;
  width: 100%;
  align-self: stretch;
}

.cigar-page__container {
  max-width: 1360px;
  margin: 0 auto;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 60px;
}

.cigar-page__sections {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 60px;
  padding-left: 138px;
}

 .cigar-page__sections > .similar-cigars {
   margin-bottom: 60px;
 }

/* Cigar Page Skeleton Loading */
.cigar-skeleton {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.cigar-skeleton .cigar-content {
  display: flex;
  gap: 40px;
}

.cigar-skeleton__gallery {
  display: flex;
  gap: 30px;
  width: 600px;
  height: 600px;
  flex-shrink: 0;
}

.cigar-skeleton__thumbs {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100px;
}

.cigar-skeleton__thumb {
  width: 100px;
  height: 100px;
  border-radius: 10px;
  background: linear-gradient(90deg, #f0ebe4 25%, #e8e3dc 50%, #f0ebe4 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

.cigar-skeleton__main {
  flex: 1;
  height: 100%;
  border-radius: 20px;
  background: linear-gradient(90deg, #f0ebe4 25%, #e8e3dc 50%, #f0ebe4 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

.cigar-skeleton__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.cigar-skeleton__title {
  height: 50px;
  width: 80%;
  border-radius: 8px;
  background: linear-gradient(90deg, #f0ebe4 25%, #e8e3dc 50%, #f0ebe4 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

.cigar-skeleton__tags {
  display: flex;
  gap: 12px;
}

.cigar-skeleton__tag {
  width: 60px;
  height: 32px;
  border-radius: 20px;
  background: linear-gradient(90deg, #f0ebe4 25%, #e8e3dc 50%, #f0ebe4 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

.cigar-skeleton__sections {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-left: 130px;
}

.cigar-skeleton__description {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cigar-skeleton__line {
  height: 20px;
  width: 100%;
  max-width: 800px;
  border-radius: 4px;
  background: linear-gradient(90deg, #f0ebe4 25%, #e8e3dc 50%, #f0ebe4 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

.cigar-skeleton__line--short {
  width: 60%;
}

.cigar-skeleton__specs {
  display: flex;
  gap: 60px;
}

.cigar-skeleton__specs-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
  max-width: 300px;
}

.cigar-skeleton__spec {
  height: 20px;
  width: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, #f0ebe4 25%, #e8e3dc 50%, #f0ebe4 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

/* Back Button */
.cigar-page__back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: var(--color-brown);
  margin-bottom: 0;
  transition: color 0.2s ease;
}

.cigar-page__back:hover {
  color: var(--color-orange);
}

/* Cigar Content Layout */
.cigar-content {
  display: flex;
  gap: 40px;
  margin-bottom: 0;
}

/* Gallery */
.cigar-gallery {
  display: flex;
  gap: 30px;
  width: 738px;
  height: 600px;
  flex-shrink: 0;
}

.cigar-gallery__thumbs {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.cigar-gallery__thumb {
  width: 108px;
  height: 108px;
  border-radius: 5px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s ease;
}

.cigar-gallery__thumb:hover,
.cigar-gallery__thumb--active {
  border-color: var(--color-orange);
}

.cigar-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background-color: var(--color-beige);
}

.cigar-gallery__thumb--add {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(64, 55, 49, 0.1);
  background: transparent;
}

.cigar-gallery__thumb--add svg {
  width: 24px;
  height: 24px;
  color: var(--color-brown);
  opacity: 0.4;
}

.cigar-gallery__main {
  flex: 1;
  height: 600px;
  border-radius: 10px;
  overflow: hidden;
  background-color: var(--color-beige);
}

.cigar-gallery__image-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cigar-gallery__image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.cigar-gallery__thumb--wheel {
  background-color: var(--color-beige);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cigar-gallery__wheel-thumb {
  width: 100%;
  height: 100%;
}

.cigar-gallery__wheel {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cigar-gallery__wheel-content {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  aspect-ratio: 1 / 1;
}

.cigar-gallery__wheel-svg {
  width: 100%;
  height: 100%;
}

/* Cigar Info */
.cigar-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
  min-width: 0;
  overflow: hidden;
}

.cigar-info__header {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.cigar-info__title {
  flex: 1;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 45px;
  line-height: 1.2;
  color: var(--color-brown);
  margin: 0;
}

.cigar-info__actions {
  display: flex;
  gap: 10px;
}

.cigar-info__action {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--color-brown);
  padding: 0;
  transition: color 0.2s ease;
}

.cigar-info__action:hover {
  color: var(--color-orange);
}

.cigar-info__action--active {
  color: var(--color-orange);
}

.cigar-info__action--active svg path {
  fill: var(--color-orange);
}

/* More options dropdown */
.cigar-info__dropdown {
  position: fixed;
  top: auto;
  right: 16px;
  margin-top: 8px;
  min-width: 160px;
  background: var(--color-white);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(64, 55, 49, 0.15);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s ease;
  z-index: 1000;
}

@media (min-width: 769px) {
  .cigar-info__dropdown {
    position: absolute;
    right: 0;
  }
}

.cigar-info__dropdown.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.cigar-info__dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 16px;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-brown);
  cursor: pointer;
  transition: background 0.2s ease;
  text-align: left;
}

.cigar-info__dropdown-item:hover {
  background: rgba(166, 87, 56, 0.08);
}

.cigar-info__dropdown-item svg {
  color: var(--color-orange);
  flex-shrink: 0;
}

/* Tags */
.cigar-info__tags {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cigar-info__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  background-color: var(--color-beige);
  border-radius: 4px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--color-brown);
  text-transform: uppercase;
}

 .cigar-info__tag--flavor {
   padding: 10px;
   font-weight: 400;
   color: var(--color-orange);
   text-transform: lowercase;
 }

.cigar-info__tag img {
  width: 20px;
  height: 14px;
  object-fit: cover;
  border-radius: 2px;
}

/* Rating Block (Desktop Only) */
.cigar-info__rating {
  display: none;
  flex-direction: column;
  gap: 4px;
  margin-top: 40px;
}

.cigar-info__rating-score {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 26px;
  line-height: 0.9;
  color: var(--color-brown);
  text-transform: uppercase;
}

.cigar-info__rating-stars {
  display: flex;
  gap: 0;
  height: 20px;
}

.cigar-info__rating-stars svg {
  width: 20px;
  height: 20px;
  color: var(--color-orange);
  fill: var(--color-orange);
}

.cigar-info__rating-stars .cigar-ratings__star--empty {
  color: rgba(64, 55, 49, 0.2);
  fill: none;
  stroke: rgba(64, 55, 49, 0.3);
}

.cigar-info__rating-count {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  line-height: 1.3;
  color: var(--color-brown);
}

/* Description - Full Width Below Gallery */
.cigar-description {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-brown);
  margin: 0;
  max-width: 800px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Specs Table - Two Columns Horizontal */
.cigar-specs {
  display: flex;
  gap: 200px;
  margin-bottom: 0;
}

.cigar-specs__column {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 444px;
  min-width: 0;
  flex-shrink: 1;
}

.cigar-specs__item {
  display: flex;
  align-items: flex-end;
  gap: 4px;
}

.cigar-specs__label {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  color: var(--color-brown);
  opacity: 0.5;
  white-space: nowrap;
  line-height: 1;
}

.cigar-specs__divider {
  flex: 1;
  height: 0;
  border-bottom: 1px dotted rgba(64, 55, 49, 0.3);
  margin-bottom: 4px;
}

.cigar-specs__value {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  color: var(--color-brown);
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  line-height: 1;
}

.cigar-specs__flag {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

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

.cigar-specs__strength {
  display: flex;
  gap: 6px;
  align-items: center;
}

.cigar-specs__strength-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(64, 55, 49, 0.2);
}

.cigar-specs__strength-dot--filled {
  background-color: var(--color-orange);
}

/* Similar Cigars */
.similar-cigars {
  margin-bottom: 0;
}

.similar-cigars__title {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 24px;
  color: var(--color-brown);
  margin: 0 0 30px;
}

.similar-cigars__grid {
  display: flex;
  gap: 20px;
  justify-content: flex-start;
}

/* Similar Cigar Card */
.similar-card {
  width: 300px;
  height: 300px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0px 5px 20px rgba(64, 55, 49, 0.1);
  padding: 20px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.similar-card:hover {
  box-shadow: 0px 8px 30px rgba(64, 55, 49, 0.15);
  transform: translateY(-2px);
}

.similar-card__image {
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.similar-card__image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.similar-card__image img[src*="Unknown_cigar"] {
  max-width: 80%;
  max-height: 80%;
  opacity: 0.9;
}

.similar-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 0;
  overflow: hidden;
}

.similar-card__title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 18px;
  line-height: 1;
  color: var(--color-brown);
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.similar-card__description {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3;
  color: var(--color-brown);
  margin: 0;
  flex: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  -webkit-box-orient: vertical;
}

.similar-card__footer {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: auto;
}

.similar-card__country {
  display: flex;
  align-items: center;
  gap: 6px;
}

.similar-card__flag {
  width: 16px;
  height: 12px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.similar-card__flag img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.similar-card__country-name {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  color: var(--color-brown);
}

.similar-card__rating {
  display: flex;
  align-items: center;
  gap: 6px;
}

.similar-card__rating svg {
  width: 16px;
  height: 16px;
  color: var(--color-orange);
  fill: var(--color-orange);
}

.similar-card__rating-value {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  color: var(--color-brown);
}

/* Taste Wheel */
.taste-wheel {
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.taste-wheel__title {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.3;
  color: var(--color-brown);
  margin-bottom: 30px;
}

.taste-wheel__container {
  position: relative;
  width: 600px;
  height: 600px;
  background-color: var(--color-beige);
  border-radius: 20px;
}

.taste-wheel__svg {
  width: 100%;
  height: 100%;
}

.taste-wheel__polygon {
  transition: all 0.5s ease;
}

.taste-wheel__dot {
  transition: all 0.3s ease;
}

.taste-wheel__dots {
  pointer-events: none;
}

.taste-wheel__label {
  position: absolute;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.3;
  color: var(--color-orange);
  white-space: nowrap;
}

.taste-wheel__label--coffee {
  top: 16.2%;
  left: 50%;
  transform: translateX(-50%);
}

.taste-wheel__label--chocolate {
  top: 23.5%;
  left: calc(50% + 16.5%);
}

.taste-wheel__label--cream {
  top: 38.8%;
  left: calc(50% + 27.9%);
}

.taste-wheel__label--nuts {
  top: 57.2%;
  left: calc(50% + 27.9%);
}

.taste-wheel__label--fruit {
  top: 73.8%;
  left: calc(50% + 16.9%);
}

.taste-wheel__label--wood {
  top: 80.2%;
  left: 50%;
  transform: translateX(-50%);
}

.taste-wheel__label--spice {
  top: 73.8%;
  right: calc(50% + 16.9%);
  text-align: right;
}

.taste-wheel__label--herb {
  top: 57.2%;
  right: calc(50% + 27.9%);
  text-align: right;
}

.taste-wheel__label--earth {
  top: 38.8%;
  right: calc(50% + 27.9%);
  text-align: right;
}

.taste-wheel__label--leather {
  top: 23.5%;
  right: calc(50% + 16.5%);
  text-align: right;
}

/* Ratings Section */
.cigar-ratings {
  margin-bottom: 0;
}

.cigar-ratings__inner {
  display: inline-flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.cigar-ratings__score {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  flex-shrink: 0;
}

.cigar-ratings__number {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 45px;
  color: var(--color-brown);
  line-height: 0.9;
  text-transform: uppercase;
}

.cigar-ratings__stars {
  display: flex;
  gap: 4px;
  width: 116px;
  height: 20px;
}

.cigar-ratings__star {
  width: 20px;
  height: 20px;
  color: var(--color-brown);
  fill: var(--color-brown);
}

.cigar-ratings__star--empty {
  color: rgba(64, 55, 49, 0.2);
  fill: none;
  stroke: rgba(64, 55, 49, 0.3);
}

.cigar-ratings__count {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.3;
  color: var(--color-brown);
}

.cigar-ratings__divider {
  width: 1px;
  height: 132px;
  border-left: 1px dotted rgba(64, 55, 49, 0.3);
  flex-shrink: 0;
}

.cigar-ratings__breakdown {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 294px;
  flex-shrink: 0;
}

.cigar-ratings__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cigar-ratings__label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.3;
  color: var(--color-brown);
  width: 70px;
  flex-shrink: 0;
}

.cigar-ratings__bar {
  position: relative;
  width: 140px;
  height: 12px;
  flex-shrink: 0;
}

.cigar-ratings__bar-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(166, 87, 56, 0.1);
  border-radius: 10px;
}

.cigar-ratings__bar-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background-color: var(--color-orange);
  border-radius: 10px;
  transition: width 0.3s ease;
}

.cigar-ratings__value {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  line-height: 0.9;
  color: var(--color-brown);
  text-transform: uppercase;
  min-width: 36px;
  text-align: right;
  justify-self: end;
}

/* Mentions Section */
.cigar-mentions {
  margin-bottom: 0;
}

.cigar-mentions__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 40px;
}

.cigar-mentions__title {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 32px;
  line-height: 1.15;
  color: var(--color-brown);
  margin: 0;
}

.cigar-mentions__view-all {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.3;
  color: var(--color-orange);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.cigar-mentions__view-all:hover {
  text-decoration: underline;
}

.cigar-mentions__grid {
  display: flex;
  gap: 10px;
  align-items: stretch;
}

.cigar-mentions__empty {
  width: 100%;
  min-width: 100%;
  background: rgba(64, 55, 49, 0.05);
  border-radius: 10px;
  padding: 20px;
}

.cigar-mentions__empty-text {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-brown);
}

.cigar-mentions__empty-link {
  color: var(--color-orange);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Mention Card */
.mention-card {
  width: 354px;
  flex: 0 0 auto;
  background: rgba(64, 55, 49, 0.05);
  padding: 20px;
  border: none;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mention-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(64, 55, 49, 0.15);
}

.mention-card__header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mention-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.mention-card__avatar--fallback {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(166, 87, 56, 0.25);
  color: rgba(64, 55, 49, 0.7);
}

.mention-card__avatar--fallback svg {
  width: 18px;
  height: 18px;
}

.mention-card__user {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mention-card__name {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-brown);
}

.mention-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 12px;
  color: var(--color-brown);
  opacity: 0.5;
}

.mention-card__cigar {
  display: flex;
  align-items: center;
  gap: 4px;
}

.mention-card__cigar-icon {
  width: 12px;
  height: 12px;
}

.mention-card__ratings {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.mention-card__rating-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mention-card__rating-label {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 12px;
  color: var(--color-brown);
  opacity: 0.5;
}

.mention-card__rating-value {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--color-brown);
}

.mention-card__overall {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mention-card__overall-score {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 26px;
  line-height: 0.9;
  color: var(--color-brown);
}

.mention-card__overall-stars {
  display: flex;
  gap: 2px;
}

.mention-card__overall-stars svg {
  width: 16px;
  height: 16px;
  color: var(--color-orange);
}

.mention-card__text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-brown);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mention-card__photos {
  display: flex;
  gap: 10px;
}

.mention-card__photo {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  object-fit: cover;
}

.mention-card__show-more {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  line-height: 1.5;
  color: var(--color-orange);
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  align-self: flex-end;
}

.mention-card__show-more:hover {
  text-decoration: underline;
}

/* ========================================
   MENTIONS PAGE
   ======================================== */

.mentions-page {
  padding: 120px 40px 60px;
  background-color: #fff;
  min-height: 100vh;
  width: 100%;
  align-self: stretch;
}

.mentions-page__container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
}

.mentions-all-page .page-wrapper {
  background-color: #fff;
}

.mentions-all-page .mentions-page {
  padding: 120px 40px 120px;
}

.mentions-all-page .mentions-page__container {
  max-width: 1360px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.mentions-all__top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 32px;
  max-width: 728px;
}

.mentions-all__back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: var(--color-orange);
  text-decoration: none;
}

.mentions-all__feedback {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--color-orange);
  text-decoration: none;
}

.mentions-all__feedback--tablet {
  display: none;
}

.mentions-all__feedback--desktop {
  display: inline-flex;
  margin-top: 0;
}

.mentions-all__layout {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1360px;
}

.mentions-all__left {
  width: 573px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.mentions-all__right {
  width: 746px;
}

.mentions-all__titleblock {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
}

.mentions-all__subtitle {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 32px;
  line-height: 1.2;
  color: rgba(64, 55, 49, 0.5);
}

.mentions-all__title {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 45px;
  line-height: 1.2;
  color: var(--color-brown);
}

.mentions-all__summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 444px;
  padding: 0;
}

.mentions-all__summary-score {
  width: 80px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mentions-all__score {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 45px;
  line-height: 0.9;
  text-transform: uppercase;
  color: var(--color-brown);
}

.mentions-all__stars {
  display: flex;
}

.mentions-all__stars svg {
  width: 20px;
  height: 20px;
  color: var(--color-orange);
}

.mentions-all__reviews {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.3;
  color: var(--color-brown);
}

.mentions-all__divider {
  width: 1px;
  height: 132px;
  background: rgba(64, 55, 49, 0.1);
  margin: 0 34px;
}

.mentions-all__bars {
  width: 294px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mentions-all__bar {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.mentions-all__bar-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.3;
  color: var(--color-brown);
}

.mentions-all__bar-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 22px;
}

.mentions-all__bar-track {
  width: 140px;
  height: 12px;
  background: rgba(166, 87, 56, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

.mentions-all__bar-fill {
  height: 100%;
  background: var(--color-orange);
  border-radius: 10px;
  width: 0;
}

.mentions-all__bar-value {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  line-height: 0.9;
  text-transform: uppercase;
  color: var(--color-brown);
  width: 34px;
  text-align: right;
}

.mentions-all__list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
  padding: 0;
}

@media (max-width: 1024px) {
  .mentions-all-page .header {
    height: 115px;
    background-color: #fff;
  }

  .mentions-all-page .header__inner {
    padding: 30px;
    max-width: 768px;
  }

  .mentions-all-page .header__nav {
    display: none;
  }

  .mentions-all-page .header__burger {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgba(64, 55, 49, 0.05);
    position: relative;
  }

  .mentions-all-page .header__burger-line {
    display: none;
  }

  .mentions-all-page .header__burger::before,
  .mentions-all-page .header__burger::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 18px;
    height: 2px;
    background: var(--color-orange);
    transform: translate(-50%, -50%);
    border-radius: 2px;
  }

  .mentions-all-page .header__burger::after {
    transform: translate(-50%, -50%) rotate(90deg);
  }

  .mentions-all-page .mentions-page {
    padding: 115px 20px 60px;
  }

  .mentions-all-page .mentions-page__container {
    max-width: 728px;
  }

  .mentions-all__top {
    justify-content: space-between;
    max-width: none;
  }

  .mentions-all__feedback--tablet {
    display: inline-flex;
  }

  .mentions-all__feedback--desktop {
    display: none;
  }

  .mentions-all__layout {
    flex-direction: column;
    gap: 60px;
  }

  .mentions-all__left,
  .mentions-all__right {
    width: 100%;
  }

  .mentions-all__subtitle {
    font-size: 24px;
  }

  .mentions-all__title {
    font-size: 32px;
  }

  .mentions-all__summary {
    width: 100%;
    padding: 0 30px;
  }

  .mentions-all__score {
    font-size: 32px;
  }

  .mentions-all__stars svg {
    width: 16px;
    height: 16px;
  }

  .mentions-all__reviews {
    font-size: 12px;
  }

  .mentions-all__divider {
    height: 100px;
    margin: 0 44px;
  }

  .mentions-all__bars {
    width: 500px;
    gap: 12px;
  }

  .mentions-all__bar-label {
    font-size: 12px;
  }

  .mentions-all__bar-right {
    gap: 20px;
  }

  .mentions-all__bar-track {
    width: 365px;
    height: 10px;
  }

  .mentions-all__bar-value {
    font-size: 14px;
  }

  .mentions-all__list {
    gap: 20px;
    padding: 0 30px;
  }

  .mentions-all-card__meta-left {
    width: 252px;
  }
}

.mentions-all__load-more {
  margin-top: 30px;
  align-self: center;
  width: 200px;
}

.mentions-all-card {
  width: 100%;
  box-sizing: border-box;
  background: rgba(64, 55, 49, 0.05);
  border-radius: 10px;
  padding: 30px;
}

.mentions-all-card__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.mentions-all-card__avatar {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
}

.mentions-all-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.mentions-all-card__avatar .mention-card__avatar--fallback {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(166, 87, 56, 0.25);
  color: rgba(64, 55, 49, 0.7);
}

.mentions-all-card__header-text {
  display: flex;
  flex-direction: column;
}

.mentions-all-card__name {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-brown);
}

.mentions-all-card__location {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 12px;
  line-height: 1.3;
  color: rgba(64, 55, 49, 0.5);
}

.mentions-all-card__meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.mentions-all-card__meta-left {
  width: 330px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mentions-all-card__meta-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mentions-all-card__meta-ic {
  width: 16px;
  height: 16px;
  color: rgba(64, 55, 49, 0.5);
  display: inline-flex;
}

.mentions-all-card__meta-ic svg {
  width: 16px;
  height: 16px;
}

.mentions-all-card__meta-text {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.3;
  color: var(--color-brown);
}

.mentions-all-card__meta-right {
  width: 340px;
  display: flex;
  gap: 20px;
}

.mentions-all-card__rating-left {
  width: 80px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mentions-all-card__rating-score {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 32px;
  line-height: 0.9;
  text-transform: uppercase;
  color: var(--color-brown);
}

.mentions-all-card__rating-stars {
  display: flex;
}

.mentions-all-card__rating-stars svg {
  width: 16px;
  height: 16px;
  color: var(--color-orange);
}

.mentions-all-card__rating-count {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  line-height: 1.3;
  color: var(--color-brown);
}

.mentions-all-card__rating-divider {
  width: 1px;
  height: 100px;
  background: rgba(64, 55, 49, 0.1);
}

.mentions-all-card__rating-bars {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mentions-all-card__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mentions-all-card__bar-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  line-height: 1.3;
  color: var(--color-brown);
}

.mentions-all-card__bar-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mentions-all-card__bar-track {
  width: 90px;
  height: 10px;
  background: rgba(166, 87, 56, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

.mentions-all-card__bar-fill {
  height: 100%;
  background: var(--color-orange);
  border-radius: 10px;
}

.mentions-all-card__bar-value {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  line-height: 0.9;
  text-transform: uppercase;
  color: var(--color-brown);
  width: 34px;
  text-align: right;
}

.mentions-all-card__text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  color: rgba(64, 55, 49, 0.8);
}

.mentions-all-card__photos {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.mentions-all-card__photo {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  object-fit: cover;
  background: rgba(64, 55, 49, 0.08);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mentions-all-card__photo:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Highlight effect for anchor scroll target */
.mentions-all-card--highlight {
  animation: highlight-pulse 2s ease-out;
}

@keyframes highlight-pulse {
  0% {
    box-shadow: 0 0 0 4px rgba(166, 87, 56, 0.5);
  }
  100% {
    box-shadow: 0 5px 20px rgba(64, 55, 49, 0.1);
  }
}

/* Mentions Skeleton Loading */
.mentions-all__skeleton {
  width: 100%;
}

.mentions-skeleton__line {
  background: linear-gradient(90deg, #f0ebe4 25%, #e8e3dc 50%, #f0ebe4 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 4px;
}

.mentions-skeleton__line--short {
  width: 180px;
  height: 32px;
  margin-bottom: 8px;
}

.mentions-skeleton__line--title {
  width: 320px;
  height: 45px;
}

.mentions-skeleton__line--score {
  width: 60px;
  height: 40px;
  margin-bottom: 8px;
}

.mentions-skeleton__line--stars {
  width: 100px;
  height: 20px;
  margin-bottom: 6px;
}

.mentions-skeleton__line--review {
  width: 60px;
  height: 14px;
}

.mentions-skeleton__bar {
  width: 100%;
  height: 18px;
  background: linear-gradient(90deg, #f0ebe4 25%, #e8e3dc 50%, #f0ebe4 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 4px;
}

.mentions-skeleton__card {
  width: 100%;
  height: 380px;
  background: linear-gradient(90deg, #f0ebe4 25%, #e8e3dc 50%, #f0ebe4 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 10px;
  margin-bottom: 40px;
}

/* Mobile: 480px and below - Figma 135:1821 (320px design) */
@media (max-width: 480px) {
  .mentions-all-page .header {
    height: 72px;
  }

  .mentions-all-page .header__inner {
    height: 72px;
    padding: 0 10px;
  }

  .mentions-all-page .header__burger {
    width: 32px;
    height: 32px;
  }

  .mentions-all-page .header__burger::before,
  .mentions-all-page .header__burger::after {
    width: 12px;
    height: 1.5px;
  }

  .mentions-all-page .header__burger.is-open::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .mentions-all-page .header__burger.is-open::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .mentions-all-page .header__nav.is-open {
    top: 72px;
    right: 10px;
  }

  .mentions-all-page .mentions-page {
    padding: 72px 10px 30px;
  }

  .mentions-all-page .mentions-page__container {
    max-width: 100%;
    gap: 30px;
  }

  .mentions-all__top {
    height: 24px;
  }

  .mentions-all__back {
    width: 24px;
    height: 24px;
  }

  .mentions-all__back svg {
    width: 24px;
    height: 24px;
  }

  .mentions-all__layout {
    flex-direction: column;
    gap: 30px;
  }

  .mentions-all__left,
  .mentions-all__right {
    width: 100%;
  }

  .mentions-all__titleblock {
    gap: 4px;
  }

  .mentions-all__subtitle {
    font-size: 17px;
  }

  .mentions-all__title {
    font-size: 24px;
  }

  .mentions-all__summary {
    width: 100%;
    padding: 0;
    justify-content: space-between;
    gap: 0;
  }

  .mentions-all__summary-score {
    width: 70px;
    flex-shrink: 0;
  }

  .mentions-all__score {
    font-size: 24px;
  }

  .mentions-all__stars svg {
    width: 14px;
    height: 14px;
  }

  .mentions-all__reviews {
    font-size: 10px;
  }

  .mentions-all__divider {
    height: 80px;
    margin: 0 8px;
    flex-shrink: 0;
  }

  .mentions-all__bars {
    flex: 1;
    min-width: 0;
    gap: 10px;
  }

  .mentions-all__bar {
    width: 100%;
  }

  .mentions-all__bar-label {
    font-size: 10px;
    min-width: 55px;
    flex-shrink: 0;
  }

  .mentions-all__bar-right {
    flex: 1;
    gap: 6px;
    min-width: 0;
  }

  .mentions-all__bar-track {
    flex: 1;
    min-width: 50px;
    max-width: 80px;
    height: 10px;
  }

  .mentions-all__bar-value {
    font-size: 11px;
    width: 22px;
    flex-shrink: 0;
    text-align: right;
  }

  .mentions-all__list {
    gap: 20px;
    padding: 0;
  }

  .mentions-all-card {
    padding: 16px;
  }

  .mentions-all-card__header {
    gap: 8px;
    margin-bottom: 16px;
  }

  .mentions-all-card__avatar {
    width: 32px;
    height: 32px;
  }

  .mentions-all-card__name {
    font-size: 14px;
  }

  .mentions-all-card__location {
    font-size: 12px;
  }

  .mentions-all-card__meta {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 16px;
  }

  .mentions-all-card__meta-left {
    width: 100%;
  }

  .mentions-all-card__meta-row {
    gap: 6px;
  }

  .mentions-all-card__meta-ic svg {
    width: 14px;
    height: 14px;
  }

  .mentions-all-card__meta-text {
    font-size: 12px;
  }

  .mentions-all-card__meta-right {
    width: 100%;
    gap: 12px;
  }

  .mentions-all-card__rating-left {
    gap: 4px;
  }

  .mentions-all-card__rating-score {
    font-size: 20px;
  }

  .mentions-all-card__rating-stars svg {
    width: 12px;
    height: 12px;
  }

  .mentions-all-card__rating-count {
    font-size: 10px;
  }

  .mentions-all-card__rating-divider {
    height: 70px;
  }

  .mentions-all-card__rating-bars {
    gap: 8px;
  }

  .mentions-all-card__small-bar-label {
    font-size: 10px;
  }

  .mentions-all-card__small-bar-track {
    width: 80px;
    height: 8px;
  }

  .mentions-all-card__small-bar-value {
    font-size: 10px;
  }

  .mentions-all-card__text {
    font-size: 12px;
  }

  .mentions-all-card__photos {
    margin-top: 16px;
  }

  .mentions-all-card__photo {
    width: 50px;
    height: 50px;
  }

  /* Skeleton mobile */
  .mentions-skeleton__line--short {
    width: 120px;
    height: 20px;
  }

  .mentions-skeleton__line--title {
    width: 200px;
    height: 28px;
  }

  .mentions-skeleton__line--score {
    width: 50px;
    height: 26px;
  }

  .mentions-skeleton__line--stars {
    width: 80px;
    height: 16px;
  }

  .mentions-skeleton__card {
    height: 280px;
    margin-bottom: 20px;
  }
}

.mentions-page__back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(64, 55, 49, 0.05);
  color: var(--color-brown);
  text-decoration: none;
  margin-bottom: 40px;
  transition: background 0.2s ease;
}

.mentions-page__back:hover {
  background: rgba(64, 55, 49, 0.1);
}

.mentions-page__header {
  margin-bottom: 40px;
}

.mentions-page__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 48px;
  line-height: 1;
  color: var(--color-brown);
  margin-bottom: 10px;
}

.mentions-page__subtitle {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-brown);
  opacity: 0.6;
}

.mentions-page__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 20px;
}

.mentions-page__grid .mention-card {
  width: 100%;
}

.mentions-page__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 60px 20px;
  text-align: center;
}

.mentions-page__empty p {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-brown);
  opacity: 0.6;
}

.mentions-page__note {
  margin-top: 40px;
  padding: 20px;
  background: rgba(64, 55, 49, 0.05);
  border-radius: 10px;
  text-align: center;
}

.mentions-page__note p {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-brown);
  opacity: 0.8;
}

.mentions-page__note a {
  color: var(--color-orange);
  text-decoration: underline;
}

/* ========================================
   CIGAR PAGE RESPONSIVE
   ======================================== */

/* Tablet (1024px) */
@media (max-width: 1024px) {
  .mentions-page {
    padding: 100px 30px 40px;
  }
  
  .mentions-page__title {
    font-size: 36px;
  }
  
  .mentions-page__grid {
    grid-template-columns: 1fr;
  }
  
  .cigar-page {
    padding: 100px 30px 40px;
  }

  .cigar-page__container {
    gap: 40px;
  }

  .cigar-page__sections {
    gap: 40px;
    padding-left: 0;
  }

   .cigar-page__sections > .similar-cigars {
     margin-bottom: 40px;
   }
  
  .cigar-page__back {
    margin-bottom: 0;
  }
  
  .cigar-content {
    flex-direction: column;
    gap: 40px;
  }
  
  .cigar-gallery {
    width: 100%;
    height: auto;
    flex-direction: column;
    gap: 0;
  }
  
  .cigar-gallery__main {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    background-color: var(--color-beige);
    position: relative;
    overflow: hidden;
    touch-action: pan-y pinch-zoom;
  }
  
  /* Mobile carousel */
  .cigar-gallery__carousel {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
    touch-action: pan-x;
    user-select: none;
    -webkit-user-select: none;
  }
  
  .cigar-gallery__slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
  }
  
  .cigar-gallery__slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    pointer-events: none;
  }
  
  .cigar-gallery__pagination {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    padding: 6px 10px;
    background: rgba(166, 87, 56, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 10px;
    z-index: 10;
  }
  
  .cigar-gallery__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(166, 87, 56, 0.3);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
  }
  
  .cigar-gallery__dot--active {
    background: var(--color-orange);
    transform: scale(1.15);
  }
  
  .cigar-gallery__slide--wheel {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
  }
  
  .cigar-gallery__slide--wheel .cigar-gallery__wheel-content {
    width: 80%;
    max-width: 260px;
    aspect-ratio: 1 / 1;
    position: relative;
  }
  
  .cigar-gallery__thumbs {
    display: none;
  }
  
  .cigar-gallery__thumb {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
  }
  
  /* Skeleton responsive */
  .cigar-skeleton .cigar-content {
    flex-direction: column;
  }
  
  .cigar-skeleton__gallery {
    width: 100%;
    height: auto;
    flex-direction: column-reverse;
  }
  
  .cigar-skeleton__main {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }
  
  .cigar-skeleton__thumbs {
    flex-direction: row;
    width: auto;
    display: none;
  }
  
  .cigar-skeleton__sections {
    margin-left: 0;
  }
  
  .cigar-skeleton__specs {
    gap: 40px;
  }
  
  .cigar-skeleton__specs-col {
    max-width: none;
  }
  
  .cigar-info {
    gap: 30px;
  }
  
  .cigar-info__title {
    font-size: 36px;
  }
  
  .cigar-specs {
    gap: 60px;
  }
  
  .cigar-specs__column {
    width: auto;
    flex: 1;
  }
  
  .similar-cigars__grid {
    flex-wrap: wrap;
    gap: 16px;
  }
  
  .similar-card {
    width: calc(50% - 8px);
    height: auto;
    min-height: 280px;
  }
  
  .cigar-ratings {
    padding: 30px;
  }
  
  .cigar-ratings__summary {
    flex-direction: column;
    gap: 30px;
  }

  .cigar-mentions__header {
    margin-bottom: 20px;
  }

  .cigar-mentions__title {
    font-size: 20px;
    line-height: 1.2;
  }

  .cigar-mentions__grid {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .cigar-mentions__grid::-webkit-scrollbar {
    display: none;
  }
}

/* Mobile (768px) */
@media (max-width: 768px) {
  .mentions-page {
    padding: 80px 20px 30px;
  }
  
  .mentions-page__back {
    width: 40px;
    height: 40px;
    margin-bottom: 30px;
  }
  
  .mentions-page__title {
    font-size: 28px;
  }
  
  .cigar-page {
    padding: 80px 20px 30px;
  }

  .cigar-page__container {
    gap: 30px;
  }

  .cigar-page__sections {
    gap: 30px;
    padding-left: 0;
  }

   .cigar-page__sections > .similar-cigars {
     margin-bottom: 30px;
   }
  
  .cigar-page__back {
    margin-bottom: 0;
  }
  
  .cigar-content {
    gap: 30px;
  }
  
  .cigar-gallery__main {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }
  
  .cigar-gallery__thumb {
    width: 60px;
    height: 60px;
  }
  
  .cigar-info__header {
    flex-direction: column;
    gap: 16px;
  }
  
  .cigar-info__title {
    font-size: 28px;
  }
  
  .cigar-description {
    font-size: 16px;
    margin: 0;
  }
  
  .cigar-specs {
    flex-direction: column;
    gap: 30px;
  }
  
  .cigar-specs__column {
    width: 100%;
  }
  
  .cigar-specs__label,
  .cigar-specs__value {
    font-size: 14px;
  }
  
  /* Skeleton mobile */
  .cigar-skeleton__gallery {
    height: auto;
  }
  
  .cigar-skeleton__main {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }
  
  .cigar-skeleton__thumb {
    width: 60px;
    height: 60px;
  }
  
  .cigar-skeleton__specs {
    flex-direction: column;
    gap: 30px;
  }
  
  .cigar-skeleton__specs-col {
    width: 100%;
  }
  
  .cigar-info__actions {
    align-self: flex-start;
  }
  
  .cigar-info__tags {
    gap: 10px;
  }
  
  /* Hide rating block on mobile - it's shown in the rating section below */
  .cigar-info__rating {
    display: none !important;
  }
  
  .cigar-info__tag {
    padding: 8px 12px;
    font-size: 12px;
  }
  
  .similar-cigars__title,
  .cigar-mentions__title {
    font-size: 20px;
  }
  
  .similar-cigars__grid {
    flex-direction: column;
    gap: 16px;
  }
  
  .similar-card {
    width: 100%;
    height: auto;
    min-height: 260px;
  }
  
  /* Taste Wheel - Tablet (400px) */
  .taste-wheel__title {
    font-size: 20px;
    margin-bottom: 24px;
  }

  .taste-wheel__container {
    width: 400px;
    height: 400px;
  }
  
  .taste-wheel__label {
    font-size: 10.67px;
  }

  .cigar-ratings {
    padding: 20px;
    border-radius: 16px;
  }
  
  .cigar-ratings__number {
    font-size: 36px;
  }

  .cigar-mentions__grid {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .cigar-mentions__grid::-webkit-scrollbar {
    display: none;
  }

  .mention-card {
    padding: 20px;
  }
}

/* Small Mobile (480px) */
@media (max-width: 480px) {
  .cigar-page {
    padding: 70px 16px 20px;
  }

  .cigar-page__container {
    gap: 24px;
  }

  .cigar-page__sections {
    gap: 24px;
    padding-left: 0;
  }

   .cigar-page__sections > .similar-cigars {
     margin-bottom: 24px;
   }
  
  .cigar-page__back {
    width: 28px;
    height: 28px;
    margin-bottom: 0;
  }
  
  .cigar-gallery__main {
    height: 250px;
    border-radius: 8px;
  }
  
  .cigar-gallery__thumb {
    width: 50px;
    height: 50px;
  }
  
  .cigar-info__title {
    font-size: 24px;
  }
  
  .cigar-info__action {
    width: 28px;
    height: 28px;
  }
  
  .cigar-info__action svg {
    width: 24px;
    height: 24px;
  }
  
  .cigar-specs__label,
  .cigar-specs__value {
    font-size: 13px;
  }
  
  /* Taste Wheel - Mobile (300px) */
  .taste-wheel__title {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .taste-wheel__container {
    width: 300px;
    height: 300px;
  }
  
  .taste-wheel__label {
    font-size: 8px;
  }
  
  /* Mobile ratings per Figma 114:1571 */
  .cigar-ratings__inner {
    display: grid;
    grid-template-columns: max-content 1px minmax(0, 1fr);
    align-items: start;
    column-gap: 12px;
    padding: 0 10px;
    width: 100%;
  }

  .cigar-ratings__score {
    width: auto;
    min-width: 92px;
  }

  .cigar-ratings__number {
    font-size: 26px;
  }

  .cigar-ratings__stars {
    gap: 0;
  }

  .cigar-ratings__star {
    width: 16px;
    height: 16px;
  }

  .cigar-ratings__count {
    font-size: 10px;
  }

  .cigar-ratings__divider {
    width: 1px;
    height: 100%;
    min-height: 88px;
    margin: 0;
  }

  .cigar-ratings__breakdown {
    width: auto;
    gap: 12px;
  }

  .cigar-ratings__item {
    display: grid;
    grid-template-columns: minmax(55px, max-content) minmax(0, 1fr) 36px;
    align-items: center;
    column-gap: 8px;
    width: 100%;
  }

  .cigar-ratings__label {
    font-size: 10px;
    width: auto;
    min-width: 55px;
  }

  .cigar-ratings__bar {
    width: 100%;
    height: 10px;
    min-width: 90px;
  }

  .cigar-ratings__value {
    font-size: 12px;
    min-width: 36px;
    text-align: right;
  }

  .cigar-mentions {
    margin-bottom: 40px;
  }

  .cigar-mentions__header {
    margin-bottom: 20px;
  }

  .cigar-mentions__title {
    font-size: 17px;
    line-height: 1.2;
  }

  .cigar-mentions__view-all {
    font-size: 12px;
  }

  .mention-card {
    width: 280px;
    padding: 10px;
  }

  .mention-card__avatar {
    width: 28px;
    height: 28px;
  }

  .mention-card__avatar--fallback svg {
    width: 14px;
    height: 14px;
  }

  .mention-card__name {
    font-size: 14px;
  }

  .mention-card__meta {
    font-size: 10px;
  }

  .mention-card__rating-label {
    font-size: 10px;
  }

  .mention-card__rating-value {
    font-size: 12px;
  }

  .mention-card__text {
    font-size: 12px;
  }

  .cigar-mentions__empty {
    padding: 10px;
  }

  .cigar-mentions__empty-text {
    font-size: 12px;
  }
}

/* Photo Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 10;
}

.lightbox__close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.lightbox__content {
  max-width: 90vw;
  max-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox__image {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.lightbox.is-open .lightbox__image {
  transform: scale(1);
  opacity: 1;
}

.lightbox__nav {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.1);
  padding: 12px 24px;
  border-radius: 100px;
  backdrop-filter: blur(10px);
}

.lightbox__prev,
.lightbox__next {
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.lightbox__prev:hover,
.lightbox__next:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.lightbox__prev:disabled,
.lightbox__next:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.lightbox__prev:disabled:hover,
.lightbox__next:disabled:hover {
  transform: none;
  background: rgba(255, 255, 255, 0.1);
}

.lightbox__counter {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: #fff;
  min-width: 50px;
  text-align: center;
}

@media (max-width: 480px) {
  .lightbox__close {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
  }

  .lightbox__nav {
    bottom: 20px;
    padding: 10px 16px;
    gap: 12px;
  }

  .lightbox__prev,
  .lightbox__next {
    width: 36px;
    height: 36px;
  }

  .lightbox__counter {
    font-size: 12px;
  }
}
