.home-hero-area {
   padding: 40px 0 36px;
   background: linear-gradient(135deg, #f8fafc 0%, #e8edf5 100%);
}

.home-hero-title {
   font-size: 42px;
   line-height: 1.15;
   margin-bottom: 14px;
   color: #1e293b;
   font-weight: 700;
}

.home-hero-desc {
   font-size: 17px;
   color: #475569;
   line-height: 1.6;
   margin-bottom: 20px;
}

.home-hero-slider {
   width: 100%;
   height: 340px;
   max-width: 700px;
   border-radius: 12px;
   overflow: hidden;
   position: relative;
}

.home-hero-slider .swiper-slide img {
   width: 100%;
   height: 340px;
   object-fit: cover;
}

.home-hero-slider .swiper-button-next,
.home-hero-slider .swiper-button-prev {
   color: #fff;
   background: rgba(0, 0, 0, 0.3);
   width: 36px;
   height: 36px;
   border-radius: 50%;
}

.home-hero-slider .swiper-button-prev {
   left: 10px;
}

.home-hero-slider .swiper-button-next {
   right: 10px;
}

.home-hero-slider .swiper-button-next::after,
.home-hero-slider .swiper-button-prev::after {
   font-size: 16px;
}

.home-hero-slider .swiper-pagination-bullet-active {
   background: #2563eb;
}

@media (max-width: 991px) {
   .home-hero-title {
      font-size: 30px;
   }

   .home-hero-desc {
      font-size: 15px;
   }

   .home-hero-slider {
      height: 220px;
   }

   .home-hero-slider .swiper-slide img {
      height: 220px;
   }
}

.home-category-box {
   background: #fff;
   border: 1px solid #e2e8f0;
   border-radius: 12px;
   padding: 20px 18px;
   box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.home-category-box h4 {
   font-size: 20px;
   font-weight: 700;
   margin-bottom: 12px;
   color: #1e293b;
   letter-spacing: 0.3px;
}

.home-category-list {
   list-style: none;
   margin: 0;
   padding: 0;
   border-top: 1px solid #f1f5f9;
}

.home-category-list li {
   border-bottom: 1px solid #f1f5f9;
}

.home-category-list a,
.home-category-toggle {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 11px 4px;
   font-size: 14px;
   font-weight: 500;
   color: #334155;
   text-transform: none;
   width: 100%;
   background: transparent;
   border: 0;
   cursor: pointer;
   text-align: left;
   transition: color 0.15s, padding-left 0.15s;
}

.home-category-list a:hover,
.home-category-toggle:hover {
   color: #2563eb;
   padding-left: 8px;
}

.home-category-item details > summary {
   list-style: none;
   cursor: pointer;
}

.home-category-item details > summary::-webkit-details-marker {
   display: none;
}

.home-subcategory-list {
   list-style: none;
   margin: 0 0 6px 0;
   padding: 0 0 0 18px;
}

.home-subcategory-list li {
   border: 0;
}

.home-subcategory-list a {
   font-size: 13px;
   font-weight: 400;
   padding: 5px 4px;
   color: #64748b;
}

.home-subcategory-list a:hover {
   color: #2563eb;
}

.home-product-card {
   background: #fff;
   border: 1px solid #e2e8f0;
   border-radius: 12px;
   overflow: hidden;
   transition: box-shadow 0.2s, transform 0.2s;
   margin-bottom: 24px;
}

.home-product-card:hover {
   box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
   transform: translateY(-2px);
}

.home-product-thumb {
   height: 220px;
   display: flex;
   align-items: center;
   justify-content: center;
   overflow: hidden;
   background: #f8fafc;
   position: relative;
   z-index: 1;
}

.home-product-thumb > a {
   display: block;
   width: 100%;
   height: 100%;
}

.home-product-thumb img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   object-position: center;
   position: relative;
   z-index: 1;
}

.home-product-info {
   padding: 16px;
   text-align: center;
}

.home-product-name {
   font-size: 15px;
   font-weight: 600;
   line-height: 1.4;
   color: #1e293b;
   margin-bottom: 8px;
   min-height: 42px;
   display: -webkit-box;
   -webkit-line-clamp: 2;
   -webkit-box-orient: vertical;
   overflow: hidden;
}

.home-product-name a {
   color: inherit;
}

.home-product-name a:hover {
   color: #2563eb;
}

.home-product-brand {
   font-size: 13px;
   color: #991b1b;
   font-weight: 700;
   margin-bottom: 6px;
}

.home-product-price {
   font-size: 18px;
   font-weight: 700;
   color: #059669;
}

.home-product-kdv {
   font-size: 13px;
   color: #94a3b8;
   margin-top: 2px;
}

.home-fav-form {
   margin-top: 8px;
}

.home-fav-btn {
   width: 36px;
   height: 36px;
   border-radius: 50%;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   border: 1px solid #fecaca;
   color: #dc2626;
   background: #fff;
   transition: all 0.15s ease;
}

.home-fav-btn:hover {
   background: #fee2e2;
   color: #b91c1c;
}

.out-of-stock-ribbon {
   position: absolute;
   top: 10px;
   left: 10px;
   background: #ef4444;
   color: #fff;
   text-align: center;
   font-size: 12px;
   font-weight: 600;
   letter-spacing: 0.3px;
   text-transform: uppercase;
   padding: 5px 10px;
   white-space: nowrap;
   z-index: 5;
   pointer-events: none;
   border-radius: 6px;
}

.home-section-title {
   font-size: 24px;
   font-weight: 700;
   color: #1e293b;
   margin-bottom: 20px;
}
