 
:root{
	 --page-width: 1300px;
     --max-height: 6rem;
}

.page-width {
	max-width: var(--page-width);
    margin: 0 auto;
}

body, h1, h2, h3, h4, h5, h6, div, span, a, button, input, textarea, select {
	font-family: Poppins, sans-serif !important;
}

/* Announcement Bar */
.announcement-bar {
  background: var(--announcement-bg, #ffc36a);
  overflow: hidden;
  white-space: nowrap;
}

.announcement-track {
  display: inline-flex;
  align-items: center;
  animation: marquee 18s linear infinite;
  padding: 10px 0;
  gap: 1.3rem;
}

.announcement-track .msg {
    font-size: 18px;
    text-transform: capitalize;
    font-weight: 500;
}

.announcement-track .msg {
  letter-spacing: 1px;
  color: #fff;
}

.custom-coupon-wrapper {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.custom-coupon-wrapper input {
    flex: 1;
    padding: 8px;
}

/* Space between texts */
.separator {
  display: inline-block;
  width: 30px;
}

/* Bigger gap before repeat */
.gap {
  display: inline-block;
  width: 40px;
}

/* Animation */
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}


/* Header layout */
.custom-header-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 30px 40px;
  border-bottom: 0.1rem solid #ebebeb;
  padding: 10px 40px;
}

.site-logo img {
  max-height: 80px;
}

.header-icons {
  display: flex;
  gap: 20px;
  font-size: 20px;
}
.header-icons a:first-child {
    display: none;
}
.cart-count {
  background: #ffc36a;
  color: #000;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 50%;
}
.site-logo {
    align-items: center;
    display: flex;
    justify-content: center;
}
.header-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.cart-count-bubble {
    position: absolute;
    background-color: #fcbc63;
    color: #fff;
    height: 1.4rem;
    width: 1.4rem;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.8rem;
    bottom: 0.8rem;
    left: 1.2rem;
}

.entry-content .woocommerce {
    max-width: unset !important;
    margin: 0 auto;
}

.woocommerce div.product div.images.woocommerce-product-gallery {
    width: 100% !important;
    margin-bottom: 0;
}

.product header.entry-header {
    display: none;
}


/* =========================
   PRODUCT LANDING LAYOUT
========================= */


.product-top {
  max-width: var(--page-width);
  padding: 40px 16px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: flex-start;
}

.visually-hidden {
    visibility: hidden;
    position: absolute !important;
    overflow: hidden;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    clip: rect(0 0 0 0);
    word-wrap: normal !important;
}

/* LEFT */
.product-gallery img {
  border-radius: 12px;
}

.product-gallery ol.flex-control-nav.flex-control-thumbs li {
    margin: 5px !important;
    width: 23% !important;
}

.product-gallery .flex-viewport {
    margin-bottom: 5px;
}

/* RIGHT */
.product-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.product-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.woocommerce-product-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.price-wrap span {
    color: #6f4e37;
    font-size: 20px;
    font-weight: 700;
}

.price del {
  color: #999;
  font-size: 16px;
  margin-left: 8px;
}

.product-info .price-wrap span {
    color: #000;
}

.product-info .price ins span {
  text-decoration: none;
}

.price ins {
  text-decoration: none;
}

.short-desc {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

.add-to-cart-wrap {
  margin-top: 12px;
}

.single_add_to_cart_button {
  width: 100%;
  background: #ffc36a;
  color: #000;
  font-size: 16px;
  padding: 16px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.25s ease;
}

.single_add_to_cart_button:hover {
  background: #fbbf24;
}

.add-to-cart-wrap button.single_add_to_cart_button {
    background: #fcbc63 !important;
    border-radius: 6px !important;
    font-size: 1rem !important;
    padding: 0 1rem !important;
    height: 3rem;
    text-transform: uppercase;
    margin-top: 14px !important;
}

.woocommerce div.product form.cart {
    margin-bottom: 0 !important;
}

.payment-icons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.payment-icons img {
  height: 24px;
  opacity: 0.9;
}

.payment-badges {
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 0;
    list-style: none;
}

.list-payment__item {
    align-items: center;
    display: flex;
    padding: 0.5rem;
}

.product-urgency {
  margin-top: 18px;
  text-align: center;
}

.urgency-text {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
}

.urgency-bar {
  width: 100%;
  height: 10px;
  background: #e6e6e6;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 10px;
}

.urgency-fill {
  display: block;
  height: 100%;
  background: #fcbc63;
  border-radius: 20px;
  transition: width 0.4s ease;
}

.urgency-subtext {
  font-size: 15px;
  color: #000;
}


.bundle-box {
  border: 1px solid #fbbf24;
  border-radius: 10px;
  padding: 14px;
  margin-top: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.bundle-box:hover,
.bundle-box.active {
  background: #fff7ed;
  border-color: #f59e0b;
}

.bundle-title {
  font-weight: 600;
  font-size: 15px;
}

.bundle-price {
  font-weight: 700;
  color: #f59e0b;
}

.product-videos {
  margin-top: 64px;
}

.video-strip {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 10px;
}

.video-strip video {
  width: 220px;
  height: 380px;
  border-radius: 14px;
  object-fit: cover;
}

.product-testimonials {
  margin-top: 64px;
}

.product-testimonials {
    margin: 30px auto 0;
    max-width: var(--page-width);
    text-align: center;
    padding: 0 16px;
}
.testimonial-heading {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 48px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: #f7f7f7;
  border-radius: 20px;
  padding: 18px 24px 16px;
  position: relative;
}

.stars {
  color: #ffc107;
  font-size: 18px;
  margin-bottom: 12px;
}

.quote-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #ffc36a;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-card p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.testimonial-card .author {
    font-weight: 700;
    border-top: 1px solid #ddd;
    padding-top: 12px;
    display: block;
    font-style: italic;
    font-size: 16px;
}

.quote-icon svg {
    width: 55%;
}

.stars svg {
    width: 1em;
    height: 1em;
}

.product-feature {
  padding: 80px 0 0px;
  background: #fff;
}

.feature-inner {
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.feature-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 3rem;
    height: 100%;
}

.feature-content h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 16px;
  text-align: center;
}

.feature-content p {
  font-size: 15px;
  color: #555;
  margin-bottom: 28px;
  text-align: center;
}

.feature-btn {
  display: inline-block;
  background: #ffb657;
  color: #fff;
  padding: 8px 32px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  font-size: 1rem;
  text-transform: capitalize;
}

