/* ============================================
   AMBASSADOR Site Styles - Exact Match
   ============================================ */

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

body {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  color: #333;
  line-height: 1.6;
  background: #fff;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

html {
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

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

img.collection-image {
  height: 100% !important;
}

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

/* ============================================
   Header (White Top Bar)
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 70px;
  background: #ffffff;
  z-index: 1000;
  border-bottom: 1px solid #e5e5e5;
}

.header-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 45px;
}

/* Logo */
.site-logo {
  display: block;
  text-decoration: none;
}

.logo-image {
  height: 38px;
  width: auto;
  display: block;
}

.logo-text {
  font-family: 'Jost', serif;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #000000;
  text-transform: uppercase;
}

/* Header Icons */
.header-icons {
  display: flex;
  align-items: center;
  gap: 25px;
}

.header-icon {
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: #000000;
  transition: color 0.2s ease;
  text-decoration: none;
}

.header-icon svg {
  width: 17px;
  height: 17px;
}

.header-icon:hover {
  color: #666666;
}

.header-phone-link {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #000000;
  text-decoration: none;
  transition: color 0.2s ease;
}

.header-phone-link:hover {
  color: #666666;
}

/* Hamburger Menu Button - Hidden on desktop */
.hamburger-btn {
  display: none;
}

/* ============================================
   Main Navigation (Inline in Header)
   ============================================ */
.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.main-nav-list {
  display: flex;
  list-style: none;
  gap: 30px;
  margin: 0;
  padding: 0;
  align-items: center;
}

.main-nav-link {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #000000;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.main-nav-link:hover {
  color: #666666;
}

.main-nav-phone {
  font-weight: 600;
  font-size: 13px;
}

.nav-search-icon {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-search-icon svg {
  width: 18px;
  height: 18px;
  stroke: #000000;
}

/* ============================================
   Navigation (White Bar) - DEPRECATED
   ============================================ */
.site-nav {
  background: #ffffff;
  border-bottom: 1px solid #e5e5e5;
}

.nav-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 45px;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 40px;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-list li {
  display: flex;
  align-items: center;
}

.nav-link {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #000000;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.nav-link:hover {
  color: #666666;
}

.nav-link.nav-phone {
  font-weight: 600;
  font-size: 13px;
  color: #000000;
}

.nav-phone {
  display: flex;
  align-items: center;
}

.nav-phone-link {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #000000;
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-phone-link:hover {
  color: #008080;
}

.nav-divider {
  color: rgba(0, 0, 0, 0.2);
  font-size: 12px;
  padding: 0 6px;
}

/* ============================================
   Search Overlay
   ============================================ */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2000;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding-top: 180px;
}

.search-wrapper {
  position: relative;
  width: 100%;
  max-width: 550px;
  padding: 0 20px;
}

.search-close {
  position: absolute;
  top: -50px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
}

.search-form {
  display: flex;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.search-input {
  flex: 1;
  border: none;
  padding: 16px 20px;
  font-size: 15px;
  font-family: 'Jost', sans-serif;
  outline: none;
}

.search-submit {
  width: 50px;
  background: #000;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 0.2s;
}

.search-submit:hover {
  background: #333;
}

/* ============================================
   Mobile Menu
   ============================================ */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  display: none;
}

.mobile-menu-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background: #fff;
  padding: 30px;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.2);
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
}

.mobile-nav {
  margin-top: 70px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.mobile-nav-link {
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #000;
  text-transform: uppercase;
  padding: 14px 0;
  border-bottom: 1px solid #f0f0f0;
  transition: color 0.2s ease;
}

.mobile-nav-link:hover {
  color: #666;
}

.mobile-nav-link.mobile-phone {
  color: #016A62;
  font-weight: 600;
  border-bottom: none;
  margin-top: 10px;
  padding-top: 20px;
  border-top: 1px solid #f0f0f0;
}

/* ============================================
   Hero Slider Section
   ============================================ */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  max-height: 900px;
  overflow: hidden;
  margin-top: 70px;
}

.hero-slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  display: none;
}

.hero-slide.active {
  opacity: 1;
  display: flex;
  flex-direction: column;
}

.hero-slide-info {
  flex: 0 0 20%;
  width: 100%;
  background: #ffffff;
  display: flex;
  align-items: center;
  order: 1;
}

.hero-slide-banner {
  flex: 0 0 80%;
  width: 100%;
  overflow: hidden;
  order: 2;
}

.hero-slide-info-inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero-slide-info-left {
  flex: 1;
}

.hero-slide-info-right {
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-slide-name {
  font-family: 'Jost', serif;
  font-size: 110px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 0;
  line-height: 1.2;
  color: #000000;
}

.hero-slide-rating {
  display: flex;
  justify-content: flex-end;
  gap: 5px;
  margin-bottom: 10px;
}

.hero-slide-rating span {
  font-size: 20px;
  color: #016A62;
}

.star-empty {
  color: rgba(1, 106, 98, 0.3) !important;
}

.hero-slide-description {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  line-height: 1.5;
  color: black;
  margin: 0;
  max-width: 500px;
  width: 60%;
}

.hero-slide-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: #016A62;
  color: #ffffff;
  border: none;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-left: 20px;
  flex-shrink: 0;
}

.hero-slide-button:hover {
  background: #015750;
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(1, 106, 98, 0.3);
  text-decoration: none;
}

.hero-slide-button::after {
  content: '→';
  font-size: 24px;
  font-weight: bold;
  color: #ffffff;
  transform: rotate(-45deg);
}

