/*
 Theme Name:   Hello Elementor Child
 Theme URI:    https://elementor.com/
 Description:  A child theme of Hello Elementor
 Author:       Your Name
 Author URI:   https://yourwebsite.com
 Template:     hello-elementor
 Version:      1.0.0
*/

/* Custom CSS Goes Below */

.rm-products-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    list-style:none;
    padding:0;
    margin:0;
}

@media(max-width:576px){
    .rm-products-grid{
        grid-template-columns:1fr;
    }
}

.rm-product-card{
    border:1px solid #222;
    position:relative;
    transition:.3s;
    border-radius: 20px;
}

.rm-card-img{
    width:100%;
    overflow:hidden;
	border-radius: 20px 20px 0px 0px
}

.rm-card-img img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover; /* 🔥 full image fill */
    transition:transform .4s ease;
}

.rm-product-card:hover .rm-card-img img{
    transform:scale(1.08);
}

.rm-card-body{
    text-align:center;
    padding:15px;
}

.rm-title,
.rm-desc,
.rm-price{
    color:#000;
}

.rm-btn a.button{
    background:#0066cc;
    color:#fff;
    width:100%;
    padding:12px;
    display:block;
    text-align:center;
    font-weight:600;
    text-decoration:none;
}


.rm-price {
    margin: 16px;
}

/* product page css */
.woocommerce ul.products li.product {
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  position: relative;
}
.woocommerce ul.products li.product:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}
.image-badge {
  position: absolute;
  top: 0px;
  background: linear-gradient(91.17deg, #0066cc 1%, #3399ff 91.5%);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 16px 0;
  z-index: 99;
  pointer-events: none;
}
.image-badge {
    width: 100px;
    display: flex;
    justify-content: center;
}
.image-badge .badge-text {
  display: none;
  white-space: nowrap;
}

.image-badge .badge-text.active {
  display: inline;
}

.woocommerce ul.products li.product a img {
    border-radius: 20px 20px 0px 0px;
}
.woocommerce ul.products li.product .price {
  align-items: center;
  gap: 8px;
}
.woocommerce ul.products li.product .price-off.fixeddiscount {
  display: inline-block;
    margin-right: 30px;
    background: #0066cc4f;
    color: #111;
    padding: 2px 6px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    float: right;
}
.woocommerce ul.products li.product, .woocommerce-page ul.products li.product{
	width:30%;
}
.price-off-inline {
  margin-right: 8px;
  background: #0066cc59;
  color: #111;
  padding: 2px 6px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  
}
.woocommerce-loop-product__title,
.product-subtext,
.price,
.product-offer, .product-fulltext  {
    padding: 5px 10px; 
    margin: 0; 
}
.product-fulltext{
    color:#555;
}
.woocommerce-loop-product__title {
    font-weight: 700;
    padding: 5px 10px !important;
    color: #000;
}

.product-subtext {
    font-size: 14px;
    color: #0066cc;
}

.price {
    display: block;
    margin: 5px 0;
}

.product-offer {
    font-size: 13px;
    color: #ff0000; 
}
.woocommerce-Price-amount {
 color: #000;
display:inline;
}
.review-star path,
.star-rating span {
  fill: #f5b301 !important;
}
.review-shipping {
  display: inline-flex;        
  align-items: center;
  gap: 6px;
  
}

.product.instock .review-shipping::before {
  content: "";
  width: 8px;
  height: 8px;
   right:85px;
  background: #16a34a;
  border-radius: 50%;
  animation: stockBlink 1.2s infinite;
  margin-left: 15px; 
  position: absolute;
}

.product.instock .review-shipping::after {
  content: "In Stock";
  position: absolute;
  color: #16a34a;
  right: 10px;
  font-size: 14px;
  font-weight: 700;
  padding: 5px 13px 5px 25px;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  white-space: nowrap;
}

@keyframes stockBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
} 
.woocommerce:where(body:not(.woocommerce-uses-block-theme)) ul.products li.product .price {
    color: #000;
}
.post-type-archive-product .price {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  background: #f7f7f7;
  padding: 14px 16px;
  border-radius: 14px;
  margin-top: 10px;
  position: relative;
}


.post-type-archive-product  .price del {
  font-size: 16px;
  color: #777;
  position: relative;
  top: -6px;
  margin-right: 8px;
}

.post-type-archive-product .price ins {
  font-size: 34px;
  font-weight: 800;
  color: #000;
  text-decoration: none;
}


