  .kolas-locations-wrapper {
      display: flex;
      flex-direction: column;
      container-widget-width: 100%;
      container-widget-height: initial;
      container-widget-flex-grow: 0;
      container-widget-align-self: initial;
      flex-wrap-mobile: wrap;
  }

  .kolas-locations-container {
      display: flex;
      flex-direction: column;
      container-widget-width: 100%;
      container-widget-height: initial;
      container-widget-flex-grow: 0;
      container-widget-align-self: initial;
      flex-wrap-mobile: wrap;
      border-style: none;
      border-style: none;
      border-radius: 20px 20px 20px 20px;
      padding-top: 100px;
      padding-bottom: 100px;
      padding-left: 20px;
      padding-right: 20px;
      position: relative;
      overflow: hidden;
  }

  .kolas-locations-container::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url('https://kolas.com/wp-content/uploads/2025/05/location-page.png');
      background-position: center center;
      background-repeat: no-repeat;
      background-size: cover;
      z-index: 1;
  }

  .kolas-locations-inner {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      width: 100%;
  }

  .kolas-locations-heading {
      text-align: center;
      position: relative;
      z-index: 2;
  }

  .kolas-locations-title {
      font-family: "Work Sans", Sans-serif;
      font-size: 70px;
      font-weight: 700;
      text-transform: uppercase;
      text-decoration: none;
      line-height: 76px;
      letter-spacing: -0.3px;
      color: #FFFFFF;
      margin: 0;
      padding: 0;
  }

  /* Responsive Styles */
  @media (min-width: 2400px) {
      .kolas-locations-container {
          border-radius: 20px 20px 20px 20px;
          padding-top: 125px;
          padding-bottom: 125px;
          padding-left: 20px;
          padding-right: 20px;
      }

      .kolas-locations-container::before {
          background-image: url('https://kolas.com/wp-content/uploads/2025/05/location-page.png');
          background-position: center center;
          background-repeat: no-repeat;
          background-size: cover;
      }
  }

  @media (max-width: 1366px) {
      .kolas-locations-wrapper {
          padding-top: 0px;
          padding-bottom: 0px;
          padding-left: 10px;
          padding-right: 10px;
      }
  }

  @media (max-width: 1200px) {
      .kolas-locations-wrapper {
          margin-top: 0px;
          margin-bottom: 0px;
          margin-left: 0px;
          margin-right: 0px;
          padding-top: 0px;
          padding-bottom: 0px;
          padding-left: 0px;
          padding-right: 0px;
      }

      .kolas-locations-container {
          border-radius: 0px 0px 20px 20px;
          padding-top: 150px;
          padding-bottom: 100px;
          padding-left: 20px;
          padding-right: 20px;
      }

      .kolas-locations-title {
          font-size: 60px;
          line-height: 66px;
      }
  }

  @media (max-width: 1024px) {
      .kolas-locations-title {
          font-size: 50px;
          line-height: 55px;
      }
  }

  @media (max-width: 767px) {
      .kolas-locations-title {
          font-size: 35px;
          line-height: 40px;
      }

      .kolas-locations-container {
          padding-top: 100px;
          padding-bottom: 100px;
      }
  }

  .shop-grid {
      padding: 60px 0
  }

  .kolas-locations-grid {
      width: 100%;
      max-width: 1790px;
      margin: 0 auto;
      padding: 0 20px;
  }

  .kolas-locations-grid-inner {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
      row-gap: 60px;
  }

  .kolas-location-card {
      display: block;
  }

  .kolas-location-thumb {
      position: relative;
      max-width: 100%;
      height: 450px;
      border-radius: 20px;
      overflow: hidden;
  }

  .kolas-location-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
  }

  .kolas-location-thumb::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, #401c7b80 0%, #401c7b 100%);
      z-index: 1;
  }

  .kolas-location-content {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 2;
      color: white;
      display: flex;
      align-items: flex-end;
      padding-left: 54px;
      padding-bottom: 46px;
  }

  .kolas-location-address {
      font-weight: 400;
      font-size: 20px;
      line-height: 29px;
      letter-spacing: -1.6px;
      color: #fffcf8;
      margin: 0;
  }

  .kolas-location-actions {
      display: flex;
      gap: 25px;
      margin-top: 25px;
  }

  .kolas-btn {
      background-color: #fffcf8;
      width: 100%;
      max-width: 344px;
      height: 57px;
      border-radius: 32px;
      color: #401c7b;
      font-weight: 700;
      font-size: 16px;
      line-height: 20px;
      letter-spacing: -0.32px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-transform: uppercase;
      text-decoration: none;
      transition: all 0.3s ease;
  }

  .kolas-btn-purple {
      background-color: #401c7b;
      color: white !important;
  }

  .kolas-btn-border {
      background-color: transparent;
      border: 2px solid #401c7b;
      color: #401c7b;
  }

  .kolas-btn:hover {
      opacity: 0.9;
      transform: translateY(-1px);
  }

  /* Responsive */
  @media screen and (max-width: 1280px) {
      .kolas-locations-grid-inner {
          grid-template-columns: repeat(2, 1fr);
          gap: 30px;
          row-gap: 60px;
      }
  }

  @media screen and (max-width: 768px) {
      .kolas-locations-grid-inner {
          grid-template-columns: 1fr;
          gap: 20px;
      }

      .kolas-locations-grid {
          max-width: 100vw;
          padding: 0 20px;
      }

      .kolas-location-actions {
          justify-content: center;
      }

      .kolas-location-thumb {
          height: 257px;
      }

      .kolas-location-content {
          padding-left: 24px;
          padding-bottom: 27px;
      }

      .kolas-location-address {
          font-size: 16px;
          line-height: 25px;
      }

      .kolas-view-location {
          display: none;
      }
      .kolas-btn-purple{
        width: 100%;
        max-width: 100%;
      }
      .kolas-locations-wrapper .container{
        padding: 0;
      }
  }