@import url('https://fonts.googleapis.com/css2?family=Dela+Gothic+One&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Play:wght@400;700&display=swap');
.products-cards h1{font-size:38px;}
.border-0{border:none;}
.box{display:none;}
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.joinchat {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  font-family: Inter, Arial, sans-serif;
}

/* Floating button */
.joinchat__button {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  border: none;
  padding: 18px 18px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
}

.wa-icon {
  width: 30px;
  height: 30px;
  background: url("https://upload.wikimedia.org/wikipedia/commons/6/6b/WhatsApp.svg")
    center / contain no-repeat;
}
.joinchat__button {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366; /* WhatsApp green */
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
}


/* Pulse rings */
.joinchat__button::before,
.joinchat__button::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.35);
  animation: pulse 2.5s infinite;
  z-index: -1;
}

.joinchat__button::after {
  animation-delay: 1.2s;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}
/* Popup */
.joinchat__popup {
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 320px;
  background: #f4fdf7;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0,0,0,.25);
  overflow: hidden;
  display: none;
}

.joinchat__popup.active {
  display: block;
}

/* Header */
.joinchat__header {
  background: linear-gradient(90deg,#25d366,#2ee679);
  color: #fff;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.wa-logo {
  width: 26px;
  height: 26px;
  background: url("https://upload.wikimedia.org/wikipedia/commons/6/6b/WhatsApp.svg")
    center / contain no-repeat;
}

.joinchat__close {
  margin-left: auto;
  background: rgba(0,0,0,.25);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}

/* Body */
.joinchat__body {
  padding: 20px;
}

.chat-bubble {
  background: #fff;
  border-radius: 20px;
  padding: 16px;
  font-size: 16px;
  color: #444;
  box-shadow: 0 4px 12px rgba(0,0,0,.1);
  margin-bottom: 20px;
}

/* Open chat button */
.joinchat__open {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #2ed573;
  color: #fff;
  padding: 14px 24px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
}

.showroom_wrapper {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 30px;
}
.showroom_wrapper>p {
    width: 49%;
    height: 400px;
    cursor: pointer;
}
.showroom_wrapper>p>a,.showroom_wrapper>p>a>img{width:100%;height:100%;}
/* Large tablets / small laptops */
@media (max-width: 1199px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Tablets */
@media (max-width: 991px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 575px) {
    .mobile-search-toggle{display:block !important;}
    .hero-swiper{height:50vh !important;}
    .hero-slide-image{display:none;}
    .bestsellers-header,.bestsellers-header,.news-header{
        flex-direction:column;
        justify-content:flex-start !important;
        align-items:flex-start !important;
        gap:20px;
    }
    .collections-filters-top{
        flex-wrap:wrap;
    }
  .products-grid {
    grid-template-columns: 1fr;
  }
}
.d-flex {display:flex;}
.flex-column {flex-direction:column;}
.gap-4 {gap:32px;}
.gap-3 {gap:16px;}
.mb-5 {margin-bottom:30px;}
.left-ft a:nth-child(n+6){display:none;}
.right-ft a{display:none;}
.right-ft a:nth-child(n+6){display:block;}
/* Header Styles */
* {
    font-family: "Montserrat",
      "Ubuntu", "Cantarell", sans-serif !important;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    color: #1f1f21;
    background: #fff;
  }
  
  /* Top Dark Grey Bar */
  .header-top {
    background: #1f1f21;
    padding: 12px 0;
    font-size: 14px;
  }
  
  @media (max-width: 768px) {
    .header-top {
      display: none;
    }
  }
  
  .header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1920px;
    margin: 0 auto;
  }
  
  .header-top-left,
  .header-top-right {
    display: flex;
    align-items: center;
    gap: 24px;
  }
  
  .header-top-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease;
    font-size: 14px;
  }
  
  .header-top-link:hover {
    opacity: 0.8;
  }
  
  .header-top-link svg {
    flex-shrink: 0;
  }
  
  /* Main White Header */
  .header-main {
    background: #fff;
    border-bottom: 1px solid #e9e8eb;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  }
  
  .header-main .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1920px;
    margin: 0 auto;
  }
  
  .header-main-left {
    display: flex;
    gap:24px;
    align-items: center;
    flex-shrink: 0;
  }
  
  /* Mobile Menu Toggle Button */
  .mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
  }
  
  .mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: #1f1f21;
    transition: all 0.3s ease;
    display: block;
  }
  
  @media (max-width: 768px) {
    .mobile-menu-toggle {
      display: flex;
    }
  }
  
  .logo {
    text-decoration: none;
    display: block;
  }
  .logo-text a{display:block;width:120px;height:60px;}
  .logo-text img{height:100%;width:100%;object-fit:cover;}
  .logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
  }
  
  .logo-small {
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #1f1f21;
  }
  
  .logo-large {
    font-size: 28px;
    font-weight: 700;
    color: #1f1f21;
    letter-spacing: -0.5px;
  }
  
  .logo-large sup {
    font-size: 12px;
    vertical-align: super;
    font-weight: 400;
  }
  
  .catalog-btn {
     
    font-family:"Montserrat";
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    color: #000;
    border:none;
    text-decoration: none;
    cursor:pointer;
    background: #FFEB3E;
    padding: 15px 20px;
    border-radius: 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(188, 139, 24, 0.2);
  }
  
  .catalog-btn:hover {
    background: linear-gradient(135deg, #bc8b18 0%, #f1d263 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(188, 139, 24, 0.4);
  }
  
  .catalog-btn:active {
    transform: translateY(0);
  }
  
  .header-main-center {
    flex: 1;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .search-box {
    position: relative;
    display: flex;
    align-items: center;
  }
  
  .search-input {
    width: 100%;
    padding: 12px 50px 12px 20px;
    border: 1px solid #d3d2d9;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s ease;
  }
  
  .search-input:focus {
    border-color: #f1d263;
    box-shadow: 0 0 0 3px rgba(241, 210, 99, 0.1);
  }
  
  .search-btn {
    position: absolute;
    right: 12px;
    background: none;
    border: none;
    cursor: pointer;
    color: #a9a6b5;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    transition: color 0.3s ease;
  }
  
  .search-btn:hover {
    color: #bc8b18;
  }
  
  .header-main-right {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-shrink: 0;
  }
  
  .header-links {
    display: flex;
    align-items: center;
    gap: 24px;
  }
  
  .header-link {
    color: #1f1f21;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: color 0.3s ease;
  }
  
  .header-link:hover {
    color: #bc8b18;
    background: linear-gradient(135deg, #f1d263, #bc8b18);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .header-link.disabled {
    pointer-events: none;
    opacity: 0.5;
    cursor: not-allowed;
  }

  .mobile-menu-link.disabled {
    pointer-events: none;
    opacity: 0.5;
  }
  
  /* Sub-navigation Bar */
  .header-subnav {
    background: #fff;
    border-bottom: 1px solid #e9e8eb;
    padding: 16px 0;
  }
  
  @media (max-width: 768px) {
    .header-subnav {
      display: none;
    }
  }
  
  .header-subnav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    max-width: 1920px;
    margin: 0 auto;
  }
  
  .subnav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    flex: 1;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  
  .subnav-links::-webkit-scrollbar {
    display: none;
  }
  
  .subnav-link {
    color: #1f1f21;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    white-space: nowrap;
    transition: color 0.3s ease;
    flex-shrink: 0;
  }
  
  .subnav-link:hover {
    color: #bc8b18;
    background: linear-gradient(135deg, #f1d263, #bc8b18);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .configurator-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #1f1f21;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.3s ease;
    flex-shrink: 0;
  }
  
  .configurator-link:hover {
    color: #bc8b18;
    background: linear-gradient(135deg, #f1d263, #bc8b18);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  /* Mobile Menu Overlay */
  .mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  
  .mobile-menu.active {
    opacity: 1;
    visibility: visible;
  }
  
  .mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    left: auto;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background: #fff;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
  }
  
  .mobile-menu.active .mobile-menu-content {
    transform: translateX(0);
  }
  
  .mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid #e9e8eb;
    flex-shrink: 0;
  }
  
  .mobile-logo .logo-text {
    flex-direction: row;
    align-items: center;
    gap: 8px;
  }
  
  .mobile-logo .logo-small {
    font-size: 8px;
  }
  
  .mobile-logo .logo-large {
    font-size: 20px;
  }
  
  .mobile-menu-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: #1f1f21;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .mobile-menu-nav {
    flex: 1;
    padding: 20px 0;
    overflow-y: auto;
  }
  
  .mobile-menu-link {
    display: block;
    padding: 16px 20px;
    color: #1f1f21;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid #f4f4f6;
    transition: background-color 0.3s ease;
  }
  
  .mobile-menu-link:hover {
    background-color: #f9f9fb;
  }
  
  .mobile-menu-footer {
    padding: 20px;
    border-top: 1px solid #e9e8eb;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex-shrink: 0;
  }
  
  .mobile-menu-phone,
  .mobile-menu-email {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #1f1f21;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
  }
  
  .mobile-menu-phone:hover,
  .mobile-menu-email:hover {
    color: #bc8b18;
  }
  
  /* Responsive Header */
  @media (max-width: 1200px) {
    .header-main .container {
      gap: 24px;
    }
  
    .header-links {
      display: none;
    }
  
    .header-main-center {
      max-width: 400px;
    }
  
    .subnav-links {
      gap: 10px;
    }
  }
  
  @media (max-width: 768px) {
    .header-main {
      padding: 12px 0;
    }
  
    .header-main .container {
      gap: 12px;
      justify-content: space-between;
    }
  
    .header-main-left {
      gap: 12px;
      flex: 1;
      justify-content: space-between;
    }
  
    .logo-small {
      font-size: 8px;
    }
  
    .logo-large {
      font-size: 20px;
    }
  
    .catalog-btn {
      display: none;
    }
  
    .header-main-center {
      display: none;
    }
  
    .header-main-right {
      display: none;
    }
  
    .search-input {
      padding: 10px 40px 10px 16px;
      font-size: 14px;
    }
  
    /* Mobile Search Toggle Button */
    .mobile-search-toggle {
      display: flex;
      align-items: center;
      justify-content: center;
      background: none;
      border: none;
      cursor: pointer;
      padding: 8px;
      color: #1f1f21;
      transition: color 0.3s ease;
    }
  
    .mobile-search-toggle:hover {
      color: #bc8b18;
    }
  }
  
  /* Mobile Search Toggle - hidden on desktop */
  .mobile-search-toggle {
    display: none;
  }
  
  /* Mobile Search Dropdown */
  .mobile-search-dropdown {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 998;
    padding: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  
  .mobile-search-dropdown.active {
    transform: translateY(0);
    opacity: 1;
  }
  
  @media (max-width: 768px) {
    .mobile-search-dropdown {
      display: block;
    }
  }
  
  .mobile-search-container {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  
  .mobile-search-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #d3d2d9;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s ease;
  }
  
  .mobile-search-input:focus {
    border-color: #f1d263;
    box-shadow: 0 0 0 3px rgba(241, 210, 99, 0.1);
  }
  
  .mobile-search-submit,
  .mobile-search-close {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: #1f1f21;
    transition: color 0.3s ease;
  }
  
  .mobile-search-submit:hover {
    color: #bc8b18;
  }
  
  .mobile-search-close:hover {
    color: #e74c3c;
  }
  
  @media (max-width: 480px) {
    .header-main {
      padding: 10px 0;
    }
  
    .header-main-left {
      gap: 8px;
    }
  
    .logo-small {
      font-size: 7px;
    }
  
    .logo-large {
      font-size: 18px;
    }
  
    .catalog-btn {
      padding: 8px 12px;
      font-size: 12px;
    }
  
    .header-main-center {
      max-width: 150px;
    }
  
    .search-input {
      padding: 8px 35px 8px 12px;
      font-size: 12px;
    }
  }
  
  /* Hero Swiper Section */
  .hero-swiper {
    position: relative;
    width: 100%;
    height: 710px;
    overflow: hidden;
    background: #fff;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
  }
  
  @media (max-width: 1660px) {
    .hero-swiper {
      height: 610px;
    }
  }
  
  @media (max-width: 1200px) {
    .hero-swiper {
      height: calc(100vh - 195);
    }
  }
  
  @media (max-width: 660px) {
    .hero-swiper {
      height: calc(100vh - 60px - 66px);
    }
  }
  
  .hero-swiper-container {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 80px;
  }
  
  @media (max-width: 1660px) {
    .hero-swiper-container {
      padding: 0 50px;
    }
  }
  
  @media (max-width: 1200px) {
    .hero-swiper-container {
      padding: 0 24px;
    }
  }
  
  @media (max-width: 660px) {
    .hero-swiper-container {
      padding: 0 16px;
    }
  }
  
  .hero-slide {
    position: absolute;
    top: 0;
    place-items: center;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    padding-inline: 50px;
    grid-template-columns: 1fr 1fr;
    opacity: 0;
    visibility: hidden;
    z-index: 2;
  }
  
  .hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 3;
  }
  
  /* Hero Circles Background */
  .hero-circles {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
  }
  
  .hero-circle {
    position: absolute;
    border-radius: 50%;
    transform-origin: top right;
    opacity: 0;
    transform: scale(0);
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                opacity 0.8s ease;
  }
  
  .hero-circle-1 {
    width: 800px;
    height: 800px;
    background: rgba(241, 210, 99, 0.35); /* strongest layer */
    top: -200px;
    right: -200px;
    transition-delay: 0s;
  }
  
  .hero-circle-2 {
    width: 1000px;
    height: 1000px;
    background: rgba(241, 210, 99, 0.22); /* mid layer */
    top: -300px;
    right: -300px;
    transition-delay: 0.1s;
  }
  
  .hero-circle-3 {
    width: 1200px;
    height: 1200px;
    background: rgba(241, 210, 99, 0.12); /* lightest layer */
    top: -400px;
    right: -400px;
    transition-delay: 0.2s;
  }
  
  .hero-slide.active .hero-circle {
    opacity: 1;
    transform: scale(1);
  }
  
  .hero-slide.exiting .hero-circle {
    opacity: 0;
    transform: scale(0);
    transition-delay: 0s;
  }
  
  @media (max-width: 1200px) {
    .hero-circle-1 {
      width: 400px;
      height: 400px;
      top: -150px;
      right: -150px;
    }
    
    .hero-circle-2 {
      width: 550px;
      height: 550px;
      top: -200px;
      right: -200px;
    }
    
    .hero-circle-3 {
      width: 700px;
      height: 700px;
      top: -250px;
      right: -250px;
    }
  }
  
  @media (max-width: 660px) {
    .hero-circle-1 {
      width: 300px;
      height: 300px;
      top: -100px;
      right: -100px;
    }
    
    .hero-circle-2 {
      width: 400px;
      height: 400px;
      top: -150px;
      right: -150px;
    }
    
    .hero-circle-3 {
      width: 500px;
      height: 500px;
      top: -200px;
      right: -200px;
    }
  }
  
  .hero-slide-content {
    background: transparent;
    display: flex;
    width: 100%;
    justify-content: flex-start;
    padding: 0;
    padding-bottom: 100px;
    position: relative;
    z-index: 5;
  }
  
  @media (max-width: 660px) {
    .hero-slide {
      grid-template-columns: 1fr;
    }
  
    .hero-slide-content {
      padding-bottom: 40px;
      order: 2;
    }
  }
  
  .hero-text-wrapper {
    width: 100%;
  }
  
  .hero-title {
    font-size: 58px;
    font-weight: 700;
    line-height: 110%;
    text-transform: uppercase;
    color: #1f1f21;
    margin: 0 0 16px 0;
    letter-spacing: -0.5px;
  }
  
  @media (max-width: 1660px) {
    .hero-title {
      font-size: 42px;
    }
  }
  
  @media (max-width: 1200px) {
    .hero-title {
      font-size: 38px;
    }
  }
  
  @media (max-width: 660px) {
    .hero-title {
      font-size: 28px;
    }
  }
  
  .hero-subtitle {
    font-size: 18px;
    font-weight: 400;
    line-height: 140%;
    color: #514f59;
    margin: 0 0 32px 0;
  }
  
  @media (max-width: 1660px) {
    .hero-subtitle {
      font-size: 18px;
      margin-bottom: 48px;
    }
  }
  
  @media (max-width: 1200px) {
    .hero-subtitle {
      font-size: 18px;
      margin-bottom: 32px;
    }
  }
  
  @media (max-width: 660px) {
    .hero-subtitle {
      font-size: 16px;
      margin-bottom: 24px;
    }
  }
  
  .hero-cta-btn,
  a.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: transparent;
    background: linear-gradient(135deg, #f1d263, #bc8b18);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    border: none;
    border-radius: 0;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    gap: 8px;
    text-decoration: none;
  }
  
  .hero-cta-btn::after {
    content: "→";
    font-size: 20px;
    transition: transform 0.3s ease;
    background: linear-gradient(135deg, #f1d263, #bc8b18);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .hero-cta-btn:hover {
    background: linear-gradient(135deg, #bc8b18, #f1d263);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateX(4px);
  }
  
  .hero-cta-btn:hover::after {
    transform: translateX(4px);
    background: linear-gradient(135deg, #bc8b18, #f1d263);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .hero-cta-btn:active {
    transform: translateY(0);
  }
  
  @media (max-width: 1200px) {
    .hero-cta-btn {
      height: 40px;
      font-size: 16px;
      padding: 10px 24px;
    }
  }
  
  @media (max-width: 660px) {
    .hero-cta-btn {
      width: 100%;
      font-size: 14px;
    }
  }
  
  .hero-slide-image {
    position: absolute;
    top: 50%;
    right: 80px;
    transform: translateY(-50%) translateX(150%);
    width: auto;
    height: 100%;
    max-width: 650px;
    object-fit: contain;
    z-index: 4;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.8s ease;
    opacity: 0;
  }
  
  @media (max-width: 1660px) {
    .hero-slide-image {
      right: 50px;
    }
  }
  
  @media (max-width: 1200px) {
    .hero-slide-image {
      right: 24px;
      max-width: 500px;
      height: 90%;
    }
  }
  
  @media (max-width: 660px) {
    .hero-slide-image {
      right: 16px;
      max-width: 100%;
    }
  }
  
  .hero-slide.active .hero-slide-image {
    transform: translateY(-50%) translateX(0);
    opacity: 1;
    transition-delay: 0.2s;
  }
  
  @media (max-width: 1660px) {
    .hero-slide-image {
      max-width: 650px;
      height: 100%;
      right: 8%;
    }
  }
  
  @media (max-width: 1200px) {
    .hero-slide-image {
      top: 50%;
      right: 5%;
      transform: translateY(-50%) translateX(100%);
      width: auto;
      height: 75%;
      max-width: 380px;
      z-index: 4;
    }
  
    .hero-slide.active .hero-slide-image {
      transform: translateY(-50%) translateX(0);
    }
  }
  
  @media (max-width: 660px) {
    .hero-slide-image {
      position: absolute;
      top: 0;
      right: 0;
      left: 0;
      width: 100%;
      height: 426px;
      max-width: 100%;
      transform: translateY(100%);
      object-fit: cover;
      order: 1;
    }
  
    .hero-slide.active .hero-slide-image {
      transform: translateY(0);
    }
  }
  
  /* Hero Swiper Controls */
  .hero-swiper-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 60px;
    padding: 20px 80px;
    max-width: 1920px;
    margin: 0 auto 30px auto;
    z-index: 10;
  }
  
  @media (max-width: 1660px) {
    .hero-swiper-controls {
      padding: 16px 50px;
    }
  }
  
  @media (max-width: 1200px) {
    .hero-swiper-controls {
      padding: 16px 24px;
      gap: 40px;
    }
  }
  
  @media (max-width: 660px) {
    .hero-swiper-controls {
      padding: 12px 16px;
      gap: 20px;
    }
  }
  
  @media (max-width: 1660px) {
    .hero-swiper-controls {
      padding: 0 50px;
    }
  }
  
  @media (max-width: 1200px) {
    .hero-swiper-controls {
      padding: 0 24px;
    }
  }
  
  @media (max-width: 660px) {
    .hero-swiper-controls {
      padding: 0 20px;
    }
  }
  
  .hero-pagination {
    display: flex;
    gap: 40px;
    align-items: flex-end;
  }
  
  @media (max-width: 1200px) {
    .hero-pagination {
      gap: 32px;
    }
  }
  
  @media (max-width: 660px) {
    .hero-pagination {
      display: none;
    }
  }
  
  .pagination-number {
    font-size: 14px;
    font-weight: 400;
    color: #000;
    cursor: pointer;
    transition: color 0.3s ease, font-size 0.3s ease;
    position: relative;
    padding: 0 0 12px 0;
    line-height: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 30px;
  }
  
  .pagination-number::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 1px;
    background: rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease, height 0.3s ease, width 0.3s ease;
  }
  
  .pagination-number:hover {
    color: rgba(0, 0, 0, 0.7);
  }
  
  .pagination-number:hover::after {
    background: rgba(0, 0, 0, 0.5);
  }
  
  .pagination-number.active {
    color: #000;
    font-weight: 500;
    font-size: 64px;
    padding-bottom: 14px;
  }
  
  .pagination-number.active::after {
    height: 2px;
    width: 100%;
    background: linear-gradient(90deg, #f1d263 0%, #bc8b18 100%);
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 4px rgba(241, 210, 99, 0.5);
  }
  
  .hero-navigation {
    display: flex;
    gap: 16px;
    align-items: center;
  }
  
  @media (max-width: 660px) {
    .hero-navigation {
      display: none;
    }
  }
  
  .hero-nav-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    color: rgba(0, 0, 0, 0.6);
    transition: color 0.3s ease;
    padding: 0;
  }
  
  @media (max-width: 1200px) {
    .hero-nav-btn {
      width: 28px;
      height: 28px;
    }
  }
  
  .hero-nav-btn:hover {
    color: rgba(0, 0, 0, 0.9);
  }
  
  .hero-nav-btn:focus {
    outline: none;
    color: rgba(0, 0, 0, 0.8);
  }
  
  .hero-nav-btn:active {
    color: rgba(0, 0, 0, 1);
  }
  
  .hero-nav-btn svg {
    width: 100%;
    height: 100%;
  }
  
  .hero-nav-btn path {
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
  }
  
  .container {
    padding-inline: 80px !important;
  }
  
  @media (max-width: 1660px) {
    .container {
      padding-inline: 50px !important;
    }
  }
  
  @media (max-width: 1200px) {
    .container {
      padding-inline: 24px !important;
    }
  }
  
  @media (max-width: 660px) {
    .container {
      padding-inline: 16px !important;
    }
  }
  
  .bestsellers-swiper {
    padding-block: 15px;
    padding-inline: 5px;
  }
  
  @media (max-width: 1660px) {
    .bestsellers-swiper {
      padding-block: 12px;
    }
  }
  
  @media (max-width: 1200px) {
    .bestsellers-swiper {
      padding-block: 10px;
    }
  }
  
  @media (max-width: 660px) {
    .bestsellers-swiper {
      padding-block: 8px;
    }
  }
  
  .collection-slide {
    display: flex;
    position: relative;
    align-items: center;
    overflow: hidden;
    justify-content: center;
    width: auto;
    height: 65vh;
  }
  
  @media (max-width: 1200px) {
    .collection-slide {
      height: 50vh;
    }
  }
  
  .collection-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  @media (max-width: 1200px) {
    .collection-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }
  
  @media (max-width: 660px) {
    .collection-slide {
      width: 100%;
      position: relative;
    }
  
    .collection-slide img {
      object-fit: cover;
      object-position: 50% 50%;
      width: 100%;
      height: 100%;
    }
  }
  
  .news-card {
    display: flex;
    flex-direction: column;
  }
  
  .contact {
    padding-top: 100px;
    padding-bottom: 100px;
    background: #121216;
  }
  
  @media (max-width: 1660px) {
    .contact {
      padding-top: 80px;
    }
  }
  
  @media (max-width: 1200px) {
    .contact {
      padding-top: 64px;
    }
  }
  
  @media (max-width: 660px) {
    .contact {
      padding-top: 80px;
    }
  }
  
  @media (max-width: 1660px) {
    .contact {
      padding-bottom: 80px;
    }
  }
  
  @media (max-width: 1200px) {
    .contact {
      padding-bottom: 64px;
    }
  }
  
  @media (max-width: 660px) {
    .contact {
      padding-bottom: 80px;
    }
  }
  
  .contact__link {
    font-size: 64px;
    font-weight: 700;
    text-decoration: none;
    line-height: 130%;
    color: #fff;
  }
  
  @media (max-width: 1200px) {
    .contact__link {
      font-size: 48px;
    }
  }
  
  @media (max-width: 660px) {
    .contact__link {
      font-size: 32px;
    }
  }
  
  .contact__info {
    text-align: center;
  }
  
  .contact__text {
    font-size: 18px;
    line-height: 140%;
    color: #fff;
    margin: 0;
  }
  
  @media (max-width: 1200px) {
    .contact__text {
      font-size: 16px;
    }
  }
  
  @media (max-width: 660px) {
    .contact__text {
      font-size: 14px;
    }
  }
  
  .contact__container {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
  }
  
  @media (max-width: 1200px) {
    .contact__container {
      gap: 24px;
    }
  }
  
  .page-catalog2-main-list-item-ava-list:focus-visible {
    outline: none;
  }
  
  /*# sourceMappingURL=style.css.map */
  
  @media screen and (max-width: 1024px) {
    .collection-slide {
      width: 90vw !important;
    }
  }
  
  /*# sourceMappingURL=ds.kgr.css.map */
  
  /* Product Collections Section */
  .product-collections {
    background: #1c1d21;
    padding: 50px 0;
  }
  
  @media (max-width: 1200px) {
    .product-collections {
      padding: 64px 0;
    }
  }
  
  /* Yoga Spine Hero */
  .yoga-spine-hero {
    margin-bottom: 2px;
  }
  .product-hero-content:hover {
    transform: scale(1.01);
  }
  
  .product-hero-content::before {
    transition: background 0.4s ease;
  }
  
  .product-hero-content:hover::before {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 100%);
  }
  .product-hero-content {
    transition:  0.4s ease;
    position: relative;
    background-image: url("/images/r7l7iu09iaqarq0sikugp1csznsj6ekj.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 500px;
    padding: 80px 40px;
    display: flex;
    align-items: center;
    overflow: hidden;
  }
  
  .product-hero-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
  }
  
  @media (max-width: 1200px) {
    .product-hero-content {
      min-height: 500px;
      padding: 60px 30px;
    }
  }
  
  .product-hero-text {
    color: #fff;
    position: relative;
    z-index: 2;
    max-width: 600px;
  }
  
  .product-hero-title {
    font-size: 48px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 24px;
    color: #fff;
  }
  
  @media (max-width: 1200px) {
    .product-hero-title {
      font-size: 32px;
    }
  }
  
  .product-hero-description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.9);
  }
  
  @media (max-width: 1200px) {
    .product-hero-description {
      font-size: 16px;
    }
  }
  
  .product-hero-btn,
  a.product-hero-btn {
    display: inline-block;
    padding: 12px 32px;
    background: rgba(255, 255, 255, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 40px;
    font-size: 18px;
    color: #111;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.6;
  }
  
  .product-hero-btn:hover,
  a.product-hero-btn:hover {
    opacity: 1;
    background: linear-gradient(135deg, rgba(241, 210, 99, 0.95) 0%, rgba(188, 139, 24, 0.95) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(188, 139, 24, 0.3);
  }
  
  /* Product Grid Section */
  .product-grid-section {
    background: #1c1d21;
    padding: 0;
  }
  
  .product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    
  }
  
  @media (max-width: 1200px) {
    .product-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 660px) {
    .product-grid {
      grid-template-columns: 1fr;
    }
  }
  
  .product-card {
    background: #1c1d21;
    position: relative;
    overflow: hidden;
    min-height: 350px;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.4s ease;
  }
  
  .product-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.8) 0%,
      rgba(0, 0, 0, 0.4) 50%,
      rgba(0, 0, 0, 0.2) 100%
    );
    z-index: 1;
    transition: opacity 0.4s ease;
  }
  
  .product-card:hover {
    transform: scale(1.02);
  }
  
  .product-card:hover::before {
    opacity: 0.7;
    background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.8) 0%,
      rgba(0, 0, 0, 0.4) 50%,
      rgba(0, 0, 0, 0.2) 100%
    );
  }
  
  .product-card-samurai {
    background-image: url("/images/ofice-m.jpg");
  }
  
  .product-card-move {
    background-image: url("/images/Gemini_Generated_Image_7a1yjc7a1yjc7a1y.png");
  }
  
  .product-card-equalizer {
    background-image: url("/images/Gemini_Generated_Image_xxnf8exxnf8exxnf.png");
  }
  
  .product-card-content {
    padding: 32px;
    color: #fff;
    position: relative;
    z-index: 2;
    width: 100%;
  }
  
  .product-card-title {
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 16px;
    color: #fff;
  }
  
  @media (max-width: 1200px) {
    .product-card-title {
      font-size: 24px;
    }
  }
  
  .product-card-description {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.9);
  }
  
  @media (max-width: 1200px) {
    .product-card-description {
      font-size: 16px;
    }
  }
  
  .product-card-btn,
  a.product-card-btn {
    display: inline-block;
    padding: 12px 32px;
    background: rgba(255, 255, 255, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 40px;
    font-size: 18px;
    color: #111;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.6;
  }
  
  .product-card-btn:hover,
  a.product-card-btn:hover {
    opacity: 1;
    background: linear-gradient(135deg, rgba(241, 210, 99, 0.95) 0%, rgba(188, 139, 24, 0.95) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(188, 139, 24, 0.3);
  }
  
  /* About Company Section */
  .about-company {
    padding: 50px 0;
    background: #fff;
  }
  
  @media (max-width: 1200px) {
    .about-company {
      padding: 64px 0;
    }
  }
  
  .about-company-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start;
  }
  
  @media (max-width: 1200px) {
    .about-company-content {
      grid-template-columns: 1fr;
    }
  }
  
  .about-company-title {
    font-size: 48px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 32px;
    color: #1f1f21;
  }
  
  @media (max-width: 1200px) {
    .about-company-title {
      font-size: 32px;
    }
  }
  
  .about-company-main-text {
    font-size: 18px;
    line-height: 1.6;
    color: #121216;
    margin-bottom: 24px;
  }
  
  @media (max-width: 1200px) {
    .about-company-main-text {
      font-size: 16px;
    }
  }
  
  .about-company-separator {
    height: 1px;
    background: #1f1f21;
    margin: 24px 0;
  }
  
  .about-company-mission {
    margin: 24px 0;
  }
  
  .mission-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 4px;
    color: #121216;
  }
  
  .mission-text {
    font-size: 18px;
    font-weight: 500;
    font-style: italic;
    line-height: 1.4;
    color: #121216;
    margin: 0;
  }
  
  @media (max-width: 1200px) {
    .mission-text {
      font-size: 16px;
    }
  }
  
  .about-company-btn,
  a.about-company-btn {
    padding: 12px 52px;
    background: linear-gradient(135deg, #f1d263 0%, #bc8b18 100%);
    color: #fff;
    border: none;
    border-radius: 999px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 24px;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(188, 139, 24, 0.2);
  }
  
  .about-company-btn:hover {
    background: linear-gradient(135deg, #bc8b18 0%, #f1d263 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(188, 139, 24, 0.4);
  }
  
  .about-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    height: 680px;
  }
  
  @media (max-width: 1200px) {
    .about-image-grid {
      height: auto;
    }
  }
  
  .about-image-item {
    overflow: hidden;
    position: relative;
  }
  
  .about-image-large {
    grid-row: span 2;
  }
  
  .about-image-empty {
    background: #f9f9fb;
  }
  
  .about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .news-swiper .swiper-progressbar-fill {
    background: #1f1f21;
  }
  
  /* Bestsellers Section */
  .bestsellers-section {
    padding: 50px 0;
    background: #fff;
  }
  
  @media (max-width: 1200px) {
    .bestsellers-section {
      padding: 64px 0;
    }
  }
  
  .bestsellers-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    
  }
  
  @media (max-width: 1200px) {
    .bestsellers-header {
      margin-bottom: 24px;
    }
  }
  
  .bestsellers-title {
    font-size: 48px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
    color: #1f1f21;
  }
  
  @media (max-width: 1200px) {
    .bestsellers-title {
      font-size: 32px;
    }
  }
  
  .bestsellers-controls {
    display: flex;
    align-items: center;
    gap: 32px;
  }
  
  .bestsellers-view-all {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #1f1f21;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .bestsellers-view-all:hover {
    color: #bc8b18;
    background: linear-gradient(135deg, #f1d263, #bc8b18);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .bestsellers-nav {
    display: flex;
    gap: 10px;
  }
  
  @media (max-width: 1200px) {
    .bestsellers-nav {
      display: none;
    }
  }
  
  .bestsellers-nav-btn {
    width: 24px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: #1f1f21;
    transition: color 0.3s ease;
  }
  
  .bestsellers-nav-btn:hover {
    color: #bc8b18;
  }
  
  .bestsellers-swiper {
    overflow: hidden;
    position: relative;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    cursor: grab;
  }
  
  .bestsellers-swiper:active {
    cursor: grabbing;
  }
  
  .bestsellers-swiper .swiper-wrapper {
    display: flex;
    transition: transform 0.3s ease;
    will-change: transform;
  }
  
  .bestsellers-swiper .swiper-slide {
    flex-shrink: 0;
    width: calc(25% - 15px);
    margin-right: 20px;
    height: auto;
  }
  
  @media (max-width: 1200px) {
    .bestsellers-swiper .swiper-slide {
      width: calc(50% - 10px);
      margin-right: 20px;
    }
  }
  
  @media (max-width: 660px) {
    .bestsellers-swiper .swiper-slide {
      width: calc(100% - 10px);
      margin-right: 20px;
    }
  }
  
  .bestseller-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    height: 100%;
  }
  
