/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/hello-theme/
Description: Child theme for Hello Elementor
Author: Your Name
Author URI: https://yourwebsite.com
Template: hello-elementor
Version: 1.0.0
Text Domain: hello-elementor-child
*/

/* Add your custom CSS below */
/* ===== RESET WOO GRID ===== */

@font-face {
  font-display: swap;
}
.woocommerce ul.products {
  display: block !important;
}

.woocommerce ul.products li.product {
  float: none !important;
  width: auto !important;
  margin: 0 !important;
}

/* ===== CUSTOM GRID ===== */
.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
  padding: 0;
}

/* PRODUCT CARD */
.woocommerce ul.products li.product {
  background: #ffffff;
  padding: 14px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
    margin-left: 0 !important;
  margin-right: 0 !important;
}

/* HOVER */
.woocommerce ul.products li.product:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

/* IMAGE */
.woocommerce ul.products li.product img {
  width: 100%;
  border-radius: 12px;
}

/* TITLE */
.woocommerce ul.products li.product h2 {
  font-size: 15px;
  font-weight: 600;
  margin: 12px 0 6px;
  line-height: 1.4;
}

/* PRICE */
.woocommerce ul.products li.product .price {
  font-size: 15px;
  font-weight: 700;
  color: #b8892f;
}

/* ADD TO CART */
.woocommerce ul.products li.product .button {
  margin-top: 10px;
  background: #b8892f;
  color: #fff;
  border-radius: 30px;
  padding: 10px 18px;
}
@media (max-width: 1024px) {
  .woocommerce ul.products {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .woocommerce ul.products {
    grid-template-columns: repeat(2, 1fr);
	gap: 16px;
  }
}
/* ===== ARCHIVE BANNER ===== */
.khushiya-archive-banner {
  width: 100%;
  background: #FFF7E8;
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 40px;
}

.khushiya-archive-banner .archive-title {
  font-size: 44px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
}

.khushiya-archive-banner .archive-breadcrumb {
  font-size: 15px;
  color: #6B7280;
}

/* Breadcrumb separator fix */
.khushiya-archive-banner .woocommerce-breadcrumb {
  background: none;
  padding: 0;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .khushiya-archive-banner .archive-title {
    font-size: 30px;
  }
}
/* RESULT COUNT + SORTING POSITION */
.woocommerce-result-count,
.woocommerce-ordering {
  margin: 20px 0 30px;
}

/* Align properly */
.woocommerce-before-shop-loop {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Mobile fix */
@media (max-width: 768px) {
  .woocommerce-before-shop-loop {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
}
/* ===============================
   FINAL WOO GRID ALIGNMENT FIX
================================ */

/* Reset Woo defaults completely */
.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
  padding: 0 !important;
  margin: 0 !important;
  list-style: none;
}

/* Kill Woo column logic */
.woocommerce ul.products[class*="columns-"] li.product {
  width: auto !important;
  margin: 0 !important;
}

/* Product item hard reset */
.woocommerce ul.products li.product {
  float: none !important;
  clear: none !important;
  margin: 0 !important;
  padding: 14px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

/* REMOVE nth-child margin Woo uses */
.woocommerce ul.products li.product:nth-child(4n+1) {
  margin-left: 0 !important;
}

/* Image */
.woocommerce ul.products li.product img {
  width: 100%;
  display: block;
  border-radius: 12px;
}

/* Hover */
.woocommerce ul.products li.product:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .woocommerce ul.products {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .woocommerce ul.products {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* FORCE FULL WIDTH CONTAINER */
.woocommerce-page .site-main,
.woocommerce-page .container,
.woocommerce-page .wrap {
  max-width: 100% !important;
  padding-left: 24px !important;
  padding-right: 24px !important;
}
/* ===============================
   REMOVE WOO FAKE GRID ITEM
================================ */

/* Kill Woo pseudo elements that create blank column */
.woocommerce ul.products::before,
.woocommerce ul.products::after {
  content: none !important;
  display: none !important;
}

/* Ensure grid starts correctly */
.woocommerce ul.products {
  grid-auto-flow: row;
  gap: 24px;
}
/* ===== PAGINATION STYLING ===== */

.woocommerce nav.woocommerce-pagination {
  margin: 50px 0;
  text-align: center;
}

.woocommerce nav.woocommerce-pagination ul {
  display: inline-flex;
  gap: 10px;
  padding: 0;
  border: none;
}

.woocommerce nav.woocommerce-pagination ul li {
  border: none;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #f4f4f4;
  color: #333;
  font-weight: 600;
  transition: all 0.3s ease;
}

/* Hover */
.woocommerce nav.woocommerce-pagination ul li a:hover {
  background: #b8892f;
  color: #fff;
}

/* Active page */
.woocommerce nav.woocommerce-pagination ul li span.current {
  background: #b8892f;
  color: #fff;
}

/* Prev / Next */
.woocommerce nav.woocommerce-pagination ul li a.prev,
.woocommerce nav.woocommerce-pagination ul li a.next {
  width: auto;
  padding: 0 16px;
  border-radius: 30px;
}
/* ================================
   SINGLE PRODUCT LAYOUT
================================ */

/* Page width control */
/* == Container (centered & full width max) == */
.single-product .site-main {
  max-width: 1280px !important;
  padding: 0 15px !important;
  margin: auto !important;
}

/* == Product Title == */
.single-product .product_title {
  font-size: 28px !important;
  color: #2b1d14 !important;
  margin-bottom: 8px !important;
}

/* == Price == */
.single-product .woocommerce-Price-amount {
  font-size: 22px !important;
  color: #c88a2e !important;
}

/* == Short Description (only show once) == */
.single-product .woocommerce-product-details__short-description {
  font-size: 15px !important;
  color: #444 !important;
  margin: 12px 0 20px !important;
}

/* == Gallery Image Container == */
.woocommerce-product-gallery {
  margin-right: 32px !important;
}


/* Short description */
.single-product .woocommerce-product-details__short-description {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #444;
}

/* Hide Add to Cart */
.single-product form.cart {
  display: none;
}

/* ================================
   PRODUCT IMAGE FIX
================================ */

/* Fix Gallery & Navigation Arrows */
.woocommerce-product-gallery__trigger,
.flex-direction-nav a {
  opacity: 1 !important;
}

.flex-control-nav {
  margin-top: 12px !important;
}

.woocommerce-product-gallery img {
  object-fit: contain !important;
}

/* ===== PRODUCT IMAGE AREA ===== */
/* ===== PRODUCT GALLERY LAYOUT ===== */
/* ===== RESET PRODUCT GALLERY ===== */
.single-product .woocommerce-product-gallery {
  display: block;
}

/* Main image */
.single-product .woocommerce-product-gallery__image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Thumbnails below */
.single-product .flex-control-thumbs {
  display: flex !important;
  gap: 12px;
  margin-top: 15px;
  justify-content: flex-start;
}

/* Thumbnail size */
.single-product .flex-control-thumbs li {
  width: 80px !important;
  cursor: pointer;
}

/* Active thumbnail */
.single-product .flex-control-thumbs img.flex-active {
  border: 2px solid #c88a2e;
  border-radius: 6px;
}
/* Hide text */
.single-product .flex-direction-nav a {
  text-indent: -9999px;
  width: 38px;
  height: 38px;
  background: rgba(0,0,0,0.6);
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
}

/* Left arrow */
.single-product .flex-direction-nav .flex-prev:before {
  content: "";
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='white' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.41 7.41 14 6l-6 6 6 6 1.41-1.41L10.83 12z'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
}

/* Right arrow */
.single-product .flex-direction-nav .flex-next:before {
  content: "";
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='white' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m8.59 16.59 1.41 1.41 6-6-6-6-1.41 1.41L13.17 12z'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
}
.single-product .flex-direction-nav {
  position: absolute;
  top: 10%;
  width: 100%;
  transform: translateY(-50%);
}
ul.flex-direction-nav {
    list-style: none;
}
.single-product .flex-prev {
  left: 10px;
}

.single-product .flex-next {
  right: 10px;
}
@media (max-width: 768px) {

  .single-product .flex-control-thumbs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .single-product .flex-control-thumbs li {
    flex: 0 0 auto;
    width: 70px !important;
  }

  .single-product .flex-direction-nav {
    display: none; /* swipe is enough on mobile */
  }
}

/* ================================
   BULK ORDER HIGHLIGHT
================================ */

.bulk-order-highlight {
  background: #fff5e6 !important;
  border-left: 4px solid #c28b2c !important;
  padding: 14px 16px !important;
  margin: 20px 0 !important;
  border-radius: 6px !important;
  font-size: 14px !important;
  color: #444 !important;
}

.bulk-order-highlight strong {
  font-size: 16px !important;
  color: #2b1d14 !important;
}

/* ================================
   PRICE & SIZE TABLE
================================ */

/* ===== PRICE & SIZE SECTION ===== */
.price-size-wrapper {
  margin: 30px 0;
}

.price-size-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #222;
}

/* Table container */
.price-size-table {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 8px;
}

/* Table */
.price-size-table table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  min-width: 700px; /* important for mobile scroll */
}

/* Cells */
.price-size-table th,
.price-size-table td {
  border: 1px solid #e6e6e6;
  padding: 12px;
  text-align: center;
  font-size: 14px;
  white-space: nowrap;
}

/* Header */
.price-size-table th {
  background: #f9f9f9;
  font-weight: 600;
  color: #333;
}

/* First column (Qty) */
.price-size-table td:first-child,
.price-size-table th:first-child {
  font-weight: 600;
  background: #fafafa;
}

/* Hover effect */
.price-size-table tr:hover td {
  background: #fff7e6;
}

/* ===== MOBILE OPTIMIZATION ===== */
@media (max-width: 768px) {

  .price-size-title {
    font-size: 18px;
  }

  .price-size-table {
    border: 1px solid #e6e6e6;
  }

  .price-size-table::-webkit-scrollbar {
    height: 6px;
  }

  .price-size-table::-webkit-scrollbar-thumb {
    background: #c88a2e;
    border-radius: 6px;
  }
}
s

/* ================================
   WHATSAPP & INQUIRY BUTTONS
================================ */

a.button.whatsapp-order-btn {
  background: #16a34a;
  color: #fff;
  border-radius: 30px;
  padding: 14px 26px;
  font-size: 14px;
}

.khushiya-inquiry-btn {
  background: #c88a2e;
  color: #fff;
  padding: 14px 30px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.khushiya-inquiry-btn:hover {
  background: #a97122;
}

/* ================================
   QUICK INQUIRY POPUP
================================ */

#khushiya-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  z-index: 9999;
}

#khushiya-popup .popup-inner {
  background: #fff;
  max-width: 520px;
  padding: 30px;
  margin: 5vh auto;
  border-radius: 16px;
  position: relative;
}

.popup-close {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 22px;
  cursor: pointer;
}

/* Scrollable form */
.quick-inquiry-form {
  max-height: 75vh;
  overflow-y: auto;
  padding-right: 6px;
}

/* Smooth scrollbar */
.quick-inquiry-form::-webkit-scrollbar {
  width: 6px;
}
.quick-inquiry-form::-webkit-scrollbar-thumb {
  background: #c88a2e;
  border-radius: 6px;
}

/* ================================
   FORM GRID
================================ */

.qi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.qi-full {
  grid-column: span 2;
}

.quick-inquiry-form input,
.quick-inquiry-form select,
.quick-inquiry-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;

  border-radius: 6px;
  font-size: 14px;
}

.quick-inquiry-form textarea {
  min-height: 90px;
}

/* Submit */
.qi-submit {
  width: 100%;
  background: #c88a2e;
  color: #fff;
  border: none;
  padding: 14px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
}

.qi-submit:hover {
  background: #a97122;
}

/* ================================
   MOBILE FIXES
================================ */

@media (max-width: 768px) {
  .qi-grid {
    grid-template-columns: 1fr;
  }
  .qi-full {
    grid-column: span 1;
  }

  .single-product .product_title {
    font-size: 24px;
  }

  .single-product .price {
    font-size: 20px;
  }
}
/* Header shadow */
.site-header,
header,
.ekit-template-content-header {
  position: relative;
  z-index: 99;
  background: #ffffff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}
/* Space between header and page content */
#primary.content-area {
  padding-top: 50px;
      padding-bottom: 50px;
}
/* Slight background difference for content */
#primary.content-area {
  background: #f9fafb;
}
/* Breadcrumb spacing */
.woocommerce-breadcrumb {
  margin-bottom: 30px;
  font-size: 14px;
}
div.product p.price{
    background: #fff5e6 !important;
    border-left: 4px solid #c28b2c !important;
    padding: 14px 16px !important;
    margin: 20px 0 !important;
    border-radius: 6px !important;
    font-size: 14px !important;
    color: #444 !important; 
}


