/* =====================
   SHARED SECTION STYLES
===================== */

.section-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #222;
}

.spad {
  padding: 20px 0;
}

/* Featured section */

/* Controls */
.featured__controls {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 0;
  margin: 20px 0 30px;
  list-style: none;
}

/* Control item */
.featured__controls li {
  padding: 8px 18px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: #198754;
  border: 1px solid #198754;
  background: #f3f3f3;
  transition: all 0.3s ease;
  white-space: nowrap;
}

/* Active & hover */
.featured__controls li:hover,
.featured__controls li.active {
  background: linear-gradient(135deg, #198754, #157347);
  color: #ffffff;
}


/* Deal Card */
.deal-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  height: 100%;
}

.deal-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.12);
}

/* Featured image */
.deal-img {
  width: 100%;
  height: 220px;           /* SAME SIZE */
  object-fit: cover;
  display: block;
}

/* Card body */
.deal-body {
  padding: 15px;
  text-align: center;
}

.deal-body h6 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #222;
}

.deal-body .price {
  font-size: 15px;
  font-weight: 700;
  color: #7fad39;
}

/* =====================
   POPULAR DEALS (CAROUSEL)
===================== */

.categories {
  padding: 25px 0;
}

.categories__slider {
  position: relative;
  overflow: visible;
}

/* Product card */
.product__item {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: transform 0.35s ease;
}

.product__item:hover {
  transform: translateY(-6px);
}

/* Image wrapper */
.product__item__pic {
  height: 260px;            /* SAME HEIGHT */
  width: 100%;
  position: relative;
  overflow: hidden;
}

.product__item__pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Hover icons */
.product__item__pic__hover {
  position: absolute;
  left: 0;
  bottom: -60px;
  width: 100%;
  text-align: center;
  transition: all 0.4s ease;
  z-index: 2;
}

.product__item:hover .product__item__pic__hover {
  bottom: 20px;
}

.product__item__pic__hover li {
  list-style: none;
  display: inline-block;
  margin: 0 6px;
}

.product__item__pic__hover li a {
  height: 42px;
  width: 42px;
  line-height: 42px;
  display: block;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #e5e5e5;
  color: #222;
  transition: all 0.3s ease;
}

.product__item__pic__hover li a:hover {
  background: #7fad39;
  border-color: #7fad39;
  color: #fff;
}

/* Product text */
.product__item__text {
  padding: 15px;
  text-align: center;
}

.product__item__text h6 {
  font-size: 15px;
  font-weight: 600;
}

.product__item__text h6 a {
  color: #222;
  text-decoration: none;
}

.product__item__text h6 a:hover {
  color: #7fad39;
}

/* =====================
   OWL CAROUSEL ARROWS
===================== */

.categories__slider.owl-carousel .owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 46px;
  width: 46px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
  color: #222;
  font-size: 18px;
  z-index: 20;
}

.categories__slider.owl-carousel .owl-nav button.owl-prev {
  left: -25px;
}

.categories__slider.owl-carousel .owl-nav button.owl-next {
  right: -25px;
}

.categories__slider.owl-carousel .owl-nav button:hover {
  background: #7fad39;
  color: #fff;
  border-color: #7fad39;
}

/* =====================
   PRODUCT DETAILS
===================== */

/*---------------------
  Shop Details
-----------------------*/

.product-details {
	padding-top: 25px;
}

.product__details__pic__item {
	margin-bottom: 20px;
}

.product__details__pic__item img {
	min-width: 100%;
}

.product__details__pic__slider img {
	cursor: pointer;
}

.product__details__pic__slider.owl-carousel .owl-item img {
	width: auto;
}

.product__details__text h3 {
	color: #252525;
	font-weight: 700;
	margin-bottom: 16px;
}

.product__details__text .product__details__rating {
	font-size: 14px;
	margin-bottom: 12px;
}

.product__details__text .product__details__rating i {
	margin-right: -2px;
	color: #EDBB0E;
}

.product__details__text .product__details__rating span {
	color: #dd2222;
	margin-left: 4px;
}

.product__details__text .product__details__price {
	font-size: 30px;
	color: #dd2222;
	font-weight: 600;
	margin-bottom: 15px;
}

.product__details__text p {
	margin-bottom: 45px;
}

.product__details__text .primary-btn {
	padding: 16px 28px 14px;
	margin-right: 6px;
	margin-bottom: 5px;
}

.product__details__text .heart-icon {
	display: inline-block;
	font-size: 16px;
	color: #6f6f6f;
	padding: 13px 16px 13px;
	background: #f5f5f5;
}