/* Extended bestseller card (EVO sample) */
.bestseller-card-extended {
  border-radius: 18px;
  padding: 16px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.bestseller-card-extended .bestseller-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.25s ease;
}

.bestseller-card-extended .bestseller-card-actions {
  display: flex;
  gap: 8px;
}

.bestseller-card-extended .icon-btn {
  width: 28px;
  height: 28px;
  border: 1px solid transparent;
  border-radius: 50%;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #1f1f21;
  transition: all 0.2s ease;
}

.bestseller-card-extended .icon-btn:hover {
  border-color: #f1d263;
  color: #bc8b18;
  box-shadow: 0 4px 12px rgba(241, 210, 99, 0.25);
  background: linear-gradient(135deg, rgba(241, 210, 99, 0.1), rgba(188, 139, 24, 0.1));
}

.bestseller-card-extended .bestseller-image-wrapper.extended {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.bestseller-card-extended .bestseller-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #4ade80;
  color: #0b3b1f;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  z-index: 2;
}

.bestseller-card-extended .bestseller-image-container {
  padding: 0;
}

.bestseller-card-extended .bestseller-image {
  width: 100%;
  height: 250px;
  display: block;
}

.bestseller-card-extended .bestseller-content.extended {
  padding: 8px 0 0 0;
  
}