.product_meta_custom{
margin-top:20px;
padding-top:15px;
border-top:1px solid #eee;
font-size:14px;
}
.product_meta_custom p{
margin:6px 0;
}
/* BUTTON WRAPPER ALIGN */
.whatsapp-order-btn,
.khushiya-inquiry-btn{
    height:50px;
    min-width:220px;
    padding:0 22px !important;
    border-radius:40px !important;
    font-weight:600;
    font-size:16px;
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;
    gap:8px;
    line-height:50px;
}

/* WHATSAPP BUTTON */
.whatsapp-order-btn{
    background:#25D366 !important;
    color:#fff !important;
}

/* WhatsApp icon */
.whatsapp-order-btn:before{
    content:"";
    width:18px;
    height:18px;
    background:url("https://cdn-icons-png.flaticon.com/512/733/733585.png") no-repeat center;
    background-size:contain;
    display:inline-block;
}

/* INQUIRY BUTTON */
.khushiya-inquiry-btn{
    background:#c8922e !important;
    color:#fff !important;
    margin-left:14px;
}

/* SAME WIDTH BOTH */
.whatsapp-order-btn,
.khushiya-inquiry-btn{
    width:230px;
}

/* MOBILE PERFECT */
@media(max-width:768px){
.whatsapp-order-btn,
.khushiya-inquiry-btn{
    width:100%;
    margin:6px 0;
}
}
/* COMMON TRANSITION */
.whatsapp-order-btn,
.khushiya-inquiry-btn{
    transition:all 0.3s ease;
}