/* Slider Navigation */
.hero-slider-prev,
.hero-slider-next {
  position: absolute;
  top: 65%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero-slider-prev {
  left: 30px;
}

.hero-slider-next {
  right: 30px;
}

.hero-slider-prev:hover,
.hero-slider-next:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.hero-slider-prev svg,
.hero-slider-next svg {
  width: 20px;
  height: 20px;
}

/* Slider Lines Indicator */
.hero-slider-lines {
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  display: flex;
  z-index: 10;
  background: rgba(0, 0, 0, 0.5);
      padding: 0 20px;
}

.slider-line-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 25px 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  justify-content: start;
    align-items: start;

    padding-top: 0;
    padding-bottom: 40px;

}

.slider-line-item:last-child {
  border-right: none;
}

.slider-line-item::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  height: 2px;
  background: #ffffff;
  /* transform: scaleX(0); */
  opacity: 0.5;
  transition:  .3s ;
}

.slider-line-item.active::before {
  /* transform: scaleX(1); */
  opacity: 1;

}


.slider-line-item.active {
  /* background: rgba(0, 0, 0, 0.7); */
}

.slider-number {
  /* font-family: 'Jost', serif; */
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
  margin-top: 14px;
  margin-bottom: -5px;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.slider-line-item.active .slider-number {
  opacity: 1;
}

.slider-name {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.6;
  transition:  0.3s ;
}

.slider-line-item.active .slider-name {
  opacity: 1;
}

/* .slider-line-item:hover {
  background: rgba(0, 0, 0, 0.6);
} */

.slider-line-item:hover .slider-number,
.slider-line-item:hover .slider-name {
  opacity: 0.9;
}

/* ============================================
   Mini Divider Section
   ============================================ */
.mini-divider {
  background: #000000;
  padding: 18px 0;
}

.mini-divider-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 50px;
  flex-wrap: wrap;
}

.mini-divider-text {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff;
  white-space: nowrap;
}

.mini-divider-dot {
  font-family: 'Jost', sans-serif;
  font-size: 24px;
  color: #016A62;
  letter-spacing: 3px;
}

/* ============================================
   Hero Section (Legacy - Deprecated)
   ============================================ */

.ambassador-hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ambassador-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, transparent 50%);
}

/* ============================================
   Container
   ============================================ */
.ambassador-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 50px;
}

/* ============================================
   Section Styles
   ============================================ */
.ambassador-section {
  padding: 100px 0;
}

.ambassador-section-light {
  background: #f8f8f8;
}

.ambassador-section-title {
  font-family: 'Jost', sans-serif;
  font-size: 32px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #000;
  text-align: center;
  margin-bottom: 60px;
}

/* ============================================
   Collections Section
   ============================================ */
.collections-section {
  padding: 80px 0;
  background: #ffffff;
}

.collections-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 50px;
}

.collections-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 30px;
}

.collections-title {
  font-family: 'Jost', sans-serif;
  font-size: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #000000;
  margin: 0;
  flex-shrink: 0;
}

.collections-description {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #666666;
  margin: 0;
  flex: 1;
  padding: 0 20px;
}

.collections-all-btn {
  display: inline-block;
  padding: 14px 35px;
  background: transparent;
  color: #000000;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  border: 2px solid #000000;
  border-radius: 0;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.collections-all-btn:hover {
  background: #000000;
  color: #ffffff;
}

.collections-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 30px;
  grid-auto-rows: 285px;
}

.collection-card {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 285px;
}

.collection-card-big {
  grid-row: span 2;
  min-height: 570px;
}

.collection-card-small {
  grid-row: span 1;
  min-height: 285px;
}

.collection-link {
  display: block;
  text-decoration: none;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.collection-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.collection-card-big .collection-image-wrapper {
  height: 100%;
}

.collection-card-small .collection-image-wrapper {
  height: 100%;
}

.collection-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}

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

.collection-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.05) 50%, rgba(0,0,0,0.1) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 25px;
  transition: background 0.3s ease;
  pointer-events: none;
}

.collection-card:hover .collection-overlay {
  background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.2) 100%);
}

.collection-info-top {
  align-self: flex-start;
}

.collection-name {
  font-family: 'Jost', serif;
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ffffff;
  margin: 0 0 10px 0;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.collection-card-small .collection-name {
  font-size: 24px;
}

.collection-rating {
  display: flex;
  gap: 3px;
}

.collection-rating span {
  font-size: 18px;
  color: #016A62;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.collection-card-small .collection-rating span {
  font-size: 16px;
}

.star-filled {
  color: #016A62;
}

.star-empty {
  color: rgba(1, 106, 98, 0.3);
}

.collection-button-overlay {
  align-self: flex-end;
}

.collection-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: #016A62;
  color: #ffffff;
  border-radius: 50%;
  font-size: 24px;
  font-weight: bold;
  transition: all 0.3s ease;
  transform: rotate(-45deg);
}

.collection-card:hover .collection-arrow {
  background: #ffffff;
  color: #016A62;
  transform: rotate(-45deg) scale(1.1);
}

/* ============================================
   About Section
   ============================================ */
.about-section {
  padding: 100px 0;
  background: #ffffff;
}

.about-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 50px;
}

.about-header-line {
  width: 100%;
  height: 2px;
  background: #000000;
  margin-bottom: 40px;
}

.about-title {
  font-family: 'Jost', sans-serif;
  font-size: 70px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #000000;
  margin: 0;
}