.feature-btn:hover {
  background: #f5a43c;
}

.feature-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.product-feature.reverse .feature-inner {
  grid-template-columns: 1fr 1fr;
}

section.product-feature.reverse {
    padding: 0;
    background: #fcbc63;
}

section.product-feature.reverse h2,
section.product-feature.reverse p {
	color: #fff;
}

section.product-feature.reverse a.feature-btn {
    color: #ffb657;
    background: #fff;
}

.section-divider {
    position: relative;
    transform: scaleX(1) scaleY(-1);
}

.section-divider::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: calc(100% - 1px);
    top: 1px;
    z-index: -1;
    width: 100%;
    background: #fcbc63;
}

.section-divider__svg {
    --max-height: 150px;
    background: none;
    position: relative;
    overflow: hidden;
    transform: translateY(1px);
}

.section-divider__svg svg {
    color: #fcbc63;
    display: block;
    width: 100%;
    height: auto;
    overflow: hidden;
    max-height: var(--max-height);
}

.waves-animated-1 {
    --max-height: 3rem;
    margin: 0;
}

.parallax1>use {
    animation: move-forever1 10s linear infinite;
}

.parallax2>use {
    animation: move-forever2 8s linear infinite;
    opacity: 0.4;
}

.parallax3>use {
    animation: move-forever3 6s linear infinite;
    opacity: 0.3;
}

.parallax4>use {
    animation: move-forever4 4s linear infinite;
    opacity: 0.2;
}

@keyframes move-forever1 {
    0% {
        transform: translate(85px, 0%);
    }

    100% {
        transform: translate(-90px, 0%);
    }
}

@keyframes move-forever2 {
    0% {
        transform: translate(-90px, 0%);
    }

    100% {
        transform: translate(85px, 0%);
    }
}

@keyframes move-forever3 {
    0% {
        transform: translate(85px, 0%);
    }

    100% {
        transform: translate(-90px, 0%);
    }
}

@keyframes move-forever4 {
    0% {
        transform: translate(-90px, 0%);
    }

    100% {
        transform: translate(85px, 0%);
    }
}

.product-faq {
  padding: 0px 20px 70px;
  background: #fff;
}

.faq-container {
  max-width: 700px;
  margin: auto;
}

.faq-title {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 40px;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 14px 0;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

.faq-check {
  width: 18px;
  height: 18px;
  border: 2px solid #000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.faq-arrow {
  margin-left: auto;
  font-size: 18px;
  transition: transform 0.25s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding-left: 36px;
}

.faq-answer p {
  margin: 14px 0 0;
  line-height: 1.7;
  color: #333;
  font-size: 16px;
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-question {
    background: transparent !important;
    color: #000 !important;
    outline: 0 !important;
}

.site-footer {
  background: #fff;
  border-top: 1px solid #eee;
  font-family: inherit;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  gap: 60px;
  padding: 50px 0 30px;
  align-items: start;
}

footer.site-footer {
    padding-bottom: 0px;
}

.footer-brand img {
  max-width: 220px;
}

.footer-links h4,
.footer-newsletter h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0;
}

.footer-links a {
  color: #111;
  text-decoration: none;
  font-size: 16px;
}

.footer-newsletter p {
  max-width: 320px;
  margin-bottom: 18px;
  font-size: 16px;
}

.footer-newsletter input.wpcf7-submit:hover, .woocommerce #review_form #respond .form-submit input:hover, .woocommerce div.product form.cart .button.single_add_to_cart_button.button:hover, .feature-btn:hover,
.woocommerce div.product form.cart .button.single_add_to_cart_button.button:hover {
    background: #000 !important;
    color: #fff !important;
}

.footer-form input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #333;
  margin-bottom: 12px;
}

.footer-form button {
  width: 100%;
  background: #ffc36a;
  color: #fff;
  border: none;
  padding: 13px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}

.footer-bottom {
  border-top: 1px solid #eee;
  padding: 25px 0 80px;
  text-align: center;
  font-size: 14px;
}

.footer-policies {
  margin-top: 8px;
}

.footer-policies a {
  color: #111;
  margin: 0 8px;
  text-decoration: none;
}

.footer-newsletter input {
    border-width: 1px !important;
    border-radius: 6px !important;
    height: 3rem;
    font-size: 1rem;
    padding: 0 1rem !important;
    margin: 0 !important;
}

.footer-newsletter input.wpcf7-submit {
    background: #fcbc63 !important;
    border-radius: 6px;
    width: 100%;
    margin-top: 10px !important;
    height: 3rem;
    padding: 0 1rem;
    font-size: 1rem;
}

.footer-bottom .list-payment {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-left: 0;
    list-style: none;
}

.wc-block-cart-item__quantity button {
    background: transparent !important;
    color: #000 !important;
}

.footer-bottom .list-payment__item {
    align-items: center;
    display: flex;
    padding: 0.5rem;
}

.footer__payment {
    margin-bottom: 10px;
}

.footer-bottom {
    margin-bottom: 0;
}

.single-product nav.navigation.post-navigation {
    display: none !important;
}

/* SECTION */
.featured-product-section {
  padding: 90px 0;
  background: #fff;
}

/* LAYOUT */
.fps-wrap {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

/* GALLERY */
.fps-main-image img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
}

.fps-thumbs {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.fps-thumb {
  border: 2px solid transparent;
  background: none;
  padding: 6px;
  cursor: pointer;
  border-radius: 10px;
}

.fps-thumb img {
  width: 80px;
  height: auto;
}

.fps-thumb.active {
  border-color: #000;
}

/* CONTENT */
.fps-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 14px;
}

.fps-price {
  font-size: 28px;
  font-weight: 700;
  color: #6f4e37;
  margin-bottom: 2px;
}

/* COLOR BUTTONS (match look) */
.variations label {
  display: none;
}

.variations select {
  display: none;
}

.variations .variable-item {
  border-radius: 999px;
  padding: 8px 20px;
  border: 1px solid #ccc;
  margin-right: 10px;
  cursor: pointer;
}

/* ADD TO CART */
.fps-cart .single_add_to_cart_button {
  background: #f4b65f;
  border-radius: 8px;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  border: none;
  margin-top: 30px;
}

.woocommerce div.product form.cart .variations label {
    display: block !important;
}

table.variations tr, table.variations th, .woocommerce div.product form.cart table td {
    display: block;
    padding: 0;
}

.fps-content {
    padding: 3rem;
}