/* WHATSAPP HOVER */
.whatsapp-order-btn:hover {
    background: #fff!important;
    color: #1ebe5d !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.15) !important;
}

/* INQUIRY HOVER */
.khushiya-inquiry-btn:hover{
    background:#a8741f !important;
    color:#fff !important;
    transform:translateY(-2px);
    box-shadow:0 6px 14px rgba(0,0,0,0.15);
}

/* CLICK EFFECT */
.whatsapp-order-btn:active,
.khushiya-inquiry-btn:active{
    transform:scale(0.97);
}
/* Google review tab full center */
.google-review-tab-box{
    max-width:650px;
    margin:0 auto;
    text-align:center;
    padding:40px 20px;
}

/* Google icon */
.google-big-icon{
    width:70px;
    display:block;
    margin:0 auto 15px auto;
}

/* Heading */
.google-review-tab-box h3{
    font-size:24px;
    margin-bottom:10px;
    text-align:center;
}

/* Stars center */
.google-rating-box{
    text-align:center;
    margin:12px 0 10px;
}

.stars{
    color:#ffb400;
    font-size:28px;
    letter-spacing:4px;
    display:block;
    margin-bottom:5px;
}

/* rating text */
.rating-text{
    font-size:16px;
    color:#555;
}

/* paragraph */
.google-review-tab-box p{
    margin:18px auto;
    max-width:520px;
    color:#666;
    line-height:1.6;
}

