body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  
}

main {
  flex: 1;
}


.woocommerce-Price-amount , .amount{
  font-size: 14px !important;
}

.woocommerce-Price-currencySymbol{
  font-size: 12px;
  padding:0 2px;
}



.wc-block-components-button, 
.wp-element-button,
.wc-block-cart__submit-button {
    background-color: #232323 !important;
    color: #fff !important;
    text-decoration: none !important;
    border-radius: 25px !important;
}



/* add to cart  button */
/* All WooCommerce buttons */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
    font-size:14px !important;
    background: #232323 !important;
    color: #fff !important;
    padding: 8px 16px !important;
    border-radius: 4px !important;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover, 
.woocommerce input.button:hover {
    background: red !important;
    color: #fff !important;
}
/* add to cart  button */

/* wishlist start */
.wishlist-table {
  width: 100%;
  border-collapse: collapse;
}

.wishlist-table th,
.wishlist-table td {
  padding: 10px;
  border-bottom: 1px solid #ddd;
}

.remove-btn {
  font-size: 14px;
  background: red;
  color: #fff;
  border: none;
  padding: 4px 8px;
  border-radius: 3px;
  cursor: pointer;
}
/* wishlist end */

/* wordpress START */
.wp-block-heading, .widgettitle{
    font-size: 1.25rem !important;
    /* font-family: 'Poppins', sans-serif !important; */
}

/* wordpress END */

.woocommerce .star-rating::before,
.woocommerce .star-rating span::before {
  font-family: WooCommerce !important;
}

.woocommerce .woocommerce-ordering select , .woocommerce .woocommerce-result-count {
    font-size: 14px !important;
}



/* entry title Start */
.entry-header {
  margin: 15px 0px;
}

/* Title */
.entry-title {
  font-size: 28px;
  font-weight: 700;
  /* color: #0a3d62; */
}

/* entry title end */
/* breadcrumb start */
.breadcrumbuvais{
      width: 100%;
      background-color: #eee;
}
.breadcrumb , .woocommerce-breadcrumb{
  background-color: #eee !important;
  color:#000 !important;
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 6px !important;
  font-size: 12px !important;
  margin: 5px 0px !important;
}
.woocommerce-breadcrumb{
  padding: 5px 0px !important;
}

.breadcrumb a, .woocommerce-breadcrumb a {
  color: red !important;
  text-decoration: none !important;
}

.breadcrumb a:hover , .woocommerce-breadcrumb a:hover {
  text-decoration: underline !important;
}



.separator svg {
  width: 10px;
  height: 10px;
  fill: #000;
  display: inline-block;
  vertical-align: middle;
}
/* breadcrumb end */

/* side bar start */
/* 🔥 Sidebar Layout Start */

.site-layout {
  display: flex;
  gap: 20px;
}

/* Desktop */
.main-content {
  width: 80%;
}

.sidebar {
  width: 20%;
  padding-left:10px;
  border-left: 1px solid #eee;
}

/* 🔥 No Sidebar */
.site-layout.no-sidebar .main-content {
  width: 100%;
}

/* Woo pages full width */
.woocommerce-cart .main-content,
.woocommerce-checkout .main-content,
.woocommerce-account .main-content {
  width: 100%;
}

/* =========================
   📱 Tablet (<= 992px)
========================= */
@media (max-width: 992px) {
  .main-content {
    width: 70%;
  }

  .sidebar {
    width: 30%;
  }
}

/* =========================
   📱 Mobile (<= 768px)
========================= */
@media (max-width: 768px) {
  .site-layout {
    flex-direction: column; /* 🔥 stack */
  }

  .main-content,
  .sidebar {
    width: 100%;
  }

  .sidebar {
    margin-top: 20px;
  }
}

/* =========================
   📱 Small Mobile (<= 480px)
========================= */
@media (max-width: 480px) {
  .main-content {
    width: 100%;
  }

  .sidebar {
    width: 100%;
  }
}

/* 🔥 Sidebar Layout End */
/* side bar end */


.top-bar {
  background: #111;
  color: #fff;
  font-size: 13px;
  padding: 6px 0;
}

.top-bar .contact i {
  margin-right: 5px;
}

.top-bar .social-icons a {
  color: #fff;
  margin-left: 12px;
  transition: 0.3s;
}

.top-bar .social-icons a:hover {
  color: red;
}

.main-header {
  background: #fff;
  border-bottom: 1px solid #eee;
}

.header-top {
  padding: 15px 0;
  gap: 15px;
}



/* Search */
.search-box {
  flex: 1;
  display: flex;
  max-width: 500px;
}

.search-box input {
  width: 100%;
  padding: 8px;
  border: 1px solid #ddd;
  border-right: none;
  font-size:14px;
}