button.fps-thumb {
    background: transparent !important;
}

.fps-cart .quantity {
    display: none;
    margin-bottom: 15px !important;
}

.woocommerce div.product form.cart .button.single_add_to_cart_button.button {
    background: #fcbc63;
    border-radius: 6px;
    font-size: 1rem;
    padding: 0 1rem;
    height: 3rem;
    text-transform: uppercase;
}

.fps-main-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  image-rendering: auto;
}

.fps-thumbs img {
  width: 130px;
  height: auto;
  object-fit: cover;
  cursor: pointer;
}

.fps-gallery, .fps-content {
    /* display: block; */
    position: sticky;
    top: 0;
    z-index: 2;
}

#comments h2, span#reply-title {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 10px !important;
}

form#commentform {
    margin-top: 10px;
    font-size: 16px;
}

#reviews {
    margin-bottom: 100px;
}
#reviews .form-submit input[type="submit"] {
    background: #f4b65f !important;
    color: #fff !important;
    border-radius: 6px !important;
    font-size: 1rem !important;
    padding: 0 1rem !important;
    height: 3rem;
}

#comments {
    display: none;
}
.product-reviews #comments {
	display: block;
}
.xoo-wsc-ft-amt.xoo-wsc-ft-amt-savings.xoo-wsc-less {
    display: none !important;
}
.wc-block-cart-item__total-price-and-sale-badge-wrapper .wc-block-components-product-badge.wc-block-components-sale-badge {
    display: none;
}

.woocommerce p.stars a {
    color: #EBBF20;
}

.woocommerce #review_form #respond .stars {
    margin-top: 10px;
}

.woocommerce #review_form #respond textarea {
    border-radius: 6px;
}

span#reply-title {
    font-size: 22px;
    margin-top: 10px;
}

#reviews {
    max-width: 100%;
    margin: 0 auto;
    background: #f5f5f5;
    padding: 30px 30px 10px;
    border-radius: 6px;
}
p.woocommerce-noreviews {
    display: none !important;
}
.wc-block-components-review-list.wc-block-components-review-list {
    margin: 20px 0 !important;
    padding: 25px !important;
    border: solid 1px #ddd;
    border-radius: 10px !important;
}
.wc-block-components-review-list-item__rating>.wc-block-components-review-list-item__rating__stars span {
    top: 2px !important;
    font-family: star !important;
    font-size: 16px !important;
}
.wc-block-review-list-item__product {
    font-size: 16px !important;
}
.wc-block-components-review-list-item__rating>.wc-block-components-review-list-item__rating__stars span:before {
    color: #ffb657 !important;
}
.wc-block-components-load-more {
    text-align: left !important;
    margin-bottom: 20px;
}
.wc-block-components-load-more button {
    background: #fcb456 !important;
    padding: 8px 18px !important;
    font-size: 16px !important;
    border-radius: 8px !important;
    transition: all ease-in-out .5s;
}
.custom-paid-option input[type="checkbox"] {
    transform: scale(1.3);
}
.wc-block-review-list-item__item {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 10px;
    border: solid 1px #eee;
    margin-bottom: 15px !important;
}
.wc-block-sort-select__select {
    font-size: 15px !important;
    background-color: #f5f5f5 !important;
    padding: 6px 15px !important;
    border: none !important;
    border-radius: 4px !important;
    margin-left: 15px !important;
}
.wc-block-review-list-item__text p {
    font-size: 15px !important;
}
.wc-block-review-list-item__author, time.wc-block-review-list-item__published-date {
    font-size: 16px !important;
}
.wc-block-components-review-list-item__image>img {
    border-radius: 8px !important;
}

/* Product rating wrapper */
.custom-product-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 6px 0 0;
  cursor: pointer;
}

.pr-stars svg {
    width: 14px;
}


/* Base star container */
.woocommerce .custom-product-rating .star-rating {
  position: relative;
  display: inline-block;
  font-size: 30px;
  line-height: 1;
}

/* OUTLINE stars (no fill) */
.woocommerce .custom-product-rating .star-rating.outline::before {
  content: "☆☆☆☆☆";
  color: #ffcc00; /* outline color */
}

.price del {
    text-decoration-color: #000;
}

/* Filled stars (WooCommerce default) */
.woocommerce .custom-product-rating .star-rating:not(.outline)::before {
  content: "★★★★★";
  color: #ffcc00;
}

.woocommerce .custom-product-rating .star-rating:not(.outline) span::before {
  content: "★★★★★";
  color: #ffcc00;
}

/* Hide fill behavior for outline */
.woocommerce .custom-product-rating .star-rating.outline span {
  display: none !important;
}

.woocommerce .custom-product-rating .rating-text {
  font-size: 16px;
  color: #000;
  margin-top: 2px;
}

.woocommerce .custom-product-rating .star-rating {
	width: 8rem;
}

.add-to-cart-wrap .quantity-break {
    background: rgba(252, 188, 99, 0.02) !important;
    border: solid 2px rgba(252, 188, 99, 0.3) !important;
}

.add-to-cart-wrap .quantity-break.active {
    background: rgba(252, 188, 99, 0.1) !important;
    border: solid 2px #fcbc63 !important;
}

.quantity-break__radio.active input.radio_select {
    border-color: #fcbc63 !important;
}

.quantity-break__radio.active input.radio_select:before,
.quantity-break__radio.active input.radio_select:after {
	/*background-color: #fcbc63 !important;*/
}

.quantity-break__radio.active input.radio_select:before {
	left: 45% !important;
}

.quantity-break__radio.active input.radio_select:after {
	left: 1px !important;
    top: 1px !important;
}

.bundle-price {
    font-weight: 700 !important;
    color: #f59e0b !important;
}

span.bundle-cprice {
    color: #000 !important;
}

.quantity-break__content {
    flex-direction: row !important;
    padding-right: 7px;
}

.bundle-message-not-blink {
    background: #fcbc63 !important;
}

.offer-header {
    text-align: center;
    position: relative;
}

.offer-header:before {
    height: 2px;
    background: #fcbc63;
    content: '';
    position: absolute;
    width: 32%;
    left: 0;
    top: 15px;
}

.offer-header:after {
    height: 2px;
    background: #fcbc63;
    content: '';
    position: absolute;
    width: 32%;
    right: 0;
    top: 15px;
}

.woocommerce div.product p.stock, .woocommerce span.onsale {
    display: none;
}

.woocommerce-cart h1.entry-title,
.woocommerce-checkout h1.entry-title {
    font-size: 40px;
    font-weight: 700;
}

