  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  .swk_container {
    max-width: 1340px;
    margin: 0 auto;
    padding: 20px;
  }
  
  @media screen and (max-width: 768px) {
    .section-slide .c-wrap.--s {padding: 0 0rem;}

    .swk_container {
      padding: 5px;
    }
  }
  
  #swk_main-image-area {
    background: white;
    //border-radius: 20px;
    padding: 0px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    margin-bottom: 20px;
    position: relative;
  }
  
  #swk_main-image {
    width: 100%;
    height: auto;
    //border-radius: 20px;
    transition: opacity 0.4s ease;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
  }
  
  @media screen and (max-width: 768px) {
    #swk_main-image {
      aspect-ratio: 3 / 3;
      //border-radius: 15px;
    }
  }
  
  .swk_image-info {
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    z-index: 10;
  }
  
  @media screen and (max-width: 768px) {
    .swk_image-info {
      padding: 0 10px;
      top: 5px;
    }
  }
  
  .swk_image-counter {
    background: rgba(0,0,0,0.8);
    color: #ffffff;
    padding: 6px 12px;
    //border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
  }
  
  @media screen and (max-width: 768px) {
    .swk_image-counter {
      padding: 4px 8px;
      font-size: 11px;
    }
  }
  
  .swk_navigation-arrows {
    display: flex;
    gap: 10px;
  }
  
  .swk_nav-arrow {
    background: rgba(0,0,0,0.8);
    color: #ffffff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
  }
  
  .swk_nav-arrow:hover:not(:disabled) {
    background: rgba(0,0,0,0.9);
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
  }
  
  .swk_nav-arrow:disabled {
    background: rgba(100,100,100,0.5);
    color: rgba(255,255,255,0.5);
    cursor: not-allowed;
    transform: none;
  }
  
  .swk_pause-icon, .swk_play-icon {
    display: inline-block;
    width: 14px;
    height: 14px;
    position: relative;
  }
  
  .swk_pause-icon::before,
  .swk_pause-icon::after {
    content: '';
    position: absolute;
    background: #ffffff;
    width: 3px;
    height: 14px;
    border-radius: 1px;
  }
  
  .swk_pause-icon::before {
    left: 3px;
  }
  
  .swk_pause-icon::after {
    right: 3px;
  }
  
  .swk_play-icon::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid #ffffff;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
  }
  
  @media screen and (max-width: 768px) {
    .swk_nav-arrow {
      width: 35px;
      height: 35px;
      font-size: 14px;
    }
    
    .swk_pause-icon, .swk_play-icon {
      width: 12px;
      height: 12px;
    }
    
    .swk_pause-icon::before,
    .swk_pause-icon::after {
      width: 2.5px;
      height: 12px;
    }
    
    .swk_play-icon::before {
      left: 3px;
      border-left: 6px solid #ffffff;
      border-top: 5px solid transparent;
      border-bottom: 5px solid transparent;
    }
  }
  
  #swk_thumbnail-container {
    background: rgba(255,255,255,0.95);
    //border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
    position: relative;
    border: 1px solid rgba(255,255,255,0.1);
  }
  
  @media screen and (max-width: 768px) {
    #swk_thumbnail-container {
      padding: 10px;
     // border-radius: 15px;
    }
  }
  
  #swk_thumbnail-slider {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 10px 0;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  
  #swk_thumbnail-slider::-webkit-scrollbar {
    display: none;
  }
  
  .swk_thumb {
    flex: 0 0 auto;
    width: 100px;
    height: 100px;
    cursor: pointer;
  }
  
  .swk_thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    //border-radius: 12px;
    border: 3px solid transparent;
    transition: all 0.3s ease;
  }
  
  .swk_thumb:hover img {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  }
  
  .swk_thumb img.swk_active {
    border-color: #ffffff;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255,255,255,0.2);
  }
  
  .swk_scroll-buttons {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.8);
    color: #ffffff;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0,0,0,0.2);
    z-index:9999;
  }
  
  .swk_scroll-buttons:hover {
    background: rgba(0,0,0,0.9);
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
  }
  
  .swk_scroll-left {
    left: 10px;
  }
  
  .swk_scroll-right {
    right: 10px;
  }
  
  .swk_loading {
    display: none;
    text-align: center;
    padding: 40px;
    color: #cccccc;
  }
  
  .swk_loading.swk_show {
    display: block;
  }
  
  .swk_no-images {
    text-align: center;
    padding: 40px;
    color: #cccccc;
    display: none;
  }
  
  .swk_no-images.swk_show {
    display: block;
  }
  
  @media screen and (max-width: 768px) {
    .swk_thumb {
      width: 80px;
      height: 80px;
    }
  }