.main {
  min-height: calc(100vh - 80px);
  margin-top: 80px;
}



.product-showcase {
  position: relative;
  padding: 4rem 0;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-color) 0%, var(--secondary-bg-color) 100%);
}

.product-showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 40%, rgba(212, 163, 115, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.product-showcase__container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.product-showcase__header {
  margin-bottom: 3rem;
  text-align: center;
}

.product-showcase__title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--main-color);
  font-weight: 700;
  font-size: 2.5rem;
}

.product-showcase__title i {
  color: var(--secondary-color);
  font-size: 2rem;
}

.product-showcase__subtitle {
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.8;
  color: var(--text-color);
  font-size: 1.2rem;
  line-height: 1.6;
}

.product-showcase__filters {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}

.product-showcase__filter-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  border-radius: 50px;
  padding: 0.5rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  background: white;
}

.product-showcase__filter {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
  border-radius: 25px;
  padding: 0.75rem 1.5rem;
  color: var(--text-color);
  font-weight: 500;
  background: transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}

.product-showcase__filter:hover,
.product-showcase__filter.active {
  color: white;
  background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
  transform: translateY(-2px);
}

.product-showcase__filter i {
  font-size: 1rem;
}

.product-showcase__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

@media (max-width: 425px) {
  .product-showcase__grid {
    grid-template-columns: 1fr;
  }
}

.product-showcase__card {
  position: relative;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  background: white;
  transition: all 0.3s ease;
}

.product-showcase__card:hover {
  box-shadow: 0 20px 40px rgba(212, 163, 115, 0.2);
  transform: translateY(-10px);
}

.product-showcase__image-container {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.product-showcase__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-showcase__card:hover .product-showcase__image {
  transform: scale(1.1);
}

.product-showcase__texture-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background: linear-gradient(45deg,
      rgba(212, 163, 115, 0.1) 0%,
      transparent 25%,
      transparent 75%,
      rgba(166, 61, 64, 0.1) 100%);
  transition: opacity 0.3s ease;
}

.product-showcase__card:hover .product-showcase__texture-overlay {
  opacity: 1;
}

.product-showcase__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 20px;
  padding: 0.5rem 1rem;
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
}

.product-showcase__actions {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  opacity: 0;
  transition: all 0.3s ease;
  transform: translateX(20px);
}

.product-showcase__card:hover .product-showcase__actions {
  opacity: 1;
  transform: translateX(0);
}

.product-showcase__action-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  color: var(--main-color);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  cursor: pointer;
}

.product-showcase__action-btn:hover {
  color: white;
  background: var(--secondary-color);
  transform: scale(1.1);
}

.product-showcase__content {
  padding: 2rem;
}

.product-showcase__name {
  margin-bottom: 0.5rem;
  color: var(--main-color);
  font-weight: 600;
  font-size: 1.4rem;
}

.product-showcase__description {
  margin-bottom: 1.5rem;
  opacity: 0.8;
  color: var(--text-color);
  line-height: 1.6;
}

.product-showcase__details {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.product-showcase__material,
.product-showcase__size {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.7;
  color: var(--text-color);
  font-size: 0.9rem;
}

.product-showcase__material i,
.product-showcase__size i {
  color: var(--secondary-color);
}

.product-showcase__price-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(212, 163, 115, 0.2);
  padding-top: 1rem;
}

.product-showcase__price {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 1.2rem;
}

.product-showcase__order-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  border: none;
  border-radius: 25px;
  padding: 0.75rem 1.5rem;
  color: white;
  font-weight: 500;
  text-align: center;
  background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
  transition: all 0.3s ease;
  cursor: pointer;
}

.product-showcase__order-btn:hover {
  box-shadow: 0 5px 15px rgba(212, 163, 115, 0.4);
  transform: translateY(-2px);
}



.interior-navigator {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
  color: white;
  background: var(--main-color);
}

.interior-navigator::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(212,163,115,0.1)"/></pattern></defs><rect width="100%" height="100%"/></svg>') repeat;
  background-size: 80px 80px;
}

.interior-navigator__container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.interior-navigator__header {
  margin-bottom: 4rem;
  text-align: center;
}

.interior-navigator__title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-weight: 700;
  font-size: 2.5rem;
}

.interior-navigator__title i {
  color: var(--secondary-color);
  font-size: 2rem;
}

.interior-navigator__subtitle {
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.8;
  font-size: 1.2rem;
  line-height: 1.6;
}