.price-off-inline {
  display: inline-block;
  background: #16a34a;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 6px;
}
.woocommerce ul.products li.product .button {
    background: linear-gradient(91.17deg, #0066cc 1%, #3399ff 91.5%);
    color: #fff;
    width: 95%;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    margin-bottom: 20px;
    margin-top: 13px;
	padding:15px;
}
.reviewverified-sec {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #0066cc;
    margin-left:10px
}
.star-rating {
    display: none !important;
}
.product {
    border-radius: 20px;
}
span.price {
    width: 95%;
    margin: 0 auto;
    margin-top: 10px;
    margin-bottom: 10px;
}
.woocommerce span.onsale {
    background-color: red;
}
.header-main .elementor-icon-list-item:nth-child(2) .elementor-icon-list-icon {
    position: relative;
}

.header-main .elementor-icon-list-item:nth-child(2) .cart-count {
    position: absolute;
    top: -6px;
    right: -10px;
    background: #0066cc;
    color: #fff;
    font-size: 11px;
    min-width: 18px;
    height: 18px;
    line-height: 18px;
    text-align: center;
    border-radius: 50%;
    font-weight: 600;
}
.shop-hero .woocommerce-breadcrumb {
    margin-top: 15px;
    font-size: 14px;
    color: #fff;
}

.shop-hero .woocommerce-breadcrumb a {
    color: #fff;
    opacity: 0.85;
    text-decoration: none;
}

.shop-hero .woocommerce-breadcrumb a:hover {
    opacity: 1;
    text-decoration: underline;
}

.shop-hero .woocommerce-breadcrumb span,
.shop-hero .woocommerce-breadcrumb {
    color: #fff;
}
.shop-hero {
    background: linear-gradient(91.17deg, #0066cc 1%, #3399ff 91.5%);
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.shop-hero-content {
    padding: 40px;
    border-radius: 12px;
}

.page-header .entry-title, .site-footer .footer-inner, .site-footer:not(.dynamic-footer), .site-header .header-inner, .site-header:not(.dynamic-header), body:not([class*=elementor-page-]) .site-main
Specificity: (0,2,0)
 {
        max-width: 1500px !important;
        padding: 0px 30px !important;
}
.woocommerce-products-header__title {
    display: none;
}
.woocommerce-products-header {
    margin-top: 100px;
}
main#main {
    padding: 0px 30px;
}
.shop-hero-content h1 {
    font-size: 50px;
    font-family: "Jost", Sans-serif;
}
.shop-hero-content p {
    font-size: 20px;
}
.shop-hero .woocommerce-breadcrumb{
font-size:18px;	
}
a.added_to_cart.wc-forward {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 10px;
    margin-bottom:20px !important;
    padding: 10px 22px;
    width:200px;
    margin:0 auto;
    background: linear-gradient(91.17deg, #0066cc 1%, #3399ff 91.5%);
    color: #fff !important;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    text-decoration: none;
   border-radius: 30px;
    }

.cart-hero {
    position: relative;
    min-height: 260px;
    background: linear-gradient(135deg, #0066CC, #004c99);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-bottom: 40px;
}

.cart-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.15);
}

.cart-hero-content {
    position: relative;
    z-index: 2;
    padding: 20px;
}

.cart-hero-content h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.cart-hero .woocommerce-breadcrumb {
    font-size: 14px;
    color: #fff;
}

.cart-hero .woocommerce-breadcrumb a {
    color: #fff;
    opacity: 0.9;
}

.cart-hero .woocommerce-breadcrumb a:hover {
    opacity: 1;
    text-decoration: underline;
}
body.woocommerce-cart .page-header {
    display: none;
}
.wp-block-woocommerce-cart {
    padding: 0px 30px;
}

body.woocommerce-cart {
    background: #f6f8fb;
}

body.woocommerce-cart .page-header {
    margin-bottom: 10px;
}

.wc-block-cart__main {
    background: #ffffff;
    border-radius: 18px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}


.wc-block-cart-items__row {
    border-bottom: 1px solid #eef1f6;
    padding: 20px 0;
}

.wc-block-cart-item__image img {
    border-radius: 14px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.08);
}

.wc-block-components-product-name {
    font-size: 16px;
    font-weight: 600;
    color: #111;
    text-decoration: none;
}

.wc-block-components-product-name:hover {
    color: #0066CC;
}

.wc-block-components-product-price__value {
    font-weight: 700;
    color: #0066CC;
}


.wc-block-components-sale-badge {
    background: #eaf2ff;
    color: #0066CC;
    border-radius: 20px;
    font-size: 12px;
    padding: 4px 10px;
}


.wc-block-components-quantity-selector {
    border-radius: 30px;
    border: 1px solid #dce3ee;
    overflow: hidden;
}

.wc-block-components-quantity-selector__input {
    border: none;
    font-weight: 600;
    width: 50px;
}

.wc-block-components-quantity-selector__button {
    background: #f2f6fb;
    color: #0066CC;
    font-weight: bold;
    transition: 0.3s;
}

.wc-block-components-quantity-selector__button:hover {
    background: #0066CC;
    color: #fff;
}

.wc-block-cart-item__remove-link {
    margin-top: 10px;
    font-size: 13px;
    color: #ff3b3b;
    font-weight: 500;
}

.wc-block-cart-item__remove-link:hover {
    text-decoration: underline;
}


.wc-block-cart__sidebar {
    background: #ffffff;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.wc-block-cart__totals-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.wc-block-components-panel__button {
    background: #f2f6fb;
    border-radius: 14px;
    padding: 14px;
    font-weight: 600;
    color: #0066CC;
}

.wc-block-components-totals-footer-item__value {
    font-size: 22px;
    font-weight: 800;
    color: #0066CC;
}

.wc-block-cart__submit-button {
    background: linear-gradient(91.17deg, #0066cc 1%, #3399ff 91.5%);
    color: #ffffff;
    border-radius: 40px;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none !important;
}

.wc-block-cart__submit-button:hover {
color: #ffffff;	
}
.wc-block-components-panel__button {
    padding: 10px !important;
}

a.wc-block-components-product-name {
    text-decoration: none;
    font-size: 16px !important;
}
span.onsale {
    display: none;
}
.page-header .entry-title, .site-footer .footer-inner, .site-footer:not(.dynamic-footer), .site-header .header-inner, .site-header:not(.dynamic-header), body:not([class*=elementor-page-]) .site-main {
    max-width: 100%;
}
.single-product .button{
    background: linear-gradient(91.17deg, #0066cc 1%, #3399ff 91.5%) !important;
    width: 30%;
    padding: 13px !important;
}
.single-product .product_title {
    font-size: 24px;
    line-height: 1.3;
    color: #0066cc !Important;
    font-weight: 600;
}
.avg, .divider  {
    color: #000;
}
.review-count {
    color: #0066cc;
}


.woocommerce-variation-price {
    display: none !important;
}
.custom-size {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s;
    background: #fff;
}

.custom-size::before {
    content: "◻";
    font-size: 18px;
}
.custom-size.active::before {
    content: "✔";
    color: #2563eb;
}
.variations select {
    display: none !important;
}
.variations {
    background: linear-gradient(91.17deg, #0066cc 1%, #3399ff 91.5%) !important;
    border-radius: 10px;
}
.variations th {
    color: #fff;
}
a.reset_variations {
    color: #fff;
}
.single-product .price {
    padding-left: 0;
    margin-bottom: px;
    margin-top: 12px;
	    line-height: 0px !important;
}
.single-product .woocommerce-product-rating {
    margin-bottom: 15px !important;
}
.single-product .price {
    color: #000 !important;
    
    padding:0px;
    margin-left:0px !Important
}
.custom-size-wrap{
display:grid;
gap:10px;
}
.product_meta {
    display: none;
}
div#tab-description h2 {
    display: none;
}
@media (max-width:1200px){
.woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
    width: 46%;
}
.page-header .entry-title, .site-footer .footer-inner, .site-footer:not(.dynamic-footer), .site-header .header-inner, .site-header:not(.dynamic-header), body:not([class*=elementor-page-]) .site-main{
max-width: 100% !important;
}	
}
@media (max-width:767px){
	.woocommerce ul.products[class*=columns-] li.product, .woocommerce-page ul.products[class*=columns-] li.product{
		width:100% !important;
	}
    .wc-block-cart__main,
    .wc-block-cart__sidebar {
        padding: 18px;
        border-radius: 14px;
    }

    .wc-block-cart__submit-button {
        font-size: 15px;
        padding: 14px;
    }
       .cart-hero {
        min-height: 200px;
    }

    .cart-hero-content h1 {
        font-size: 26px;
    }

.wp-block-woocommerce-cart {
    padding: 0px 0px 0px 3px;
}

.wc-block-components-sidebar.wc-block-cart__sidebar.wp-block-woocommerce-cart-totals-block {
    padding: 20px;
}

.wc-block-cart-items__row {
    padding: 20px !important;
}
  .price ins {
    font-size: 26px;
  }
	.shop-hero-content h1{
		font-size: 30px;
	}
}