.about-top-content {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 60px;
}

.about-title-left {
  flex: 0 0 calc(50% - 20px);
}

.about-description-right {
  flex: 0 0 calc(50% - 20px);
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
  padding-left: 40px;
}

.about-info-icon {
  position: absolute;
  left: 0;
  top: 5px;
  color: #016A62;
}

.about-info-icon svg {
  width: 20px;
  height: 20px;
  stroke: #016A62;
}

.about-content {
  max-width: 900px;
  margin: 0 auto 80px auto;
}

.about-text p {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #666666;
  margin: 0 0 15px 0;
  text-align: left;
}

.about-btn {
  display: inline-block;
  padding: 14px 35px;
  background: transparent;
  color: #000000;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  border: 2px solid #000000;
  border-radius: 0;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.about-btn:hover {
  background: #000000;
  color: #ffffff;
}

/* Stats Section with Vertical Line Separators */
.about-stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  padding: 20px 0;
  border-top: 1px solid #000000;
}

.about-stat-item {
  text-align: left;
  padding: 0 40px 0 0;
}

.about-stat-number {
  font-family: 'Jost', sans-serif;
  font-size: 48px;
  font-weight: 400;
  color: #016A62;
  margin-bottom: 0;
}

.about-stat-label {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #000000;
}

.about-stat-divider {
  width: 1px;
  height: 80px;
  background: #000000;
}

/* ============================================
   Products Section (НОВИНКИ & ХИТЫ)
   ============================================ */
.products-section {
  padding: 80px 0;
  background: #ffffff;
}

.products-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 50px;
}

/* Products Header with Title and Filters */
.products-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
  gap: 40px;
}

.products-title {
  font-family: 'Jost', sans-serif;
  font-size: 50px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #000000;
  margin: 0;
}

