/* ===== Section Title Styles ===== */
.sec-title.title-ondulado .title-shape {
  margin-top: 10px;
  display: flex;
  justify-content: center;
}
.sec-title.title-ondulado .title-shape img {
  width: 80px;
  height: auto;
}
.sec-title.title-shape-below .title-decoration {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}
.sec-title.title-shape-below .title-decoration .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--theme-color, #e84d7b);
}
.sec-title.title-shape-below .title-decoration .line {
  width: 60px;
  height: 3px;
  background: var(--theme-color, #e84d7b);
  border-radius: 2px;
}
.sec-title .sec-subtitle {
  font-size: 15px;
  color: #777;
  margin-top: 8px;
}
.sec-title .sec-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--theme-color, #e84d7b);
  text-decoration: none;
  transition: all 0.3s;
}
.sec-title .sec-link:hover {
  text-decoration: underline;
}

/* ===== Swiper Overrides ===== */
.swiper-button-prev,
.swiper-button-next {
  width: 44px !important;
  height: 44px !important;
  background: rgba(255, 255, 255, 0.9) !important;
  border-radius: 50% !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12) !important;
  transition: all 0.3s !important;
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: #fff !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2) !important;
}
.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 16px !important;
  color: #333 !important;
  font-weight: bold !important;
}

/* ===== Deals Section Countdown ===== */
.deals-section .cs-countdown {
  display: flex;
  gap: 12px;
  justify-content: flex-start;
}
.deals-section .countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--theme-color, #e84d7b);
  color: #fff;
  border-radius: 10px;
  padding: 10px 14px;
  min-width: 56px;
}
.deals-section .countdown-value {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
}
.deals-section .countdown-label {
  font-size: 11px;
  text-transform: uppercase;
  opacity: 0.85;
  margin-top: 2px;
}

/* ===== Special Themed Section ===== */
.special-themed-section {
  position: relative;
  overflow: hidden;
}
.special-themed-section .special-card .inner-box {
  transition: transform 0.3s, box-shadow 0.3s;
}
.special-themed-section .special-card .inner-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* ===== Testimonial Style Two ===== */
.testimonial-style-two {
  position: relative;
  background: #fdf2f8;
}
.testimonial-style-two .big-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 160px;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.03);
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
}
.testimonial-block-two .inner-box {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: all 0.3s;
}
.testimonial-block-two .inner-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}
.testimonial-block-two .quote-icon {
  font-size: 32px;
  color: var(--theme-color, #e84d7b);
  margin-bottom: 16px;
  opacity: 0.6;
}
.testimonial-block-two .rating {
  display: flex;
  gap: 3px;
  justify-content: center;
  margin-bottom: 16px;
  list-style: none;
  padding: 0;
}
.testimonial-block-two .rating li i {
  color: #ffc107;
  font-size: 14px;
}
.testimonial-block-two p {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 20px;
}
.testimonial-block-two h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}
.testimonial-block-two .date {
  font-size: 13px;
  color: #999;
}

/* ===== Slide Text Animation ===== */
@keyframes slideText {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.slide-text .text-inner {
  overflow: hidden;
}
.slide-text .text-list {
  display: flex;
  gap: 40px;
  animation: slideText 20s linear infinite;
  white-space: nowrap;
  list-style: none;
  padding: 0;
  margin: 0;
}
.slide-text .text-list li {
  font-size: 22px;
  font-weight: 700;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ===== Category Style Five Circle Border ===== */
.category-block-three.border-one .image-box { border-color: #025A5A; }
.category-block-three.border-two .image-box { border-color: #E97D3F; }
.category-block-three.border-three .image-box { border-color: #063ECC; }
.category-block-three.border-four .image-box { border-color: #FF9D09; }
.category-block-three.border-five .image-box { border-color: #366319; }
.category-block-three.border-six .image-box { border-color: #EA6BEA; }
.category-block-three .image-box {
  border: 3px dashed #ccc;
  border-radius: 50%;
  padding: 12px;
  display: inline-block;
  transition: all 0.3s;
}
.category-block-three .image-box img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}
.category-block-three:hover .image-box {
  transform: scale(1.08);
}

/* ===== Collection Tab Buttons ===== */
.tabs-box .tab-btns {
  margin-bottom: 30px;
}
.tabs-box .tab-btn {
  padding: 8px 20px;
  border-radius: 25px;
  border: 1px solid #e2e8f0;
  background: #fff;
  font-size: 14px;
  font-weight: 500;
  color: #666;
  transition: all 0.3s;
}
.tabs-box .tab-btn:hover,
.tabs-box .tab-btn.active-btn {
  background: var(--theme-color, #e84d7b);
  color: #fff;
  border-color: var(--theme-color, #e84d7b);
}

/* ===== Responsive Touches ===== */
@media (max-width: 767px) {
  .banner-swiper .swiper-button-prev,
  .banner-swiper .swiper-button-next {
    display: none !important;
  }
  .deals-section .cs-countdown {
    gap: 8px;
  }
  .deals-section .countdown-item {
    padding: 8px 10px;
    min-width: 48px;
  }
  .deals-section .countdown-value {
    font-size: 18px;
  }
  .slide-text .text-list li {
    font-size: 16px;
  }
  .testimonial-style-two .big-text {
    font-size: 60px;
  }
}
