@import url("reset.css");

/* ************FONTS - GDPR COMPLIANT************ */
@font-face {
  font-family: 'Inter';
  src: url('../fonts/static/Inter_18pt-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/static/Inter_18pt-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/static/Inter_18pt-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/static/Inter_18pt-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ************RESPONSIVE BREAKPOINTS SYSTEM************ */
/* 
  Mobile First Approach - Professional Breakpoints:
  
  Extra Small (XS): 0-374px    - Small phones (iPhone SE, older Android)
  Small (SM):       375-413px  - Standard phones (iPhone 13/14/15, most Android)
  Medium (MD):      414-767px  - Large phones (iPhone Pro Max, phablets)
  Tablet (TB):      768-1023px - Tablets (iPad, Android tablets)
  Desktop (LG):     1024px+    - Desktops and laptops
  
  These breakpoints cover:
  - iPhone SE: 375x667
  - iPhone 13/14/15: 390x844
  - iPhone 13 Pro: 390x844
  - iPhone 14 Pro Max: 430x932
  - iPhone 16 Pro Max: 440x956
  - iPad: 768x1024
  - iPad Pro: 1024x1366
*/

:root {
  /* Breakpoint values */
  --breakpoint-xs: 374px;
  --breakpoint-sm: 375px;
  --breakpoint-md: 414px;
  --breakpoint-tb: 768px;
  --breakpoint-lg: 1024px;
  
  /* Spacing scale for responsive design */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  
  /* Header heights */
  --header-height-mobile: 3.5rem;
  --header-height-tablet: 4.5rem;
  --header-height-desktop: 5.75rem;
  
  /* Touch targets (minimum 44x44px for accessibility) */
  --min-touch-target: 44px;
}

/* ************TYPOGRAPHY SYSTEM************ */

/* Base font size and root settings */
html {
  font-size: 16px; /* Base font size */
}

/* Global font family - Inter only - LEGAL COMPLIANCE */
*, *::before, *::after {
  font-family: "Inter", sans-serif !important;
}

/* Explicit enforcement for all text elements - LEGAL SAFETY */
body, h1, h2, h3, h4, h5, h6, p, a, span, div, button, input, textarea, label, li, td, th {
  font-family: "Inter", sans-serif !important;
}

/* Typography Hierarchy - Following Guidelines */
h1, h2, h3, h4, h5, h6 {
  font-family: "Inter", sans-serif;
  color: #2c2c2c;
  margin-bottom: 1rem;
  line-height: 1.4;
}

/* Font Hierarchy as per guidelines */
h1 {
  font-size: clamp(2.25rem, 4vw, 3rem); /* 36-48px responsive */
  font-weight: 700; /* Bold */
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem); /* 28-36px responsive */
  font-weight: 600; /* SemiBold */
  line-height: 1.3;
  margin-bottom: 1.25rem;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem); /* 20-24px responsive */
  font-weight: 500; /* Medium */
  line-height: 1.4;
  margin-bottom: 1rem;
}

h4, h5, h6 {
  font-size: 1.125rem; /* 18px */
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 0.75rem;
}

/* Body text and paragraphs */
p {
  font-family: "Inter", sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.125rem); /* 16-18px responsive */
  font-weight: 400; /* Regular */
  line-height: 1.6; /* 1.4-1.6 as per guidelines */
  margin-bottom: 1.5em; /* 1.5em paragraph spacing */
  color: #333333; /* Better contrast */
}

/* Caption text */
.caption, .small {
  font-size: clamp(0.75rem, 1vw, 0.875rem); /* 12-14px responsive */
  font-weight: 400;
  line-height: 1.5;
}

/* Button/CTA text */
.button, .btn, [class*="button"] {
  font-size: clamp(0.875rem, 1vw, 1rem); /* 14-16px responsive */
  font-weight: 600; /* SemiBold */
  line-height: 1.2;
}

/* ************COMMON************ */

.logo {
  font-family: "Inter", sans-serif;
  font-weight: 700; /* Bold for brand */
  /* Responsive font size with boundaries to prevent too small/large */
  font-size: clamp(1.125rem, 2.5vw + 0.5rem, 1.75rem); /* 18px min, 28px max */
  letter-spacing: 0.5px;
  color: #1a1a1a;
  transition: font-size 0.3s ease;
  white-space: nowrap; /* Prevent text wrapping */
  display: inline-block;
  line-height: 1; /* Remove extra line height */
  vertical-align: middle; /* Help with alignment */
}

body {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: #333333; /* Better contrast */
  line-height: 1.5;
  font-weight: 400;
  overflow-x: hidden; /* Prevent horizontal scroll */
  width: 100%;
  max-width: 100vw; /* Never exceed viewport width */
}

/* Ensure all images and media are responsive */
img, picture, video, canvas, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

[class*="__container"] {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem); /* Responsive padding: 16px to 32px */
  box-sizing: border-box; /* Ensure padding doesn't cause overflow */
}

/* Extra padding control for very small screens */
@media (max-width: 374px) {
  [class*="__container"] {
    padding: 0 0.75rem; /* 12px on very small screens */
  }
}

/* Common button styles */
.button,
.actions-header__button,
.main__button,
.collection-page__button,
.collection__button,
.outro__button,
.about__button,
.item-pricing__button {
  background: linear-gradient(135deg, #d4af37, #b8941f);
  color: #fff;
  border: none;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: clamp(0.75rem, 2vw, 0.875rem) clamp(1.5rem, 4vw, 2rem); /* Responsive padding */
  font-weight: 600; /* SemiBold for CTAs */
  font-size: clamp(0.875rem, 1.5vw, 1rem); /* 14-16px responsive */
  line-height: 1.2;
  border-radius: 2px;
  display: inline-block;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  min-height: var(--min-touch-target); /* Accessibility */
  white-space: nowrap; /* Prevent wrapping on small screens */
}

.button:hover,
.actions-header__button:hover,
.main__button:hover,
.collection-page__button:hover,
.collection__button:hover,
.outro__button:hover,
.about__button:hover,
.item-pricing__button:hover {
  background: linear-gradient(135deg, #b8941f, #9a7a1a);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.title {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem); /* H2: 28-36px */
  font-weight: 600; /* SemiBold */
  color: #1a1a1a;
  line-height: 1.3;
}

.wrapper {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
}

/* ************HEADER************ */

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  z-index: 1000;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  transition: all 0.3s ease;
}

.header:hover {
  background: #ffffff;
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height-desktop);
  flex-wrap: nowrap; /* Prevent wrapping on mobile */
  max-width: 74.624rem;
  padding: 0 clamp(1rem, 3vw, 2rem); /* Responsive padding */
  gap: 1rem; /* Space between items */
}

.header__logo {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center; /* Perfect vertical alignment */
  height: 100%; /* Fill container height */
}