.interior-navigator__styles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.interior-navigator__style-card {
  position: relative;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.interior-navigator__style-card:hover {
  transform: translateY(-5px);
}

.interior-navigator__style-image {
  position: relative;
  width: 100%;
  height: 100%;
}

.interior-navigator__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.interior-navigator__style-card:hover .interior-navigator__image {
  transform: scale(1.05);
}

.interior-navigator__style-overlay {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 2rem;
  opacity: 0;
  background: linear-gradient(135deg,
      rgba(46, 74, 98, 0.9) 0%,
      rgba(166, 61, 64, 0.9) 100%);
  transition: opacity 0.3s ease;
}

.interior-navigator__style-card:hover .interior-navigator__style-overlay {
  opacity: 1;
}

.interior-navigator__style-content {
  color: white;
  text-align: center;
}

.interior-navigator__style-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 1.8rem;
}

.interior-navigator__style-title i {
  color: var(--secondary-color);
}

.interior-navigator__style-description {
  margin-bottom: 1.5rem;
  opacity: 0.9;
  line-height: 1.6;
}

.interior-navigator__style-features {
  margin-bottom: 2rem;
  list-style: none;
}

.interior-navigator__style-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.interior-navigator__style-features i {
  color: var(--secondary-color);
  font-size: 0.8rem;
}

.interior-navigator__style-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 25px;
  padding: 0.75rem 1.5rem;
  color: white;
  font-weight: 500;
  text-align: center;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  cursor: pointer;
}

.interior-navigator__style-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.interior-navigator__consultation {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.interior-navigator__consultation-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 1.8rem;
}

.interior-navigator__consultation-title i {
  color: var(--secondary-color);
}

.interior-navigator__consultation-text {
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.6;
}

.interior-navigator__consultation-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.interior-navigator__benefit {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.interior-navigator__benefit i {
  color: var(--secondary-color);
  font-size: 1.1rem;
}

.interior-navigator__consultation-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border: none;
  border-radius: 25px;
  padding: 1rem 2rem;
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
  transition: all 0.3s ease;
  cursor: pointer;
}

.interior-navigator__consultation-btn:hover {
  box-shadow: 0 10px 25px rgba(212, 163, 115, 0.4);
  transform: translateY(-3px);
}



.seasonal-collection {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
  background: linear-gradient(135deg, var(--secondary-bg-color) 0%, var(--bg-color) 100%);
}

.seasonal-collection::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(166, 61, 64, 0.1) 0%, transparent 70%);
}

.seasonal-collection__container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.seasonal-collection__header {
  margin-bottom: 4rem;
  text-align: center;
}

.seasonal-collection__title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--main-color);
  font-weight: 700;
  font-size: 2.5rem;
}

.seasonal-collection__title i {
  color: var(--secondary-color);
  font-size: 2rem;
}

.seasonal-collection__subtitle {
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.8;
  color: var(--text-color);
  font-size: 1.2rem;
  line-height: 1.6;
}

.seasonal-collection__trends {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.seasonal-collection__trend-card {
  position: relative;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background: white;
  transition: all 0.3s ease;
}

.seasonal-collection__trend-card:hover {
  box-shadow: 0 20px 40px rgba(212, 163, 115, 0.2);
  transform: translateY(-10px);
}

.seasonal-collection__trend-header {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 2rem 1rem;
}

.seasonal-collection__trend-icon {
  position: absolute;
  top: -30px;
  left: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: white;
  font-size: 1.5rem;
  background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
}

.seasonal-collection__trend-title {
  margin-left: 80px;
  color: var(--main-color);
  font-weight: 600;
  font-size: 1.5rem;
}

.seasonal-collection__trend-label {
  border-radius: 20px;
  padding: 0.5rem 1rem;
  text-align: center;
  color: white;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  background: var(--accent-color);
}

.seasonal-collection__trend-image {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.seasonal-collection__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.seasonal-collection__trend-card:hover .seasonal-collection__image {
  transform: scale(1.05);
}

.seasonal-collection__trend-overlay {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  border-radius: 10px;
  padding: 1rem;
  opacity: 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  transform: translateY(20px);
}

.seasonal-collection__trend-card:hover .seasonal-collection__trend-overlay {
  opacity: 1;
  transform: translateY(0);
}

.seasonal-collection__color-palette {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.seasonal-collection__color {
  width: 30px;
  height: 30px;
  border: 2px solid white;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.seasonal-collection__trend-content {
  padding: 2rem;
}

.seasonal-collection__trend-description {
  margin-bottom: 1.5rem;
  opacity: 0.8;
  color: var(--text-color);
  line-height: 1.6;
}

.seasonal-collection__trend-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.seasonal-collection__feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.7;
  color: var(--text-color);
  font-size: 0.9rem;
}

.seasonal-collection__feature i {
  color: var(--secondary-color);
}

.seasonal-collection__trend-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(212, 163, 115, 0.2);
  padding-top: 1rem;
}

.seasonal-collection__price {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 1.3rem;
}

.seasonal-collection__trend-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 2px solid var(--main-color);
  border-radius: 25px;
  padding: 0.75rem 1.5rem;
  color: var(--main-color);
  font-weight: 500;
  background: transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}

.seasonal-collection__trend-btn:hover {
  color: white;
  background: var(--main-color);
  transform: translateY(-2px);
}

.seasonal-collection__newsletter {
  position: relative;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  background: white;
}

.seasonal-collection__newsletter::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  border-radius: 10px 10px 0 0;
  background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
}