/* button center */
.google-review-main-btn{
    display:inline-block;
    background:#e8d2b0;
    color:#ff3c00;
    padding:14px 28px;
    border-radius:10px;
    font-weight:600;
    text-decoration:none;
    margin-top:10px;
}

/* hover */
.google-review-main-btn:hover{
    background:#e0c39a;
    transform:translateY(-2px);
}
section.related.products h2 {
    background: #fff5e6 ;
    border-left: 4px solid #c28b2c;
    padding: 14px 16px ;
    margin: 20px 0 ;
    border-radius: 6px ;
    font-size: 25px ;
    color: #444 ;
    text-transform: capitalize;
}
.woocommerce ul.products li.product h2 {
  font-size: 15px;
  font-weight: 600;
  margin: 12px 0 6px;
  line-height: 1.4;
      border: none;
    background: none;
}

section.related.products span.price-unit { display:none;}

/*blog catagory paGE**/

/* ===============================
BLOG CATEGORY PAGE FULL DESIGN
=============================== */

/* PAGE WRAPPER */

.blog-category-page{
width:100%;
margin:0;
padding:0;
background:#f7f7f7;
font-family:Poppins, sans-serif;
}


/* ===============================
FULL WIDTH HERO SECTION
=============================== */

.blog-hero{
width:100%;
background:#FFF7E8;
color:#000;
padding:90px 20px;
text-align:center;
}