.bestseller-card-extended .bestseller-category {
  font-size: 11px;
  color: #8a8a8f;
  margin-bottom: 4px;
}

.bestseller-card-extended .bestseller-name {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 8px 0;
  color: #1f1f21;
}

.bestseller-card-extended .bestseller-rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #514f59;
}

.bestseller-card-extended .rating-value {
  color: #f97316;
  font-weight: 700;
}

.bestseller-card-extended .rating-star {
  color: #f97316;
}

.bestseller-card-extended .rating-reviews {
  color: #8a8a8f;
}

.bestseller-card-extended .availability.in-stock {
  margin-left: auto;
  color: #22c55e;
  font-weight: 600;
}

.bestseller-card-extended .bestseller-pricing {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.bestseller-card-extended .price-main {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bestseller-card-extended .discount-tag {
  padding: 6px 10px;
  border: 1px solid #f97316;
  color: #f97316;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
  background: #fff7ed;
}

.bestseller-card-extended .price-old {
  font-size: 14px;
  color: #a3a3ac;
  text-decoration: line-through;
}

.bestseller-card-extended .bestseller-colors.extended {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 6px 0 10px 0;
}

.bestseller-card-extended .color-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid #e5e5ea;
  display: inline-flex;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.04);
}

.color-white { background: #f8f8f8; }
.color-black { background: #1f1f21; }
.color-beige { background: #c8b8a0; }

.bestseller-card-extended .color-more {
  font-size: 14px;
  color: #514f59;
}

.bestseller-card-extended .bestseller-btn.full-width {
  width: 100%;
  text-align: center;
  padding: 14px;
  border-radius: 12px;
  background: linear-gradient(135deg, #f1d263 0%, #bc8b18 100%);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(188, 139, 24, 0.2);
}

.bestseller-card-extended .bestseller-btn.full-width:hover {
  background: linear-gradient(135deg, #bc8b18 0%, #f1d263 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(188, 139, 24, 0.4);
}

.bestseller-card-extended:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}

.bestseller-card-extended:hover .bestseller-card-top,
.bestseller-card-extended:hover .bestseller-btn.full-width {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
  /* Hover effects for all cards */
  .bestseller-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
  }
  
  .bestseller-card:hover .bestseller-image-container {
    background: #fff;
  }
  
  .bestseller-card:hover .bestseller-image {
    transform: scale(1.05);
  }
  
  .bestseller-card .bestseller-image {
    transition: transform 0.3s ease;
  }
  
  .bestseller-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    position: relative;
    z-index: 10;
  }
  
  .bestseller-code {
    font-size: 12px;
    color: #514f59;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  
  .bestseller-card:hover .bestseller-code {
    opacity: 1;
    visibility: visible;
  }
  
  .bestseller-image-wrapper {
    position: relative;
    border-radius: 12px;
    background: #f9f9fb;
    overflow: hidden;
  }
  
  .bestseller-image-container {
    position: relative;
    background:white;
    border-radius: 12px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: background 0.3s ease;
  }
  
  .bestseller-image {
    width: 100%;
    height: 250px;
    object-fit: contain;
    transition: transform 0.3s ease;
  }
  
  .bestseller-content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    
  }
  
  .bestseller-category {
    font-size: 10px;
    color: #514f59;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .bestseller-name {
    font-size: 16px;
    font-weight: 600;
    color: #1f1f21;
    margin: 0;
    line-height: 1.4;
  }
  
  .bestseller-pricing {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
  }
  
  .bestseller-price {
    font-size: 18px;
    font-weight: 700;
    color: #1f1f21;
  }
  
  .bestseller-btn {
    margin-top: 12px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #f1d263 0%, #bc8b18 100%);
    color: #fff;
    text-decoration: none;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    box-shadow: 0 2px 8px rgba(188, 139, 24, 0.2);
  }
  
  .bestseller-card:hover .bestseller-btn {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .bestseller-btn:hover {
    background: linear-gradient(135deg, #bc8b18 0%, #f1d263 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(188, 139, 24, 0.4);
  }
  
  /* Video Section */
  .video-section {
    width: 100%;
    position: relative;
    background: #000;
    overflow: hidden;
  }
  
  .video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 43.25%; /* 16:9 aspect ratio */
    overflow: hidden;
  }
  
  .video-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
  }
  
  .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    pointer-events: none;
    background: rgba(0, 0, 0, 0.3);
    transition: opacity 0.3s ease;
  }
  
  .video-player:not([paused]) ~ .video-overlay {
    opacity: 0;
  }
  
  .video-player:not([paused]) ~ .video-overlay:hover {
    opacity: 1;
  }
  
  .video-title {
    font-size: 64px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    text-align: center;
    line-height: 1.2;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  }
  
  @media (max-width: 1200px) {
    .video-title {
      font-size: 48px;
    }
  }
  
  @media (max-width: 660px) {
    .video-title {
      font-size: 32px;
    }
  }
  
  /* Collections Section */
  .collections-section {
    padding: 50px 0;
    background: #fff;
  }
  
  @media (max-width: 1200px) {
    .collections-section {
      padding: 64px 0;
    }
  }
  
  .collections-title {
    font-size: 48px;
    font-weight: 700;
    text-transform: uppercase;
    color: #1f1f21;
    margin: 0 0 40px 0;
  }
  
  @media (max-width: 1200px) {
    .collections-title {
      font-size: 32px;
      margin-bottom: 32px;
    }
  }
  
  .collections-filters-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    margin-bottom: 32px;
  }
  
  .collections-filters-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
  }
  
  .collections-filters-bottom {
    display: flex;
    justify-content: flex-start;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 32px;
    margin-bottom: 40px;
  }
  
  .collection-filter-btn {
    padding: 10px 24px;
    background: #fff;
    color: #1f1f21;
    border: 1px solid #e9e8eb;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
  }
  
  .collection-filter-btn:hover {
    border-color: #f1d263;
    color: #bc8b18;
    background: linear-gradient(135deg, rgba(241, 210, 99, 0.05), rgba(188, 139, 24, 0.05));
  }
  
  .collection-filter-btn.active {
    background: linear-gradient(135deg, #f1d263 0%, #bc8b18 100%);
    color: #fff;
    border-color: #bc8b18;
  }
  
  .collection-filter-btn.active:hover {
    background: linear-gradient(135deg, #bc8b18 0%, #f1d263 100%);
    border-color: #f1d263;
    box-shadow: 0 2px 8px rgba(188, 139, 24, 0.3);
  }
  
  .collections-swiper {
    position: relative;
    overflow: hidden;
    margin-bottom: 32px;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    cursor: grab;
  }
  
  .collections-swiper:active {
    cursor: grabbing;
  }
  
 .collections-swiper .swiper-wrapper {
    display: flex;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
  }
  
  .collections-swiper.dragging .swiper-wrapper {
    transition: none;
  }
  
  .collections-swiper .swiper-slide {
    flex-shrink: 0;
    width: 100%;
  }
  
  @media (min-width: 1200px) {
    .collections-swiper .swiper-slide {
      width: calc((100% - 10px) / 1.3);
      margin-right: 10px;
    }
    
    .collections-swiper .swiper-slide:last-child {
      margin-right: 0;
    }
  }
  
  .collection-slide {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
  }
  
  .collection-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
  }
  
  .collection-slide:hover .collection-image {
    transform: scale(1.02);
  }
  
  .collections-progressbar {
    width: 220px;
    height: 2px;
    background: #e9e8eb;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
  }
  
  .collections-progressbar-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 33.33%;
    background: #1f1f21;
    transition: width 0.3s ease;
  }
  
  .collections-cta {
    display: flex;
    justify-content: flex-start;
    margin-top: 40px;
  }
  
  .collections-catalog-btn {
    padding: 16px 48px;
    background: linear-gradient(135deg, #f1d263 0%, #bc8b18 100%);
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(188, 139, 24, 0.2);
  }
  
  .collections-catalog-btn:hover {
    background: linear-gradient(135deg, #bc8b18 0%, #f1d263 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(188, 139, 24, 0.4);
  }
  
  /* METTA Stores Section */
  .stores-section {
    padding: 50px 0;
    background: #1c1d21;
  }
  
  @media (max-width: 1200px) {
    .stores-section {
      padding: 64px 0;
    }
  }
  
  .stores-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1px;
    min-height: 600px;
  }
  
  @media (max-width: 1200px) {
    .stores-grid {
      grid-template-columns: repeat(2, 1fr);
      grid-template-rows: repeat(3, 1fr);
      min-height: auto;
    }
    
    .store-text-block {
      grid-column: 1 / -1;
    }
  }
  
  @media (max-width: 660px) {
    .stores-grid {
      grid-template-columns: 1fr;
      grid-template-rows: auto;
    }
  }
  
  .store-text-block {
    background: #1c1d21;
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    border-radius: 8px;
  }
  
  @media (max-width: 1200px) {
    .store-text-block {
      padding: 32px;
    }
  }
  
  .stores-title {
    font-size: 48px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    margin: 0;
    line-height: 1.2;
  }
  
  @media (max-width: 1200px) {
    .stores-title {
      font-size: 32px;
    }
  }
  
  .stores-description {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
  }
  
  @media (max-width: 1200px) {
    .stores-description {
      font-size: 16px;
    }
  }
  
  .stores-btn {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, #f1d263 0%, #bc8b18 100%);
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    align-self: flex-start;
    box-shadow: 0 2px 8px rgba(188, 139, 24, 0.2);
  }
  
  .stores-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(188, 139, 24, 0.4);
    background: linear-gradient(135deg, #bc8b18 0%, #f1d263 100%);
  }
  
  .store-image-item {
    position: relative;
    overflow: hidden;
    
    background: #2a2b2f;
    min-height: 280px;
  }
  
  .store-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  .store-image-item:hover .store-image {
    transform: scale(1.05);
  }
  
  /* News Section */
  .news-section {
    padding: 0 0 50px 0;
    background: #fff;
  }
  
  @media (max-width: 1200px) {
    .news-section {
      padding: 0 0 96px 0;
    }
  }
  
  .news-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
  }
  
  @media (max-width: 1200px) {
    .news-header {
      margin-bottom: 24px;
    }
  }
  
  .news-title {
    font-size: 48px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
    color: #1f1f21;
  }
  
  @media (max-width: 1200px) {
    .news-title {
      font-size: 32px;
    }
  }
  
  .news-controls {
    display: flex;
    align-items: center;
    gap: 32px;
  }
  
  .news-view-all {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #1f1f21;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .news-view-all:hover {
    color: #bc8b18;
    background: linear-gradient(135deg, #f1d263, #bc8b18);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .news-nav {
    display: flex;
    gap: 10px;
  }
  
  @media (max-width: 1200px) {
    .news-nav {
      display: none;
    }
  }
  
  .news-nav-btn {
    width: 24px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: #1f1f21;
    transition: color 0.3s ease;
  }
  
  .news-nav-btn:hover {
    color: #bc8b18;
  }
  
  .news-swiper {
    overflow: hidden;
    position: relative;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    cursor: grab;
  }
  
  .news-swiper:active {
    cursor: grabbing;
  }
  
  .news-swiper .swiper-wrapper {
    display: flex;
    transition: transform 0.3s ease;
    will-change: transform;
  }
  
  .news-swiper .swiper-slide {
    flex-shrink: 0;
    width: calc((100% - 60px) / 3.4);
    margin-right: 20px;
  }
  
  .news-swiper .swiper-slide:last-child {
    margin-right: 0;
  }
  
  @media (max-width: 1200px) {
    .news-swiper .swiper-slide {
      width: calc(50% - 12px);
      margin-right: 12px;
    }
    
    .news-swiper .swiper-slide:last-child {
      margin-right: 12px;
    }
  }
  
  @media (max-width: 660px) {
    .news-swiper .swiper-slide {
      width: calc(100% - 12px);
      margin-right: 12px;
    }
  }
  
  .news-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    height: 100%;
  }
  
  .news-image-container {
    position: relative;
    overflow: hidden;
    aspect-ratio: 428/392;
  }
  
  .news-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  .news-card:hover .news-image {
    transform: scale(1.05);
  }
  
  .news-info {
    padding: 24px;
    background: #f4f4f6;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
  }
  
  .news-headline {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 28px;
    color: #1f1f21;
    margin: 0;
    height: 3em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
  
  @media (max-width: 1200px) {
    .news-headline {
      font-size: 16px;
      line-height: 22px;
    }
  }
  
  .news-description {
    font-size: 18px;
    line-height: 26px;
    color: #514f59;
    margin: 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    height: 4.5em;
  }
  
  @media (max-width: 1200px) {
    .news-description {
      font-size: 16px;
      line-height: 22px;
    }
  }
  
  .news-link {
    font-size: 18px;
    font-weight: 500;
    color: #1f1f21;
    text-decoration: underline;
    transition: color 0.3s ease;
    margin-top: auto;
  }
  
  .news-link:hover {
    color: #bc8b18;
    background: linear-gradient(135deg, #f1d263, #bc8b18);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  /* Onfooter */
  .onfooter-link {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    color: #000;
    text-decoration: none;
    background: #FFEB3E;
    padding: 15px 20px;
    border-radius: 0;
    transition: all 0.3s ease;
    margin-top: 20px;
    box-shadow: 0 2px 8px rgba(188, 139, 24, 0.2);
  }
  
  .onfooter-link:hover {
    opacity:.8;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(188, 139, 24, 0.4);
  }
  
  /* Footer */
  .footer {
    padding: 40px 0 40px 0;
    border-top: 1px solid #e9e8eb;
    position: relative;
    z-index: 1;
    width: 100%;
    clear: both;
  }
  
  @media (max-width: 1200px) {
    .footer {
      padding: 64px 0 32px 0;
    }
  }
  
  .footer-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr 1.5fr;
    gap: 40px;
  }
  
  @media (max-width: 1200px) {
    .footer-content {
      grid-template-columns: 1fr 1fr;
      gap: 32px;
    }
  }
  
  @media (max-width: 660px) {
    .footer-content {
      grid-template-columns: 1fr;
      gap: 24px;
    }
  }
  
  .footer-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  
  .footer-column-title {
    font-size: 18px;
    font-weight: 700;
    color: #1f1f21;
    margin-bottom: 8px;
  }
  
  .footer-logo .logo-text {
    flex-direction: column;
    margin-bottom: 24px;
  }
  
  .footer-payments {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
  }
  
  .payment-icon {
    width: 40px;
    height: 25px;
    object-fit: contain;
  }
  
  .footer-copyright {
    font-size: 14px;
    color: #514f59;
  }
  
  .footer-phone {
    font-size: 24px;
    font-weight: 700;
    color: #1f1f21;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-phone:hover {
    color: #bc8b18;
    background: linear-gradient(135deg, #f1d263, #bc8b18);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .footer-hours {
    font-size: 14px;
    color: #514f59;
  }
  
  .footer-email {
    font-size: 16px;
    color: #1f1f21;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-email:hover {
    color: #bc8b18;
    background: linear-gradient(135deg, #f1d263, #bc8b18);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .footer-social {
    display: flex;
    gap: 16px;
    margin-top: 8px;
  }
  
  .social-link  {
    color: #1f1f21;
    transition: color 0.3s ease;
    width: 44px;
    height: 44px;
    background-color: #f7f7f7;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .social-link path {
    fill: #1f1f21;
  }
  
  .social-link:hover {
    color: #bc8b18;
    transform: scale(1.1);
    transition: all 0.3s ease;
  }
  
  .footer-link {
    font-size: 14px;
    color: #1f1f21;
    text-decoration: none;
    transition: color 0.3s ease;
    line-height: 1.6;
  }
  
  .footer-link:hover {
    color: #bc8b18;
    background: linear-gradient(135deg, #f1d263, #bc8b18);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  /* News Detail Page Styles */
  .breadcrumbs-section {
    padding: 20px 0;
    background: #f8f8f8;
  }

  @media (max-width: 660px) {
    .breadcrumbs-section {
      padding: 16px 0;
    }
  }

  .breadcrumbs{
    display: flex;
    gap: 5px;
    font-size: 14px;
    color: #000;
    flex-wrap: wrap;
  }
  .breadcrumbs a {color:#666;}

  @media (max-width: 660px) {
    .breadcrumbs {
      font-size: 12px;
      gap: 6px;
    }
  }

  .breadcrumbs a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .breadcrumbs a:hover {
    color: #1f1f21;
  }

  .breadcrumbs span:last-child {
    color: #1f1f21;
  }

  .news-detail-section {
    padding: 60px 0;
  }

  @media (max-width: 1200px) {
    .news-detail-section {
      padding: 48px 0;
    }
  }

  @media (max-width: 660px) {
    .news-detail-section {
      padding: 32px 0;
    }
  }

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

  .news-article-header {
    margin-bottom: 40px;
  }

  @media (max-width: 660px) {
    .news-article-header {
      margin-bottom: 32px;
    }
  }

  .news-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #999;
    flex-wrap: wrap;
  }

  @media (max-width: 660px) {
    .news-meta {
      font-size: 12px;
      gap: 12px;
      margin-bottom: 16px;
    }
  }

  .news-article h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1f1f21;
    line-height: 1.2;
  }

  @media (max-width: 1200px) {
    .news-article h1 {
      font-size: 36px;
    }
  }

  @media (max-width: 660px) {
    .news-article h1 {
      font-size: 28px;
      margin-bottom: 20px;
    }
  }

  .news-article-intro {
    margin-bottom: 24px;
    font-size: 20px;
    font-weight: 500;
    color: #1f1f21;
  }

  @media (max-width: 1200px) {
    .news-article-intro {
      font-size: 18px;
    }
  }

  @media (max-width: 660px) {
    .news-article-intro {
      font-size: 16px;
      margin-bottom: 20px;
    }
  }

  .news-featured-image {
    margin-bottom: 40px;
    border-radius: 8px;
    overflow: hidden;
  }

  @media (max-width: 660px) {
    .news-featured-image {
      margin-bottom: 32px;
      border-radius: 4px;
    }
  }

  .news-featured-image img {
    width: 100%;
    height: auto;
    display: block;
  }

  .news-content {
    line-height: 1.8;
    color: #514f59;
    font-size: 18px;
  }

  @media (max-width: 1200px) {
    .news-content {
      font-size: 16px;
    }
  }

  @media (max-width: 660px) {
    .news-content {
      font-size: 15px;
      line-height: 1.6;
    }
  }

  .news-content p {
    margin-bottom: 24px;
  }

  @media (max-width: 660px) {
    .news-content p {
      margin-bottom: 20px;
    }
  }

  .news-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 40px 0 24px;
    color: #1f1f21;
  }

  @media (max-width: 1200px) {
    .news-content h2 {
      font-size: 28px;
      margin: 32px 0 20px;
    }
  }

  @media (max-width: 660px) {
    .news-content h2 {
      font-size: 24px;
      margin: 28px 0 16px;
    }
  }

  .news-content ul {
    margin-bottom: 24px;
    padding-left: 24px;
    list-style: none;
  }

  @media (max-width: 660px) {
    .news-content ul {
      padding-left: 20px;
      margin-bottom: 20px;
    }
  }

  .news-content li {
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
  }

  @media (max-width: 660px) {
    .news-content li {
      padding-left: 20px;
      margin-bottom: 10px;
    }
  }

  .news-content li span {
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
  }

  .news-image-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 40px 0;
  }

  @media (max-width: 660px) {
    .news-image-gallery {
      grid-template-columns: 1fr;
      gap: 16px;
      margin: 32px 0;
    }
  }

  .news-image-gallery img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
  }

  @media (max-width: 660px) {
    .news-image-gallery img {
      border-radius: 4px;
    }
  }

  .news-footer {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #e9e8eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
  }

  @media (max-width: 1200px) {
    .news-footer {
      margin-top: 48px;
      padding-top: 32px;
    }
  }

  @media (max-width: 660px) {
    .news-footer {
      margin-top: 40px;
      padding-top: 24px;
      flex-direction: column;
      align-items: flex-start;
      gap: 16px;
    }
  }

  .news-footer-back {
    color: #1f1f21;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
  }

  .news-footer-back:hover {
    color: #bc8b18;
    background: linear-gradient(135deg, #f1d263, #bc8b18);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .news-share {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
  }

  @media (max-width: 660px) {
    .news-share {
      gap: 12px;
    }
  }

  .news-share span {
    color: #999;
    font-size: 14px;
  }

  @media (max-width: 660px) {
    .news-share span {
      font-size: 12px;
    }
  }

  .news-share a {
    color: #1f1f21;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
  }

  @media (max-width: 660px) {
    .news-share a {
      font-size: 12px;
    }
  }

  .news-share a:hover {
    color: #bc8b18;
    background: linear-gradient(135deg, #f1d263, #bc8b18);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .footer-address {
    margin-top: 12px;
    font-size: 14px;
    color: #514f59;
  }

  @media (max-width: 660px) {
    .footer-address {
      font-size: 12px;
      margin-top: 8px;
    }
  }

  /* News Listing Page Styles */
  .news-listing-section {
    padding: 60px 0;
  }

  @media (max-width: 1200px) {
    .news-listing-section {
      padding: 48px 0;
    }
  }

  @media (max-width: 660px) {
    .news-listing-section {
      padding: 32px 0;
    }
  }

   


  .news-sidebar {
    position: sticky;
    top: 120px;
    align-self: start;
  }

  @media (max-width: 1024px) {
    .news-sidebar {
      position: static;
    }
  }

  .news-sidebar h2 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #1f1f21;
    text-transform: uppercase;
  }

  .news-sidebar nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background-color: #f8f8f8;
  }

  .news-sidebar-link {
    display: block;
    padding: 20px 16px;
    color: #514f59;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    border-left: 3px solid transparent;
    transition: all 0.3s;
  }

  .news-sidebar-link:hover {
    background: #f8f8f8;
    border-left-color: #1f1f21;
    color: #1f1f21;
  }

  .news-articles h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1f1f21;
  }

  @media (max-width: 1200px) {
    .news-articles h1 {
      font-size: 36px;
      margin-bottom: 40px;
    }
  }

  @media (max-width: 660px) {
    .news-articles h1 {
      font-size: 28px;
      margin-bottom: 32px;
    }
  }

  .news-articles-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  @media (max-width: 660px) {
    .news-articles-list {
      gap: 32px;
    }
  }

  .news-article-card {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 40px;
    border-bottom: 1px solid #e9e8eb;
    padding-bottom: 40px;
  }

  @media (max-width: 1024px) {
    .news-article-card {
      grid-template-columns: 1fr;
    }
    .news-article-image {
      order: -1;
    }
  }

  @media (max-width: 660px) {
    .news-article-card {
      gap: 24px;
      padding-bottom: 32px;
    }
  }

  .news-article-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
  }

  @media (max-width: 660px) {
    .news-article-image img {
      height: 240px;
    }
  }

  .news-article-card:hover .news-article-image img {
    transform: scale(1.02);
  }

  .news-article-content {
    display: flex;
    flex-direction: column;
  }

  .news-article-date {
    font-size: 14px;
    color: #999;
    margin-bottom: 12px;
  }

  .news-article-content h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1f1f21;
    line-height: 1.3;
  }

  @media (max-width: 1200px) {
    .news-article-content h2 {
      font-size: 24px;
    }
  }

  @media (max-width: 660px) {
    .news-article-content h2 {
      font-size: 20px;
      margin-bottom: 12px;
    }
  }

  .news-article-content h2 a {
    color: #1f1f21;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .news-article-card:hover .news-article-content h2 a {
    color: #666;
  }

  .news-article-content p {
    font-size: 16px;
    color: #514f59;
    line-height: 1.7;
    margin-bottom: 20px;
  }

  @media (max-width: 660px) {
    .news-article-content p {
      font-size: 15px;
      margin-bottom: 16px;
    }
  }

  .news-article-content a[href*="news-detail"] {
    color: #1f1f21;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    transition: color 0.3s ease;
  }

  .news-article-content a[href*="news-detail"]:hover {
    color: #bc8b18;
    background: linear-gradient(135deg, #f1d263, #bc8b18);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  /* Projects Listing Page Styles */
  .projects-listing-section {
    padding: 60px 0;
  }

  @media (max-width: 1200px) {
    .projects-listing-section {
      padding: 48px 0;
    }
  }

  @media (max-width: 660px) {
    .projects-listing-section {
      padding: 32px 0;
    }
  }

   .grid-div {
     margin-top:30px;
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 40px;
    align-items: start;
  }

  @media (max-width: 1024px) {
    .grid-div {
      grid-template-columns: 1fr;
    }
  }

  .projects-sidebar {
    position: sticky;
    top: 120px;
    align-self: start;
  }

  @media (max-width: 1024px) {
    .projects-sidebar {
      position: static;
    }
  }

  .projects-sidebar h1 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #1f1f21;
    text-transform: uppercase;
  }

  .projects-sidebar nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background-color: #f8f8f8;
  }

  .projects-sidebar-link {
    display: block;
    padding: 20px 16px;
    color: #514f59;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    border-left: 3px solid transparent;
    transition: all 0.3s;
  }

  .projects-sidebar-link:hover {
    background: #f8f8f8;
    border-left-color: #1f1f21;
    color: #1f1f21;
  }

  .projects-articles h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1f1f21;
  }

  @media (max-width: 1200px) {
    .projects-articles h1 {
      font-size: 36px;
      margin-bottom: 40px;
    }
  }

  @media (max-width: 660px) {
    .projects-articles h1 {
      font-size: 28px;
      margin-bottom: 32px;
    }
  }

  .projects-articles-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  @media (max-width: 660px) {
    .projects-articles-list {
      gap: 32px;
    }
  }

  .project-article-card {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 40px;
    border-bottom: 1px solid #e9e8eb;
    padding-bottom: 40px;
  }

  @media (max-width: 1024px) {
    .project-article-card {
      grid-template-columns: 1fr;
    }
    .project-article-image {
      order: -1;
    }
  }

  @media (max-width: 660px) {
    .project-article-card {
      gap: 24px;
      padding-bottom: 32px;
    }
  }

  .project-article-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
  }

  @media (max-width: 660px) {
    .project-article-image img {
      height: 240px;
    }
  }

  .project-article-card:hover .project-article-image img {
    transform: scale(1.02);
  }

  .project-article-content {
    display: flex;
    flex-direction: column;
  }

  .project-article-category {
    font-size: 14px;
    color: #999;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .project-article-content h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1f1f21;
    line-height: 1.3;
  }

  @media (max-width: 1200px) {
    .project-article-content h2 {
      font-size: 24px;
    }
  }

  @media (max-width: 660px) {
    .project-article-content h2 {
      font-size: 20px;
      margin-bottom: 12px;
    }
  }

  .project-article-content h2 a {
    color: #1f1f21;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .project-article-card:hover .project-article-content h2 a {
    color: #666;
  }

  .project-article-content p {
    font-size: 16px;
    color: #514f59;
    line-height: 1.7;
    margin-bottom: 20px;
  }

  @media (max-width: 660px) {
    .project-article-content p {
      font-size: 15px;
      margin-bottom: 16px;
    }
  }

  .project-article-content a[href*="project-detail"] {
    color: #1f1f21;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    transition: color 0.3s ease;
  }

  .project-article-content a[href*="project-detail"]:hover {
    color: #bc8b18;
    background: linear-gradient(135deg, #f1d263, #bc8b18);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  /* Project Detail Page Styles */
  .project-detail-section {
    padding: 60px 0;
  }

  @media (max-width: 1200px) {
    .project-detail-section {
      padding: 48px 0;
    }
  }

  @media (max-width: 660px) {
    .project-detail-section {
      padding: 32px 0;
    }
  }

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

  .project-header {
    margin-bottom: 40px;
  }

  @media (max-width: 660px) {
    .project-header {
      margin-bottom: 32px;
    }
  }

  .project-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #999;
    flex-wrap: wrap;
  }

  @media (max-width: 660px) {
    .project-meta {
      font-size: 12px;
      gap: 12px;
      margin-bottom: 16px;
    }
  }

  .project-article h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1f1f21;
    line-height: 1.2;
  }

  @media (max-width: 1200px) {
    .project-article h1 {
      font-size: 36px;
    }
  }

  @media (max-width: 660px) {
    .project-article h1 {
      font-size: 28px;
      margin-bottom: 20px;
    }
  }

  .project-featured-image {
    margin-bottom: 40px;
    border-radius: 8px;
    overflow: hidden;
  }

  @media (max-width: 660px) {
    .project-featured-image {
      margin-bottom: 32px;
      border-radius: 4px;
    }
  }

  .project-featured-image img {
    width: 100%;
    height: auto;
    display: block;
  }

  .project-info-grid {
    margin-bottom: 60px;
  }

  @media (max-width: 660px) {
    .project-info-grid {
      margin-bottom: 40px;
    }
  }

  .project-description {
    line-height: 1.8;
    color: #514f59;
    font-size: 18px;
  }

  @media (max-width: 1200px) {
    .project-description {
      font-size: 16px;
    }
  }

  @media (max-width: 660px) {
    .project-description {
      font-size: 15px;
      line-height: 1.6;
    }
  }

  .project-description h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1f1f21;
  }

  @media (max-width: 1200px) {
    .project-description h2 {
      font-size: 28px;
      margin-bottom: 20px;
    }
  }

  @media (max-width: 660px) {
    .project-description h2 {
      font-size: 24px;
      margin-bottom: 16px;
    }
  }

  .project-description p {
    margin-bottom: 24px;
  }

  @media (max-width: 660px) {
    .project-description p {
      margin-bottom: 20px;
    }
  }

  .project-gallery {
    margin-bottom: 60px;
  }

  @media (max-width: 660px) {
    .project-gallery {
      margin-bottom: 40px;
    }
  }

  .project-gallery h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1f1f21;
  }

  @media (max-width: 1200px) {
    .project-gallery h2 {
      font-size: 28px;
      margin-bottom: 32px;
    }
  }

  @media (max-width: 660px) {
    .project-gallery h2 {
      font-size: 24px;
      margin-bottom: 24px;
    }
  }

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

  @media (max-width: 1200px) {
    .gallery-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }
  }

  @media (max-width: 660px) {
    .gallery-grid {
      grid-template-columns: 1fr;
      gap: 16px;
    }
  }

  .gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
  }

  @media (max-width: 660px) {
    .gallery-item img {
      height: 250px;
      border-radius: 4px;
    }
  }

  .project-footer {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #e9e8eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
  }

  @media (max-width: 1200px) {
    .project-footer {
      margin-top: 48px;
      padding-top: 32px;
    }
  }

  @media (max-width: 660px) {
    .project-footer {
      margin-top: 40px;
      padding-top: 24px;
      flex-direction: column;
      align-items: flex-start;
      gap: 16px;
    }
  }

  .project-footer a:first-child {
    color: #1f1f21;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
  }

  .project-footer a:first-child:hover {
    color: #bc8b18;
    background: linear-gradient(135deg, #f1d263, #bc8b18);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .project-footer a:last-child {
    padding: 16px 32px;
    background: #1f1f21;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
  }

  .project-footer a:last-child:hover {
    background: #333;
    transform: translateY(-2px);
  }

  @media (max-width: 660px) {
    .project-footer a:last-child {
      width: 100%;
      text-align: center;
    }
  }

  /* Product Detail Page Styles */
  .product-detail-section {
    padding: 60px 0;
  }

  @media (max-width: 1200px) {
    .product-detail-section {
      padding: 48px 0;
    }
  }

  @media (max-width: 660px) {
    .product-detail-section {
      padding: 32px 0;
    }
  }

  .product-detail-wrapper {
    display: grid;
    grid-template-columns: 65% 32%;
    gap: 32px;
    align-items: start;
    width: 100%;
    box-sizing: border-box;
  }

  @media (max-width: 1200px) {
    .product-detail-wrapper {
      grid-template-columns: 1fr;
    }
  }

  .product-left-column {
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 100px;
    align-self: start;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }

  @media (max-width: 1200px) {
    .product-left-column {
      position: static;
    }
  }

  .product-main-image {
    margin-bottom: 30px;
  }

  .product-image-item {
    margin-bottom: 16px;
  }

  .product-image-item img {
    width: 100%;
    height: 600px;
    object-fit: contain;
    border-radius: 8px;
    cursor: pointer;
    display: block;
  }

  @media (max-width: 1200px) {
    .product-image-item img {
      height: 550px;
    }
  }

  @media (max-width: 660px) {
    .product-image-item img {
      height: 380px;
      border-radius: 6px;
    }
  }

  .product-image-item.hidden-image {
    display: none;
  }

  .show-more-images-btn {
    width: 100%;
    padding: 12px;
    background: #f8f8f8;
    border: 1px solid #e9e8eb;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    color: #1f1f21;
    cursor: pointer;
    margin-top: 12px;
    transition: all 0.3s ease;
  }

  .show-more-images-btn:hover {
    background: #e9e8eb;
    border-color: #d0d0d0;
  }

  .product-right-column {
    width: 100%;
    box-sizing: border-box;
    position: sticky;
    top: 120px;
  }

  @media (max-width: 1200px) {
    .product-right-column {
      position: static;
    }
  }

  .product-code {
    font-size: 14px;
    color: #cfd2d4;
    margin-bottom: 8px;
  }

  .product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
  }

  .product-rating span {
    color: #ffa500;
    font-size: 16px;
  }

  .product-left-info {
    margin-bottom: 30px;
  }

  @media (max-width: 660px) {
    .product-left-info {
      margin-bottom: 24px;
    }
  }

  .product-title {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #1f1f21;
    line-height: 1.25;
  }

  @media (max-width: 1200px) {
    .product-title {
      font-size: 28px;
    }
  }

  @media (max-width: 660px) {
    .product-title {
      font-size: 24px;
      margin-bottom: 16px;
    }
  }

  .product-properties {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .property-item {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .property-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: #999;
  }

  .property-text {
    font-size: 16px;
    font-weight: 400;
    color: #1f1f21;
  }

  @media (max-width: 660px) {
    .property-text {
      font-size: 14px;
    }
  }

  .property-text span {
    text-decoration: underline;
    text-decoration-style: dashed;
    text-underline-offset: 4px;
  }

  .warranty-tooltip {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #e9e8eb;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #999;
    cursor: help;
    flex-shrink: 0;
  }

  .product-price {
    margin-bottom: 30px;
  }

  .product-price > div {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
  }

  .product-price > div > span:first-child {
    font-size: 32px;
    font-weight: 600;
    color: #1f1f21;
  }

  @media (max-width: 1200px) {
    .product-price > div > span:first-child {
      font-size: 28px;
    }
  }

  @media (max-width: 660px) {
    .product-price > div > span:first-child {
      font-size: 24px;
    }
  }

  .product-price > div > span:nth-child(2) {
    font-size: 18px;
    color: #999;
    text-decoration: line-through;
  }

  @media (max-width: 660px) {
    .product-price > div > span:nth-child(2) {
      font-size: 16px;
    }
  }

  .product-price > div > span:nth-child(n+3) {
    background: #ff4444;
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
  }

  .product-description {
    margin-bottom: 30px;
    line-height: 1.8;
    color: #514f59;
    font-size: 16px;
  }

  @media (max-width: 660px) {
    .product-description {
      font-size: 15px;
      margin-bottom: 24px;
    }
  }

  .product-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
  }

  @media (max-width: 660px) {
    .product-actions {
      flex-direction: column;
      gap: 12px;
    }
  }

  .product-actions a {
    padding: 16px 64px;
    text-decoration:none;
    background: green;
    color: #fff;
    border: 1px solid #e9e8eb;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .product-actions button:hover {
    background: #f8f8f8;
    border-color: #d0d0d0;
  }

  @media (max-width: 660px) {
    .product-actions button {
      width: 100%;
    }
  }

  /* Tenders Page Styles */
  .tenders-section {
    padding: 0;
    background: #fff;
    position: relative;
    min-height: 100vh;
  }

  .tenders-section > div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
  }

  @media (max-width: 1024px) {
    .tenders-section > div {
      grid-template-columns: 1fr;
    }
  }

  .tenders-section > div > div:first-child {
    padding: 80px 60px;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
  }

  .tenders-section > div > div:first-child > div:first-child {
    margin-bottom: 40px;
  }

  @media (max-width: 1200px) {
    .tenders-section > div > div:first-child {
      padding: 60px 40px;
    }
  }

  @media (max-width: 660px) {
    .tenders-section > div > div:first-child {
      padding: 40px 24px;
    }
  }

  .tenders-section h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1f1f21;
    line-height: 1.2;
    text-transform: uppercase;
  }

  @media (max-width: 1200px) {
    .tenders-section h1 {
      font-size: 36px;
    }
  }

  @media (max-width: 660px) {
    .tenders-section h1 {
      font-size: 28px;
      margin-bottom: 24px;
    }
  }

  .tenders-section > div > div:first-child > div:first-child p {
    font-size: 16px;
    color: #514f59;
    line-height: 1.8;
    margin-bottom: 20px;
  }

  .tenders-section > div > div:first-child > div:first-child p:last-of-type {
    font-weight: 600;
  }

  @media (max-width: 660px) {
    .tenders-section > div > div:first-child > div:first-child p {
      font-size: 15px;
    }
  }

  .tenders-section ul {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 12px;
    margin-top: 30px;
  }

  .tenders-section li {
    font-size: 16px;
    color: #514f59;
    line-height: 1.7;
    padding-left: 20px;
    position: relative;
  }

  @media (max-width: 660px) {
    .tenders-section li {
      font-size: 15px;
    }
  }

  .tenders-section li span {
    position: absolute;
    left: 0;
    top: 0;
  }

  .tenders-section > div > div:first-child > div:first-child > ul {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 12px;
    margin-top: 30px;
  }

  .tenders-section > div > div:first-child > div:first-child > ul > li {
    font-size: 16px;
    color: #514f59;
    line-height: 1.7;
    padding-left: 20px;
    position: relative;
  }

  .tenders-section > div > div:first-child > div:first-child > ul > li > span {
    position: absolute;
    left: 0;
    top: 0;
  }

  .tenders-form-section {
    background: #fff;
    padding: 80px 0;
  }

  @media (max-width: 1200px) {
    .tenders-form-section {
      padding: 60px 0;
    }
  }

  @media (max-width: 660px) {
    .tenders-form-section {
      padding: 40px 0;
    }
  }

  .tenders-form-section > div > div {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: start;
  }

  .tenders-form-section > div > div > div > div:first-child {
    margin-bottom: 20px;
  }

  .tenders-form-section > div > div > div > div:first-child p:first-child {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
  }

  .tenders-form-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1f1f21;
    line-height: 1.2;
    text-transform: uppercase;
    margin-bottom: 30px;
  }

  @media (max-width: 1200px) {
    .tenders-form-section h2 {
      font-size: 32px;
    }
  }

  @media (max-width: 660px) {
    .tenders-form-section h2 {
      font-size: 28px;
      margin-bottom: 24px;
    }
  }

  .tenders-form-section form {
    display: grid;
    gap: 20px;
    max-width: 500px;
  }

  @media (max-width: 660px) {
    .tenders-form-section form {
      max-width: 100%;
    }
  }

  .tenders-form-section label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #1f1f21;
    margin-bottom: 8px;
  }

  .tenders-form-section > div > div > div > div > form > div:first-of-type label {
    margin-top: 10px;
  }

  .tenders-form-section > div > div > div > div > form > div:nth-of-type(5) > div {
    display: flex;
    gap: 20px;
  }

  @media (max-width: 660px) {
    .tenders-form-section > div > div > div > div > form > div:nth-of-type(5) > div {
      flex-direction: column;
      gap: 12px;
    }
  }

  .tenders-form-section input[type="text"],
  .tenders-form-section input[type="tel"],
  .tenders-form-section input[type="email"],
  .tenders-form-section textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #e9e8eb;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
  }

  .tenders-form-section input:focus,
  .tenders-form-section textarea:focus {
    outline: none;
    border-color: #bc8b18;
  }

  .tenders-form-section textarea {
    resize: vertical;
  }

  .tenders-form-section label[for*="call-time"] {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
  }

  .tenders-form-section input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
  }

  .tenders-form-section label[for*="checkbox"] {
    display: flex;
    align-items: start;
    gap: 12px;
    cursor: pointer;
  }

  .tenders-form-section input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    flex-shrink: 0;
  }

  .tenders-form-section label[for*="checkbox"] span {
    font-size: 13px;
    color: #514f59;
    line-height: 1.5;
  }

  .tenders-form-section label[for*="checkbox"] span a {
    color: #1f1f21;
    text-decoration: underline;
  }

  .tenders-form-section button[type="submit"] {
    padding: 16px 32px;
    background: #1f1f21;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    text-transform: uppercase;
    transition: all 0.3s ease;
  }

  .tenders-form-section button[type="submit"]:hover {
    background: #333;
    transform: translateY(-2px);
  }

  .tenders-contact-section {
    padding-top: 60px;
  }

  @media (max-width: 660px) {
    .tenders-contact-section {
      padding-top: 40px;
    }
  }

  .tenders-contact-section h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1f1f21;
    text-transform: uppercase;
  }

  @media (max-width: 660px) {
    .tenders-contact-section h3 {
      font-size: 20px;
      margin-bottom: 24px;
    }
  }

  .tenders-contact-section a {
    font-size: 20px;
    color: #1f1f21;
    text-decoration: none;
    font-weight: 500;
    display: block;
    margin-bottom: 8px;
    transition: color 0.3s ease;
  }

  .tenders-contact-section a:hover {
    color: #bc8b18;
  }

  .tenders-contact-section p:first-of-type {
    font-size: 14px;
    font-weight: 500;
    color: #1f1f21;
    margin-bottom: 8px;
  }

  .tenders-contact-section > div:first-child {
    margin-bottom: 24px;
  }

  .tenders-contact-section a {
    font-size: 20px;
    color: #1f1f21;
    text-decoration: none;
    font-weight: 500;
    display: block;
    margin-bottom: 8px;
    transition: color 0.3s ease;
  }

  .tenders-contact-section a:hover {
    color: #bc8b18;
  }

  .tenders-contact-section p:first-of-type {
    font-size: 14px;
    font-weight: 500;
    color: #1f1f21;
    margin-bottom: 8px;
  }

  .tenders-contact-section p:last-of-type {
    font-size: 16px;
    color: #514f59;
    line-height: 1.6;
  }

  .tenders-section > div > div:last-child {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
  }

  @media (max-width: 1024px) {
    .tenders-section > div > div:last-child {
      position: static;
      height: 400px;
    }
  }

  .tenders-section > div > div:last-child {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
  }

  @media (max-width: 1024px) {
    .tenders-section > div > div:last-child {
      position: static;
      height: 400px;
    }
  }

  .tenders-section > div > div:last-child img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  /* Contact Page Styles */
  .contact-section {
    padding: 60px 0;
  }

  @media (max-width: 1200px) {
    .contact-section {
      padding: 48px 0;
    }
  }

  @media (max-width: 660px) {
    .contact-section {
      padding: 32px 0;
    }
  }

  .contact-section h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1f1f21;
  }

  @media (max-width: 1200px) {
    .contact-section h1 {
      font-size: 36px;
    }
  }

  @media (max-width: 660px) {
    .contact-section h1 {
      font-size: 28px;
      margin-bottom: 24px;
    }
  }

  .contact-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 50px;
    flex-wrap: wrap;
  }

  @media (max-width: 768px) {
    .contact-tabs {
      flex-direction: column;
    }
  }

  @media (max-width: 660px) {
    .contact-tabs {
      margin-bottom: 40px;
    }
  }

  .contact-tab {
    padding: 12px 24px;
    background: white;
    color: #1f1f21;
    border: 1px solid #e9e8eb;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
  }

  @media (max-width: 768px) {
    .contact-tab {
      width: 100%;
    }
  }

  .contact-tab:hover {
    background: #f8f8f8;
    border-color: #d0d0d0;
  }

  .contact-tab.active {
    background: #1f1f21;
    color: white;
    border-color: #1f1f21;
  }

  .contact-tab.active:hover {
    background: #1f1f21;
  }

  .contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
    align-items: start;
  }

  @media (max-width: 1200px) {
    .contact-content {
      grid-template-columns: 1fr;
      gap: 50px;
    }
  }

  .contact-info > div {
    margin-bottom: 50px;
  }

  @media (max-width: 660px) {
    .contact-info > div {
      margin-bottom: 40px;
    }
  }

  .contact-info h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1f1f21;
  }

  @media (max-width: 660px) {
    .contact-info h2 {
      font-size: 20px;
      margin-bottom: 24px;
    }
  }

  .contact-field {
    margin-bottom: 24px;
  }

  .contact-field > div:first-child {
    font-size: 14px;
    color: #999;
    margin-bottom: 8px;
    font-weight: 400;
  }

  .contact-field > div:last-child {
    font-size: 16px;
    color: #1f1f21;
    line-height: 1.6;
  }

  .contact-field a {
    color: #1f1f21;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .contact-field a:hover {
    color: #bc8b18;
  }

  .contact-requisites h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1f1f21;
  }

  @media (max-width: 660px) {
    .contact-requisites h2 {
      font-size: 20px;
      margin-bottom: 24px;
    }
  }

  .requisite-field {
    margin-bottom: 24px;
  }

  .requisite-field > div:first-child {
    font-size: 14px;
    color: #999;
    margin-bottom: 8px;
    font-weight: 400;
  }

  .requisite-field > div:last-child {
    font-size: 16px;
    color: #1f1f21;
    line-height: 1.6;
  }

  /* Map Page Styles */
  .map-section {
    padding: 60px 0;
  }

  @media (max-width: 1200px) {
    .map-section {
      padding: 48px 0;
    }
  }

  @media (max-width: 660px) {
    .map-section {
      padding: 32px 0;
    }
  }

  .map-section h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    color: #1f1f21;
  }

  @media (max-width: 1200px) {
    .map-section h1 {
      font-size: 36px;
    }
  }

  @media (max-width: 660px) {
    .map-section h1 {
      font-size: 28px;
      margin-bottom: 32px;
    }
  }

  .map-wrapper {
    max-width: 1200px;
    margin: 0 auto;
  }

  .map-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  }

  @media (max-width: 660px) {
    .map-container {
      border-radius: 4px;
    }
  }

  .map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    border: 0;
    width: 100%;
    height: 100%;
  }

  .map-info {
    margin-top: 40px;
    text-align: center;
  }

  @media (max-width: 660px) {
    .map-info {
      margin-top: 32px;
    }
  }

  .map-info h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1f1f21;
  }

  @media (max-width: 1200px) {
    .map-info h2 {
      font-size: 28px;
    }
  }

  @media (max-width: 660px) {
    .map-info h2 {
      font-size: 24px;
      margin-bottom: 16px;
    }
  }

  .map-info p {
    font-size: 18px;
    color: #514f59;
    margin-bottom: 20px;
    line-height: 1.8;
  }

  @media (max-width: 660px) {
    .map-info p {
      font-size: 16px;
    }
  }

  .map-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
  }

  @media (max-width: 660px) {
    .map-actions {
      flex-direction: column;
      gap: 12px;
    }
  }

  .map-actions a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
  }

  .map-actions a:first-child {
    background: #1f1f21;
    color: white;
  }

  .map-actions a:first-child:hover {
    background: #333;
    transform: translateY(-2px);
  }

  .map-actions a:last-child {
    background: white;
    color: #1f1f21;
    border: 2px solid #1f1f21;
  }

  .map-actions a:last-child:hover {
    background: #f8f8f8;
    border-color: #333;
  }

  @media (max-width: 660px) {
    .map-actions a {
      width: 100%;
      justify-content: center;
    }
  }

  /* Price Quote Modal Styles */
  .quote-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
  }

  .quote-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }

  .quote-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(31, 31, 33, 0.8);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .quote-modal.active .quote-modal-overlay {
    opacity: 1;
  }

  .quote-modal-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    margin: 20px;
    z-index: 1;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
  }

  .quote-modal.active .quote-modal-container {
    transform: scale(1) translateY(0);
  }

  .quote-modal-content {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    max-height: 90vh;
  }

  .quote-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 32px 32px 24px;
    border-bottom: 1px solid #e9e8eb;
  }

  @media (max-width: 660px) {
    .quote-modal-header {
      padding: 24px 24px 20px;
    }
  }

  .quote-modal-title {
    font-size: 28px;
    font-weight: 700;
    color: #1f1f21;
    margin: 0;
    line-height: 1.2;
  }

  @media (max-width: 660px) {
    .quote-modal-title {
      font-size: 24px;
    }
  }

  .quote-modal-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f8f8;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    color: #1f1f21;
    transition: all 0.3s ease;
    flex-shrink: 0;
  }

  .quote-modal-close:hover {
    background: #e9e8eb;
    transform: rotate(90deg);
  }

  .quote-modal-close:active {
    transform: rotate(90deg) scale(0.95);
  }

  .quote-form {
    padding: 32px;
    overflow-y: auto;
    flex: 1;
  }

  @media (max-width: 660px) {
    .quote-form {
      padding: 24px;
    }
  }

  .quote-form-group {
    margin-bottom: 24px;
  }

  @media (max-width: 660px) {
    .quote-form-group {
      margin-bottom: 20px;
    }
  }

  .quote-form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #1f1f21;
    margin-bottom: 8px;
  }

  .quote-form-input,
  .quote-form-textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e9e8eb;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    color: #1f1f21;
    background: white;
    transition: all 0.3s ease;
    box-sizing: border-box;
  }

  .quote-form-input:focus,
  .quote-form-textarea:focus {
    outline: none;
    border-color: #bc8b18;
    box-shadow: 0 0 0 3px rgba(188, 139, 24, 0.1);
  }

  .quote-form-input::placeholder,
  .quote-form-textarea::placeholder {
    color: #999;
  }

  .quote-form-textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
  }

  .quote-form-actions {
    display: flex;
    gap: 12px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #e9e8eb;
  }

  @media (max-width: 660px) {
    .quote-form-actions {
      flex-direction: column-reverse;
      gap: 12px;
      margin-top: 24px;
      padding-top: 20px;
    }
  }

  .quote-form-submit {
    flex: 1;
    padding: 16px 24px;
    background: #1f1f21;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    min-height: 52px;
  }

  .quote-form-submit:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(31, 31, 33, 0.3);
  }

  .quote-form-submit:active {
    transform: translateY(0);
  }

  .quote-form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
  }

  .quote-form-submit svg {
    transition: transform 0.3s ease;
  }

  .quote-form-submit:hover:not(:disabled) svg {
    transform: translateX(4px);
  }

  .quote-form-cancel {
    padding: 16px 24px;
    background: white;
    color: #1f1f21;
    border: 2px solid #e9e8eb;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 52px;
  }

  @media (max-width: 660px) {
    .quote-form-cancel {
      width: 100%;
    }
  }

  .quote-form-cancel:hover {
    background: #f8f8f8;
    border-color: #d0d0d0;
  }

  .quote-form-cancel:active {
    transform: scale(0.98);
  }

  /* Modal Success State */
  .quote-form-success {
    display: none;
    padding: 32px;
    text-align: center;
  }

  .quote-form-success.active {
    display: block;
  }

  .quote-form-success-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    background: #4CAF50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
  }

  .quote-form-success-title {
    font-size: 24px;
    font-weight: 700;
    color: #1f1f21;
    margin-bottom: 12px;
  }

  .quote-form-success-message {
    font-size: 16px;
    color: #514f59;
    line-height: 1.6;
    margin-bottom: 24px;
  }

  /* Prevent body scroll when modal is open */
  body.modal-open {
    overflow: hidden;
  }

  @media (max-width: 660px) {
    .quote-modal-container {
      margin: 16px;
      max-height: 95vh;
    }

    .quote-modal-content {
      max-height: 95vh;
    }
  }