.product__details__text ul {
	border-top: 1px solid #ebebeb;
	padding-top: 10px;
	margin-top: 15px;
}

.product__details__text ul li {
	font-size: 16px;
	color: #1c1c1c;
	list-style: none;
	line-height: 36px;
}

.product__details__text ul li b {
	font-weight: 700;
	width: 170px;
	display: inline-block;
}

.product__details__text ul li span samp {
	color: #dd2222;
}

.product__details__text ul li .share {
	display: inline-block;
}

.product__details__text ul li .share a {
	display: inline-block;
	font-size: 15px;
	color: #1c1c1c;
	margin-right: 25px;
}

.product__details__text ul li .share a:last-child {
	margin-right: 0;
}

.product__details__quantity {
	display: inline-block;
	margin-right: 6px;
}


.product__details__tab {
	padding-top: 15px;
}

.product__details__tab .nav-tabs {
	border-bottom: none;
	justify-content: center;
	position: relative;
}

.product__details__tab .nav-tabs:before {
	position: absolute;
	left: 0;
	top: 12px;
	height: 1px;
	width: 370px;
	background: #ebebeb;
	content: "";
}

.product__details__tab .nav-tabs:after {
	position: absolute;
	right: 0;
	top: 12px;
	height: 1px;
	width: 370px;
	background: #ebebeb;
	content: "";
}

.product__details__tab .nav-tabs li {
	margin-bottom: 0;
	margin-right: 65px;
}

.product__details__tab .nav-tabs li:last-child {
	margin-right: 0;
}

.product__details__tab .nav-tabs li a {
	font-size: 16px;
	color: #999999;
	font-weight: 700;
	border: none;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	padding: 0;
}

.product__details__tab .product__details__tab__desc {
	padding-top: 44px;
}

.product__details__tab .product__details__tab__desc h6 {
	font-weight: 700;
	color: #333333;
	margin-bottom: 26px;
}

.product__details__tab .product__details__tab__desc p {
	color: #666666;
}



.section-title {
  font-weight: 700;
  margin-bottom: 15px;
}

/* Extra polish for very small screens */
@media (max-width: 576px) {
  .featured__controls li {
    font-size: 13px;
    padding: 6px 14px;
  }
}


/* Deal card */
.deal-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
  transition: transform .3s ease, box-shadow .3s ease;
}

.deal-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,.15);
}

.deal-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.deal-body {
  padding: 12px;
  text-align: center;
}

.deal-body h6 {
  font-size: 15px;
  margin-bottom: 6px;
}

.price {
  font-weight: 700;
  color: #0d6efd;
}

/* ===== PRODUCT DETAILS COOL LOOK ===== */
.product-details {
  background: linear-gradient(180deg, #f8f9fb, #ffffff);
}

.product__details__pic {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Main image */
.product__details__pic__item {
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 15px;
}

.product__details__pic__item--large {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform .4s ease;
}

.product__details__pic__item:hover img {
  transform: scale(1.04);
}

/* Thumbnails */
.product__details__pic__slider {
  margin-top: 10px;
}

.product__thumb img {
  height: 90px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .3s ease;
}

.product__thumb img:hover {
  border-color: #0d6efd;
  transform: translateY(-3px);
}

/* Right side */
.product__details__text {
  background: #fff;
  padding: 10px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  height: 100%;
}

.product__details__text h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 15px;
}

/* Info list */
.product__details__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 20px;
  margin-bottom: 5px;
  padding: 0;
  list-style: none;
}

.product__details__list li {
  font-size: 14px;
  color: #555;
}

.product__details__list strong {
  color: #111;
}

/* Description */
.product__description {
  background: #f8f9fb;
  padding: 15px;
  border-radius: 12px;
  margin-bottom: 25px;
  line-height: 1.6;
  color: #444;

  height: 270px;        /* ✅ fixed height */
  overflow-y: auto;     /* ✅ scroll only if needed */
  box-sizing: border-box;
}


/* CTA */
.primary-btn {
  display: inline-block;
  background: linear-gradient(135deg, #28a745, #1e7e34);
  color: #fff;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  letter-spacing: .3px;
  transition: all .3s ease;
}

.primary-btn:hover {
  background: linear-gradient(135deg, #0f9b0f, #006400);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(13,110,253,.35);
}

/* Mobile polish */
@media (max-width: 768px) {
  .product__details__pic__item--large {
    height: 300px;
  }

  .product__details__list {
    grid-template-columns: 1fr;
  }
}


.popular-products {
  padding: 20px 0;
}