.seasonal-collection__newsletter-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--main-color);
  font-weight: 600;
  font-size: 1.8rem;
}

.seasonal-collection__newsletter-title i {
  color: var(--secondary-color);
}

.seasonal-collection__newsletter-text {
  margin-bottom: 2rem;
  opacity: 0.8;
  color: var(--text-color);
  line-height: 1.6;
}

.seasonal-collection__newsletter-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  max-width: 400px;
  margin: 0 auto;
  text-align: center;
}

.seasonal-collection__newsletter-input {
  flex: 1;
  border: 2px solid rgba(212, 163, 115, 0.3);
  border-radius: 25px;
  padding: 1rem 1.5rem;
  outline: none;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.seasonal-collection__newsletter-input:focus {
  border-color: var(--secondary-color);
}

.seasonal-collection__newsletter-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
  border-radius: 25px;
  padding: 1rem 2rem;
  color: white;
  font-weight: 600;
  background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
}

.seasonal-collection__newsletter-btn:hover {
  box-shadow: 0 5px 15px rgba(212, 163, 115, 0.4);
  transform: translateY(-2px);
}



.bespoke-service {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
  background: var(--bg-color);
}

.bespoke-service::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
}

.bespoke-service__container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.bespoke-service__header {
  margin-bottom: 4rem;
  text-align: center;
}

.bespoke-service__title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--main-color);
  font-weight: 700;
  font-size: 2.5rem;
}

.bespoke-service__title i {
  color: var(--secondary-color);
  font-size: 2rem;
}

.bespoke-service__subtitle {
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.8;
  color: var(--text-color);
  font-size: 1.2rem;
  line-height: 1.6;
}

.bespoke-service__process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.bespoke-service__step {
  position: relative;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  background: white;
  transition: all 0.3s ease;
}

.bespoke-service__step:hover {
  box-shadow: 0 15px 35px rgba(212, 163, 115, 0.2);
  transform: translateY(-5px);
}

.bespoke-service__step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: white;
  font-weight: 600;
  font-size: 1.2rem;
  background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
  transform: translateX(-50%);
}

.bespoke-service__step-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  color: var(--secondary-color);
  font-size: 2rem;
  background: rgba(212, 163, 115, 0.1);
}

.bespoke-service__step-title {
  margin-bottom: 1rem;
  color: var(--main-color);
  font-weight: 600;
  font-size: 1.3rem;
}

.bespoke-service__step-description {
  opacity: 0.8;
  color: var(--text-color);
  line-height: 1.6;
}

.bespoke-service__fabric-showcase {
  margin-bottom: 4rem;
}

.bespoke-service__fabric-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  color: var(--main-color);
  font-weight: 600;
  font-size: 2rem;
  text-align: center;
}

.bespoke-service__fabric-title i {
  color: var(--secondary-color);
}

.bespoke-service__fabric-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
}

.bespoke-service__fabric-sample {
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  background: white;
  transition: all 0.3s ease;
  cursor: pointer;
}

.bespoke-service__fabric-sample:hover {
  box-shadow: 0 10px 25px rgba(212, 163, 115, 0.2);
  transform: translateY(-5px);
}