.search-box button {
  padding: 8px 12px;
  border: 1px solid #ddd;
  background: #000;
  color: #fff;
}

/* Icons */
.header-icons a {
  margin-left: 15px;
  color: #000;
  font-size: 18px;
}
/* Icons */
.header-icons a:hover{
  color: red;
}


/* Mobile Menu Button */
.menu-toggle {
  font-size: 20px;
  border: none;
  background: none;
}

/* 🔹 OFFCANVAS */
.offcanvas-menu {
  position: fixed;
  top: 0;
  left: -260px;
  width: 260px;
  height: 100%;
  background: #fff;
  box-shadow: 2px 0 10px rgba(0,0,0,0.1);
  transition: 0.3s;
  z-index: 9999;
  padding: 15px;
}

.offcanvas-menu.active {
  left: 0;
}

.offcanvas-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}


/* bottom scioal menu (bottom push ke liye) */
.offcanvas-menu {
  display: flex;
  flex-direction: column;
}

/* 🔹 Social Icons Bottom */
.offcanvas-social {
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: space-around;
}

/* Same style as top bar (white bg ke hisab se adjust) */
.offcanvas-social a {
  color: #000;
  font-size: 18px;
  transition: 0.3s;
}

.offcanvas-social a:hover {
  color: #f39c12;
}

/* 🔹 Offcanvas Search */
.offcanvas-search {
  display: flex;
  margin-bottom: 20px;
}

.offcanvas-search input {
  width: 100%;
  padding: 8px;
  border: 1px solid #ddd;
  border-right: none;
}

.offcanvas-search button {
  padding: 8px 12px;
  border: 1px solid #ddd;
  background: #000;
  color: #fff;
}

/* counter wish list and cart */
.header-icons a {
  position: relative;
  margin-left: 15px;
  font-size: 18px;
}

.cart-count,
.wishlist-count {
  position: absolute;
  top: -10px;
  right: -10px;
  background: red;
  color: #fff;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 20%;
}
/* counter wish list and cart */


/* floating whatsapp button Start */
#whatsapp-chat-button {
    position: fixed;
    bottom: 70px;
    right: 20px;
    z-index: 9999;
}

#whatsapp-chat-button a {
    display: block;
    width: 40px;
    height: 40px;
    background-color: #25d366;
    border-radius: 7%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    line-height: 40px;
    transition: transform 0.3s ease;
}

#whatsapp-chat-button a:hover {
    transform: scale(1.1);
}

#whatsapp-chat-button img {
    width: 30px;
    height: 30px;
    margin-top: 0px;
}

/* top arrow */
#toparrow{
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

#toparrow a {
    display: block;
    width: 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 7%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    line-height: 40px;
    transition: transform 0.3s ease;
}

#toparrow a:hover {
    transform: scale(1.1);
}

#toparrow i {
    color: red;
    width: 30px;
    height: 30px;
    margin-top: 0px;
}

/* floating whatsapp  End */

/* logo css START */
.logo img {
  width: 150px;
  height: auto;
}

@media (max-width: 768px) {
   .logo img {
     width: 110px;
     height: auto;
     margin-right: 50px;
   }
   .header-top {
  padding: 7px 0;
  gap: 7px;
}
}
/* logo css END */

/* navigation Start */
/* =========================
   NAVIGATION MENU (DESKTOP)
========================= */

.main-nav ul {
  display: flex;
  gap: 30px;
  list-style: none;
  margin:0;
  padding: 0;
}

.main-nav ul li {
  position: relative;
  display: flex;
  align-items: center;
}

.main-nav ul li a {
  display: block;
  padding: 10px 0;
  text-decoration: none;
  color: #000;
  /* font-family: 'Poppins', sans-serif; */
  font-size: 14px;
  font-weight: 500;
  position: relative;
}

/* UNDERLINE HOVER EFFECT */
.main-nav > ul > li > a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 2px;
  background: red;
  transition: 0.4s;
}

.main-nav > ul > li:hover > a::after {
  width: 100%;
}

/* DROPDOWN */
.main-nav ul li ul {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid #eee;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  display: none;
  z-index: 999;
}

/* SHOW DROPDOWN */
.main-nav ul li:hover > ul {
  display: block;
}

/* DROPDOWN LINKS */
.main-nav ul li ul li a {
  padding: 10px 15px;
  font-size: 14px;
  transition: 0.3s;
}

.main-nav ul li ul li a:hover {
  background: #f5f5f5;
  padding-left: 18px;
}

/* SUB DROPDOWN RIGHT */
.main-nav ul li ul li ul {
  top: 0;
  left: 100%;
}

/* OPTIONAL LEFT */
.main-nav ul li ul li.dropdown-left ul {
  right: 100%;
  left: auto;
}