.products-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.products-all-btn {
  display: inline-block;
  padding: 14px 35px;
  background: transparent;
  color: #000000;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  border: 2px solid #000000;
  border-radius: 0;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.products-all-btn:hover {
  background: #000000;
  color: #ffffff;
}

.product-filter-btn {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 500;
  padding: 10px 20px;
  background: #ffffff;
  color: #000000;
  border: 1px solid #000000;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  white-space: nowrap;
}

.product-filter-btn:hover {
  background: #f5f5f5;
  color: #000000;
}

.product-filter-btn.active {
  background: #016A62 !important;
  color: #ffffff !important;
  border-color: #016A62 !important;
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.product-card {
  position: relative;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.product-card[style*="display: none"] {
  opacity: 0;
  transform: scale(0.9);
}

.product-link {
  display: block;
  text-decoration: none;
}

.product-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}

.product-card-link:hover {
  text-decoration: none;
  opacity: 0.7;
}

.product-image-wrapper {
  position: relative;
  width: 100%;
  height: 350px;
  overflow: hidden;
  margin-bottom: 20px;
  background: #f5f5f5;
  border-radius: 8px;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.6s ease;
}

.product-card:hover .product-image {
  transform: scale(1.12);
  filter: brightness(1.08);
}

/* Wishlist Heart Button */
.product-wishlist-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
}

.product-wishlist-btn svg {
  width: 20px;
  height: 20px;
  color: #000000;
  transition: all 0.3s ease;
}

.product-wishlist-btn:hover {
  background: #016A62;
  border-color: #016A62;
}

.product-wishlist-btn:hover svg {
  color: #ffffff;
}

.product-wishlist-btn.active {
  background: #016A62;
  border-color: #016A62;
}

.product-wishlist-btn.active svg {
  color: #ffffff;
  fill: #ffffff;
}

/* Product Info */
.product-info {
  text-align: center;
}

.product-type {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #999999;
  margin: 0 0 8px 0;
  letter-spacing: 0.5px;
}

.product-name {
  font-family: 'Jost', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #000000;
  margin: 0 0 15px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Color Swatches */
.product-colors {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}

.color-swatch {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  border: 1px solid #e0e0e0;
  display: inline-block;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.color-swatch:hover {
  transform: scale(1.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* ============================================
   About Section (OLD - deprecated)
   ============================================ */
.ambassador-about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.ambassador-about-text {
  font-size: 15px;
  line-height: 1.8;
  color: #666;
}

.ambassador-about-text p {
  margin-bottom: 20px;
}

.ambassador-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.ambassador-stat-item {
  text-align: center;
}

.ambassador-stat-number {
  font-family: 'Jost', serif;
  font-size: 56px;
  font-weight: 700;
  color: #008080;
  line-height: 1;
  margin-bottom: 10px;
}

.ambassador-stat-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #666;
}

/* ============================================
   Products Grid
   ============================================ */
.ambassador-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.ambassador-product-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.ambassador-product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.ambassador-product-image-wrapper {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: #f8f8f8;
}

.ambassador-product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ambassador-product-card:hover .ambassador-product-image {
  transform: scale(1.1);
}

.ambassador-product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ambassador-badge-new {
  background: #008080;
  color: #fff;
}

.ambassador-badge-sale {
  background: #e74c3c;
  color: #fff;
}

.ambassador-product-info {
  padding: 18px;
}

.ambassador-product-name {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #000;
  margin-bottom: 12px;
  line-height: 1.4;
}

.ambassador-product-price {
  font-size: 17px;
  font-weight: 700;
  color: #008080;
}

.ambassador-price-old {
  font-size: 13px;
  text-decoration: line-through;
  color: #999;
  margin-right: 8px;
}

/* ============================================
   Wallpaper Grid
   ============================================ */
.ambassador-wallpaper-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.ambassador-wallpaper-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.ambassador-wallpaper-link {
  display: block;
  position: relative;
  text-decoration: none;
}

.ambassador-wallpaper-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ambassador-wallpaper-card:hover .ambassador-wallpaper-image {
  transform: scale(1.1);
}

.ambassador-wallpaper-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ambassador-wallpaper-card:hover .ambassador-wallpaper-overlay {
  opacity: 1;
}

.ambassador-wallpaper-name {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.ambassador-wallpaper-btn {
  display: inline-block;
  padding: 10px 24px;
  background: #008080;
  color: #fff;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
   Best Sellers Grid
   ============================================ */
.ambassador-bestsellers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.ambassador-bestseller-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.ambassador-bestseller-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.ambassador-bestseller-link {
  display: block;
  text-decoration: none;
}

.ambassador-bestseller-image-wrapper {
  position: relative;
  width: 100%;
  height: 350px;
  overflow: hidden;
  background: #f8f8f8;
}

.ambassador-bestseller-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ambassador-bestseller-card:hover .ambassador-bestseller-image {
  transform: scale(1.1);
}

.ambassador-bestseller-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 18px;
  background: #008080;
  color: #fff;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ambassador-bestseller-info {
  padding: 24px;
  text-align: center;
}

.ambassador-bestseller-name {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #000;
  margin-bottom: 15px;
}

.ambassador-bestseller-price {
  font-size: 20px;
  font-weight: 700;
  color: #008080;
}

/* ============================================
   Newsletter Section
   ============================================ */
.ambassador-newsletter {
  text-align: center;
}

.ambassador-newsletter-content {
  max-width: 1000px;
  margin: 0 auto;
}

.newsletter-left-right {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  gap: 40px;
}

.newsletter-left {
  flex: 1;
}

.newsletter-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.ambassador-newsletter-title {
  font-family: 'Jost', sans-serif;
  font-size: 50px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #000;
  margin: 0;
  text-align: left;
}

.ambassador-newsletter-text {
  font-family: 'Jost', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #666;
  margin: 0;
  text-align: left;
}

.newsletter-buttons {
  display: flex;
  gap: 15px;
}

.newsletter-phone-btn {
  display: inline-block;
  padding: 16px 40px;
  background: #000000;
  color: #ffffff;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  border: none;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.newsletter-phone-btn:hover {
  background: #333333;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.newsletter-subscribe-btn {
  display: inline-block;
  padding: 16px 40px;
  background: #016A62;
  color: #ffffff;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-subscribe-btn:hover {
  background: #015750;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(1, 106, 98, 0.3);
}

/* ============================================
   Interior Feature Section
   ============================================ */
.interior-feature-section {
  padding: 0;
}

.interior-feature-container {
  max-width: 1400px;
  margin: 0 auto;
}

.interior-image-wrapper {
  width: 100%;
  height: 600px;
  overflow: hidden;
}

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

.interior-bottom-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #000000;
  position: relative;
}

.interior-bottom-section::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 33.33%;
  width: 2px;
  height: 60%;
  background: #016A62;
}

.interior-bottom-section::after {
  content: '';
  position: absolute;
  top: 20%;
  left: 66.66%;
  width: 2px;
  height: 60%;
  background: #016A62;
}

.interior-bottom-part {
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.interior-part-title {
  font-family: 'Jost', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.interior-part-text {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #cccccc;
  margin: 0;
}

/* Mobile responsive for interior section */
@media (max-width: 992px) {
  .interior-image-wrapper {
    height: 400px;
  }

  .interior-bottom-section {
    grid-template-columns: 1fr;
  }

  .interior-bottom-section::before,
  .interior-bottom-section::after {
    display: none;
  }

  .interior-bottom-part {
    padding: 40px 30px;
    border-bottom: 2px solid #016A62;
  }

  .interior-bottom-part:last-child {
    border-bottom: none;
  }
}

/* ============================================
   Footer
   ============================================ */
.ambassador-footer {
  background: #000;
  color: #fff;
  padding: 80px 0 40px;
}

.ambassador-footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 50px;
}

.ambassador-footer-logo {
  text-align: center;
  margin-bottom: 60px;
}

.ambassador-footer-logo-link {
  display: inline-block;
  text-decoration: none;
}

.ambassador-footer-logo-text {
  font-family: 'Jost', serif;
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 6px;
  color: #008080;
  text-transform: uppercase;
}

.ambassador-footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.ambassador-footer-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 25px;
  color: #fff;
}

.ambassador-footer-links {
  list-style: none;
}

.ambassador-footer-links li {
  margin-bottom: 12px;
}

.ambassador-footer-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.ambassador-footer-links a:hover {
  color: #008080;
}

.ambassador-footer-contact {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.ambassador-footer-contact svg {
  flex-shrink: 0;
  opacity: 0.7;
}

.ambassador-footer-contact span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

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

.ambassador-social-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #fff;
  transition: all 0.3s ease;
}

.ambassador-social-icon:hover {
  background: #008080;
  border-color: #008080;
  transform: translateY(-3px);
}

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

.ambassador-footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.ambassador-powered {
  margin-top: 8px;
  font-size: 11px;
}

/* ============================================
   New DEKORON Footer
   ============================================ */
.new-footer {
  background: #016A62;
  color: #fff;
  padding: 60px 0 30px;
}

.new-footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 50px;
}

/* Footer Phone Column */
.footer-phone-column {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.footer-phone-number {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.phone-big {
  font-family: 'Jost', sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  letter-spacing: 1px;
}

.footer-social-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.footer-social-link:hover {
  opacity: 0.8;
}

.footer-social-link svg {
  flex-shrink: 0;
}

/* Footer Columns Grid */
.footer-columns {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-title {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  color: #fff;
}

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

.footer-links li {
  margin: 0;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-logo {
  width: 100%;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-logo-img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================
   Toast / Alert Notifications
   ============================================ */
#alert.toast-container {
  position: fixed !important;
  top: 90px !important;
  right: 20px !important;
  left: auto !important;
  z-index: 99999 !important;
  max-width: 400px;
  width: auto !important;
}

/* Bootstrap Alerts */
#alert .alert {
  position: relative !important;
  padding: 16px 20px !important;
  margin-bottom: 15px !important;
  border: 1px solid transparent !important;
  border-radius: 8px !important;
  background: #ffffff !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
  animation: slideInRight 0.3s ease-out;
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.alert.fadeOut {
  animation: slideOutRight 0.3s ease-out forwards;
}

@keyframes slideOutRight {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

.alert i {
  font-size: 18px;
  flex-shrink: 0;
}

.alert .btn-close {
  position: static;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  padding: 0;
  background: none;
  border: none;
  opacity: 0.5;
  transition: opacity 0.2s ease;
}

.alert .btn-close:hover {
  opacity: 1;
}

/* Alert variants */
#alert .alert-success {
  color: #28a745 !important;
  background: #ffffff !important;
  border-color: #28a745 !important;
  border-left: 4px solid #28a745 !important;
}

#alert .alert-success i {
  color: #28a745 !important;
}

#alert .alert-danger {
  color: #dc3545 !important;
  background: #ffffff !important;
  border-color: #dc3545 !important;
  border-left: 4px solid #dc3545 !important;
}

#alert .alert-danger i {
  color: #dc3545 !important;
}

#alert .alert-warning {
  color: #ffc107 !important;
  background: #ffffff !important;
  border-color: #ffc107 !important;
  border-left: 4px solid #ffc107 !important;
}

#alert .alert-warning i {
  color: #ffc107 !important;
}

#alert .alert-info {
  color: #17a2b8 !important;
  background: #ffffff !important;
  border-color: #17a2b8 !important;
  border-left: 4px solid #17a2b8 !important;
}