.blog-hero .container{
max-width:1200px;
margin:auto;
}

.blog-title{
font-size:42px;
font-weight:700;
margin-bottom:10px;
letter-spacing:1px;
}

.blog-intro{
max-width:700px;
margin:auto;
font-size:16px;
opacity:.9;
line-height:1.6;
}


/* ===============================
BLOG SECTION
=============================== */

.blog-section{
max-width:1200px;
margin:auto;
padding:60px 20px;
}


/* ===============================
BLOG GRID
=============================== */

.blog-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}


/* ===============================
BLOG CARD
=============================== */

.blog-card{
background:#fff;
border-radius:10px;
overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
transition:all .3s ease;
}

.blog-card:hover{
transform:translateY(-6px);
box-shadow:0 20px 40px rgba(0,0,0,0.15);
}


/* ===============================
BLOG IMAGE
=============================== */

.blog-image img{
width:100%;
height:220px;
object-fit:cover;
display:block;
}


/* ===============================
BLOG CONTENT
=============================== */

.blog-content{
padding:20px;
}


/* CATEGORY BADGE */

.blog-category{
display:inline-block;
background:#c59d5f;
color:#fff;
padding:4px 10px;
font-size:12px;
border-radius:4px;
margin-bottom:10px;
}
.blog-category a{color:#fff;text-decoration: none; }
.blog-category a:hover{color:#fff;}
/* TITLE */

.blog-post-title{
font-size:20px;
margin-bottom:6px;
font-weight:600;
}

.blog-post-title a{
color:#FC4100;
text-decoration:none;
}

.blog-post-title a:hover{
color:#c59d5f;
}


/* META INFO */

.blog-meta{
font-size:13px;
color:#777;
margin-bottom:10px;
}


/* EXCERPT */

.blog-excerpt{
font-size:14px;
color:#555;
line-height:1.6;
margin-bottom:15px;
}


/* ===============================
READ MORE BUTTON
=============================== */

a.read-more-btn{
background:#FC4100;
color:#fff;
padding:9px 16px;
border-radius:4px;
font-size:14px;
text-decoration:none;
display:inline-flex;
align-items:center;
gap:6px;
transition:.3s;
}

a.read-more-btn:hover{
background:#a78445;
color:#fff;
}




/* ===============================
MOBILE RESPONSIVE
=============================== */

@media(max-width:1000px){

.blog-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:600px){

.blog-grid{
grid-template-columns:1fr;
}

.blog-title{
font-size:32px;
}

.blog-hero{
padding:70px 20px;
}

.blog-image img{
height:200px;
}

}


/* ===============================
SMOOTH HOVER EFFECT
=============================== */

.blog-card:hover .blog-image img{
transform:scale(1.03);
transition:.3s;
}


/* ===============================
SCROLL TOP BUTTON STYLE
=============================== */

#scroll-top{
position:fixed;
bottom:25px;
right:25px;
width:45px;
height:45px;
background:#111;
color:#fff;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:18px;
box-shadow:0 10px 25px rgba(0,0,0,0.2);
cursor:pointer;
}

#scroll-top:hover{
background:#c59d5f;
}

/* ===============================
BREADCRUMB STYLE
=============================== */

.blog-breadcrumb{
margin-top:10px;
font-size:14px;
opacity:.9;
}

.blog-breadcrumb a{
color:#c59d5f;
text-decoration:none;
font-weight:500;
}

.blog-breadcrumb span{
color:#FC4100;
margin:0 5px;
}

.blog-breadcrumb a:hover{
text-decoration:underline;
}


.woocommerce-product-details__short-description {
    display: none;
}