.myTestimonialSwiper .swiper-slide {
    min-width: 420px;
    height: 100%;
}
.testimonial-card {
  background: #fff;
  padding: 31px 22px;
  border: 1.13px solid #B7BFCB;
  border-radius: 1rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}
.reviews-rating {
  display: flex;
  justify-content: space-between;
}
.testimonial-title {
  font-size: 1.375rem;
  font-weight: bold;
  margin-top: 0;
}
.testimonial-name {
  font-style: italic;
  margin-bottom: 10px;
  color: #555;
}
.testimonial-text {
  font-size: 15px;
  color: #333;
}
.testimonial-text p { 
  font-size: 15px;
  color: #636A75;
  display: -webkit-box;      
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;   
  overflow: hidden;      
  line-height: 1.3;        
  max-width: 100%;
  word-break: break-word;
}
.neerob-footer .menu ul,
.neerob-footer ul {
  list-style: none;
  padding:0;
  margin: 0;
}
.neerob-footer .menu ul li a,
.neerob-footer ul li a {
  color: #fff;
  font-size: 1.5rem;
  font-family: 'Rift';
}
.neerob-footer ul li {
  margin-bottom: 14px;
}
.site-footer,
#secondary.widget-area {
  display: none;
}

.header-menu ul li a {
    font-family: 'Rift' !important;
    font-weight: 700 !important;
}
.header-menu ul li a span {
    color: #000 !important;
}
.entry-header,
.site-header
{
  display: none !important;
}

.entry-content {
  margin-top:0 !important;
}

.my-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  gap: 40px;
}

.my-products-grid .product-item {
  background-color: #F5E5D3;
}

.my-products-grid .product-item .thumbnail-wrap {
  position: relative;
}

.my-products-grid .product-item .thumbnail-wrap:after {
  content: "";
  display: block;
  padding-top: 80%;
}

.my-products-grid .product-item a {
  display: inline-block;
  width: 100%; 
}

.product-content {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  min-height: calc(100% - 282px);
}

.product-content table tr td:last-child {
  text-align: right;
}

.my-products-grid .product-item img {
  position: absolute;
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.my-products-grid .product-item h3 {
  font-size: 1.75rem;
  font-family: 'Rift' !important;
  margin: 0 0 10px;
}

.my-products-grid .product-item p { 
  font-size: 1.25rem;
  font-family:  'Maison Neue Demi' !important;
  margin: 0 0 15px;
  display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2; /* change this number to control lines */
    overflow: hidden;
    text-overflow: ellipsis;
}

.my-products-grid .product-item .price {
  font-family:  'Maison Neue Demi' !important;
  font-size: 1.25rem;
  font-weight: bold;
  display: block;
  margin-top: 8px;
  color: #000000;
  margin-bottom: 22px;
}

.my-products-grid .product-item  .add-to-cart {
  color: #000;
  font-size: 1.25rem;
  line-height: 40px;
  font-weight: bold;
  font-family: 'Rift' !important;
  border: 0.86px solid #000000;
  width:100%;
  display: inline-block;
  background-color: #F4F438;
  text-align: center;
  padding: 4px;
}

.product-tabs {
  display: flex;
  margin-bottom: 20px;
}

.product-tabs .tab-btn {
  flex: 1;
  font-size: 1.5rem;
  font-family: 'Rift' !important;
  min-height: 60px;
  padding: 8px 16px;
  border: 1px solid #000;
  background: #f9f9f9;
  cursor: pointer;
  border-radius: 0;
  transition: 0.3s;
}

.product-tabs .tab-btn.active,
.product-tabs .tab-btn:hover {
  background: #F4F438;
  color: #000;
}

/* Default button look */
.add_to_cart_button {
    position: relative;
    padding-right: 35px; /* space for loader/tick */
}

/* Loader spinner */
.add_to_cart_button.loading::after {
    content: "";
    position: absolute;
    right: 10px;
    top: 50%;
    width: 16px;
    height: 16px;
    margin-top: -8px;
    border: 2px solid #fff;
    border-top: 2px solid #000;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

/* Tick after added */
.add_to_cart_button.added::after {
    content: "✔";
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    color: green;
}

/* Spin animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.cart-contents {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    position: relative;
}

.cart-contents .count {
    background: red;
    color: #fff;
    border-radius: 50%;
    font-size: 12px;
    padding: 1px 6px;
    position: absolute;
    top: -6px;
    right: 12px;
}

/* Overlay */
.cart-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 9998;
}
.cart-overlay.active {
    display: block;
}

/* Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -500px;
    max-width: 450px;
    width: 100%;
    height: 100%;
    background: #fff;
    box-shadow: -2px 0 8px rgba(0,0,0,0.2);
    z-index: 9999;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    background-color: #F5E5D3;
}
.cart-sidebar.open {
    right: 0;
}

.cart-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 30px;
    border-bottom: 1px solid #BDBDB1;
}

.cart-sidebar-header h3 {
  font-family: 'Rift' !important;
  margin: 0;
  font-size: 2rem;
}

.cart-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
}

.cart-sidebar-content {
  height: calc(100vh - 155px);
}

.cart-sidebar-content .cart-card-item {
  padding: 1.5rem;
  border-bottom: 1px solid #BDBDB1;
}
.cart-sidebar-content .cart-card {
  display: flex;
  padding: 1rem;
  gap: 1rem;
  background-color: #fff;
  border-radius: 8px;
}
.cart-sidebar-content .cart-card .cart-card-details {
  width: calc(100% - 96px);
}
.cart-sidebar-content .cart-card h4 {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 0 5px;
  text-transform: uppercase;
}
.cart-sidebar-content .cart-card > img {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  object-fit: cover;
}
.cart-sidebar-content .cart-card-full-desc {
  font-size: 14px;
  color: #0E150E;
  margin-top: 0;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cart-sidebar-content .cart-card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-sidebar-content .cart-card-actions .remove-item {
  font-size: 14px;
  font-weight: 400;
  color: #0E150E;
  text-decoration: underline;
}
.cart-sidebar-content .cart-card-actions .quantity-control {
  display: flex;
  gap: 12px;
}
.cart-sidebar-content .cart-card-actions .quantity-control button {
  padding: 0;
  width: 24px;
  height: 24px;
  border: 1px solid #637241;
  background-color: transparent;
  cursor:pointer;
  border-radius: 100%;
}
body.no-scroll {
  overflow: hidden;
  height: 100%; /* prevent background scroll on mobile */
}