#alert .alert-info i {
  color: #17a2b8 !important;
}

/* Toast component styles */
.toast {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  margin-bottom: 15px;
  overflow: hidden;
  animation: slideInRight 0.3s ease-out;
  border-left: 4px solid #016A62;
}

.toast.hide {
  animation: slideOutRight 0.3s ease-out forwards;
}

.toast-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: rgba(1, 106, 98, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.toast-title {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #016A62;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.toast-close {
  background: none;
  border: none;
  color: #666;
  cursor: pointer;
  padding: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.toast-close:hover {
  background: rgba(0, 0, 0, 0.05);
  color: #000;
}

.toast-body {
  padding: 14px 16px;
  font-size: 14px;
  color: #333;
  line-height: 1.5;
}

/* Toast variants */
.toast-success {
  border-left-color: #28a745;
}

.toast-success .toast-header {
  background: rgba(40, 167, 69, 0.05);
}

.toast-success .toast-title {
  color: #28a745;
}

.toast-error {
  border-left-color: #dc3545;
}

.toast-error .toast-header {
  background: rgba(220, 53, 69, 0.05);
}

.toast-error .toast-title {
  color: #dc3545;
}

.toast-warning {
  border-left-color: #ffc107;
}

.toast-warning .toast-header {
  background: rgba(255, 193, 7, 0.05);
}

.toast-warning .toast-title {
  color: #ffc107;
}

.toast-info {
  border-left-color: #17a2b8;
}

.toast-info .toast-header {
  background: rgba(23, 162, 184, 0.05);
}

.toast-info .toast-title {
  color: #17a2b8;
}

/* Mobile responsive for toasts and alerts */
@media (max-width: 768px) {
  #alert.toast-container {
    top: 70px !important;
    right: 10px !important;
    left: 10px !important;
    max-width: none !important;
    width: auto !important;
  }

  #alert .toast,
  #alert .alert {
    margin-bottom: 10px !important;
  }

  .toast-header {
    padding: 10px 12px;
  }

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

  .toast-body {
    padding: 12px;
    font-size: 13px;
  }

  #alert .alert {
    padding: 12px 16px !important;
    font-size: 13px !important;
  }

  #alert .alert i {
    font-size: 16px;
  }
}

/* ============================================
   Responsive Styles - New Footer
   ============================================ */

@media (max-width: 992px) {
  .new-footer-container {
    padding: 0 30px;
  }

  .phone-big {
    font-size: 32px;
  }

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

  .footer-logo {
    max-width: 550px;
  }
}