.bespoke-service__fabric-image {
  width: 100%;
  height: 150px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.bespoke-service__fabric-sample:hover .bespoke-service__fabric-image {
  transform: scale(1.05);
}

.bespoke-service__fabric-info {
  padding: 1rem;
  text-align: center;
}

.bespoke-service__fabric-name {
  margin-bottom: 0.5rem;
  color: var(--main-color);
  font-weight: 600;
  font-size: 1.1rem;
}

.bespoke-service__fabric-price {
  color: var(--accent-color);
  font-weight: 500;
  font-size: 1rem;
}

.bespoke-service__cta {
  position: relative;
  border-radius: 20px;
  padding: 3rem;
  overflow: hidden;
  text-align: center;
  background: linear-gradient(135deg, var(--secondary-bg-color) 0%, var(--bg-color) 100%);
}

.bespoke-service__cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(212, 163, 115, 0.1) 0%, transparent 70%);
}

.bespoke-service__cta-content {
  position: relative;
  z-index: 2;
}

.bespoke-service__cta-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--main-color);
  font-weight: 600;
  font-size: 2rem;
}

.bespoke-service__cta-title i {
  color: var(--secondary-color);
}

.bespoke-service__cta-text {
  max-width: 600px;
  margin-right: auto;
  margin-bottom: 2rem;
  margin-left: auto;
  opacity: 0.8;
  color: var(--text-color);
  line-height: 1.6;
}

.bespoke-service__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.bespoke-service__cta-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: none;
  border-radius: 25px;
  padding: 1rem 2rem;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.bespoke-service__cta-btn--primary {
  color: white;
  background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
}

.bespoke-service__cta-btn--primary:hover {
  box-shadow: 0 10px 25px rgba(212, 163, 115, 0.4);
  transform: translateY(-3px);
}

.bespoke-service__cta-btn--secondary {
  border: 2px solid var(--main-color);
  color: var(--main-color);
  background: transparent;
}

.bespoke-service__cta-btn--secondary:hover {
  color: white;
  background: var(--main-color);
  transform: translateY(-3px);
}



.knowledge-center {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
  color: white;
  background: linear-gradient(135deg, var(--main-color) 0%, #1a2f3a 100%);
}

.knowledge-center::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="25" cy="25" r="2" fill="rgba(212,163,115,0.1)"/><circle cx="75" cy="75" r="2" fill="rgba(212,163,115,0.1)"/></svg>') repeat;
  background-size: 100px 100px;
}

.knowledge-center__container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.knowledge-center__header {
  margin-bottom: 3rem;
  text-align: center;
}

.knowledge-center__title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-weight: 700;
  font-size: 2.5rem;
}

.knowledge-center__title i {
  color: var(--secondary-color);
  font-size: 2rem;
}

.knowledge-center__subtitle {
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.8;
  font-size: 1.2rem;
  line-height: 1.6;
}

.knowledge-center__categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.knowledge-center__category {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  padding: 0.75rem 1.5rem;
  color: white;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  cursor: pointer;
}

.knowledge-center__category:hover,
.knowledge-center__category.active {
  border-color: transparent;
  background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
  transform: translateY(-2px);
}

.knowledge-center__accordion {
  margin-bottom: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.knowledge-center__faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.knowledge-center__faq-item:last-child {
  border-bottom: none;
}

.knowledge-center__faq-question {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 2rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.knowledge-center__faq-question:hover {
  background: rgba(255, 255, 255, 0.05);
}

.knowledge-center__faq-question i:first-child {
  color: var(--secondary-color);
  font-size: 1.2rem;
}

.knowledge-center__faq-question span {
  flex: 1;
  font-weight: 500;
  font-size: 1.1rem;
}

.knowledge-center__faq-arrow {
  color: var(--secondary-color);
  transition: transform 0.3s ease;
}

.knowledge-center__faq-item.active .knowledge-center__faq-arrow {
  transform: rotate(180deg);
}

.knowledge-center__faq-answer {
  display: none;
  padding: 0 2rem 1.5rem 4rem;
  opacity: 0.9;
  line-height: 1.6;
}

.knowledge-center__faq-item.active .knowledge-center__faq-answer {
  display: block;
}

.knowledge-center__support {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.knowledge-center__support-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 1.8rem;
}

.knowledge-center__support-title i {
  color: var(--secondary-color);
}

.knowledge-center__support-text {
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.6;
}

.knowledge-center__support-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.knowledge-center__support-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 25px;
  padding: 0.75rem 1.5rem;
  color: white;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  cursor: pointer;
}

.knowledge-center__support-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}