.header__navigation {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.menu__body {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.menu__link {
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  color: #2c2c2c;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
}

.menu__link:hover {
  color: #d4af37;
}

.menu__link::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #d4af37, #b8941f);
  transition: width 0.3s ease;
}

.menu__link:hover::after {
  width: 100%;
}

.actions-header {
  display: flex;
  align-items: center;
  gap: 0.624rem;
  height: 100%; /* Match container height */
}

.icon-menu {
  display: none;
}



/* ****************PAGES**************** */
.page__main {
  padding-bottom: 160px;
}

/* *****************HOME**************** */

.main {
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

.main__split {
  display: flex;
  height: calc(100vh - 10mm); /* 10mm white frame at bottom */
  max-width: calc(100% - 20mm);
  margin: 0 auto;
}

.main__image {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.main__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  position: absolute;
  top: 0;
  left: 0;
  transform: none !important;
  transition: none !important;
  animation: none !important;
}

.main__content {
  flex: 1;
  background-color: #444444;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
  line-height: normal;
  overflow: auto;
}

/* Home page specific gray area */
.main--home .main__content {
  padding: 3rem 2rem;
}

/* About page specific gray area - more top padding for better centering */
.main--about .main__content {
  padding: 5rem 2rem 3rem;
}

.main__container {
  padding: 2rem;
  color: #fff;
  text-align: left;
  max-width: 600px;
  width: 100%;
  margin: 0;
}

/* About page container - no extra margin */
.main__container:has(.main__highlights) {
  margin: 0;
}

.main__caption {
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: 500;
  color: #fff;
}

.main__title {
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 600;
  margin-bottom: clamp(2rem, 4vh, 4rem);
  color: #fff;
  letter-spacing: -0.02em;
}

.main__text {
  margin-bottom: clamp(2rem, 4vh, 4rem);
  max-width: 100%;
  font-family: "Inter", sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.5rem);
  line-height: 150%;
  letter-spacing: 0.01em;
  word-spacing: 0.1em;
  color: #fff;
  text-align: left;
}

.main__button {
  font-weight: 600;
  display: inline-block;
  padding: 1.25rem 3rem;
  border-radius: 30px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  color: #fff;
  background: linear-gradient(135deg, #d4af37, #b8941f);
  letter-spacing: 0.02em;
  font-size: 1.375rem;
  line-height: 110%;
  border: none;
}

.main__button:hover {
  background: linear-gradient(135deg, #b8941f, #9a7a1a);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.outro_home {
  background: url("../images/Home/CTA.jpg") center / cover no-repeat;
}

/* ************ABOUT**************** */

.main_about {
  background: url("../images/About/About-Hero.jpg") center / cover no-repeat;
}

.about__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 8.75rem;
  padding-bottom: 8.75rem;
}

.about__image {
  position: relative;
  max-width: 552px;
  height: 614px;
}

.about__image img {
  border-radius: 16px;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__title {
  margin-bottom: 1.5rem;
}

.about__text {
  max-width: 30rem;
  letter-spacing: 0.02em;
  line-height: 150%;
  margin-bottom: 3.5rem;
}

.about__text p:not(:last-child) {
  margin-bottom: 2.5rem;
}

.outro_about {
  background: url("../images/About/CTA.jpg") center / cover no-repeat;
}

/* **************SERVICES**************** */

.main_collection {
  background: url("../images/Services/Services-Hero.jpg") center / cover no-repeat;
}

.collection-page__container {
  padding-top: 160px;
}

.collection-page__item {
  margin-bottom: 132px;
}

.collection-page__item:not(:last-child) {
  padding-bottom: 132px;
  margin-bottom: 132px;
  border-bottom: 1px solid rgba(48, 58, 77, 0.4);
}

.collection-page__column {
  display: flex;
  align-items: center;
  gap: 97px;
}

.collection-page__title {
  font-family: "Inter", sans-serif;
  margin-bottom: 24px;
}

.collection-page__text {
  font-family: "Inter", sans-serif;
  margin-bottom: 56px;
  max-width: 480px;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0.02em;
}

.collection-page__text p:not(:last-child) {
  margin-bottom: 20px;
}

.collection-page__img {
  max-width: 552px;
  height: 614px;
}

.collection-page__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.collection-page__button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #d4af37, #b8941f);
  color: #fff;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: none;
}

.collection-page__button:hover {
  background: linear-gradient(135deg, #b8941f, #9a7a1a);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.outro_collection {
  background: url("../images/Services/CTA.jpg") center / cover no-repeat;
}

/* ************TESTIMONIAL**************** */

.testimonial__container {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  padding-top: 8.75rem;
  padding-bottom: 8.75rem;
}

.testiomonial__caption {
  margin-bottom: 4rem;
  font-weight: 600;
  text-transform: uppercase;
}

.testimonial__title {
  margin-bottom: 4rem;
  font-size: 2rem;
  max-width: 40.75rem;
  line-height: 136%;
  font-weight: 500;
}

.item-testimonial__image {
  max-width: 64px;
  margin: 0 auto;
  margin-bottom: 1.063rem;
  height: 64px;
}

.item-testimonial__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.item-testimonial__title {
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.item-testimonial__caption {
  font-size: 0.938rem;
}

/* ****************OUTRO**************** */

.outro__container {
  padding-top: 8.75rem;
  padding-bottom: 8.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.outro__title {
  margin-bottom: 1.25rem;
}

.outro__text {
  max-width: 33.625rem;
  line-height: 150%;
  margin-bottom: 2.5rem;
  letter-spacing: 0.02em;
}

.outro__button {
  padding: 1.25rem 3rem;
}

/* ****************FOOTER**************** */

.footer {
  line-height: 150%;
}

.footer__container {
  padding-top: 3.25rem;
  padding-bottom: 3.25rem;
  max-width: 74.624rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.footer__policy {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
  justify-self: start;
  font-size: 0.8rem;
}

.footer__logo {
  justify-self: center;
}

.footer__copyright {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
  justify-self: end;
  font-size: 0.8rem;
}

/* ****************ABOUT PAGE**************** */
.main__text_pages {
  max-width: 37.5rem;
}

/* ****************PRIVACY POLICY PAGE**************** */
.privacy-content {
  padding: 3rem 0;
  background: #ffffff;
}

.privacy-content__container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.privacy-section {
  margin-bottom: 3rem;
  padding: 2rem;
  background: rgba(250, 250, 250, 0.6);
  border-radius: 8px;
  border-left: 3px solid #d4af37;
}

.privacy-section__title {
  font-family: "Inter", sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #d4af37, #b8941f, #d4af37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.privacy-section__content h3 {
  font-family: "Inter", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: #2c2c2c;
  margin: 1.5rem 0 0.8rem 0;
}

.privacy-section__content p {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.privacy-section__content ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.privacy-section__content li {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.privacy-section__content h4 {
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: #2c2c2c;
  margin: 1.2rem 0 0.6rem 0;
}

.privacy-section__content strong {
  font-family: "Inter", sans-serif;
  color: #d4af37;
  font-weight: 600;
}

@media (max-width: 768px) {
  .privacy-content__container {
    padding: 0 1rem;
  }

  .privacy-section {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }

  .privacy-section__title {
    font-size: 1.5rem;
  }

  .main_privacy .main__container_pages {
    padding-top: 200px;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .main_privacy .main__title {
    font-size: 2rem;
  }

  .main_privacy .main__text_pages {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .main_privacy .main__container_pages {
    padding-top: 140px;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .main_privacy .main__title {
    font-size: 1.8rem !important;
    white-space: normal !important;
    margin-bottom: 0.6rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.4;
    max-width: 100%;
  }

  .main_privacy .main__text_pages {
    font-size: 0.8rem;
    margin-bottom: 0.8rem;
  }

  .main_privacy {
    min-height: 320px !important;
  }
}

.main__container_pages {
  padding-top: 300px;
}

/* Contact page desktop positioning - move text to bottom like mobile */
.main_contact .main__container_pages {
  padding-top: 580px;
  max-width: 850px;
  margin: 0 auto;
}

.main_pages {
  min-height: 676px !important;
}

/* Contact page specific adjustments */
.main_contact {
  min-height: 500px !important;
}

.main_contact .main__title {
  margin-bottom: 1rem;
}

/* Wholesale page specific adjustments - same as contact */
.main_wholesale {
  min-height: 500px !important;
}

/* Desktop only - contact and wholesale text sizing */
@media (min-width: 769px) {
  .main_contact .main__text_pages {
    font-size: 1.4rem;
    line-height: 1.4;
    max-width: 100%;
  }
  
  .main_wholesale .main__text_pages {
    font-size: 1.4rem;
    line-height: 1.4;
  }
}


/* Privacy Policy specific title styling */
.main_privacy .main__title {
  font-size: 2.5rem;
  margin-bottom: 0.8rem;
  max-width: 100%;
  overflow-wrap: break-word;
}

.main_privacy .main__text_pages {
  font-size: 0.95rem;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.main_privacy .main__container_pages {
  padding-top: 280px;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.main_privacy {
  min-height: 580px !important;
}

/* Reduce spacing before privacy content */
.main_privacy + .privacy-content {
  padding-top: 1rem;
}

/* ****************SERVICES PAGE**************** */
.services-page__container {
  padding-top: 160px;
}

.services-page__item {
  margin-bottom: 132px;
}

.services-page__item:not(:last-child) {
  padding-bottom: 132px;
  margin-bottom: 132px;
  border-bottom: 1px solid rgba(48, 58, 77, 0.4);
}

.services-page__column {
  display: flex;
  align-items: center;
  gap: 97px;
}

.services-page__title {
  margin-bottom: 24px;
}

.services-page__text {
  margin-bottom: 56px;
  max-width: 480px;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0.02em;
}

.services-page__text p:not(:last-child) {
  margin-bottom: 20px;
}

.services-page__img {
  max-width: 552px;
  height: 614px;
}

.services-page__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

/* ****************CONTACT PAGE****************/

.main_contact {
  background: url("../images/hero/hero_m2-purple-3_contact.jpg") center / cover no-repeat;
}

.main_contact .main__text {
  color: #fff;
}

/* Wholesale page background - same structure as contact */
.main_wholesale .main__text {
  color: #fff;
}

.contact__container {
  display: flex;
  justify-content: space-between;
  gap: 109px;
  padding-top: 140px;
  padding-bottom: 140px;
}

.contact__title {
  font-family: "Inter", sans-serif;
  margin-bottom: 48px;
  font-weight: 600;
  line-height: 110%;
  font-size: 40px;
}

.connect-contact {
  display: flex;
  flex-direction: column;
  align-items: start;
  row-gap: 32px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #e1e4eb;
}

.connect-contact__item {
  display: inline-flex;
  align-items: center;
  gap: 24px;
}

.connect-contact__icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.connect-contant__type {
  margin-bottom: 4px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 110%;
  text-transform: uppercase;
}

.connect-contact__label {
  font-size: 22px;
  line-height: 150%;
  letter-spacing: 0.02em;
}

.contact__links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact__text {
  font-family: "Inter", sans-serif;
  max-width: 545px;
  font-size: 18px;
  line-height: 150%;
}

.contact__text p:not(:last-child) {
  margin-bottom: 15px;
}

iframe {
  width: 100vw;
  height: 482px;
  filter: grayscale(100%);
}

/* **************REVIEWS PAGE**************** */
.reviews__container {
  padding-top: 160px;
  padding-bottom: 160px;
}

.reviews__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 24px;
  row-gap: 96px;
}

.reviews__column {
  border: 1px solid #e1e4eb;
  border-radius: 8px;
}

.reviews__item {
  padding-top: 48px;
  padding-bottom: 56px;
  padding-right: 32px;
  padding-left: 32px;
}

.item-reviews {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.item-reviews__img {
  max-width: 46px;
  height: 36px;
  margin: 0 auto;
  margin-bottom: 46px;
}

.item-reviews__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.item-reviews__text {
  margin-bottom: 40px;
  font-size: 18px;
  letter-spacing: 0.02em;
  line-height: 150%;
}

.item-reviews__author {
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.01em;
  margin-bottom: 10px;
}

.item-reviews__geo {
  font-size: 14px;
  letter-spacing: 0.002em;
}

/* ******************PRICING PAGE******************** */
.pricing__container {
  padding-top: 140px;
  padding-bottom: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.pricing__caption {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 4%;
}

.pricing__title {
  font-weight: 600;
  font-size: 72px;
  margin-bottom: 24px;
}

.pricing__text {
  font-size: 22px;
  letter-spacing: 2%;
  margin-bottom: 88px;
}

.pricing__row {
  display: flex;
  align-items: start;
  gap: 24px;
}

.pricing__column {
  border: 2px solid #e1e4eb;
  border-radius: 8px;
}

.pricing__item {
  padding: 40px;
  padding-bottom: 48px;
}

.item-pricing__info {
  padding-bottom: 32px;
  border-bottom: 1px solid #e1e4eb;
  margin-bottom: 32px;
}

.item-pricing__label {
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 1%;
  margin-bottom: 16px;
}

.item-pricing__cost {
  font-size: 72px;
  font-weight: 600;
  margin-bottom: 16px;
}

.item-pricing__list {
  margin-bottom: 64px;
}

.item-pricing__item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.item-pricing__item::before {
  content: "";
  background: url("../img/pricing/check.svg") 0 0 no-repeat;
  width: 16px;
  height: 18px;
}

.item-pricing__item:not(:last-child) {
  margin-bottom: 12px;
}

.item-pricing__button {
  display: inline-block;
  font-size: 22px;
  letter-spacing: 2%;
  font-weight: 600;
  color: #fff;
  padding: 20px 82px;
  background: linear-gradient(135deg, #d4af37, #b8941f);
  border-radius: 64px;
  border: none;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.item-pricing__button:hover {
  background: linear-gradient(135deg, #b8941f, #9a7a1a);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.team {
  background-color: #e1e4eb;
}

.team__container {
  padding-top: 140px;
  padding-bottom: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.team__title {
  text-align: center;
  margin-bottom: 96px;
  max-width: 483px;
}

.team__row {
  display: grid;
  column-gap: 24px;
  row-gap: 96px;
  grid-template-columns: repeat(3, 1fr);
}

.team__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.item-team__img {
  max-width: 360px;
  height: 363px;
  margin-bottom: 40px;
}

.item-team__img img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.item-team__name {
  max-width: 186px;
  font-size: 32px;
  font-weight: 600;
  line-height: 120%;
  text-align: center;
  margin-bottom: 12px;
}

.item-team__role {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 26px;
  letter-spacing: 2%;
}

.item-team__role span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.item-team__role span::after {
  content: "";
  background: url("../img/team/icons/star.svg") 0 0 no-repeat;
  width: 12px;
  height: 12px;
}

.item-team__text {
  font-size: 16px;
  text-align: center;
  letter-spacing: 2%;
  line-height: 150%;
  max-width: 328px;
  margin-bottom: 20px;
}

.item-team__icons {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* *************FAQ PAGE************** */
.faqs__container {
  padding-top: 140px;
  padding-bottom: 140px;
}

.faqs__title {
  text-align: center;
  margin-bottom: 80px;
}

.spollers-faq__item {
  width: 100%;
}

.spollers-faq__item:not(:last-child) {
  margin-bottom: 24px;
}

.spollers-faq__button {
  display: inline-block;
  border: 2px solid #e1e4eb;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border-radius: 8px;
}

.spollers-faq__button span {
  padding-left: 40px;
  padding-top: 32px;
  padding-bottom: 32px;
  font-weight: 600;
}

.spollers-faq__button img {
  padding-right: 34.5px;
}

.spollers-faq__text {
  max-height: 0;
  overflow: hidden;
  width: 100%;
  display: block;
}

.spollers-faq__item.active .spollers-faq__text {
  max-height: 1000px;
  max-height: calc(1000px + 16px);
}

.spollers-faq__item.active .spollers-faq__button {
  border-bottom: none;
  border-radius: 8px 8px 0px 0px;
}

.spollers-faq__item.active .spollers-faq__button span {
  padding-bottom: 32px;
}

.spollers-faq__item.active .spollers-faq__button img {
  transform: translate(-34px, 0px) rotate(180deg);
}

.spollers-faq__inner {
  padding-top: 20px;
  padding-left: 40px;
  border: 2px solid #e1e4eb;
  border-radius: 0px 0px 8px 8px;
  line-height: 150%;
  padding-bottom: 20px;
  border-top: none;
  padding-right: 100px;
}

/* ****************TEAM PAGE**************** */
.director__container {
  padding-top: 140px;
  padding-bottom: 140px;
  display: flex;
  align-items: center;
  gap: 96px;
}

.director__title {
  margin-bottom: 16px;
}

.director__role {
  font-size: 22px;
  letter-spacing: 2%;
  margin-bottom: 40px;
}

.director__text {
  letter-spacing: 2%;
  line-height: 150%;
  max-width: 480px;
}

.director__text p:not(:last-child) {
  margin-bottom: 20px;
}

.director__img {
  max-width: 552px;
  height: 614px;
}

.director__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

/* ****************GALLERY**************** */
.gallery__container {
  padding-bottom: 140px;
  padding-top: 140px;
}

.gallery__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 24px;
  row-gap: 96px;
  margin-bottom: 96px;
  justify-items: center;
}

.gallery__item {
  max-width: 360px;
  height: 407px;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.gallery__paggination {
  display: flex;
  align-items: center;
  justify-content: center;
  align-items: center;
  gap: 42px;
}

.gallery__paggination button:first-child {
  transform: translate(0px, 5px);
}

.gallery__paggination button:last-child {
  transform: rotate(-180deg) translate(0px, 5px);
}

.gallery_active {
  color: #fff;
  padding: 10px 15px;
  background-color: #303a4d;
  border-radius: 100px;
  display: inline-block;
}

/* ****************RESOURCES**************** */
.resources__container {
  padding-top: 140px;
  padding-bottom: 140px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 24px;
  row-gap: 96px;
  justify-items: center;
}

.resources__img {
  max-width: 360px;
  height: 330px;
  margin-bottom: 32px;
}

.resources__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.resources__title {
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 12px;
}

.resources__text {
  letter-spacing: 2%;
  line-height: 150%;
  max-width: 243px;
  margin-bottom: 32px;
}

.resources__button {
  background-color: #fff;
  color: #303a4d;
  font-weight: 600;
  letter-spacing: 2%;
  border: 2px solid #303a4d;
  border-radius: 64px;
}

/* ****************ADAPTIVE**************** */

@media (max-width: 992px) {
  .services__row {
    grid-template-columns: 1fr;
    gap: 6rem;
    justify-items: center;
  }

  .item-services {
    text-align: center;
    align-items: center;
  }

  .page__main {
    padding-bottom: 80px;
  }
}

@media (min-width: 47.999rem) {
  .menu__list {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: nowrap; /* Keep items in one line */
  }

  /* Tablet specific - prevent Contact from wrapping */
  @media (min-width: 768px) and (max-width: 991px) {
    .header__container {
      padding: 0 1rem; /* Reduce padding to make more space */
    }

    .menu__list {
      gap: 1rem; /* Reduce gap between items */
    }

    .menu__link {
      font-size: 0.875rem; /* Slightly smaller on tablet */
      white-space: nowrap;
    }

    .logo {
      font-size: 1.25rem; /* Slightly smaller logo */
    }

    .actions-header {
      gap: 0.5rem;
    }

    .actions-header__button {
      padding: 0.75rem 1.25rem; /* Compact button */
      font-size: 0.875rem;
    }

    #language-selector {
      font-size: 0.875rem;
      padding: 0.5rem 0.75rem;
    }
  }
}

@media (max-width: 995px) {
  .item-pricing__button {
    font-size: 19px;
  }
}

@media (max-width: 62.6875rem) {
  .resources__container {
    padding-top: 70px;
    padding-bottom: 70px;
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery__paggination {
    gap: 27px;
  }

  .gallery__row {
    grid-template-columns: repeat(2, 1fr);
  }

  .team__row {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 30px;
  }

  .director__container {
    flex-direction: column;
    padding-top: 70px;
    padding-bottom: 70px;
    gap: 10px;
    text-align: center;
  }

  .item-pricing {
    padding: 20px;
    padding-bottom: 30px;
  }

  .pricing__title {
    font-size: 39px;
  }

  .pricing__text {
    margin-bottom: 25px;
  }

  .item-pricing__button {
    padding: 16px 42px;
  }

  .footer__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
  }

  .footer__policy,
  .footer__copyright {
    justify-self: center;
    text-align: center;
    margin: 0.5rem 0;
  }

  .footer__logo {
    margin-bottom: 1rem;
  }

  .services-page__column {
    gap: 30px;
    font-size: 15px;
  }

  .services-page__title {
    font-size: 29px;
  }

  .reviews__row {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 30px;
    column-gap: 10px;
  }

  .reviews__item {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    padding-top: 20px;
    display: inline-block;
  }

  .item-reviews__text {
    font-size: 16px;
  }

  .item-reviews__author {
    font-size: 16px;
  }
}

@media (max-width: 47.999rem) {
  .spollers-faq__item.active .spollers-faq__button img {
    transform: translate(-10px, -10px) rotate(180deg);
  }

  .spollers-faq__button span {
    padding-top: 15px;
    padding-left: 10px;
    padding-bottom: 15px;
    font-weight: 600;
    font-size: 14px;
  }

  .spollers-faq__button img {
    padding-right: 10px;
  }

  .spollers-faq__inner {
    font-size: 16px;
    padding-left: 10px;
    line-height: 130%;
  }

  .pricing__container {
    text-align: center;
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .pricing__row {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .item-pricing__button {
    font-size: 17px;
    padding: 15px 32px;
  }

  .reviews__container {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .header__container {
    min-height: var(--header-height-tablet);
    flex-wrap: nowrap;
    padding: 0 1.5rem;
    gap: 1rem;
  }

  .header__logo {
    flex-shrink: 0; /* Don't shrink logo */
    white-space: nowrap;
    /* Remove aggressive scaling - let clamp() handle it */
  }

  .logo {
    font-size: 1.375rem; /* 22px for tablet */
  }

  .actions-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-left: auto;
    flex-shrink: 0;
  }

  #language-selector {
    order: 1;
    margin-right: 0;
    min-width: var(--min-touch-target);
    min-height: var(--min-touch-target);
  }

  .icon-menu {
    display: block;
    position: relative;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 1.75rem;
    flex: 0 0 1.75rem;
    width: 1.75rem;
    height: 1rem;
    cursor: pointer;
    z-index: 10005;
    order: 2;
  }

  .icon-menu span,
  .icon-menu::before,
  .icon-menu::after {
    content: "";
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    right: 0;
    position: absolute;
    width: 100%;
    height: 0.125rem;
    background-color: #000;
  }

  .icon-menu::before {
    top: 0;
  }

  .icon-menu::after {
    bottom: 0;
  }

  .contact__container {
    flex-direction: column;
    padding-top: 80px;
    gap: 50px;
    padding-bottom: 80px;
  }

  .icon-menu span {
    top: calc(50% - 0.0625rem);
  }

  .menu-open .icon-menu span {
    width: 0;
  }

  .menu-open .icon-menu::before {
    top: calc(50% - 0.0625rem);
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

  .menu-open .icon-menu::after {
    bottom: calc(50% - 0.0625rem);
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .menu__body {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(6px);
    position: fixed;
    top: 0;
    left: -100%;
    width: 100vw;
    height: 100vh;
    height: 100dvh; /* Dynamic viewport height for mobile browsers */
    padding: 6rem 2rem 2rem 2rem; /* Reduced top padding */
    overflow-y: auto; /* Enable vertical scroll */
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    row-gap: 2rem; /* Reduced gap for better fit */
    z-index: 10001;
  }

  .menu__body::before {
    content: "";
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    min-height: 5.75rem;
    background-color: #fff;
    border-bottom: 1px solid #000;
    z-index: 10002;
  }

  .menu-open .menu__body {
    left: 0;
  }

  .menu-open .menu__body::before {
    left: 0;
  }
  
  body.menu-open {
    overflow: hidden;
  }

  .menu__item {
    text-align: center;
    position: relative;
    z-index: 10003;
  }
  
  .menu__list {
    position: relative;
    z-index: 10003;
  }
  
  .actions-header__button {
    position: relative;
    z-index: 10003;
  }
  

  .menu__item:not(:last-child) {
    margin-bottom: 2rem; /* Reduced from 3rem for better fit */
  }

  .menu__link {
    font-size: 2rem; /* Slightly smaller from 2.2rem */
    padding: 0.75rem 0;
    display: block;
  }

  .actions-header__button {
    padding: 0.875rem 1.5rem; /* Better padding */
    font-size: 1rem;
  }

  .main__container {
    padding-top: 12.5rem;
  }

  .main__container_pages {
    padding-top: 290px;
  }

  .main__title {
    font-size: 3rem;
  }

  .title {
    font-size: 1rem;
  }

  .about__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .about__container {
    flex-direction: column;
    padding-top: 4.375rem;
    padding-bottom: 4.375rem;
    gap: 4rem;
  }

  .services__container {
    padding-top: 4.375rem;
    padding-bottom: 4.375rem;
  }

  .testimonial__title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }

  .testiomonial__caption {
    margin-bottom: 2rem;
  }

  .outro__container {
    padding-top: 4.375rem;
    padding-bottom: 4.375rem;
  }

  /* Logo size handled by responsive system above */

  .services-page__column {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 20px;
    gap: 4rem;
  }
}

@media (max-width: 61.936rem) {
  .footer__container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    row-gap: 0.938rem;
  }

  /* Logo size handled by responsive system above */
}

/* ===== MOBILE OPTIMIZATION - SMALL PHONES (iPhone SE, older devices) ===== */
@media (max-width: 374px) {
  .header__container {
    min-height: var(--header-height-mobile);
    padding: 0 0.75rem;
    gap: 0.5rem;
    align-items: center;
  }

  .logo {
    font-size: 1rem; /* 16px for extra small screens */
    line-height: 1;
  }

  .header__logo {
    display: flex;
    align-items: center;
  }

  .actions-header {
    gap: 0.25rem;
    margin-left: 0;
    margin-right: 0;
    display: flex;
    align-items: center;
  }

  .icon-menu {
    width: 1.5rem;
    height: 0.875rem;
  }

  #language-selector {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
  }
}

/* ===== MOBILE OPTIMIZATION - STANDARD PHONES (iPhone 13/14/15, most Android) ===== */
@media (min-width: 375px) and (max-width: 413px) {
  .header__container {
    min-height: var(--header-height-mobile);
    padding: 0 1rem;
    gap: 0.75rem;
    align-items: center; /* Ensure perfect center alignment */
    position: relative;
  }

  .logo {
    font-size: 1.25rem; /* 20px - perfect for iPhone 13 portrait */
    line-height: 1; /* Prevent extra height */
    padding: 0; /* Remove any padding */
    margin: 0; /* Remove any margin */
  }

  .header__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: var(--header-height-mobile); /* Match container */
  }

  .header__navigation {
    display: flex;
    align-items: center;
    height: 100%;
  }

  .actions-header {
    gap: 0.5rem;
    margin-left: 0;
    display: flex;
    align-items: center; /* Perfect alignment with logo */
    height: var(--header-height-mobile); /* Match container */
  }

  .icon-menu {
    width: 1.5rem; /* Keep reasonable size - not too big */
    height: 0.875rem;
    flex: 0 0 1.5rem;
    margin: 0; /* Remove any margin */
  }

  /* Touch targets for language selector only */
  #language-selector {
    min-width: var(--min-touch-target);
    min-height: var(--min-touch-target);
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* ===== MOBILE OPTIMIZATION - LARGE PHONES (iPhone Pro Max, phablets) ===== */
@media (min-width: 414px) and (max-width: 767px) {
  .header__container {
    min-height: var(--header-height-mobile);
    padding: 0 1.25rem;
    align-items: center; /* Perfect center alignment */
    position: relative;
  }

  .logo {
    font-size: 1.375rem; /* 22px for larger phones */
    line-height: 1;
    padding: 0;
    margin: 0;
  }

  .header__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: var(--header-height-mobile);
  }

  .header__navigation {
    display: flex;
    align-items: center;
    height: 100%;
  }

  .actions-header {
    gap: 0.75rem;
    display: flex;
    align-items: center; /* Perfect alignment */
    height: var(--header-height-mobile);
  }

  .icon-menu {
    width: 1.875rem;
    height: 1.125rem;
    margin: 0;
  }
}

/* iPhone 16 optimize - REPLACED WITH BETTER STANDARD PHONE RULES ABOVE */
@media (max-width: 393px) and (orientation: portrait) {
  .header__container {
    min-height: var(--header-height-mobile);
    padding: 0 1rem;
  }

  .logo {
    font-size: 1.25rem; /* Consistent with standard phone sizes */
  }

  .actions-header {
    gap: 0.5rem;
    margin-left: 0;
    margin-right: 0.5rem;
  }

  .icon-menu {
    width: 1.75rem;
    height: 1rem;
  }
}

@media (max-width: 530px) {
  .reviews__row {
    grid-template-columns: 1fr;
  }

  .team__row {
    grid-template-columns: 1fr;
  }

  .gallery__row {
    grid-template-columns: 1fr;
  }

  .resources__container {
    grid-template-columns: 1fr;
  }
}

/* ===== RESPONSIVE HERO SECTION - MOBILE & TABLET ===== */

/* Tablet and below - Stack layout (image on top, gray area below) */
@media (max-width: 1024px) and (orientation: portrait) {
  .main {
    padding-top: 3rem;
  }

  .main__split,
  .feature__content {
    flex-direction: column;
  }
}

@media (max-width: 1024px) and (orientation: landscape) {
  /* Header optimization for landscape mode */
  .header__container {
    min-height: 2.75rem; /* Extra compact for landscape */
    padding: 0.5rem 1rem;
    gap: 0.5rem;
    flex-wrap: nowrap; /* Force single line */
  }

  .logo {
    font-size: 1rem; /* 16px for landscape - compact */
    flex-shrink: 0;
  }

  .header__navigation {
    gap: 0.5rem;
    flex-shrink: 0;
  }

  .actions-header {
    gap: 0.25rem;
    margin-left: auto;
    flex-shrink: 0;
  }

  #language-selector {
    min-width: auto; /* Remove minimum for landscape */
    min-height: auto;
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
  }

  .icon-menu {
    width: 1.5rem;
    height: 0.875rem;
    flex-shrink: 0;
  }

  /* Ensure button doesn't overflow */
  .actions-header__button {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
  }

  /* Main content adjustments */
  .main__split,
  .feature__content {
    flex-direction: column;
  }

  .collection__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .main__image {
    height: 45vh;
    flex: none;
  }

  .main__content {
    min-height: 55vh;
    flex: 1;
    align-items: flex-start;
    padding: 2rem 1.5rem;
  }

  .main__container {
    margin-top: 0;
    padding: 0;
    width: 100%;
  }

  .main__title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .main__text {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .main__button {
    padding: 0.9rem 2rem;
    font-size: 1rem;
  }

  /* Home page specific */
  .main--home .main__container {
    margin-top: 0;
  }

  .main--home .main__content {
    padding-bottom: 2.5rem;
  }

  /* About page specific */
  .main--about .main__image {
    height: 400px;
  }

  .main--about .main__content {
    min-height: auto;
    flex: 1;
    padding: 1.5rem 1.5rem 2rem;
  }

  .main--about .main__container {
    margin-top: 0;
  }

  .main__section-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .main__highlights {
    gap: 0.6rem;
    margin-bottom: 1.5rem;
  }

  .main__highlight {
    padding: 0.8rem 1rem;
  }

  .main__highlight h3 {
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
  }

  .main__highlight p {
    font-size: 0.8rem;
    line-height: 1.4;
  }

  /* Contact and Wholesale pages */
  .main_contact .main__container_pages {
    padding-top: 450px;
    max-width: 90%;
  }

  .main_wholesale .main__container_pages {
    padding-top: 450px;
    max-width: 98%;
  }
}

/* Tablet portrait only (577px - 1024px) - more space after hero */
@media (min-width: 577px) and (max-width: 1024px) and (orientation: portrait) {
  .main--home + .collection {
    margin-top: -2rem;
  }
}

/* Mobile portrait - smaller screens */
@media (max-width: 576px) {
  .main__image {
    height: 40vh;
  }

  .main__content {
    min-height: 60vh;
    padding: 1.5rem 1rem;
  }

  .main__title {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
  }

  .main__text {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }

  .main__button {
    padding: 0.8rem 1.6rem;
    font-size: 0.9rem;
  }

  /* About page mobile portrait */
  .main--about .main__image {
    height: 400px;
  }

  .main--about .main__content {
    min-height: auto;
    flex: 1;
    padding: 1rem 1rem 1.5rem;
  }

  .main__section-title {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
  }

  .main__highlights {
    gap: 0.5rem;
    margin-bottom: 1rem;
  }

  .main__highlight {
    padding: 0.7rem 0.9rem;
  }

  .main__highlight h3 {
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
  }

  .main__highlight p {
    font-size: 0.75rem;
    line-height: 1.35;
  }

  /* Home page - reduce space after hero on small mobile */
  .main--home + .collection {
    margin-top: -6rem;
  }
}

/* Landscape orientation - any device in horizontal mode */
@media (max-width: 1024px) and (max-height: 600px) and (orientation: landscape) {
  .main__split {
    height: 100vh;
    flex-direction: row;
  }

  .main__image {
    height: 100vh;
    flex: 1;
  }

  .main__content {
    height: 100vh;
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 2rem;
    overflow-y: auto;
  }

  .main__container {
    margin-top: 0;
    max-width: 100%;
    width: 100%;
  }

  .main__title {
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
  }

  .main__text {
    font-size: 0.8rem;
    margin-bottom: 1.2rem;
    line-height: 1.4;
  }

  .main__button {
    padding: 0.7rem 1.4rem;
    font-size: 0.85rem;
  }

  /* Home page landscape */
  .main--home .main__content {
    padding: 2rem;
    align-items: center;
  }

  /* About page landscape - scrollable content */
  .main--about .main__image {
    height: 100vh;
  }

  .main--about .main__content {
    height: 100vh;
    padding: 1rem 0;
    align-items: flex-start;
    overflow-y: auto;
  }

  .main--about .main__container {
    margin-top: 0;
    padding: 0 1.5rem 2rem;
  }

  .main__section-title {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
  }

  .main__highlights {
    gap: 0.5rem;
    margin-bottom: 1rem;
  }

  .main__highlight {
    padding: 0.6rem 0.9rem;
  }

  .main__highlight h3 {
    font-size: 0.8rem;
    margin-bottom: 0.2rem;
  }

  .main__highlight p {
    font-size: 0.7rem;
    line-height: 1.3;
  }

  /* Home page landscape - fix overlap */
  .main--home {
    margin-bottom: 0;
  }

  .main--home + .collection {
    margin-top: -2rem;
  }
}

/* **************COLLECTION**************** */

.collection {
  padding: 0 0 4rem;
  margin-top: -25mm; /* Hero ile collection arası mesafe */
}

.collection--second {
  padding: 0 0 4rem;
  margin-top: -5mm; /* Collection'lar arası eski mesafe */
}

.collection--third {
  padding: 0 0 4rem;
  margin-top: -5mm; /* Collection'lar arası eski mesafe */
}

.collection__container {
  max-width: calc(100% - 20mm);
  margin: 0 auto;
  padding: 0;
}

.collection__title {
  font-family: "Inter", sans-serif;
  text-align: center;
  margin-bottom: 2rem;
  color: #5e3232;
}

.collection__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.collection__item {
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.collection__image {
  position: relative;
  width: 100%;
  padding-top: 150%; /* 1.5:1 aspect ratio */
  overflow: hidden;
}

.collection__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.collection__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(68, 68, 68, 0.9);
  padding: 2rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  color: #fff;
}

.collection__item:hover .collection__overlay {
  transform: translateY(0);
}

.collection__item:hover .collection__image img {
  transform: scale(1.1);
}

.collection__item-title {
  font-family: "Inter", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

.collection__description {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.4;
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

.collection__button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #d4af37, #b8941f);
  color: #fff;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: none;
}

.collection__button:hover {
  background: linear-gradient(135deg, #b8941f, #9a7a1a);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

@media (max-width: 992px) {
  .collection__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .main__split {
    flex-direction: column;
    height: 85vh;
  }
  
  .main__image {
    height: 50vh;
  }
  
  .main__image img {
    object-fit: cover;
    object-position: center top;
    transform: none !important;
    transition: none !important;
    animation: none !important;
    scale: none !important;
  }
  
  .main__content {
    min-height: 35vh;
    align-items: flex-start;
    padding-bottom: 1rem;
    padding-left: 0;
    padding-right: 0;
  }
  
  .main__container {
    padding: 1.5rem 2rem;
    text-align: left;
    max-width: 100%;
    margin-top: 0;
  }
  
  .main__title {
    font-size: 1.7rem;
    margin-bottom: 1.2rem;
  }
  
  .main__text {
    font-size: 1.1rem;
    max-width: 100%;
    margin-bottom: 1.8rem;
  }
  
  .collection__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .main__split {
    height: 90vh;
  }
  
  .main__image {
    height: 45vh;
  }
  
  .main__image img {
    object-fit: cover;
    object-position: center top;
    transform: none !important;
    transition: none !important;
    animation: none !important;
    scale: none !important;
  }
  
  .main__content {
    min-height: 45vh;
    align-items: flex-start;
    padding-bottom: 1rem;
    padding-left: 0;
    padding-right: 0;
  }
  
  .main__title {
    font-size: 1.5rem;
  }
  
  .main__text {
    font-size: 1.1rem;
  }
  
  .main__container {
    padding: 1rem 1.5rem;
    margin-top: 0;
  }
  
  .collection__grid {
    grid-template-columns: 1fr;
  }
  
  .collection {
    padding: 1.5rem 0;
    margin-top: 0.5rem;
  }

  .collection--second {
    padding: 2rem 0;
    margin-top: -2rem;
  }
  
  .collection__title {
    margin-bottom: 1.5rem;
  }
  
  /* Contact page mobile hero positioning - smaller screens */
  .main_contact .main__container_pages {
    padding-top: 380px;
    max-width: 95%;
  }
  
  /* Wholesale page mobile hero positioning - smaller screens */
  .main_wholesale .main__container_pages {
    padding-top: 380px;
    max-width: 99%;
  }
}

/* Center text section */
.collection__text {
  font-family: "Inter", sans-serif;
  text-align: center;
  padding: 2rem 0;
  max-width: 60rem;
  margin: 0 auto;
  font-size: 1.2rem;
}

/* Bottom feature section */
.feature {
  padding: 2rem 0;
  margin-bottom: 2rem;
}

.feature__container {
  max-width: 72.624rem;
  margin: 0 auto;
  padding: 0 0.938rem;
}

.feature__content {
  display: flex;
  border: 1px solid #303a4d;
  padding: 1rem;
}

.feature__image {
  flex: 1;
  padding: 1rem;
}

.feature__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature__text {
  flex: 1;
  padding: 2rem;
}

.feature__heading {
  margin-bottom: 1rem;
}

.feature__subheading {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.feature__description {
  line-height: 1.5;
}

@media (max-width: 576px) {
  .collection__grid {
    grid-template-columns: 1fr;
  }

  .collection {
    padding: 2rem 0;
    margin-top: 0.5rem;
  }

  .collection__title {
    margin-bottom: 2rem;
  }
}

/* Reset the page styles to normal */
.page {
  margin: 0;
  padding: 0;
  line-height: normal;
  font-size: 1.1rem;
}

/* New approach for collection layout */
.collection-page {
  margin: 0;
  padding: 0;
  margin-top: 10mm;
}

.collection-page__container {
  max-width: calc(100% - 20mm);
  margin: 0 auto;
  padding: 0;
}

.collection-page__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.collection-page__grid:last-child {
  margin-bottom: 0;
}

.collection-page__item {
  position: relative;
  overflow: hidden;
}

.collection-page__image {
  position: relative;
  width: 100%;
  padding-top: 150%; /* 1.5:1 aspect ratio like home page */
  overflow: hidden;
}

.collection-page__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.collection-page__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(231, 83, 82, 0.9);
  padding: 2rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  color: #fff;
}

.collection-page__item:hover .collection-page__overlay {
  transform: translateY(0);
}

.collection-page__item:hover .collection-page__image img {
  transform: scale(1.1);
}

.collection-page__title {
  font-family: "Inter", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.collection-page__description {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

@media (max-width: 992px) {
  .collection-page__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .collection-page__item {
    height: 500px; /* Slightly smaller for tablets */
  }
}

@media (max-width: 576px) {
  .collection-page__grid {
    grid-template-columns: 1fr;
  }
  
  .collection-page__item {
    height: 400px; /* Smaller for mobile */
  }
}

/* ************ PRODUCTION SECTION ************ */
.production {
  padding: 8rem 0;
  background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
  position: relative;
}

.production::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.production__title {
  font-family: "Inter", sans-serif;
  text-align: center;
  font-size: 3rem;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

.production__subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #6a6a6a;
  margin-bottom: 6rem;
  font-weight: 300;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.production__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.production__step {
  text-align: center;
}

.production__step-image {
  width: 220px;
  height: 220px;
  margin: 0 auto 2rem;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #d4af37;
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
  transition: all 0.4s ease;
}

.production__step:hover .production__step-image {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
}

.production__step-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.production__step-title {
  font-family: "Inter", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 1rem;
  letter-spacing: 0.3px;
}

.production__step-text {
  color: #6a6a6a;
  line-height: 1.8;
  font-weight: 300;
  max-width: 280px;
  margin: 0 auto;
}

/* ************ SHOWCASE SECTION ************ */
.showcase {
  padding: 8rem 0;
  background: #ffffff;
  position: relative;
}

.showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, #d4af37, #b8941f);
  border-radius: 2px;
}

.showcase__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1.5rem;
  height: 600px;
}

.showcase__item--large {
  grid-row: 1 / 3;
}

.showcase__item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.showcase__image {
  width: 100%;
  height: 100%;
  position: relative;
}

.showcase__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.showcase__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.85), rgba(0, 0, 0, 0.7));
  color: white;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  backdrop-filter: blur(2px);
}

.showcase__item:hover .showcase__overlay {
  opacity: 1;
}

.showcase__item:hover .showcase__image img {
  transform: scale(1.05);
}

.showcase__title {
  font-family: "Inter", sans-serif;
  font-size: 1.75rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  letter-spacing: 0.5px;
}

.showcase__description {
  margin-bottom: 2rem;
  line-height: 1.6;
  font-weight: 300;
  opacity: 0.9;
}

.showcase__button {
  background: transparent;
  color: white;
  border: 2px solid #d4af37;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.showcase__button:hover {
  background: #d4af37;
  color: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

/* ************ QUALITY SECTION ************ */
.quality {
  padding: 8rem 0;
  background: #ffffff;
  position: relative;
}

.quality::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.quality__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.quality__title {
  font-family: "Inter", sans-serif;
  font-size: 3rem;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 3rem;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.quality__features {
  display: grid;
  gap: 2rem;
}

.quality__feature-title {
  font-family: "Inter", sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  color: #d4af37;
  letter-spacing: 0.3px;
}

.quality__feature-text {
  color: #6a6a6a;
  line-height: 1.8;
  font-weight: 300;
}

.quality__images {
  position: relative;
}

.quality__showcase {
  position: relative;
}

.quality__image--featured {
  width: 80%;
  height: 400px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.quality__image--featured img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  object-position: center 30%;
  transform: translateY(-15%);
}

.quality__gallery {
  position: absolute;
  bottom: -50px;
  right: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  width: 60%;
}

.quality__gallery img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 4px;
  border: 3px solid white;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.quality__gallery img:hover {
  transform: scale(1.1);
}

/* Mobile responsive for quality images */
@media (max-width: 768px) {
  .quality__image--featured {
    width: 100%;
    height: 300px;
  }
  
  .quality__gallery {
    position: static;
    margin-top: 5rem;
    width: 100%;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
  
  .quality__gallery img {
    height: 105px;
    border-width: 2px;
  }
}

/* ************ RESPONSIVE STYLES ************ */
@media (max-width: 992px) {
  .production__steps {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .production__step-image {
    width: 150px;
    height: 150px;
  }
  
  .showcase__grid {
    grid-template-columns: 1fr 1fr;
    height: auto;
  }
  
  .showcase__item--large {
    grid-row: 1;
  }
  
  .quality__content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 576px) {
  .production {
    padding: 3rem 0;
  }
  
  .production__title {
    font-size: 2rem;
  }
  
  .showcase__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .showcase__overlay {
    padding: 1.5rem;
  }
  
  .quality {
    padding: 3rem 0;
  }
  
  .quality__title {
    font-size: 2rem;
  }
  
  .quality__image--main {
    width: 100%;
  }
  
  .quality__image--accent {
    width: 70%;
  }
}

/* ************ ABOUT PAGE STYLES ************ */

/* About Content Section */
.about-content {
  padding: 0 0 6rem 0;
  margin-top: -3rem;
  background: #ffffff;
}

.about-content__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.about-content__text {
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
}

.about-content__text p {
  margin-bottom: 1.5rem;
}

.about-content__title {
  font-family: "Inter", sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 2rem;
  text-align: left;
}

.about-content__closing {
  margin-bottom: 6rem;
  font-size: 1.2rem;
  color: #2c2c2c;
  text-align: left;
  margin-top: 2rem;
}

/* Hero Section Title */
.main__section-title {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 600;
  color: #fff;
  margin-bottom: clamp(1rem, 2vh, 1.5rem);
  text-align: left;
}

/* Hero Highlights */
.main__highlights {
  margin: 0 0 clamp(0.8rem, 2vh, 1.5rem) 0;
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 1vh, 0.8rem);
}

.main__highlight {
  background: rgba(255, 255, 255, 0.08);
  border-left: 3px solid rgba(212, 175, 55, 0.7);
  padding: clamp(0.7rem, 1.5vh, 1rem) clamp(0.9rem, 1.5vw, 1.2rem);
  border-radius: 6px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.main__highlight:hover {
  background: rgba(255, 255, 255, 0.12);
  border-left-color: #d4af37;
  transform: translateX(2px);
}

.main__highlight h3 {
  font-family: "Inter", sans-serif;
  font-size: clamp(0.75rem, 1.2vw, 0.95rem);
  font-weight: 600;
  color: #fff;
  margin-bottom: clamp(0.2rem, 0.5vh, 0.4rem);
  letter-spacing: 0.3px;
}

.main__highlight p {
  font-family: "Inter", sans-serif;
  font-size: clamp(0.7rem, 1vw, 0.85rem);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
  margin: 0;
}

@media (max-width: 768px) {
  .about-content {
    padding: 4rem 0;
  }
  
  .about-content__container {
    padding: 0 1.5rem;
  }
  
  .about-content__text {
    font-size: 1rem;
    line-height: 1.7;
  }
  
  .about-content__title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
  
  .main__section-title {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
  }
  
  .main__highlights {
    margin: 0 0 1.5rem 0;
    gap: 0.6rem;
  }
  
  .main__highlight {
    padding: 0.8rem 1rem;
  }
  
  .main__highlight h3 {
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
  }
  
  .main__highlight p {
    font-size: 0.8rem;
  }
}

@media (max-width: 576px) {
  .about-content {
    padding: 2rem 0;
    margin-top: 1rem;
  }
  
  .about-content__container {
    padding: 0 1rem;
  }
  
  .about-content__text {
    font-size: 0.95rem;
  }
  
  .about-content__title {
    font-size: 1.7rem;
  }
  
  .main__section-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
}

/* About Hero Section */
.about-hero {
  padding: 8rem 0;
  background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
}

.about-hero__container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-hero__title {
  font-size: clamp(2.25rem, 4vw, 3rem); /* H1: 36-48px */
  margin-bottom: 2rem;
  line-height: 1.2;
  font-weight: 700; /* Bold */
}

.about-hero__text {
  margin-bottom: 3rem;
}

.about-hero__text p {
  font-size: clamp(1rem, 1.5vw, 1.125rem); /* Body: 16-18px */
  color: #333333;
  line-height: 1.5;
  font-weight: 400;
  margin-bottom: 1.5em;
}

.about-hero__features {
  display: grid;
  gap: 2rem;
}

.about-hero__feature h3 {
  font-family: "Inter", sans-serif;
  font-size: 1.2rem;
  color: #d4af37;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.about-hero__feature p {
  color: #6a6a6a;
  line-height: 1.6;
  font-weight: 300;
  font-size: 0.95rem;
}

.about-hero__showcase {
  position: relative;
}

.about-hero__showcase img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease;
}

.about-hero__showcase:hover img {
  transform: scale(1.02);
}

/* About Showcase Section */
.about-showcase {
  padding: 8rem 0;
  background: #ffffff;
}

.about-showcase__title {
  text-align: center;
  margin-bottom: 4rem;
}

.about-showcase__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.about-showcase__steps {
  display: grid;
  gap: 2.5rem;
}

.about-showcase__step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.about-showcase__step-number {
  background: linear-gradient(135deg, #d4af37, #b8941f);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.about-showcase__step h3 {
  font-size: 1.25rem; /* H5 scale */
  color: #2c2c2c;
  margin-bottom: 0.75rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.about-showcase__step p {
  color: #666666;
  line-height: 1.7;
  font-weight: 400;
  font-size: 0.938rem; /* 15px */
}

.about-showcase__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 2fr 1fr;
  gap: 1rem;
}

.about-showcase__image--large {
  grid-row: 1 / 3;
}

.about-showcase__image {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.about-showcase__image:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-showcase__image--large {
  height: 400px;
}

.about-showcase__image--small {
  height: 190px;
}

.about-showcase__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* About Details Section */
.about-details {
  padding: 8rem 0;
  background: #f8f8f8;
}

.about-details__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.about-details__title {
  font-size: 2.441rem; /* H2 scale */
  text-align: center;
  margin-bottom: 4rem;
  color: #2c2c2c;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.about-details__content {
  display: grid;
  gap: 6rem;
}

.about-details__process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
}

.about-details__text-block h3 {
  font-size: 1.563rem; /* H4 scale */
  color: #d4af37;
  margin-bottom: 1.25rem;
  text-align: center;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.about-details__text-block p {
  color: #555555;
  line-height: 1.8;
  font-weight: 400;
  text-align: left;
  font-size: 1rem;
  hyphens: auto;
}

.about-details__showcase {
  margin-top: 4rem;
}

.about-details__gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.about-details__image {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-details__image:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.about-details__image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.about-details__image:hover img {
  transform: scale(1.05);
}

.about-details__image span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2));
  color: white;
  padding: 1.5rem 1rem;
  font-size: 1rem;
  font-weight: 400;
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.about-details__image:hover span {
  transform: translateY(0);
}

/* About Workshop Section */
.about-workshop {
  padding: 8rem 0;
  background: #ffffff;
}

.about-workshop__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-workshop__title {
  font-size: 2.441rem; /* H2 scale */
  margin-bottom: 2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.about-workshop__description {
  font-size: 1.125rem; /* Lead text */
  color: #555555;
  line-height: 1.8;
  margin-bottom: 3rem;
  font-weight: 400;
}

.about-workshop__features {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

.about-workshop__feature h4 {
  font-size: 1.25rem; /* H5 scale */
  color: #d4af37;
  margin-bottom: 0.75rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.about-workshop__feature p {
  color: #666666;
  line-height: 1.7;
  font-weight: 400;
  font-size: 0.938rem; /* 15px */
}

.about-workshop__showcase {
  position: relative;
}

.about-workshop__image--featured {
  width: 80%;
  height: 400px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.about-workshop__image--featured img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-workshop__gallery {
  position: absolute;
  bottom: -30px;
  right: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  width: 60%;
}

.about-workshop__gallery img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  border-radius: 4px;
  border: 3px solid white;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.about-workshop__gallery img:hover {
  transform: scale(1.1);
}

/* Responsive Styles for About Page */
@media (max-width: 992px) {
  .about-hero__container,
  .about-showcase__grid,
  .about-workshop__content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .about-details__process {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }
  
  .about-details__gallery {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  
  .about-hero__showcase img {
    height: 350px;
  }
  
  .about-showcase__images {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  
  .about-showcase__image--large {
    grid-row: auto;
    height: 250px;
  }
  
  .about-showcase__image--small {
    height: 200px;
  }
  
  .about-workshop__gallery {
    position: static;
    width: 100%;
    margin-top: 2rem;
  }
}

@media (max-width: 576px) {
  .about-hero {
    padding: 6rem 0;
    min-height: 80vh;
  }
  
  
  .about-showcase,
  .about-details,
  .about-workshop {
    padding: 4rem 0;
  }
  
  .about-hero__title {
    font-size: clamp(1.75rem, 3vw, 2.25rem); /* H1 mobile */
  }
  
  .about-showcase__title,
  .about-details__title,
  .about-workshop__title {
    font-size: clamp(1.5rem, 2.5vw, 1.75rem); /* H2 mobile */
  }
  
  .about-details__process {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .about-details__gallery {
    grid-template-columns: 1fr;
  }
  
  .about-details__text-block h3 {
    font-size: 1.3rem;
  }
  
  .about-hero__container {
    gap: 2rem;
  }
  
  .about-hero__showcase img {
    height: 300px;
  }
  
  .about-showcase__step {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .about-showcase__image--large,
  .about-showcase__image--small {
    height: 200px;
  }
  
  .about-workshop__gallery img {
    height: 60px;
  }
}

/* ************ COLLECTION PAGE NEW STYLES ************ */

.collection-page {
  padding: 6rem 0 4rem;
  background: #ffffff;
}

.collection-page__header {
  margin-bottom: 4rem;
  position: relative;
}

.collection-page__content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  max-width: 1600px;
  margin: 0 auto;
}

.collection-page__text {
  flex: 1.3;
  text-align: center;
}

.collection-page__title {
  margin-bottom: 0.5rem;
  position: relative;
  background: linear-gradient(135deg, #d4af37, #b8941f, #d4af37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.collection-page__title::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(135deg, #d4af37, #b8941f);
}

.collection-page__subtitle {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: #555;
  line-height: 1.35;
  font-weight: 400;
  margin: 0.8rem auto 0;
  background: rgba(250, 250, 250, 0.6);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #d4af37;
  border-right: 4px solid #d4af37;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: relative;
}

.collection-page__samples {
  display: flex;
  flex-direction: row;
  gap: 0.8rem;
  flex: 0 0 400px;
}

.collection-page__samples--left {
  justify-content: flex-start;
}

.collection-page__samples--right {
  justify-content: flex-end;
}

.collection-page__samples img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.collection-page__samples img:hover {
  transform: scale(1.05);
}

/* Collection Sections */
.collection-section {
  margin-bottom: 5rem;
}

.collection-section__title {
  font-family: "Inter", sans-serif;
  font-size: 2.4rem;
  font-weight: 600;
  background: linear-gradient(135deg, #d4af37, #b8941f, #d4af37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2.5rem;
  padding: 0.5rem 0;
  text-align: center;
  position: relative;
  letter-spacing: 1px;
}

.collection-section__title::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: linear-gradient(135deg, #d4af37, #b8941f);
  border-radius: 1px;
}

.collection-section__title::after {
  content: '✧';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  color: #d4af37;
  font-size: 0.8rem;
}

/* Horizontal Scrolling Gallery */
.collection-gallery {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
}

.collection-gallery__arrow {
  position: absolute;
  top: 180px;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #d4af37, #b8941f);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  transition: all 0.3s ease;
  opacity: 0.8;
}

.collection-gallery__arrow:hover {
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.collection-gallery__arrow--left {
  left: 10px;
}

.collection-gallery__arrow--right {
  right: 10px;
}

.collection-gallery__track {
  display: flex;
  gap: 1.5rem;
  overflow-x: hidden;
  scroll-behavior: smooth;
  padding: 1rem 0 2rem;
  cursor: grab;
  user-select: none;
}

/* Center align Model 4, Model 5, and Model 10 galleries (fewer items) */
.collection-section:nth-child(5) .collection-gallery__track,
.collection-section:nth-child(6) .collection-gallery__track,
.collection-section:nth-child(11) .collection-gallery__track {
  justify-content: center;
}


.collection-gallery__track:active {
  cursor: grabbing;
}

.collection-gallery__track.dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

/* Collection Items */
.collection-item {
  flex: 0 0 280px;
  position: relative;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  pointer-events: auto;
}

.collection-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.collection-item img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.collection-item:hover img {
  transform: scale(1.05);
}

.collection-item__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7), transparent);
  color: white;
  padding: 2rem 1.5rem 1.5rem;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.collection-item:hover .collection-item__info {
  transform: translateY(0);
}

.collection-item__info h3 {
  font-family: "Inter", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  letter-spacing: 0.3px;
  color: #ffffff;
}

.collection-item__info span {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  color: #d4af37;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Gallery Navigation Hints */
.collection-gallery__hint {
  font-family: "Inter", sans-serif;
  display: block;
  text-align: center;
  margin-top: 1.2rem;
  color: #999;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  font-style: italic;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.collection-gallery:hover .collection-gallery__hint {
  opacity: 0.9;
  color: #d4af37;
}


/* Responsive Design */
@media (max-width: 992px) {
  .collection-page {
    padding: 4rem 0 3rem;
  }
  
  .collection-page__header {
    margin-bottom: 3rem;
  }
  
  .collection-page__content {
    flex-direction: column;
    gap: 2rem;
  }
  
  .collection-page__samples {
    flex: none;
    justify-content: center;
    gap: 0.5rem;
  }
  
  .collection-page__samples--left,
  .collection-page__samples--right {
    justify-content: center;
  }
  
.collection-page__samples img {
    width: 80px;
    height: 80px;
  }
  
  .collection-page__subtitle {
    font-size: 0.95rem;
    max-width: 100%;
    padding: 1.2rem 1.5rem;
    margin: 1rem auto 0;
  }
  
  .collection-section {
    margin-bottom: 4rem;
  }
  
  .collection-section__title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }
  
  .collection-item {
    flex: 0 0 240px;
  }
  
  .collection-item img {
    height: 280px;
  }
  
  .collection-gallery__arrow {
    top: 160px;
  }
}

@media (max-width: 768px) {
  .collection-page {
    padding: 7rem 0 3rem;
  }
  
  .collection-page__title {
    font-size: 2.5rem;
  }
  
  .collection-page__subtitle {
    font-size: 1rem;
  }
  
  .collection-section__title {
    font-size: 1.6rem;
  }
  
  .collection-item {
    flex: 0 0 200px;
  }
  
  .collection-item img {
    height: 240px;
  }
  
  .collection-gallery__arrow {
    top: 140px;
  }
  
  .collection-gallery__track {
    gap: 1rem;
  }
  
  .collection-item__info {
    padding: 1.5rem 1rem 1rem;
  }
  
  .collection-item__info h3 {
    font-size: 1rem;
  }
  
  .collection-item__info span {
    font-size: 0.8rem;
  }
}

@media (max-width: 576px) {
  .collection-page {
    padding: 5rem 0 2rem;
  }
  
  .collection-section {
    margin-bottom: 3rem;
  }
  
  .collection-section__title {
    font-size: 1.4rem;
    padding-left: 0.8rem;
    border-left-width: 3px;
  }
  
  .collection-item {
    flex: 0 0 180px;
  }
  
  .collection-item img {
    height: 220px;
  }
  
  .collection-gallery__arrow {
    top: 130px;
  }
  
  .collection-gallery::before {
    font-size: 0.7rem;
    padding: 0.4rem 0.8rem;
    top: 0.8rem;
    right: 0.8rem;
  }
}

/* ************ WHOLESALE ORDERS PAGE ************ */

.main_wholesale {
  background: url("../images/hero/hero_m3-blue-2_wholesale.jpg") center / cover no-repeat;
}

.main_wholesale .main__container_pages {
  padding-top: 580px;
  max-width: 1050px;
  margin: 0 auto;
}

.main_wholesale .main__title {
  margin-bottom: 1rem;
}

.main_wholesale .main__text {
  color: #fff;
}

.wholesale-form {
  padding: 8rem 0;
  background: #ffffff;
}

.wholesale-form__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.wholesale-form__content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 6rem;
  align-items: start;
}

.wholesale-form__title {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 600;
  margin-bottom: 2rem;
  color: #2c2c2c;
}

.wholesale-form__text p {
  font-family: "Inter", sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: #333333;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.wholesale-form__benefits {
  font-family: "Inter", sans-serif;
  list-style: none;
  padding: 0;
  margin: 0;
}

.wholesale-form__benefits li {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: #555555;
  line-height: 1.6;
  margin-bottom: 0.75rem;
  padding-left: 0;
}

/* Contact Form Styling */
.contact-form {
  background: rgba(250, 250, 250, 0.6);
  padding: 3rem;
  border-radius: 12px;
  border-left: 4px solid #d4af37;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.contact-form__field {
  margin-bottom: 1.5rem;
}

.contact-form__field fieldset {
  border: none;
  padding: 0;
  margin: 0;
}

.contact-form__field legend {
  padding: 0;
  margin-bottom: 0.5rem;
}

.contact-form__label {
  font-family: "Inter", sans-serif;
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: #2c2c2c;
  margin-bottom: 0.5rem;
}

.contact-form__input,
.contact-form__select,
.contact-form__textarea {
  font-family: "Inter", sans-serif;
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  font-size: 1rem;
  background: #ffffff;
  transition: all 0.3s ease;
}

.contact-form__input:focus,
.contact-form__select:focus,
.contact-form__textarea:focus {
  outline: none;
  border-color: #d4af37;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.contact-form__textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form__checkboxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 0.5rem;
}

.contact-form__checkbox {
  font-family: "Inter", sans-serif;
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 0.95rem;
  color: #333333;
}

.contact-form__checkbox input[type="checkbox"] {
  display: none;
}

.contact-form__checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid #d0d0d0;
  border-radius: 4px;
  margin-right: 0.75rem;
  position: relative;
  transition: all 0.3s ease;
}

.contact-form__checkbox input[type="checkbox"]:checked + .contact-form__checkmark {
  background: #d4af37;
  border-color: #d4af37;
}

.contact-form__checkbox input[type="checkbox"]:checked + .contact-form__checkmark::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 12px;
  font-weight: bold;
}

.contact-form__agreement {
  font-size: 0.85rem;
  line-height: 1.5;
  color: #666666;
}

.contact-form__submit {
  width: 100%;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #d4af37, #b8941f);
  color: white;
  border: none;
  border-radius: 6px;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-form__submit:hover {
  background: linear-gradient(135deg, #b8941f, #d4af37);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

/* Wholesale Info Section */
.wholesale-info {
  padding: 6rem 0;
  background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
}

.wholesale-info__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.wholesale-info__title {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 600;
  margin-bottom: 3rem;
  color: #2c2c2c;
}

.wholesale-info__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 800px;
  margin: 0 auto;
}

.wholesale-info__contact h3,
.wholesale-info__hours h3 {
  font-family: "Inter", sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #d4af37;
  margin-bottom: 1.5rem;
}

.wholesale-info__contact p,
.wholesale-info__hours p {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: #333333;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.wholesale-info__icons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  justify-content: center;
}

.wholesale-info__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #e0e0e0;
  transition: all 0.3s ease;
}

.wholesale-info__icon:hover {
  border-color: #d4af37;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

.wholesale-info__icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

/* Responsive Design */
@media (max-width: 992px) {
  .wholesale-form__content {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .contact-form__row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .wholesale-info__content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .wholesale-form,
  .wholesale-info {
    padding: 4rem 0;
  }
  
  .contact-form {
    padding: 2rem 1.5rem;
  }
  
  .contact-form__checkboxes {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .wholesale-form,
  .wholesale-info {
    padding: 3rem 0;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
}

/* ************ IMAGE MODAL ************ */

.image-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  overflow-y: auto;
}

.image-modal.active {
  opacity: 1;
  visibility: visible;
}

.image-modal__content {
  position: relative;
  max-width: 900px;
  max-height: 85vh;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.image-modal.active .image-modal__content {
  transform: scale(1);
}

.image-modal__image {
  width: 100%;
  height: auto;
  max-height: 700px;
  object-fit: contain;
  display: block;
}

.image-modal__info {
  padding: 1.5rem;
  background: white;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.image-modal__title {
  font-family: "Inter", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.3;
}

.image-modal__code {
  font-size: 0.9rem;
  color: #d4af37;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0;
  display: block;
}

.image-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #d4af37, #b8941f);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.5rem;
  color: white;
  font-weight: bold;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  transition: all 0.3s ease;
  opacity: 0.9;
  z-index: 10;
}

.image-modal__close:hover {
  opacity: 1;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}


/* Modal Responsive */
/* Küçük laptop ekranları için (1024px ve altı) */
@media (max-width: 1024px) and (min-width: 769px) {
  .image-modal__content {
    max-width: 90vw;
    max-height: 92vh;
  }

  .image-modal__image {
    max-height: calc(92vh - 100px);
  }

  .image-modal__info {
    padding: 0.7rem 1rem;
    gap: 0.25rem;
  }

  .image-modal__title {
    font-size: 1rem;
    line-height: 1.2;
  }

  .image-modal__code {
    font-size: 0.75rem;
  }

  .image-modal__close {
    width: 40px;
    height: 40px;
    font-size: 1.3rem;
  }
}

/* Orta laptop ekranları için (1025px - 1366px) */
@media (max-width: 1366px) and (min-width: 1025px) {
  .image-modal__content {
    max-width: 85vw;
    max-height: 90vh;
  }

  .image-modal__image {
    max-height: calc(90vh - 110px);
  }

  .image-modal__info {
    padding: 0.8rem 1.2rem;
    gap: 0.3rem;
  }

  .image-modal__title {
    font-size: 1.1rem;
    line-height: 1.2;
  }

  .image-modal__code {
    font-size: 0.8rem;
  }
}

/* Mobil ve tablet ekranlar için */
@media (max-width: 768px) {
  .image-modal__content {
    max-width: 95vw;
    max-height: 95vh;
    border-radius: 8px;
  }

  .image-modal__info {
    padding: 1rem;
  }

  .image-modal__title {
    font-size: 1.1rem;
  }

  .image-modal__code {
    font-size: 0.8rem;
  }

  .image-modal__close {
    width: 35px;
    height: 35px;
    top: 0.5rem;
    right: 0.5rem;
  }
}