/* DESKTOP ARROW */
.main-nav .dropdown-icon {
  margin-left: 5px;
  font-size: 12px;
}


/* =========================
   MOBILE MENU
========================= */

.mobile-menu {
  list-style: none;
  margin: 0;
  padding: 5px;
}

.mobile-menu li {
  position: relative;
  /* border-bottom: 1px solid #eee; */
}

.mobile-menu li a {
  display: block;
  padding: 8px 45px 8px 15px;
  text-decoration: none;
  color: #000;
  /* font-family: 'Poppins', sans-serif; */
  font-size: 14px;
  font-weight: 500;
}

/* SUBMENU RESET */
.mobile-menu ul {
  display: none;
  padding-left: 5px;
  margin: 0;
}

/* OPEN STATE */
.mobile-menu li.active > ul {
  display: block;
}

/* NESTED INDENT */
.mobile-menu ul ul {
  padding-left: 5px;
}

/* DROPDOWN LINKS */
.mobile-menu li ul li a {
  padding-left: 20px;
  /* background: #fafafa; */
}

/* ACTIVE BG */
.mobile-menu li.active > a {
  background: #fafafa;
}


/* =========================
   DROPDOWN ICON (MOBILE)
========================= */

.mobile-menu .dropdown-icon {
  position: absolute;
  right: 5px;
  top: 5px;
  font-size: 12px;
  cursor: pointer;
  z-index: 2;
  padding: 8px;
}

/* NESTED ICON SMALL */
.mobile-menu ul ul .dropdown-icon {
  font-size: 11px;
  right: 10px;
}

/* ROTATE ONLY ACTIVE */
.mobile-menu li.active > a > .dropdown-icon i {
  transform: rotate(180deg);
  transition: 0.3s;
}


/* =========================
   REMOVE DEFAULT ARROW
========================= */

.menu-item-has-children > a::after {
  content: none;
}
/* navigation END */

/* footer */

/* FOOTER */
.main-footer {
  background: #111;
  color: #fff;
  margin-top: 40px;
}

.footer-col {
  padding: 25px 20px;
}

.footer-col h5 {
  margin-bottom: 15px;
  font-size: 16px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.7;
  color: #ccc;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col a:hover {
  color: red;
  padding-left: 5px;
}

/* CONTACT ICON */
.footer-col p i {
  /* color: #00BCD4; */
  color: red;
  margin-right: 8px;
}

/* BOTTOM BAR */
.footer-bottom {
  background: #000;
  padding: 12px 0;
  font-size: 14px;
}

/* RESPONSIVE */
@media(max-width: 767px){
  .footer-col {
    text-align: center;
  }
}

/* footer end */

/* footer online start */
.footer-marketplaces h5{
    margin-bottom: 10px;
}

.marketplace-icons{
    display: flex;
    align-items: center;
    gap: 10px; /* 🔥 bas yahi chahiye */
}


.marketplace-icons a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 2px;
    background: #fff;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.single-marketplace-icons{
    display: flex;
    align-items: center;
    gap: 10px; /* 🔥 bas yahi chahiye */
}

.single-marketplace-icons a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.single-marketplace-icons #meesho {
    background: #570d48;
}
.single-marketplace-icons #flipkart {
    background: #FFE51f;
}

.single-marketplace-icons img{
    width: 28px;
    height: 28px;
}
.marketplace-icons #meesho {
    background: #570d48;
}
.marketplace-icons #flipkart {
    background: #FFE51f;
}

.marketplace-icons img{
    width: 28px;
    height: 28px;
}

@media (max-width: 768px){
    .marketplace-icons{
        justify-content: center;
        gap: 10px;
    }
}
/* footer online end */


/* 🔹 Responsive */
@media(max-width: 991px){
  .search-box {
    display: none;
  }

  .header-icons {
    display: none;
  }
}

/* 🔹 Mobile Header Layout Fix */
@media(max-width: 991px){

  .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  /* Logo center */
  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  /* Search box hide already hai */

  /* Icons right side */
  .header-icons {
    display: flex;
    align-items: center;
  }

  .header-icons a {
    margin-left: 10px;
    font-size: 18px;
  }

  /* Mobile search icon visible */
  .mobile-search {
    display: inline-block;
  }
}

/* image crousal start*/
/* =========================
   HERO CAROUSEL (FINAL)
========================= */

/* 🔹 IMAGE */
#heroCarousel .carousel-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

/* smooth slide */
#heroCarousel .carousel-item {
  transition: transform 0.6s ease-in-out;
}

/* =========================
   🔹 ARROWS (PREMIUM STYLE)
========================= */
#heroCarousel .carousel-control-prev-icon,
#heroCarousel .carousel-control-next-icon {
  background-image: none;
  width: 20px;
  height: 20px;
  border: solid red;
  border-width: 0 2px 2px 0;
  display: inline-block;
}
.swiper-button-next, .swiper-button-prev {
  color:red !important;
}