.woocommerce-cart header.entry-header,
.woocommerce-checkout header.entry-header {
    padding-bottom: 20px;
    margin-bottom: 50px;
    padding-top: 30px;
    text-align: center;
    border-bottom: 0;
}

a.wc-block-components-product-name {
    text-decoration: unset;
}

a.wc-block-components-button.wp-element-button,
.woocommerce #payment #place_order, .woocommerce-page #payment #place_order,
form#woocommerce-checkout-form-coupon .button,
.woocommerce-cart .wc-block-components-totals-coupon__form .wc-block-components-totals-coupon__button {
    background: #fcbc63;
    color: #fff;
    text-decoration: unset;
    border-radius: 6px;
    padding: 0 1rem;
    height: 3rem;
    font-size: .8rem;
    font-weight: 700;
}

.woocommerce-cart footer.entry-footer,
.woocommerce-checkout footer.entry-footer {
    display: none;
}

footer.site-footer {
    max-width: unset;
}

.woocommerce-checkout .entry-content .woocommerce {
    max-width: 1300px !important;
    margin: 0 auto;
}

.woocommerce-info {
    border-top-color: #fcbc63 !important;
}

.woocommerce-info::before {
    color: #fcbc63 !important;
}

.woocommerce-checkout .entry-content .woocommerce {
    padding-bottom: 50px;
}

.woocommerce-checkout .entry-content p, .woocommerce-info {
    font-size: 16px;
}

.woocommerce-checkout h3 {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 10px;
}

h3#order_review_heading {
    margin-top: 2rem;
}

.woocommerce-checkout table.shop_table {
    border: 0;
}

.woocommerce-checkout table.shop_table td {
    text-align: center;
}

.woocommerce table.shop_table td {
    font-size: 16px;
}

label.woocommerce-form__label.woocommerce-form__label-for-checkbox.checkbox {
    display: flex;
    gap: 10px;
    align-items: center;
}

.product-review-group {
  margin-top: 18px;
  text-align: center;
}

.product-review-item {
  display: none;
  text-align: left;
}

.product-review-item.is-active {
  display: block;
}

.pr-text {
  font-size: 15px;
  color: #111;
  margin-bottom: 5px;
  border-bottom: 1px solid #eee;
  padding-bottom: 5px;
}

.pr-meta {
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #777;
}

.pr-stars {
  color: #f5b15a;
  font-size: 14px;
}

/* dots */
.pr-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  align-items: center;
}

.pr-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #bbb;
  cursor: pointer;
}

.pr-dot.active {
    background: #000;
    width: 10px;
    height: 10px;
}

.pr-dot:hover {
    background: #000;
}

.product-video-section {
  margin: 30px 0 0;
}

.pvs-title {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 22px;
}

.pvs-slider {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  cursor: grab;
  padding-bottom: 12px;
}

.pvs-slider:active {
  cursor: grabbing;
}

.pvs-slider::-webkit-scrollbar {
  display: none;
}

/* 👇 THIS controls how many slides are visible */
.pvs-item {
  flex: 0 0 calc((100% - 52px) / 3.2);
  aspect-ratio: 9 / 16;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
}

.pvs-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

section.featured-product-section .wbdl_widget {
    display: none;
}

.featured-product-section .fps-price {
    margin-bottom: 10px;
}

.featured-product-section table.variations {
    display: block !important;
}

.woocommerce div.product form.cart .variations select {
    border-width: 1px;
    font-size: 16px;
    border-radius: 5px;
}

/* Hide default selects */
.variations select {
  display: none !important;
}

/* Pills container */
.variation-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

/* Individual pill */
.variation-pill {
    padding: 8px 18px;
    border-radius: 999px;
    border: 1px solid #000;
    background: transparent !important;
    cursor: pointer;
    font-size: 14px;
    transition: all .2s ease;
    color: #000 !important;
}

.variation-pill:hover {
  border-color: #000;
}

.variation-pill.active {
  background: #000;
  color: #fff;
  border-color: #000;
}

/* Disabled variation */
.variation-pill.disabled {
  opacity: 0.4;
  pointer-events: none;
}

.woocommerce div.product form.cart .reset_variations {
    position: absolute;
    right: 0;
}

button.variation-pill.active {
    outline: 0 !important;
    background: #000 !important;
    color: #fff !important;
}

.quantity-break.active .quantity-break__radio input:before, .quantity-break.active .quantity-break__radio input:after {
    background-color: #fcbc63 !important;
}

.comment-form input {
    border-radius: 6px !important;
    border-width: 1px !important;
}
form#commentform p {
    margin-left: 5px !important;
    margin-right: 5px !important;
}
.quantity-break.active input.radio_select {
    border-color: #fcbc63 !important;
}
.quantity-break.active input.radio_select::after {
    left: 1px !important;
    top: 0.5px !important;
}
 .woocommerce-cart .wc-block-components-totals-coupon__form .wc-block-components-totals-coupon__button {
    background: #fcbc63 !important;
    color: #fff !important;
    border: 0 !important;
}
#wc-block-components-totals-coupon__form input {
    height: 3rem !important;
    padding: 0 1rem !important;
    outline: 0 !important;
}
.wc-block-components-text-input.is-active label {
    font-size: 9px !important;
}
.xoo-wsc-ft-buttons-cont a.xoo-wsc-ft-btn, .xoo-wsc-container .xoo-wsc-btn {
    border-radius: 6px;
}
.woocommerce-checkout table.shop_table th, 
.woocommerce-checkout table.shop_table td {
    border: 0;
}
.woocommerce-checkout form .form-row .input-text, 
.woocommerce-checkout form .form-row select,
.woocommerce-checkout .select2-container .select2-selection {
    border-color: rgba(0, 0, 0, .1) !important;
}
.woocommerce form .form-row .input-text:focus, .woocommerce form .form-row select:focus {
	outline: 0 !important;
}
form#woocommerce-checkout-form-coupon input#coupon_code,
form#woocommerce-checkout-form-coupon button.button {
    height: 3rem;
}
form#woocommerce-checkout-form-coupon {
    display: flex !important;
    align-items: center;
    margin: 0 0 10px !important;
    background: #fff;
    padding: 10px !important;
    border-radius: 12px !important;
}
form#woocommerce-checkout-form-coupon p {
    margin-bottom: 0;
    float: unset;
    width: auto;
}
.woocommerce-message {
    font-size: 16px !important;
    padding: .5em 2em .5em 3.5em !important;
    margin-bottom: 0 !important;
}
.woocommerce-message::before {
    top: .5em !important;
}
form#woocommerce-checkout-form-coupon input#coupon_code {
    min-width: 320px !important;
}
.woocommerce-error li, .woocommerce-info li, .woocommerce-message li {
    font-size: 16px;
}
.woocommerce-checkout form .form-row label {
    font-size: 15px;
    margin-bottom: 5px;
    margin-top: 5px;
}
.site-logo {
	margin-left: 55px !important;
}
.product-info .price ins span {
    color: #6f4e37;
}
.product-info .price-wrap span svg.icon.icon-discount.color-foreground-text {
    width: 12px;;
}
.product-info .price-wrap span.badge.price__badge-sale.color-accent-2 {
    border-radius: 6px;
    font-size: 1.2rem;
    letter-spacing: 0.1rem;
    text-align: center;
    background-color: #6f4e37;
    border-color: #6f4e37;
    font-weight: 700;
    color: #fff;
    padding: 3px 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.product-info .price-wrap span.badge.price__badge-sale span {
    color: #fff;
    font-size: 12px;
    letter-spacing: normal;
}
.wbdl_widget .offer-header {
    font-size: 16px !important;
    font-weight: 700 !important;
}
.wbdl_widget {
    margin-bottom: 10px !important;
}
.wbdl_widget .quantity-break .quantity-break__title {
    font-weight: 700 !important;
}
.wbdl_widget .quantity-breaks__classic .quantity-break .quantity-break__content {
    align-items: center !important;
}
.wbdl_widget .quantity-breaks__classic .quantity-break .quantity-break__price {
    flex-direction: column;
}
.faq-arrow svg {
    width: 12px;
}

/* Hide on desktop */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 22px;
    height: 2px;
    background: #191713;
}