@media (max-width: 768px) {
  .main {
    margin-top: 70px;
  }


  .product-showcase__title {
    flex-direction: column;
    gap: 0.5rem;
    font-size: 2rem;
  }

  .product-showcase__price-section {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }

  .product-showcase__order-btn {
    justify-content: center;
  }


  .interior-navigator__title {
    flex-direction: column;
    gap: 0.5rem;
    font-size: 2rem;
  }

  .interior-navigator__styles {
    grid-template-columns: 1fr;
  }

  .interior-navigator__consultation-benefits {
    grid-template-columns: 1fr;
  }


  .seasonal-collection__title {
    flex-direction: column;
    gap: 0.5rem;
    font-size: 2rem;
  }

  .seasonal-collection__trends {
    grid-template-columns: 1fr;
  }

  .seasonal-collection__newsletter-form {
    flex-direction: column;
  }

  .seasonal-collection__newsletter-btn {
    justify-content: center;
  }


  .bespoke-service__title {
    flex-direction: column;
    gap: 0.5rem;
    font-size: 2rem;
  }

  .bespoke-service__process {
    grid-template-columns: 1fr;
  }

  .bespoke-service__fabric-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  .bespoke-service__cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .bespoke-service__cta-btn {
    justify-content: center;
    width: 100%;
    max-width: 300px;
  }


  .knowledge-center__title {
    flex-direction: column;
    gap: 0.5rem;
    font-size: 2rem;
  }

  .knowledge-center__category {
    justify-content: center;
    width: 100%;
    max-width: 300px;
  }

  .knowledge-center__faq-question {
    padding: 1rem;
    font-size: 1rem;
  }

  .knowledge-center__faq-answer {
    padding: 0 1rem 1rem 2.5rem;
  }

  .knowledge-center__support-buttons {
    flex-direction: column;
    align-items: center;
  }

  .knowledge-center__support-btn {
    justify-content: center;
    width: 100%;
    max-width: 200px;
  }
}

@media (max-width: 480px) {

  .product-showcase__title,
  .interior-navigator__title,
  .seasonal-collection__title,
  .bespoke-service__title,
  .knowledge-center__title {
    font-size: 1.8rem;
  }

  .product-showcase__filter {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }

  .bespoke-service__fabric-grid {
    grid-template-columns: 1fr;
  }

  .seasonal-collection__trend-features {
    flex-direction: column;
    gap: 0.5rem;
  }

  .knowledge-center__faq-question {
    font-size: 0.95rem;
  }
}


@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.knowledge-center__faq-answer {
  animation: fadeIn 0.3s ease-out;
}

@media (max-width: 500px) {
  .interior-navigator__style-card {
    height: 500px;
  }
}

@media (max-width: 425px) {

  .seasonal-collection__trend-header,
  .seasonal-collection__trend-price {
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    text-align: center;
  }

  .seasonal-collection__trend-title {
    margin-left: 0;
  }

  .seasonal-collection__trend-icon {
    left: 50%;
    transform: translateX(-50%);
  }
}




.seasonal-collection__color--spring-1 {
  background: #e8f5e8;
}

.seasonal-collection__color--spring-2 {
  background: #f0e68c;
}

.seasonal-collection__color--spring-3 {
  background: #ffe4e1;
}

.seasonal-collection__color--spring-4 {
  background: #e0e0e0;
}

.seasonal-collection__color--summer-1 {
  background: #87ceeb;
}

.seasonal-collection__color--summer-2 {
  background: #f5f5dc;
}

.seasonal-collection__color--summer-3 {
  background: #ffe4b5;
}

.seasonal-collection__color--summer-4 {
  background: #ffffff;
}

.seasonal-collection__color--autumn-1 {
  background: #d2691e;
}

.seasonal-collection__color--autumn-2 {
  background: #b8860b;
}

.seasonal-collection__color--autumn-3 {
  background: #8b4513;
}

.seasonal-collection__color--autumn-4 {
  background: #800000;
}


.seasonal-collection__newsletter-privacy {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.seasonal-collection__newsletter-privacy input {
  margin: 0;
}

.seasonal-collection__newsletter-privacy label {
  margin: 0;
}


.knowledge-center__faq-group--hidden {
  display: none;
}