/* left arrow */
#heroCarousel .carousel-control-prev-icon {
  transform: rotate(135deg);
}

/* right arrow */
#heroCarousel .carousel-control-next-icon {
  transform: rotate(-45deg);
}

@media (max-width: 576px) {
  #heroCarousel .carousel-control-prev,
  #heroCarousel .carousel-control-next {
    top: 50%;
    transform: translateY(-50%);
  }
}

/* =========================
   🔹 INDICATORS (DOTS)
========================= */
#heroCarousel .carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #fff;
  opacity: 0.5;
  transition: 0.3s;
}

#heroCarousel .carousel-indicators .active {
  opacity: 1;
  background-color: red;
}

/* =========================
   🔹 RESPONSIVE
========================= */

@media (max-width: 992px) {
  #heroCarousel .carousel-item img {
    height: 300px;
  }

  #heroCarousel .carousel-caption {
    bottom: 15%;
    padding: 15px;
  }

  #heroCarousel .carousel-caption h2 {
    font-size: 22px;
  }
}

@media (max-width: 576px) {
  #heroCarousel .carousel-item img {
    height: 200px;
  }

  #heroCarousel .carousel-caption {
    bottom: 10%;
    padding: 10px;
    max-width: 90%;
  }

  #heroCarousel .carousel-caption h2 {
    font-size: 18px;
  }

  #heroCarousel .carousel-caption p {
    font-size: 13px;
  }

  /* smaller arrows */
  #heroCarousel .carousel-control-prev,
  #heroCarousel .carousel-control-next {
    width: 40px;
    height: 40px;
  }
}
/* image crousal end*/

/* product slider start */
/* Section */
.product-section {
  padding: 40px 0;
}

.section-title {
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: bold;
  font-family: cursive;
}

/* Swiper Fix (flicker issue) */
.productSwiper {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.productSwiper.swiper-initialized {
  opacity: 1;
}

.productSwiper .swiper-slide {
  height: auto;
}

/* Card */
.product-card {
  border: 1px solid #eee;
  padding: 10px;
  background: #fff;
  transition: 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-card:hover {
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Image */
.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

/* Title */
.product-card h6 {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.4;
}

/* Button wrapper */
.product-card .product-btn {
  margin-top: 10px;
}

/* WooCommerce button */
.product-card .button {
  display: block;
  width: 100%;
  text-align: center;
  background: #111;
  color: #fff;
  padding: 8px;
  font-size: 14px;
  border-radius: 4px;
  text-decoration: none;
  transition: 0.3s;
}

.product-card .button:hover {
  background: red;
  color: #fff;
}

/* Swiper arrows */
.swiper-button-next,
.swiper-button-prev {
  color: #000;
}
/* product slider end */

/* product reviw start */
.review-section{
  background-color: #eee;
  padding:20px 0px;
}
/* Review Section */
.review-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 3px;
  padding: 18px;
  text-align: left;
  height: 100%;
  transition: 0.3s;
}

.review-card:hover {
  transform: translateY(-5px);
}

/* ⭐ Stars */
.stars {
  color: #f1c40f;
  font-size: 14px;
  margin-bottom: 8px;
}

/* 👤 User */
.review-user {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.review-user img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  object-fit: cover;
}

.review-user span {
  font-size: 13px;
  font-weight: 600;
}

/* 💬 Text */
.review-text {
  font-size: 14px;
  line-height: 1.5;
  position: relative;
}

/* clamp */
.review-text .text {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* open */
.review-text.open .text {
  -webkit-line-clamp: unset;
}

/* button */
.toggle-btn {
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
}

/* 🔥 MAGIC: hide button if not needed */
.review-text:not(.open) .text:has(+ .toggle-btn:empty) {
  -webkit-line-clamp: unset;
}

/* 🛍 Link */
.product-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 13px;
  color: #000;
  text-decoration: none;
  font-weight: 500;
}

.product-link:hover {
  text-decoration: underline;
}
/* product reviw end */

/* category sart */
/* Category Section */
.category-section {
  padding: 40px 0;
}

.category-section a {
  color:#000;
  text-decoration: none;
}

.category-section a:hover {
  color:rgb(13 110 253);
  text-decoration: underline;
}

.category-card {
  text-align: center;
  border: 1px solid #eee;
  padding: 10px;
  background: #fff;
  transition: 0.3s;
  border-radius: 4px;
}

.category-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 4px;
}

.category-card h6 {
  margin-top: 10px;
  font-size: 14px;
}

.category-card:hover {
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Grid fix */
.categorySwiper .swiper-slide {
  height: auto;
}
/* category end */

/* about seaction start */
/* 🔹 About Section */
.about-section {
  padding: 50px 0;
  background: #eee;
}

.about-title {
  text-align: center;
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 28px;
}

/* Paragraph Styling */
.about-section p {
  max-width: 900px;
  margin: 0 auto 15px;
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  text-align: center;
}

/* about seaction end */


/* instagram section start */
/* Section */
.insta-section {
  padding: 40px 0;
  background-color: #eee;
}

/* Card (FIXED SIZE MAGIC 🔥) */
.insta-card {
  width: 100%;
  aspect-ratio: 1 / 1; /* square box */
  overflow: hidden;
  position: relative;
  border-radius: 5px;
}

/* Image & Video fit */
.insta-card img,
.insta-card video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 🔥 sab size fit ho jayega */
}

/* Button */
.insta-btn {
  text-align: center;
  margin-top: 20px;
}

.insta-btn a {
  display: inline-block;
  padding: 10px 20px;
  background: #000;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
  border-radius: 4px;
}

.insta-btn a:hover {
  background: red;
}

/* Grid fix */
.instaSwiper .swiper-slide {
  height: auto;
}
/* updated veio */
/* Video overlay */
.video-card {
  position: relative;
}

/* Dark overlay */
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3); /* halka black */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Play icon */
.video-overlay i {
  font-size: 30px;
  color: #fff;
}