#mobileMenu {
    display: none;
}
/*
ol.flex-control-nav.flex-control-paging, .flex-direction-nav {
    display: none;
}
*/

.custom-thumbnail-pagination {
    text-align: center;
    margin: 20px 0;
}
.custom-thumbnail-pagination ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 5px;
}
.custom-thumbnail-pagination li {
    display: inline-block;
}
.custom-thumbnail-pagination li a img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border: 2px solid transparent;
    border-radius: 4px;
}
.custom-thumbnail-pagination li.current a img {
    border-color: #ff9900; /* Highlight current page */
}
.custom-thumbnail-pagination li a {
    display: block;
    padding: 2px;
    text-decoration: none;
}
.custom-thumbnail-pagination li.prev-page a,
.custom-thumbnail-pagination li.next-page a {
    font-size: 20px;
    line-height: 50px;
}
/* Show only 4 thumbnails */
.flex-control-thumbs {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    max-width: 100%;
    padding: 0;
	margin: 10px 0 0 !important;
	    flex-wrap: wrap;
}
.product-gallery {
    position: sticky;
    top: 30px;
}
.flex-control-thumbs li {
    flex: 0 0 22%;
    list-style: none;
}
.product-gallery ul.flex-direction-nav {
    display: none !important;
}

/* Hide scrollbar (optional) */
.flex-control-thumbs::-webkit-scrollbar {
    display: none;
}
.flex-direction-nav a {
    font-size: 0;
}

.flex-direction-nav .flex-prev:before {
    content: "←";
    font-size: 22px;
}

.flex-direction-nav .flex-next:before {
    content: "→";
    font-size: 22px;
}

.img-comp-slider .arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 0.75rem;
}

/* Gradient like screenshot */
.img-comp-slider .arrow.left {
  	clip-path: polygon(100% 0%, 0 50%, 100% 100%);
    background: #fff;
    width: 8px;
    height: 13px;
}

.img-comp-slider .arrow.right {
  	background: #fff;
    clip-path: polygon(100% 50%, 0 0, 0 100%);
    width: 8px;
    height: 13px;
}


.img-comp-slider {
    display: flex !important;
    gap: 15px;
    padding: 2px;
    justify-content: center;
}
.woocommerce div.product div.images .flex-control-thumbs li img {
    opacity: .7 !important;
}
.woocommerce div.product div.images .flex-control-thumbs li img.flex-active {
    opacity: 1 !important;
}
.sticky-atc-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  padding: 8px 20px;
  box-shadow: 0 0px 10px rgba(0,0,0,0.08);
  z-index: 9999;
  display: none;
}

.sticky-atc-inner {
  max-width: 1300px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.sticky-product-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.sticky-product-left img {
  width: 55px;
  height: 55px;
  object-fit: cover;
  border-radius: 6px;
}

.sticky-title {
  font-weight: 700;
  font-size: 20px;
}

.sticky-price {
  font-size: 20px;
  font-weight: 700;
  color: #f4a63e;
}

.sticky-price del {
  font-size: 16px;
  color: #000;
  opacity: 0.7;
}

.sticky-save {
  background: #6b4b35;
  color: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 14px;
  margin-left: 10px;
}

.sticky-atc-btn {
  background: #f4b459;
  color: #fff;
  border: none;
  padding: 16px 40px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
}

.sticky-atc-inner span.badge.price__badge-sale {
    border-radius: 6px;
    font-size: 1.2rem;
    letter-spacing: 0.1rem;
    text-align: center;
    background-color: #6f4e37;
    border-color: #6f4e37;
    font-weight: 700;
    color: #fff;
    padding: 3px 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.sticky-atc-inner span svg.icon.icon-discount {
    width: 12px;
}

.sticky-atc-inner span.badge.price__badge-sale span {
    color: #fff;
    font-size: 12px;
    letter-spacing: normal;
    font-weight: 700;
}

.sticky-price ins {
    text-decoration: unset;
}

.sticky-atc-btn {
    display: inline-block;
    background: #ffb657 !important;
    color: #fff;
    padding: 8px 32px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
    font-size: 1.4rem;
    text-transform: capitalize;
    border: 2px solid #ffb657;
}

.sticky-atc-btn:hover {
    background: #fff !important;
    color: #ffb657 !important;
    border-color: #ffb657 !important;
}

#order_review table.shop_table {
    padding: 0px;
    border: none;
    margin-bottom: 20px;
}

#add_payment_method #payment, .woocommerce-cart #payment, .woocommerce-checkout #payment {
    background: rgba(129, 110, 153, .14);
    border-radius: 5px;
}
.woocommerce table.shop_table td {
    border-top: 1px solid rgb(0 0 0 / 4%) !important;
}
.woocommerce table.shop_table th, .woocommerce table.shop_table td {
    text-align: left;
    font-size: 15px;
}
.woocommerce table.shop_table th {
    padding: 15px 0 !important;
}