.cart-sidebar-footer .btn-wrap {
  padding: 21px 36px;
  background-color: #FFFFE8;
}

.cart-sidebar-footer .cart-checkout-btn {
  font-size: 1.25rem;
  font-weight: bold;
  font-family: 'Rift' !important;
   display: block;
   width: 100%;
   height: 48px;
   padding: 9px;
   color:#000;
   background-color: #F4F438;
   border: 1px solid #000000;
   text-align: center;
   text-transform: uppercase;
}

.empty {
  padding: 0 30px;
}

.woocomerce-area {
  background: #FFFFE8;
}

.wp-block-woocommerce-checkout {
  max-width: 1300px;
  margin: auto !important;
  padding: 0 15px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
	height:60px !important;
	border: 1px solid #000000 !important;
	border-radius:0 !important;
	font-size:1.25rem !important;
	margin-bottom:24px;
	padding-left:20px;
	padding-right:20px;
	width:100%;
}

.contact-form textarea {
	height:120px !important;
}

.contact-form .wpcf7-submit {
	color:#000!important;
	font-size:1.5rem!important;
	width:auto !important;
	min-width:150px;
	border-radius:0!important;
	background-color: #F4F438 !important;
	font-family:'Rift' !important;
	border: 1px solid #000000 !important;
	box-shadow: 5px 5px 0px 0px #000000 !important;
}

.added_to_cart.wc-forward {
    display: none !important;
}

.cart-sidebar-content {
    overflow: auto;
}

@media screen and (max-width:991px) {
    .product-tabs {
        overflow:auto;
    }
	.my-products-grid {
		grid-template-columns: repeat(1, 1fr);
	}
	.my-products-grid .product-item {
		display:flex;
	}
	.my-products-grid .product-item .product-content {
		flex:1;
	}
	.my-products-grid .product-item .thumbnail-wrap {
		max-width:30%;
	}
}
@media screen and (min-width:768px) {
    .header-menu ul li a {
        font-size: 1.5rem !important;
    }
    .contact-form .wpforms-submit {
        min-width:220px;
        height:65px!important;
    }
    .product-content {
          padding: 1rem 1.75rem 1.75rem;
    }
}
@media screen and (max-width:767px) {
    .my-products-grid .product-item h3 {
        font-size:1.2rem;
    }
    .my-products-grid .product-item p {
        font-size: 12px;
    }
    .my-products-grid .product-item .price {
        font-size: 1rem;
        margin: 0;
    }
    .my-products-grid .cart-pricing-wrap {
        display: flex;
        gap: 15px;
        align-items: center;
    }
    .my-products-grid .product-item .add-to-cart {
        line-height: 30px;
        padding: 4px 15px;
    }
    .product-tabs .tab-btn {
        font-size: 1.3rem;
        min-height: 45px;
    }
    .contact-form .wpforms-submit {
        min-width:150px;
        height:55px!important;
    }
    .product-content {
          padding: 10px;
    }
    .cart-sidebar {
        max-width: 370px;
    }
}

.wc-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #4CAF50;
    color: #fff;
    padding: 12px 18px;
    border-radius: 6px;
    font-size: 14px;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
    z-index: 99999;
}

.wc-toast.show {
    opacity: 1;
    visibility: visible;
}