/* Hover effect (pro feel 🔥) */
.video-card:hover .video-overlay {
  background: rgba(0,0,0,0.5);
}

/* instagram section end */

/* youtube short start */
.yt-card {
  position: relative;
  width: 100%;
  padding-top: 177%; /* ✅ 9:16 ratio maintain */
  overflow: hidden;
  border:1px solid #000;
  border-radius: 5px;
  cursor: pointer;
}

/* iframe */
.yt-card iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* thumbnail wrapper */
.yt-thumb {
  position: absolute;  /* ✅ IMPORTANT */
  aspect-ratio: 9/16; /* horizontal video */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* image full cover */
.yt-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* ✅ FIX */
}

/* play button */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  
  width: 70px;
  height: 70px;
  z-index: 2;
}

.play-btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* youtube short end */

/* youtube start */
.yt-full-card {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 ratio */
  overflow: hidden;
  border-radius: 10px;
}

.yt-full-card iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* spacing */
.yt-full-section {
  padding: 40px 0;
}

/* play button */
.yt-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  
  width: 70px;
  height: 70px;
  z-index: 2;
}

.yt-play-btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
/* youtube end */

.yt-card-uvais{
  position:relative;
}

/* watch and buy start */
.yt-product-card {
  position: relative;
  background: #fff;
  border-radius: 10px;
  overflow: visible; /* IMPORTANT */
}

/* Video */
.yt-card {
  position: relative;
  width: 100%;
  padding-top: 177%;
  z-index: 1;
}

.yt-card iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: none;
}

/* 🔥 IMAGE (ab full control yahan milega) */
.product-img {
  position: absolute;
  bottom: -30px; /* 👈 adjust this */
  left: 10px;
  width: 80px;
  height: 80px;
  z-index: 10;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
  border: 2px solid #fff;
}

/* TEXT */
.product-content {
  background: #fff;
  padding: 40px 10px 10px; /* 👈 space for image */
}

/* Title */
.product-title {
  font-size: 14px;
  margin: 0;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Price */
.product-price {
  margin-top: 5px;
  color: #f39c12;
}
/* watch and buy end */

/* arrows */
.swiper-button-next,
.swiper-button-prev {
  transform: scale(0.6); /* size chhota */
}

/* WATCH AND WATCH START */
/* 🔹 TITLE */
.yt-product-card .product-title{
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 5px;
}

.yt-product-card .product-title a{
    color: #222; /* blue remove */
    text-decoration: none;
    /* font-family: 'Poppins', sans-serif; */
}

.yt-product-card .product-title a:hover{
    color: #b88e2f;
}

/* 🔹 PRICE */
.yt-product-card .product-price{
    font-size: 14px;
    font-weight: 500;
    color: #444;
    /* font-family: 'Poppins', sans-serif; */
}

.yt-product-card .product-price ins{
    color: #000;
    font-weight: 600;
    text-decoration: none;
}

.yt-product-card .product-price del{
    color: #888;
    font-size: 13px;
    margin-right: 5px;
}
/* WATCH AND WATCH END */

/* 404 start */
/* ===== 404 Page ===== */
.error-404 {
  max-width: 600px;
  margin: auto;
}

.error-code {
  font-size: 120px;
  font-weight: 800;
  color: #e74c3c;
  margin-bottom: 10px;
}

.error-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
}