a.showcoupon {
    text-decoration: unset;
    color: #fcbc63;
    font-weight: 700;
}

.woocommerce-checkout table.shop_table td, .woocommerce-checkout ul#shipping_method li {
    font-size: 14px;
    font-weight: 400 !important;
}
.woocommerce table.shop_table td {
    border-top: 1px solid rgba(0,0,0,.1);
    padding: 10px 0 !important;
}

.woocommerce-privacy-policy-text p {
    font-size: 14px !important;
}

.woocommerce #payment #place_order, .woocommerce-page #payment #place_order {
    float: none !important;
    display: block !important;
    margin-top: 1rem;
}

.woocommerce-checkout form input, .woocommerce-checkout form textarea {
    border: solid 1px #efefef !important;
    padding: 10px 15px !important;
    border-radius: 10px !important;
}
.woocommerce-checkout .select2-container .select2-selection {
    border-radius: 10px !important;
}

#ship-to-different-address label {
    display: flex;
    align-items: center;
    gap: 8px;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    padding: 10px 15px !important;
}
.woocommerce-checkout input#ship-to-different-address-checkbox, .woocommerce-checkout .woocommerce-form__input-checkbox {
    padding: 0 !important;
    outline: none !important;
    box-shadow: none !important;
    border-color: #ddd !important;
    margin-right: 5px !important;
    border-radius: 50% !important;
}

form#woocommerce-checkout-form-coupon p {
    width: 100%;
}


.woocommerce-checkout header.entry-header {
    display: none;
}
.cart-product-figure {
    position: relative;
}
.cart-product-figure img {
    width: 70px !important;
    border-radius: 15px;
    box-shadow: 0 0 10px #00000033;
    border: 2px solid white;
    outline: 1px solid #e3e3e3cc;
}
.product-quantity {
    background: black;
    color: white;
    font-weight: 400;
    height: 25px;
    width: 25px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    border-radius: 10px;
    position: absolute;
    border: 2px solid white;
    right: -5px !important;
    top: -5px !important;
}
.cart-product-item {
    display: flex;
    align-items: center;
    column-gap: 20px !important;
}
.woocommerce table.shop_table tfoot th {
    border-top: 1px solid rgb(0 0 0 / 4%) !important;
    font-weight: 600 !important;
}
#shipping_method li label {
    font-weight: 500;
    font-size: 16px;
}
.woocommerce ul#shipping_method li {
    margin: 0 !important;
}
#shipping_method li label {
    font-size: 16px !important;
}


/* Policy */

.policy {
    padding: 30px 0;
}
.policy .e-con-inner p {
    margin: 15px;
    font-size: 16px;
}



/* Checkout */

.woocommerce-checkout .announcement-bar, .woocommerce-checkout .custom-header-inner, .woocommerce-checkout div#mobileMenu {
    display: none;
}
.entry-content {
    margin: 0;
}
.woocommerce-info {
    display: none;
}
.woocommerce-checkout footer.site-footer {
    display: none;
}
.woocommerce-checkout .entry-content .woocommerce {
    max-width: 100% !important;
}
#order_review {
    top: 0 !important;
    width: 50% !important;
    padding: 2rem 10rem 2rem 2rem !important;
    border-left: solid 1px #ddd;
    height: 100vh;
}
form.checkout {
    gap: 0 !important;
}
#customer_details {
   padding: 2rem 2rem 2rem 10rem !important;
	width: 50% !important;
    flex: 0 0 50% !important;
}
.woocommerce-checkout .entry-content .woocommerce {
    padding-bottom: 0 !important;
}
.hentry.entry .entry-content {
    padding: 0 !important;
    margin: 0 !important;
}
.woocommerce-additional-fields {
    display: none !important;
}
.checkoutlogo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}
.checkoutlogo svg {
    width: 30px;
    fill: transparent;
    stroke: #fe8e01;
}
.checkoutlogo a img {
    width: 180px;
}
.woocommerce-checkout-payment {
    clear: both;
}
.woocommerce-checkout form input[type=radio] {
    width: 24px !important;
    height: 24px !important;
    padding: 0 !important;
    border-radius: 50% !important;
    border: solid 1px #ccc !important;
    margin-right: 0 !important;
    outline: none !important;
    box-shadow: none !important;
}
.woocommerce-checkout form input[type=radio]:after {
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    background: #fea100 !important;
}
.woocommerce-checkout form input[type=radio]:before {
    display: none !important;
}
.woocommerce-checkout #payment ul.payment_methods {
    background: #fff !important;
    padding: 0 !important;
    border: none !important;
}
.woocommerce-checkout #payment ul.payment_methods li {
    border: solid 1px #ddd;
    padding: 8px 15px 3px;
}
.woocommerce-checkout #payment ul.payment_methods li label {
    margin: 0 !important;
}
.woocommerce-checkout #payment div.payment_box {
    background: #f5f5f5 !important;
}
.woocommerce-checkout #payment div.payment_box::before {
    display: none !important;
}
.woocommerce-checkout #payment ul.payment_methods li:first-child {
    border-radius: 15px 15px 0 0;
}
.woocommerce-checkout #payment ul.payment_methods li:last-child {
 border-radius: 0 0 15px 15px;	
}
.form-row.place-order {
    padding: 0 !important;
    margin: 20px 0 0 !important;
}
.woocommerce-checkout #payment {
    background: none !important;
}
.woocommerce-NoticeGroup.woocommerce-NoticeGroup-checkout {
    width: 100% !important;
}
ul.woocommerce-error {
    margin-bottom: 0 !IMPORTANT;
}
.woocommerce-checkout-payment {
    background: none !important;
    padding: 0 !important;
}
.woocommerce-privacy-policy-text p {
    font-size: 13px !important;
}
ul.checkout-links-list {
    border-top: solid 1px #ddd;
    margin-top: 25px !important;
    padding-top: 18px !important;
    padding-left: 0;
    display: flex;
    list-style-type: none;
    column-gap: 25px;
}

ul.checkout-links-list li a {
    font-size: 14px;
    color: #f2b55f;
}


/* Cart */

.wc-block-components-sidebar-layout {
    justify-content: flex-end !important;
}
.wc-block-components-sidebar-layout .wc-block-components-main {
    width: 100% !important;
}
table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__image img {
    width: 250px !important;
}

