.whatsapp-float {
    position: fixed;
    right: 30px;
    bottom: 100px;
    z-index: 999;
  }
  
  .whatsapp-button {
    display: flex;
    align-items: center;
    background: #25D366;
    color: white;
    padding: 12px;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    font-weight: 600;
    width: 56px;
    height: 56px;
    justify-content: center;
  }
  
  .whatsapp-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: white;
    border-radius: 50px;
    width: auto;
    padding: 12px 20px;
  }
  
  .whatsapp-icon {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .whatsapp-text {
    font-size: 16px;
    max-width: 0;
    overflow: hidden;
    white-space: nowrap;
    transition: max-width 0.3s ease;
  }
  
  .whatsapp-button:hover .whatsapp-text {
    max-width: 200px;
    margin-left: 10px;
  }
  
  @media (max-width: 768px) {
    .whatsapp-float {
      right: 30px;
      bottom: 100px;
    }
    
    .whatsapp-button {
      padding: 10px;
      border-radius: 50%;
      width: 56px;
      height: 56px;
    }
    
    .whatsapp-text {
      display: none;
    }
    
    .whatsapp-button:hover {
      border-radius: 50%;
      width: 50px;
      height: 50px;
      padding: 10px;
    }
  }

  .cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    z-index: 9999;
    max-width: 90%;
    width: 800px;
  }
  .cookie-content {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  .cookie-icon {
    font-size: 24px;
    color: var(--vkl-text-theme-color-1);
  }
  .cookie-content p {
    margin: 0;
    font-size: 14px;
    color: #333;
  }
  .cookie-content a {
    color: var(--vkl-text-theme-color-1);
    text-decoration: none;
  }
  .cookie-content a:hover {
    text-decoration: underline;
  }
  .cookie-accept {
    background: var(--vkl-text-theme-color-1);
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  .cookie-accept:hover {
    background: var(--vkl-text-text-2);
  }
  @media (max-width: 576px) {
    .cookie-consent {
      flex-direction: column;
      text-align: center;
      padding: 15px;
    }
    .cookie-content {
      flex-direction: column;
    }
    .cookie-buttons {
      width: 100%;
    }
    .cookie-accept {
      width: 100%;
      padding: 10px;
    }
  }

  .progress-wrap {
    position: fixed;
    right: 30px;
    bottom: 30px;
    height: 56px;
    width: 56px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.1);
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 200ms linear;
  }

  .progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    z-index: 99;
  }
  
  .progress-wrap::after {
    position: absolute;
    font-family: "FontAwesome";
    content: "\f062";
    text-align: center;
    line-height: 56px;
    font-size: 18px;
    color: var(--vkl-text-theme-color-1);
    left: 0;
    top: 0;
    height: 56px;
    width: 56px;
    cursor: pointer;
    display: block;
    z-index: 1;
    transition: all 200ms linear;
  }
  
  .progress-wrap:hover::after {
    opacity: 0;
  }
  
  .progress-wrap::before {
    position: absolute;
    font-family: "FontAwesome";
    content: "\f062";
    text-align: center;
    line-height: 56px;
    font-size: 18px;
    opacity: 0;
    left: 0;
    top: 0;
    height: 56px;
    width: 56px;
    cursor: pointer;
    display: block;
    z-index: 2;
    transition: all 200ms linear;
  }
  
  .progress-wrap:hover::before {
    opacity: 1;
  }
  
  .progress-wrap svg path {
    fill: none;
  }
  
  .progress-wrap svg.progress-circle path {
    stroke: var(--vkl-text-theme-color-1);
    stroke-width: 4;
    box-sizing: border-box;
    transition: all 200ms linear;
  }

  /* Öncesi Sonrası Modülü Stilleri */
  .before-after-module {
    margin-top: 40px;
  }

  .before-after-module .title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
  }

  .before-after-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    cursor: grab;
    user-select: none;
    background: #f5f5f5;
  }

  .before-after-container:active {
    cursor: grabbing;
  }

  .before-after-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .before-after-container .before-image {
    z-index: 1;
    clip-path: inset(0 50% 0 0);
    transition: clip-path 0.1s ease-out;
  }

  .before-after-container .after-image {
    z-index: 2;
    clip-path: inset(0 0 0 50%);
    transition: clip-path 0.1s ease-out;
  }

  .before-after-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    z-index: 3;
    transform: translateX(-50%);
    cursor: ew-resize;
    transition: background 0.3s ease;
  }

  .before-after-handle:hover {
    background: rgba(255, 255, 255, 1);
    width: 5px;
  }

  .handle-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: var(--vkl-text-theme-color-1);
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  }

  .handle-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: var(--vkl-text-theme-color-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
  }

  .handle-circle i {
    color: white;
    font-size: 18px;
  }

  .before-after-handle:hover .handle-circle {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  }

  .before-after-labels {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    z-index: 4;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
  }

  .before-label,
  .after-label {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
  }

  .before-label {
    margin-right: auto;
  }

  .after-label {
    margin-left: auto;
  }

  .before-after-container:hover .before-label,
  .before-after-container:hover .after-label {
    background: rgba(0, 0, 0, 0.85);
    transform: translateY(-2px);
  }

  /* Mobil Uyumluluk */
  @media (max-width: 768px) {
    .before-after-container {
      height: 400px;
    }

    .handle-circle {
      width: 40px;
      height: 40px;
    }

    .handle-circle i {
      font-size: 14px;
    }

    .before-label,
    .after-label {
      font-size: 12px;
      padding: 6px 12px;
    }

    .before-after-module .title {
      font-size: 20px;
    }
  }

  @media (max-width: 576px) {
    .before-after-container {
      height: 300px;
    }

    .handle-circle {
      width: 35px;
      height: 35px;
    }

    .handle-circle i {
      font-size: 12px;
    }

    .before-label,
    .after-label {
      font-size: 11px;
      padding: 5px 10px;
    }
  }

  /* Touch cihazlar için iyileştirmeler */
  @media (hover: none) {
    .before-after-handle {
      width: 6px;
    }

    .handle-circle {
      width: 55px;
      height: 55px;
    }
  }
  