@media (max-width: 576px) {
  /* Extra overflow prevention for small screens */
  body,
  html {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
  }

  /* Ensure all containers fit */
  .header-wrapper,
  .collections-container,
  .about-container,
  .products-container,
  .wallpaper-fitting-container,
  .newsletter-container,
  .interior-feature-container,
  .new-footer-container {
    padding-left: 15px !important;
    padding-right: 15px !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  /* Fix grids on very small screens */
  .collections-grid,
  .products-grid,
  .wallpaper-fitting-grid {
    gap: 15px;
  }

  .new-footer {
    padding: 40px 0 20px;
  }

  .new-footer-container {
    padding: 0 20px;
  }

  .phone-big {
    font-size: 28px;
  }

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

  .footer-social-links {
    flex-direction: row;
    gap: 20px;
  }

  .footer-logo {
    max-width: 450px;
  }
}

/* ============================================
   Responsive Styles
   ============================================ */

/* Tablet */
@media (max-width: 992px) {
  .site-header {
    height: 65px;
  }

  .main-nav {
    display: none;
  }

  .site-nav {
    display: none;
  }

  .nav-divider {
    display: none;
  }

  .header-wrapper {
    padding: 0 30px;
  }

  .logo-text {
    font-size: 28px;
    letter-spacing: 3px;
  }

  .logo-image {
    height: 32px !important;
  }

  .header-icons {
    gap: 20px;
  }

  .header-phone-link {
    display: none;
  }

  .hamburger-btn {
    display: flex;
  }

  .ambassador-hero {
    margin-top: 65px;
  }

  .hero-slider {
    min-height: 500px;
    margin-top: 65px;
  }

  .hero-slide-name {
    font-size: 30px;
  }

  .hero-slide-info-inner {
    padding: 0 30px;
  }

  .hero-slide-info-left {
    flex: 1;
  }

  .hero-slide-info-right {
    max-width: 400px;
  }

  .hero-slide-name {
    font-size: 30px;
  }

  .hero-slider-prev,
  .hero-slider-next {
    width: 45px;
    height: 45px;
    top: 62%;
  }

  .hero-slider-prev {
    left: 20px;
  }

  .hero-slider-next {
    right: 20px;
  }

  .mini-divider-inner {
    padding: 0 30px;
    gap: 15px;
  }

  .mini-divider-text {
    font-size: 10px;
    letter-spacing: 1.5px;
  }

  .mini-divider-dot {
    font-size: 20px;
    letter-spacing: 2px;
  }

  .ambassador-container {
    padding: 0 30px;
  }

  .ambassador-footer-container {
    padding: 0 30px;
  }

  .ambassador-collections-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .collections-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .collections-title {
    font-size: 32px;
  }

  .collections-description {
    max-width: 100%;
    font-size: 13px;
  }

  .collections-all-btn {
    width: 100%;
    text-align: center;
  }

  .collections-container {
    padding: 0 15px;
  }

  .about-container {
    padding: 0 15px;
  }

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

  .collection-card-big,
  .collection-card-small {
    grid-row: span 1;
  }

  .collection-card-big .collection-image-wrapper,
  .collection-card-small .collection-image-wrapper {
    height: 250px;
  }

  .collection-image {
    height: 100% !important;
  }

  .collection-name {
    font-size: 20px;
  }

  .collection-card-small .collection-name {
    font-size: 18px;
  }

  .collection-arrow {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  /* About Section Mobile */
  .about-title {
    font-size: 32px;
  }

  .about-top-content {
    flex-direction: column;
    gap: 30px;
  }

  .about-text p {
    font-size: 14px;
  }

  .about-stats {
    flex-wrap: wrap;
    padding: 40px 0;
  }

  .about-stat-item {
    padding: 20px;
    flex: 0 0 50%;
  }

  .about-stat-divider {
    display: none;
  }

  .about-stat-number {
    font-size: 36px;
  }

  .about-stat-label {
    font-size: 12px;
  }

  .ambassador-about-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .ambassador-stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }

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

  .ambassador-wallpaper-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .ambassador-bestsellers-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .ambassador-newsletter-form {
    flex-direction: column;
  }
}

/* Mobile */
@media (max-width: 768px) {
  /* Prevent overflow */
  *,
  *::before,
  *::after {
    max-width: 100%;
    box-sizing: border-box;
  }

  /* Fix container overflow */
  .header-wrapper,
  .hero-slider,
  .hero-container,
  .collections-container,
  .about-container,
  .products-container,
  .wallpaper-fitting-container,
  .newsletter-container,
  .interior-feature-container,
  .new-footer-container,
  .ambassador-container {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  /* Fix grid overflow */
  .collections-grid,
  .products-grid,
  .wallpaper-fitting-grid,
  .footer-columns,
  .ambassador-collections-grid,
  .ambassador-products-grid,
  .ambassador-wallpaper-grid {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  /* Fix card overflow */
  .collection-card,
  .product-card,
  .fitting-item,
  .ambassador-collection-card,
  .ambassador-product-card {
    max-width: 100%;
    overflow: hidden;
  }

  /* Fix image overflow */
  img:not(.collection-image),
  svg,
  video,
  iframe {
    max-width: 100% !important;
    height: auto !important;
    overflow: hidden;
  }

  /* Fix text overflow */
  p,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  span,
  a,
  li {
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
    max-width: 100%;
  }

  .site-header {
    height: 60px;
  }

  .ambassador-hero {
    margin-top: 60px;
    min-height: 500px;
  }

  .hero-slider {
    height: 60vh;
    min-height: 400px;
    margin-top: 60px;
  }

  .hero-slide-info {
    flex: 0 0 15%;
  }

  .hero-slide-banner {
    flex: 0 0 85%;
  }

  .hero-slide-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .hero-slide-info-inner {
    padding: 0 20px;
    flex-direction: column;
    gap: 5px;
  }

  .hero-slide-info-left {
    text-align: left;
  }

  .hero-slide-info-right {
align-items: center;
        text-align: left;
        max-width: 100%;
        text-align: center;
  }

  .hero-slide-rating {
    justify-content: flex-start;
  }

  .hero-slide-name {
    font-size: 24px;
    letter-spacing: 2px;
  }

  .hero-slide-rating span {
    font-size: 18px;
  }

  .hero-slide-description {
    font-size: 12px;
  }

  .hero-slider-prev,
  .hero-slider-next {
    width: 40px;
    height: 40px;
    top: 58%;
  }

  .hero-slider-prev {
    left: 15px;
  }

  .hero-slider-next {
    right: 15px;
  }

  .mini-divider-inner {
    padding: 0 20px;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .mini-divider-text {
    font-size: 9px;
    letter-spacing: 1px;
  }

  .mini-divider-dot {
    font-size: 18px;
    letter-spacing: 1.5px;
  }

  .header-wrapper {
    padding: 0 20px;
  }

  .logo-text {
    font-size: 18px;
    letter-spacing: 1.5px;
  }

  .logo-image {
    height: 28px !important;
  }

  .header-icons {
    gap: 15px;
  }

  /* Collections Section Mobile */
  .collections-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .collections-title {
    font-size: 32px;
  }

  .collections-description {
    max-width: 100%;
    font-size: 13px;
  }

  .collections-all-btn {
    width: 100%;
    text-align: center;
  }

  .collections-container {
    padding: 0 15px;
  }

  .about-container {
    padding: 0 15px;
  }

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

  .collection-card-big,
  .collection-card-small {
    grid-row: span 1;
  }

  .collection-card-big .collection-image-wrapper,
  .collection-card-small .collection-image-wrapper {
    height: 250px;
  }

  .collection-image {
    height: 100% !important;
  }

  .collection-name {
    font-size: 20px;
  }

  .collection-card-small .collection-name {
    font-size: 18px;
  }

  .collection-arrow {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  /* About Section Mobile */
  .about-title {
    font-size: 32px;
  }

  .about-top-content {
    flex-direction: column;
    gap: 30px;
  }

  .about-text p {
    font-size: 14px;
  }

  .about-stats {
    flex-wrap: wrap;
    padding: 40px 0;
  }

  .about-stat-item {
    padding: 20px;
    flex: 0 0 50%;
  }

  .about-stat-divider {
    display: none;
  }

  .about-stat-number {
    font-size: 36px;
  }

  .about-stat-label {
    font-size: 12px;
  }

  /* Products Section Mobile */
  .products-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .products-title {
    font-size: 32px;
  }

  .products-filters {
    gap: 8px;
  }

  .product-filter-btn {
    font-size: 10px;
    padding: 8px 15px;
  }

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

  .product-image-wrapper {
    height: 250px;
  }

  .product-wishlist-btn {
    width: 35px;
    height: 35px;
  }

  .product-wishlist-btn svg {
    width: 18px;
    height: 18px;
  }

  .product-type {
    font-size: 11px;
  }

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

  .color-swatch {
    width: 20px;
    height: 20px;
  }

  /* Hero Slider Responsive */
  .hero-slider-lines {
    left: 3%;
    right: 3%;
    padding: 0 5px;
  }

  .slider-line-item {
    padding: 10px 3px;
    padding-bottom: 20px;
  }

  .slider-number {
    font-size: 10px;
    margin-top: 5px;
  }

  .slider-name {
    font-size: 8px;
    letter-spacing: 0.5px;
  }

  .ambassador-section {
    padding: 60px 0;
  }

  .ambassador-section-title {
    font-size: 26px;
    letter-spacing: 2px;
    margin-bottom: 40px;
  }

  .ambassador-container {
    padding: 0 20px;
  }

  .ambassador-footer-container {
    padding: 0 20px;
  }

  .ambassador-collections-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .ambassador-collection-image-wrapper {
    height: 350px;
  }

  .ambassador-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .ambassador-stat-number {
    font-size: 42px;
  }

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

  .ambassador-product-image-wrapper {
    height: 250px;
  }

  .ambassador-wallpaper-grid {
    grid-template-columns: 1fr;
  }

  .ambassador-wallpaper-image {
    height: 300px;
  }

  .ambassador-bestsellers-grid {
    grid-template-columns: 1fr;
  }

  .ambassador-bestseller-image-wrapper {
    height: 280px;
  }

  .ambassador-footer {
    padding: 50px 0 30px;
  }

  .ambassador-footer-logo-text {
    font-size: 32px;
    letter-spacing: 4px;
  }

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

  .ambassador-newsletter-title {
    font-size: 24px;
    letter-spacing: 2px;
  }

  .ambassador-newsletter-subtitle {
    font-size: 14px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .site-header {
    height: 55px;
  }

  .ambassador-hero {
    margin-top: 55px;
  }

  .hero-slider {
    height: 50vh;
    min-height: 350px;
    margin-top: 55px;
  }

  .hero-slide-info {
    flex: 0 0 20%;
  }

  .hero-slide-banner {
    flex: 0 0 80%;
  }

  .hero-slide-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Hero Slider Progress Bar - Extra Small Mobile */
  .hero-slider-lines {
    left: 2%;
    right: 2%;
    padding: 0 3px;
  }

  .slider-line-item {
    padding: 8px 2px;
    padding-bottom: 15px;
  }

  .slider-number {
    font-size: 9px;
    margin-top: 3px;
  }

  .slider-name {
    font-size: 7px;
    letter-spacing: 0.3px;
  }

  .hero-slide-name {
    font-size: 20px;
  }

  .hero-slide-rating span {
    font-size: 16px;
  }

  .hero-slide-button {
    width: 40px;
    height: 40px;
    margin-left: 0;
    margin-top: 10px;
  }

  .hero-slide-button::after {
    font-size: 20px;
  }

  .hero-slide-description {
    font-size: 11px;
  }

  .hero-slider-prev,
  .hero-slider-next {
    width: 35px;
    height: 35px;
  }

  .hero-slider-prev svg,
  .hero-slider-next svg {
    width: 16px;
    height: 16px;
  }

  .mini-divider-inner {
    padding: 0 15px;
    gap: 8px;
  }

  .mini-divider-text {
    font-size: 8px;
    letter-spacing: 0.5px;
  }

  .mini-divider-dot {
    font-size: 16px;
    letter-spacing: 1px;
  }

  .header-wrapper {
    padding: 0 15px;
  }

  .logo-text {
    font-size: 16px;
    letter-spacing: 1px;
  }

  .logo-image {
    height: 24px !important;
  }

  .header-icons {
    gap: 12px;
  }

  .header-icon svg {
    width: 16px;
    height: 16px;
  }

  .ambassador-container {
    padding: 0 15px;
  }

  .ambassador-footer-container {
    padding: 0 15px;
  }

  .ambassador-section-title {
    font-size: 22px;
    letter-spacing: 1px;
  }

  .ambassador-collection-name {
    font-size: 16px;
  }

  .ambassador-stat-number {
    font-size: 36px;
  }

  .ambassador-stat-label {
    font-size: 11px;
  }

  .ambassador-product-name {
    font-size: 13px;
  }

  .ambassador-bestseller-name {
    font-size: 14px;
  }
}

/* Wallpaper Fitting Section */
.wallpaper-fitting-section {
  padding: 80px 20px;
}

.wallpaper-fitting-container {
  max-width: 1200px;
  margin: 0 auto;
}

.wallpaper-fitting-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 30px;
}

.wallpaper-fitting-title {
  font-family: 'Jost', sans-serif;
  font-size: 50px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #000000;
  margin: 0;
  flex-shrink: 0;
}

.wallpaper-fitting-description {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #666666;
  margin: 0;
  flex: 1;
  padding: 0 20px;
}

.wallpaper-scan-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #016A62;
  color: #ffffff;
  border: none;
  border-radius: 50%;
  transition: all 0.3s ease;
  flex-shrink: 0;
  text-decoration: none;
}

.wallpaper-scan-btn svg {
  width: 28px;
  height: 28px;
  stroke: #ffffff;
  transition: all 0.3s ease;
}

.wallpaper-scan-btn:hover {
  background: #015750;
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(1, 106, 98, 0.4);
}

.wallpaper-scan-btn:hover svg {
  transform: rotate(90deg);
}

.wallpaper-fitting-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
  width: 100%;
  min-height: 600px;
}

.fitting-item {
  position: relative;
  width: 100%;
  min-height: 200px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

/* Grid Item 2 */
.div2 {
  grid-column-start: 2;
  grid-row-start: 1;
}

/* Grid Item 3 */
.div3 {
  grid-column: span 2 / span 2;
  grid-column-start: 1;
  grid-row-start: 2;
}

/* Grid Item 6 */
.div6 {
  grid-row: span 2 / span 2;
  grid-column-start: 3;
  grid-row-start: 1;
}

/* Grid Item 10 */
.div10 {
  grid-column: span 2 / span 2;
  grid-column-start: 4;
  grid-row-start: 1;
}

/* Grid Item 11 */
.div11 {
  grid-column-start: 4;
  grid-row-start: 2;
}

/* Grid Item 12 */
.div12 {
  grid-column-start: 5;
  grid-row-start: 2;
}

.fitting-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.6s ease;
}

.fitting-item:hover .fitting-image {
  transform: scale(1.12);
  filter: brightness(1.08);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .wallpaper-fitting-section {
    padding: 50px 15px;
  }

  .wallpaper-fitting-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .wallpaper-fitting-title {
    font-size: 32px;
  }

  .wallpaper-fitting-description {
    max-width: 100%;
    font-size: 13px;
  }

  .wallpaper-scan-btn {
    width: 50px;
    height: 50px;
  }

  .wallpaper-scan-btn svg {
    width: 24px;
    height: 24px;
  }

  .wallpaper-fitting-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 15px;
    min-height: auto;
  }

  .div2,
  .div3,
  .div6,
  .div10,
  .div11,
  .div12 {
    grid-column: 1;
    grid-row: auto;
    aspect-ratio: 4 / 3;
    max-height: 180px;
  }

  .fitting-item {
    min-height: auto;
    max-height: 180px;
  }

  .fitting-item:hover .fitting-image {
    transform: scale(1.12);
    filter: brightness(1.08);
  }

  /* Newsletter mobile styles */
  .newsletter-left-right {
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
  }

  .newsletter-left,
  .newsletter-right {
    width: 100%;
  }

  .ambassador-newsletter-title {
    font-size: 32px;
  }

  .ambassador-newsletter-text {
    font-size: 14px;
  }

  .newsletter-buttons {
    flex-direction: column;
    width: 100%;
  }

  .newsletter-phone-btn,
  .newsletter-subscribe-btn {
    width: 100%;
    text-align: center;
  }
}