td.wc-block-cart-item__image {
    width: 160px;
}
td.wc-block-cart-item__image img {
    border-radius: 12px;
}
.wc-block-components-sidebar.wc-block-cart__sidebar.wp-block-woocommerce-cart-totals-block {
    margin-top: 40px !important;
    width: 40% !important;
    padding: 0 !important;
}
.woocommerce-cart header.entry-header {
    margin-bottom: 15px !important;
    text-align: left !important;
}

#GoToTop {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 48px;
    height: 48px;
    background: #fdb556;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 65px;
    font-size: 20px;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);

    /* Hidden by default */
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}
#GoToTop svg{
	width:28px;
}
#GoToTop.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.custom-header-inner {
    transition: all 0.3s ease;
}

/* Fixed base style */
.custom-header-inner.fixed {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    background: #fff;
    transform: translateY(-100%);
}

/* When scrolling UP */
.custom-header-inner.fixed.show-header {
    transform: translateY(0);
}

.cr-rating-product-name {
    flex-direction: column !important;
    align-items: start !important;
}
.cr-all-reviews-shortcode ol li .comment_container .iv-comment-product-img {
    width: 110px !important;
    border-radius: 10px !important;
}
.cr-all-reviews-shortcode ol.commentlist li .cr-comment-text .cr-rating-product-name .cr-product-name-picture .cr-comment-productname-a:hover {
    display: none !important;
}

.cr-comment-text .description p {
    font-size: 14px !important;
}
button#cr-show-more-all-reviews {
    background: #fdb556 !important;
    border-radius: 6px !important;
    border: none !important;
}
.cr-product-name-picture {
    display: none !important;
}
#reviews div.iv-comment-image img, div.iv-comment-image img {
    width: 100px !important;
    height: 100px !important;
    max-width: 100px !important;
    max-height: 100px !important;
}

.cr-ajax-search {
    background: #f5f5f5;
    padding: 15px !important;
    border-radius: 10px !important;
}

.cr-ajax-search input {
    font-size: 16px !important;
    border-radius: 10px !important;
}

.cr-ajax-search button.cr-button-search {
    background: #ffb657 !important;
    border-color: #ffb657 !important;
    font-size: 18px;
    padding: 6px 20px;
    border-radius: 10px;
}
.product-reviews .cr-reviews-rating {
    display: none !important;
}
.product-info .cr-reviews-rating {
    margin-bottom: 15px !important;
    font-size: 16px !important;
}
.product-info .cr-reviews-rating a {
    text-decoration: none !important;
}


/* Tablet */
@media (max-width: 1024px) {
  .pvs-item {
    flex: 0 0 calc((100% - 16px) / 2.2);
  }
}


@media (max-width: 768px) {
  .announcement-track {
    animation-duration: 12s;
  }
.product-gallery {
    position: relative;
    top: inherit;
}
.footer-col.footer-links {
    order: 3;
}
.add-to-cart-wrap {
    overflow: hidden;
}	
.flex-control-thumbs {
    gap: 0 !important;
}
span.wpcf7-spinner {
    position: absolute;
	left:0;
}
.footer-newsletter form p {
    margin-bottom: 0;
}	
  /* Order table on top */
  #order_review .shop_table {
    order: 1;
  }

  /* Payment section below */
  #order_review #payment {
    order: 2;
  }
  .gap {
    width: 50px;
  }
.wc-block-components-sidebar.wc-block-cart__sidebar.wp-block-woocommerce-cart-totals-block {
    margin-top: 30px !important;
    width: 100% !important;
}
td.wc-block-cart-item__image {
    width: 100%;
}	
  .custom-header-inner {
    padding: 20px;
  }

  .site-logo img {
    max-height: 60px;
  }
  
  .product-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .product-title {
    font-size: 26px;
  }

  .video-strip video {
    width: 180px;
    height: 320px;
  }
  
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-heading {
    font-size: 28px;
  }
  
  .feature-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .feature-content p {
    margin-left: auto;
    margin-right: auto;
  }
  
  .product-feature.reverse .feature-inner {
    grid-template-columns: 1fr;
  }

  .product-feature.reverse .feature-image {
    order: -1;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-newsletter p {
    margin-left: auto;
    margin-right: auto;
  }
  
  .fps-wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .fps-thumbs {
    justify-content: center;
  }
  
  .product-gallery ol.flex-control-nav.flex-control-thumbs li {
        width: 22% !important;
    }
    
    .product-feature {
        padding: 0px 0 30px;
    }
    
    .product-feature .feature-inner {
        display: flex;
        flex-direction: column-reverse;
    }
    
    .product-feature.reverse .feature-inner {
        display: flex;
        flex-direction: column;
    }
    
    .featured-product-section {
        padding: 60px 20px;
    }
    
    .fps-gallery, .fps-content {
        position: relative;
        top: unset;
        z-index: 2;
    }
    
    .fps-wrap {
        gap: 30px;
    }
    
    .fps-content {
        padding: 0;
    }
    
    .fps-title {
        font-size: 25px;
    }
    
    .offer-header:before, .offer-header:after {
        width: 25%;
        top: 10px;
    }
    
    .product-faq {
        padding: 0px 20px 60px;
    }
    
    section.product-reviews {
        padding: 0 20px;
    }
    
    .faq-text {
        text-align: left;
    }
    
    .footer-top {
        padding: 30px 0 0;
    }
    
    .site-footer {
        padding-bottom: 0 !important;
    }
    
.footer-links ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0 1rem;
}
    span#reply-title {
        font-size: 18px;
    }
    
    .feature-content {
        padding: 3rem 2rem;
    }
    
    .testimonial-heading {
        margin-bottom: 20px;
    }
    
    .site-logo {
        margin: 0 !important;
    }
.product-top {
    padding: 0 15px 20px 15px;
}
    
    .pvs-item {
        flex: 0 0 80%;
     }
     
     .footer-newsletter p {
        font-size: 16px;
    }
    
    .faq-title {
        font-size: 30px;
        margin-bottom: 20px;
    }
    
    .footer-brand img {
        max-width: 220px !important;
    }

    .footer-top {
        gap: 30px;
    }
    
    .bloom-content h2, #comments h2, span#reply-title {
    	font-size: 30px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        height: 100%;
        background: #fff;
        z-index: 9999;
        transition: 0.3s ease;
        padding: 20px;
    }

    .mobile-menu-overlay.active {
        left: 0;
        display: block !important;
    }

    .mobile-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 10px;
    }

    .mobile-menu-header h3 {
        margin: 0;
        font-size: 22px;
    }

    .mobile-menu-header button {
        background: none;
        border: none;
        font-size: 26px;
        cursor: pointer;
    }
