.homeSlider {
    margin: 150px 0;
  }
  .homeSlider__headline {
    font-weight: 800;
    font-size: 24px;
    line-height: 1.4;
    letter-spacing: -0.02em;
    text-align: center;
    color: #242e49;
    max-width: 381px;
    margin: auto;
    margin-bottom: 35px;
  }
  .homeSlider__headline span {
    color: #0f67fe;
  }
  .homeSlider__slide-item {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
  }
  .homeSlider__slide-item img, .homeSlider__slide-item video {
    width: 100%;
    height: 407px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  .homeSlider__slide-btn {
    width: 60px;
    height: 60px;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100vh;
    background-color: rgba(0, 0, 0, 0.75);
    position: absolute;
    left: 50%;
    top: 50%;
    border: none;
    transform: translate(-50%, -50%);
    z-index: 10;
  }
  .homeSlider__slide-btn:hover {
    background-color: #000;
  }
  .homeSlider__slide-btn img {
    width: 16px;
    height: 16px;
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: center;
       object-position: center;
  }
  
  .homeSlideSwipper .swiper-slide {
    max-width: 261px;
    max-height: 407px;
    height: 407px !important;
  }

  /* Category */
  /* Ana Grid Yapısı */
  .product-area {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 580px;
    margin: 0 auto;
    padding-top: 40px;
}

/* Ortak Box Stili */
.product_wrap, .package-descriptions {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    width: 100%;
}

/* Type Seçim Tasarımı */
.type-wrapper {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.type-card {
    width: 300px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    border-radius: 12px;
    position: relative;
    background: #fff;
    padding: 2px;
}

.type-card:hover {
    transform: translateY(-2px);
}

.type-card.selected {
    border: 3px solid #fe8005;
}

.type-header {
    background: #faf8f6;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.type-card.premium .type-header {
    background: linear-gradient(135deg, #fd500b, #ff6b2b);
    color: white;
    position: relative;
    overflow: hidden;
}

.type-card.premium .type-header:before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 0% 0%, rgba(255,255,255,0.2) 0%, transparent 50%),
        radial-gradient(circle at 100% 0%, rgba(255,255,255,0.2) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(255,255,255,0.2) 0%, transparent 50%),
        radial-gradient(circle at 0% 100%, rgba(255,255,255,0.2) 0%, transparent 50%);
    z-index: 1;
}

.type-card.premium .type-header:after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0) 20%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0) 80%,
        transparent 100%
    );
    transform: translateX(-100%);
    animation: shimmerEffect 4s infinite;
    z-index: 2;
}

@keyframes shimmerEffect {
    0% {
        transform: translateX(-100%) skewX(-15deg);
    }
    50% {
        transform: translateX(100%) skewX(-15deg);
    }
    100% {
        transform: translateX(100%) skewX(-15deg);
    }
}

.type-features {
    padding: 0 15px 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: #414b5d;
}

.feature-item i {
    color: #d74308;
    font-size: 16px;
}

.type-card.premium .feature-item i {
    color: #fd500b;
}

.type-card .checkbox {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 22px;
    height: 22px;
    border: 2px solid #ddd;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.type-card.selected .checkbox {
    background: #fd500b;
    border-color: #fd500b;
}

.type-card.selected .checkbox:after {
    content: '✓';
    color: white;
    font-size: 14px;
    font-weight: bold;
}

/* Paket Listesi Tasarımı */
.product_wrap .product_list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding: 15px;
    justify-content: center;
    width: 100%;
}

.product_wrap .product-card {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 12px 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid #eee;
    text-align: center;
    height: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 0 0 calc(20% - 12px);
    min-width: calc(20% - 12px);
    max-width: calc(20% - 12px);
}

.product-card:hover {
    transform: translateY(-2px);
}

.product-card.selected {
    background: linear-gradient(135deg, #ff7f00, #f08d65);
    border: none;
}

.product-card .package-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
}

.product-card .quantity {
    font-size: 18px;
    font-weight: 600;
    color: #414b5d;
    margin: 0;
}

.product-card .package-name {
    font-size: 13px;
    color: #6c757d;
    margin: 0;
    line-height: 1.2;
}

.product-card.selected .quantity,
.product-card.selected .package-name {
    color: #fff;
}

/* Fiyat Gösterimi */
.price-display {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 25px 0;
}

.price-display .new {
    font-size: 32px;
    font-weight: 700;
    color: #ea9f0b;
    display: inline-block;
}

/* Sepete Ekle Butonu */
.cart-add-button {
    text-align: center;
    margin-top: 20px;
}

.cart-add-button .butto-success {
    background: #ff8005;
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(253, 80, 11, 0.15);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.cart-add-button .butto-success:hover {
    background: #e64600;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(253, 80, 11, 0.25);
}

.cart-add-button .butto-success:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(253, 80, 11, 0.15);
}

.cart-add-button .butto-success i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.cart-add-button .butto-success:hover i {
    transform: translateX(3px);
}

/* Description Box */
.description-box {
    padding: 20px;
    background: #fff;
    border-radius: 8px;
}

.box-content {
    color: #414b5d;
    line-height: 1.6;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 1200px) {
    .product_wrap .product_list {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    }
}

@media (max-width: 992px) {
    .product_wrap .product_list {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    }
}

@media (max-width: 768px) {
    .product_wrap .product_list {
        gap: 12px;
        padding: 12px;
    }

    .product_wrap .product-card {
        flex: 0 0 calc(33.333% - 8px);
        min-width: calc(33.333% - 8px);
        max-width: calc(33.333% - 8px);
        height: 80px;
    }
}

@media (max-width: 480px) {
    .product_wrap .product_list {
        gap: 10px;
        padding: 10px;
    }

    .product_wrap .product-card {
        flex: 0 0 calc(50% - 5px);
        min-width: calc(50% - 5px);
        max-width: calc(50% - 5px);
        height: 75px;
    }
}