.error-text {
  color: #666;
  font-size: 16px;
  margin-bottom: 25px;
}

/* Buttons */
.error-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-home,
.btn-shop {
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

/* Home Button */
.btn-home {
  background: #0a3d62;
  color: #fff;
}

.btn-home:hover {
  background: #06508c;
}

/* Shop Button */
.btn-shop {
  background: #e74c3c;
  color: #fff;
}

.btn-shop:hover {
  background: #c0392b;
}

/* Search box */
.error-search input[type="search"] {
  padding: 10px;
  width: 70%;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.error-search input[type="submit"] {
  padding: 10px 15px;
  border: none;
  background: #0a3d62;
  color: #fff;
  border-radius: 6px;
  cursor: pointer;
}
/* 404 end */

/* blog page start */
.blog-card {
  border: 1px solid #eee;
  border-radius: 10px;
  overflow: hidden;
  transition: 0.3s;
  background: #fff;
}

.blog-card:hover {
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transform: translateY(-5px);
}

.blog-title {
  font-size: 18px;
  font-weight: 600;
}

.blog-title a {
  text-decoration: none;
  color: #222;
}

.blog-title a:hover {
  color: #0a3d62;
}

.blog-meta {
  font-size: 13px;
  color: #888;
  margin-bottom: 8px;
}

.read-more {
  font-size: 14px;
  color: #0a3d62;
  text-decoration: none;
  font-weight: 500;
}

.read-more:hover {
  text-decoration: underline;
}
/* blog page end */

/* single.php start */
/* Single Post Card */
.single-post-card {
  /* background: #fff; */
  padding: 20px;
  /* border-radius: 10px; */
  /* box-shadow: 0 2px 10px rgba(0,0,0,0.05); */
}


/* Meta */
.entry-meta {
  font-size: 14px;
  color: #777;
}

/* Content */
.entry-content {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}

/* Tags */
.entry-tags {
  font-size: 14px;
}

/* Navigation */
.post-navigation {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

.post-navigation a {
  text-decoration: none;
  color: #0073aa;
}

.post-navigation a:hover {
  text-decoration: underline;
}
/* single.php end */


/* product start  */
.product-image {
  position: relative;
}

.product-image img {
  border-radius: 5px;
}


.badge {
  position: absolute;
  top: 10px;
  left: -2px;
  background: red;
  color: #fff;
  padding: 4px 10px;
  border-radius: 2px;
  font-size: 12px;
  z-index: 2;
}

.wishlist {
  position: absolute;
  top: 5px;
  right: 5px;
  cursor: pointer;
  font-size: 24px;
  z-index: 3;
}


.wishlist i {
  color: red; /* outline color */
}

/* ACTIVE (filled heart) */
.wishlist.active i {
  font-weight: 900;
  color: red;
}



/* VIDEO ICON */
.video-icon {
  position: absolute;
  color: #000;
  bottom: 7px;
  left: 7%;
  font-size: 20px;
  z-index: 2;
  cursor: pointer;
}

.sidebar a, .shop-sidebar a{
  font-size: 14px;
  text-decoration: none;
  color: #000;
}

.sidebar a:hover, .shop-sidebar a:hover{
  font-size: 14px;
  text-decoration: underline;
  color: rgb(13 110 253);
}


.woocommerce ul.products li.product a img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
    box-shadow: none;
    border-radius: 4px;
}

.woocommerce-loop-product__title a {
  font-size: 14px;
  color:#000;
  display: -webkit-box;
  -webkit-line-clamp: 3;   /* max 3 line */
  -webkit-box-orient: vertical;

  overflow: hidden;
  text-overflow: ellipsis;
}


.woocommerce-loop-product__title a:hover {
  font-size: 14px;
  color:rgb(13 110 253);
}
.custom-rating {
  display: flex;
  align-items: center;
}
.star-rating{
  color:#ff6201;
}
.rating-count {
  font-size: 12px;
}


.discount-badge {
  background: #ff3b30;
  color: #fff;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 4px;
}



/* product end */

/* single product start */
/* ===== TOP SECTION ===== */
.top-section {
  display: flex;
  flex-direction: column; /* MOBILE */
  gap: 15px;
}

/* ===== LEFT: GALLERY ===== */
.product-gallery {
  width: 100%;
}

/* MAIN IMAGE */
.main-image {
  width: 100%;
  max-width: 500px;   /* control size */
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.main-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;   /* 🔥 full image, no crop */
  
  touch-action: none;
  transform-origin: top left;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

.main-image.zoomed {
  cursor: grab;
}

.main-image.zoomed:active {
  cursor: grabbing;
}


/* ZOOM ICON */
.zoom-icon {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: #fff;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 4;
}


/* ===== BADGES / ICONS ===== */
.badge-product {
  position: absolute;
  top: 10px;
  left: 10px;
  background: red;
  color: #FFF;
  padding: 4px 16px;
  border-radius: 3px;
  font-size: 13px;
  z-index: 2;
}


.wishlist-product {
    top: 10px;
    right: 10px;
    font-size: 20px;

}


/* VIDEO ICON */
.video-icon-product {
    bottom: 10px;
    left: 10px;
    font-size: 20px;
}



/* ===== RIGHT: DETAILS ===== */
.product-details {
  width: 100%;
}

/* Woo fix */
.woocommerce div.product div.summary {
  width: 100% !important;
  float: none !important;
}

/* ===== TABS ===== */
.product-tabs {
  margin-top: 40px;
}

/* ===== TABLET & DESKTOP ===== */
@media (min-width: 768px) {

  .top-section {
    flex-direction: row;
    align-items: flex-start;
  }

  .product-gallery {
    width: 50%;
  }

  .product-details {
    width: 50%;
  }

  .main-image img {
    height: 100%;
  }

}

/* ===== LARGE DESKTOP ===== */
@media (min-width: 1024px) {

  .product-page {
    max-width: 1300px;
  }

  .top-section {
    gap: 15px;
  }



}


/* ===== THUMBNAILS ===== */

/* thumbnail */
.myThumbSwiper {
  margin-top: 10px;
}

.myThumbSwiper .swiper-slide {
  width: auto !important;
}

.myThumbSwiper img {
  width: 85px;
  height: 85px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: 0.3s;
}

.myThumbSwiper img:hover {
  border-color: #000;
}

.myThumbSwiper img.active {
  border: 2px solid #000;
}

.product-details .product_title {
  font-size: 24px;
  font-weight: 500;
  font-family: serif !important;
}

.product-brand {
  margin: 8px auto;
  font-size: 14px;
}

.product-brand a {
  color: red;
  font-weight: bold;
  font-family: cursive;
}

.product-brand a:hover {
  color: rgb(13 110 253);
  font-weight: none;
  font-family: cursive;
}

.mrp-price, .sale-p{
  font-size: 14px;
}
.single-custom-price{
    border-top: 1px solid #eee;
    padding-top: 12px;
}

.single-custom-price .old-price .amount bdi,
.custom-price .old-price .amount bdi  {
  text-decoration: line-through red 1px;
  font-weight: lighter;
}

.single-custom-price .old-price .woocommerce-Price-currencySymbol,
.custom-price .old-price .woocommerce-Price-currencySymbol{
  font-size: 14px !important;
  text-decoration: none !important;
  display: inline-block;
}

.single-custom-price .old-price .woocommerce-Price-amount {
  font-size: 14px !important;
}

.single-custom-price .sale-price .woocommerce-Price-currencySymbol {
  font-size: 14px !important;
}

.single-custom-price .sale-price .woocommerce-Price-amount {
  font-size: 20px !important;
  font-weight: bold;
}

.custom-price .sale-price .woocommerce-Price-amount {
  font-size: 16px !important;
  font-weight: bold !important;
}

.single-addtocart{
  margin-top: 12px;
  border-bottom: 1px solid #eee;
}

.short-descrip{
  padding-top: 4px;
  font-size: 14px;
}
.product-sku,
.product-cat,
.product-tags {
  margin: 5px 0;
  font-size: 14px;
}

.product-cat a,
.product-tags a {
  color:red;
}
.product-sku strong,
.product-cat strong,
.product-tags strong {
  font-weight: 600;
}

/* tabs */
/* RESET WOOCOMMERCE DEFAULT */
.product-tabs .woocommerce-tabs ul.tabs::before,
.product-tabs .woocommerce-tabs ul.tabs::after {
  display: none !important;
}

.product-tabs .woocommerce-tabs ul.tabs li::before,
.product-tabs .woocommerce-tabs ul.tabs li::after {
  display: none !important;
}

.product-tabs .woocommerce-tabs ul.tabs li {
  background: none !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* MAIN WRAPPER */
.product-tabs {
  margin-top: 25px;
}

.product-tabs h2 {
  font-size: 22px !important;
}

/* TAB NAV */
.product-tabs .woocommerce-tabs ul.tabs {
  display: flex;
  gap: 8px;
  border-bottom: 1px solid #e5e5e5;
  padding: 0;
  /* margin: 0 0 25px; */
}

/* TAB BUTTON */
.product-tabs .woocommerce-tabs ul.tabs li a {
  display: inline-block;
  padding: 8px 16px !important;
  font-size: 14px;
  font-weight: 500;
  color: #666;
  text-decoration: none;
  border-radius: 8px 8px 0 0;
  background: #f5f5f5;
  transition: all 0.25s ease;
}

/* HOVER */
.product-tabs .woocommerce-tabs ul.tabs li a:hover {
  background: #111;
  color: #fff;
}

/* ACTIVE TAB */
.product-tabs .woocommerce-tabs ul.tabs li.active a {
  background: #111 !important;
  color: #fff !important;
  font-weight: 600;
}

/* TAB CONTENT */
.product-tabs .woocommerce-tabs .panel {
  /* padding: 25px; */
  background: #fff;
  /* border-radius: 10px; */
  /* border: 1px solid #eee; */
  font-size: 14px;
  line-height: 1.8;
}

/* TABLE STYLE (additional info) */
.product-tabs table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

.product-tabs table th,
.product-tabs table td {
  padding: 12px;
  border: 1px solid #eee;
}

.product-tabs table th {
  background: #fafafa;
  font-weight: 600;
}

/* REVIEWS */
.product-tabs #reviews {
  margin-top: 10px;
}

/* MOBILE */
@media (max-width: 768px) {

  .product-tabs .woocommerce-tabs ul.tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 5px;
  }

  .product-tabs .woocommerce-tabs ul.tabs li a {
    white-space: nowrap;
    font-size: 13px;
    padding: 6px 12px;
  }

  .product-tabs .woocommerce-tabs .panel {
    padding: 15px;
  }
}

/* share */
.product-share {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
}

.share-label {
  font-size: 14px;
  font-weight: 500;
  color: #555;
}

.share-btn {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* COLORS */
.share-btn.whatsapp { background: #25D366; }
.share-btn.facebook { background: #1877F2; }
.share-btn.twitter { background: #000; }
.share-btn.pinterest { background: #E60023; }

/* HOVER */
.share-btn:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}

/* MOBILE */
@media (max-width: 768px) {
  .share-btn {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }
}
/* single product end */

/* login start */
body.login-page {
  background: #f0f0f1;
  font-family: Arial, sans-serif;
}

/* Center wrapper */
.login-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

/* Box */
.login-box {
    width: 320px;
    margin: 24px 0;
    padding: 26px 24px;
    font-weight: 400;
    overflow: hidden;
    background: #fff;
    border: 1px solid #c3c4c7;
    box-shadow: 0 1px 3px rgba(0,0,0,.04);
    border-radius: 10px;
}


/* Logo */
.login-logo {
  text-align: center;
  margin-bottom: 20px;
}

.login-box label{
    font-size: 14px;
    line-height: 1.5;
    display: inline-block;
    margin-bottom: 3px;
}

.login-logo img {
  width: 200px;
  height: auto;
}

/* Inputs */
.login-box input[type="text"],
.login-box input[type="password"] {
  width: 100%;
  padding: 8px;
  /* margin: 8px 0 16px; */
  border: 1px solid #8c8f94;
  border-radius: 4px;
}

.login-box input[type="email"] {
  width: 100%;
  padding: 8px;
  border: 1px solid #8c8f94;
  border-radius: 4px;
}

/* Button */
.login-box input[type="submit"] {
  background: #2271b1;
  color: #fff;
  padding: 8px 16px;
  border: none;
  cursor: pointer;
  float: right;
  border-radius: 4px;
  font-size: 14px;
}

/* Remember */
.login-box .login-remember {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Links */
.login-links {
  text-align: center;
  margin-top: 15px;
  font-size: 13px;
}

.login-links a {
  color: #2271b1;
  text-decoration: none;
}
.login-error {
  background: #f8d7da;
  color: #842029;
  padding: 10px;
  margin-bottom: 15px;
  font-size: 14px;
  border: 1px solid #f5c2c7;
}

.login-title {
    font-size: 16px;
    font-weight: bold;
}

.register-button {
    background: #2271b1;
    color: #fff;
    padding: 8px 16px;
    border: none;
    cursor: pointer;
    float: right;
    border-radius: 4px;
    font-size: 14px;
}

.email-note {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: #666;
    line-height: 1.4;
}
/* login end*/
.nav-wrapper {
    display: flex;
    align-items: center;
    border-top: 1px solid #eee;
}

/* Greeting ko hamesha right push kare */
.nav-user {
    margin-left: auto;
    padding: 4px 8px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
}

/* Mobile / Tablet fix */
@media (max-width: 991px) {

    .nav-wrapper {
        justify-content: space-between;
    }

    /* menu hidden hoga (as per your class), but greeting right me hi rahega */
    .nav-user {
        margin-left: auto;
        text-align: right;
        width: 100%;
    }
}

/* wishlsit msg */
.wishlist-msg {
    position: absolute;
    top: 40px;
    right: 0;
    background: red;
    color: #fff;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 4px;
    z-index: 9999;
    white-space: nowrap;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.p-suffix{
  font-size: 10px;
}