.menu-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0 10px;
    text-decoration: none;
    color: #191713;
    font-weight: 500;
    border-top: 1px solid #ddd;
}
#customer_details {
    width: 100% !important;
    padding: 0 !important;
}
#order_review {
    width: 100% !important;
    padding: 0 !important;
    border: none !important;
    height: auto !important;
    margin-top: 15px;
}
	h3#ship-to-different-address span {
    font-size: 17px;
}
    button#menuClose {
        background: transparent;
        color: #000;
        padding: 0;
        font-size: 40px;
        font-weight: 300;
    }
    
	ul.checkout-links-list {
    column-gap: 15px;
    padding-bottom: 25px;
}
ul.checkout-links-list li a {
    font-size: 12px;
}	
    .custom-header-inner {
        grid-template-columns: 1fr 1fr 1fr;
    }
    
    .header-icons {
        justify-content: end;
    }
    
    .header-icons a[aria-label="Account"] {
        display: none;
    }
    
    .woocommerce div.product div.images .woocommerce-product-gallery__trigger{
        display: none;
    }
    
    /* Show arrows */
    .flex-direction-nav a {
        opacity: 1 !important;
    }

    /* Style arrows */
    .flex-direction-nav a {
        color: #fff;
        text-decoration: unset;
        font-size: 0 !important;
    }
    
    .flex-direction-nav a {
        width: 30px;
        height: 30px;
        background: #000;
        border-radius: 50%;
        display: flex !important;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        opacity: 1 !important;
    }

    .flex-direction-nav .flex-prev::before {
        content: "";
        width: 10px;
        height: 10px;
        border-left: 2px solid #fff;
        border-bottom: 2px solid #fff;
        transform: rotate(45deg);
        margin-left: 4px;
    }

    .flex-direction-nav .flex-next::before {
        content: "";
        width: 10px;
        height: 10px;
        border-right: 2px solid #fff;
        border-top: 2px solid #fff;
        transform: rotate(45deg);
        margin-right: 5px;
    }

    .flex-control-nav li a {
        background: #ccc;
    }

    .flex-control-nav li a.flex-active {
        background: #000;
    }
    
    ol.flex-control-nav.flex-control-paging {
        display: flex;
        justify-content: center;
        gap: 10px;
        font-size: 0;
        padding: 0;
        list-style: none;
        position: absolute;
        width: 100%;
        bottom: 15px;
    }
    
    .flex-control-nav li a {
        width: 8px;
        height: 8px;
        display: block;
        border-radius: 10px;
    }
    
    ul.flex-direction-nav {
        padding: 0;
        list-style: none;
        position: absolute;
        width: 100%;
        display: flex;
        justify-content: space-between;
        top: 43%;
        padding: 0 10px;
    }
    
    .testimonial-grid {
      display: flex;
      flex-wrap: nowrap;
      overflow: hidden;
      transition: transform 0.4s ease;
    }

    .testimonial-card {
      /*flex: 0 0 100%;*/
    }

    .testimonial-dots {
      text-align: center;
      margin-top: 15px;
    }

    .testimonial-dot {
      width: 8px;
      height: 8px;
      background: #ccc;
      border-radius: 50%;
      display: inline-block;
      margin: 0 5px;
      cursor: pointer;
    }

    .testimonial-dot.active {
      background: #000;
    }
    
    .testi-out {
        width: 100%;
        overflow: hidden;
    }
    
    .testimonial-grid {
        gap: 0;
    }
    
    .product-testimonials {
        padding-bottom: 40px;
    }
   
}


@media (max-width: 480px) {
    .pvs-item {
        flex: 0 0 60%;
    }
    
    .woocommerce-checkout .entry-content .woocommerce {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    form#woocommerce-checkout-form-coupon {
        flex-direction: column;
    }
    
    form#woocommerce-checkout-form-coupon p.form-row.form-row-last,
    form#woocommerce-checkout-form-coupon p.form-row.form-row-last button {
        width: 100%;
    }
    
    .woocommerce-checkout header.entry-header {
        margin-bottom: 20px;
    }
    
    .woocommerce-cart header.entry-header,
    .woocommerce-checkout .woocommerce-shipping-fields {
        margin-top: 20px;
    }
    
    button#place_order {
        margin-top: 20px;
    }
    
    .xoo-wsc-sm-right {
        width: 30%;
    }
    
    .wbdl_widget .offer-header {
        font-size: 14px !important;
    }
    
    .quote-icon {
        width: 32px;
        height: 32px;
        top: 5px;
    	right: 5px;
    }
    
    .stars {
        margin-bottom: 0;
    }
    
    .testimonial-card {
        padding: 0.7rem 1.25rem;
    }
    
    .bloom-section {
        padding: 40px 0 !important;
    }
    
    .bloom-container {
        gap: 25px !important;
    }
    
    .sticky-atc-inner img, .sticky-atc-inner span.badge.price__badge-sale {
        display: none !important;
    }
    
    .sticky-title {
        font-size: 16px;
    }
    
    .sticky-atc-inner {
        gap: 10px;
    }
    
    button.sticky-atc-btn {
        font-size: 14px;
        padding: 8px 10px;
    }
    
    .product-feature {
        padding: 0px 0 0;
    }
    
    section.product-feature.reverse {
        padding: 0px 0 30px;
    }

}



@media (min-width: 992px) {
    form.checkout {
        display: flex;
        gap: 25px;
        align-items: flex-start;
        flex-wrap: wrap;
    }
    
    #customer_details {
        width: 48%;
        flex: 0 0 48%;
        display: flex;
        flex-direction: column;
        position: sticky;
        top: 0;
    }
    
    #customer_details .col-1, #customer_details .col-2 {
        width: 100%;
        max-width: 100%;
        float: none;
    }
    
    #customer_details .col-2 {
        margin-top: 25px;
    }
    
    #order_review_heading {
        display: none !important;
    }
    
    #order_review {
    padding: 0;
    margin-top: 0;
    border-radius: 0;
    position: sticky;
    top: calc(40px + 64px);
    z-index: 1;
    width: 48%;
    background: #f5f5f5;
    padding: 40px;
}
}