/*
 Theme Name: Flatsome Child
 Theme URI: https://purean.shop
 Description: Flatsome Child Theme for Purean
 Author: Purean
 Template: flatsome
 Version: 1.0.0
*/

/* ===========================
   PUREAN CUSTOM STYLES
   =========================== */

:root {
  --color-primary: #5BA100;
  --color-primary-dark: #3D7A00;
  --color-light-green: #F0F7E6;
}

/* ---------------------------------------
   1. BUTTONS - Brand green background
   --------------------------------------- */
.button,
button,
.btn,
input[type="submit"],
.woocommerce .button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.added_to_cart {
  background-color: #5BA100 !important;
  border-color: #5BA100 !important;
  color: #fff !important;
}

.button:hover,
button:hover,
.btn:hover,
input[type="submit"]:hover,
.woocommerce .button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.added_to_cart:hover {
  background-color: #4a8000 !important;
  border-color: #4a8000 !important;
  color: #fff !important;
}

/* ---------------------------------------
   2. LINKS - Brand green color
   --------------------------------------- */
a {
  color: #5BA100;
}

a:hover {
  color: #4a8000;
}

/* ---------------------------------------
   3. PRODUCT CARD - "Authentic" badge
   Top left corner of product image
   --------------------------------------- */
.product-small .box-image,
.product .box-image,
.woocommerce ul.products li.product .box-image {
  position: relative;
}

.product-small .box-image::before,
.product .box-image::before,
.woocommerce ul.products li.product .box-image::before {
  content: "Authentic";
  position: absolute;
  top: 0;
  left: 0;
  background: #5BA100;
  color: #fff;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

/* ---------------------------------------
   4. PRODUCT CARD - "Delivery ৳19 only" overlay
   Bottom of product image
   --------------------------------------- */
.product-small .box-image::after,
.product .box-image::after,
.woocommerce ul.products li.product .box-image::after {
  content: "Delivery ৳19 only";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  font-size: 11px;
  padding: 4px 10px;
  z-index: 2;
}

/* ---------------------------------------
   5. CATEGORY ICON CIRCLES
   Light green background, scale on hover
   --------------------------------------- */
.product-category .box-image,
.product-category .thumbnail,
.term-item .box-image,
.col .box-image.circle {
  background: #F0F7E6 !important;
  border-radius: 50%;
  overflow: hidden;
  transition: transform 0.25s ease;
}

.product-category:hover .box-image,
.product-category:hover .thumbnail,
.term-item:hover .box-image,
.col:hover .box-image.circle {
  transform: scale(1.08);
}

/* Ensure category image containers are circular */
.product-category .box-image img,
.product-category .thumbnail img {
  object-fit: cover;
}