/*
Theme Name: Coral And Catania
Theme URI: Coral And Catania
Author: Gopu
Author URI: Coral And Catania
Description: Coral And Catania by Gopu
Version: 1.0
License: GNU General Public License v2 or later
*/


/* Coupon Code Component Styles */
.couponOffers {
    background: linear-gradient(135deg, #a8e6a3 0%, #5ab731 100%);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 15px 0;
    box-shadow: 0 2px 8px rgba(127, 176, 105, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    overflow: hidden;
}

.couponOffers:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(127, 176, 105, 0.4);
}

.couponOffers::before {
    content: '%';
    position : absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background: #03bb66;
    border-radius: 50%;
    display: flex;;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    color: white;
    border: 1px solid rgb(255 255 255 / 80%);
}

.offerText {
    color: #13472d;
    font-size: 16px;
    font-weight: 500;
    margin-left: 48px;
    flex: 1;
}

.offerCode {
    background: white;
    color: #2e9800;
    font-weight: bold;
    font-size: 16px;
    padding: 8px 12px;
    border-radius: 6px;
    margin-right: 8px;
    letter-spacing: 1px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(127, 176, 105, 0.2);
}

.copyButton {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    padding: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
}

.copyButton:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
}

.copyButton.copied {
    background: rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.6);
}

.copyButton svg {
    width: 18px;
    height: 18px;
    opacity: 0.9;
}

.copyButton .tooltip {
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.copyButton .tooltip.show {
    opacity: 1;
}

.copyButton .tooltip::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 4px solid rgba(0, 0, 0, 0.8);
}

/* Loading and Error States */
.couponOffers.loading {
    background: linear-gradient(135deg, #e0e0e0 0%, #c0c0c0 100%);
    color: #666;
}

.couponOffers.loading::before {
    content: '⏳';
    animation: pulse 1.5s infinite;
}

.couponOffers.error {
    background: linear-gradient(135deg, #ffb3b3 0%, #ff6b6b 100%);
    color: white;
}

.couponOffers.error::before {
    content: '⚠';
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .couponOffers {
        padding: 14px 16px;
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .offerText {
        font-size: 13px;
        margin-left: 44px;
        flex-basis: 100%;
        margin-bottom: 8px;
    }
    
    .offerCode {
        font-size: 13px;
        padding: 6px 10px;
    }
    
    .copyButton {
        min-width: 34px;
        height: 34px;
    }
    
    .copyButton svg {
        width: 16px;
        height: 16px;
    }
}

/* Discovery Set Bundle Box Sticky Styles */
.sample_selection {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.sample_product_grid {
    flex: 1;
}

.your_box {
    position: sticky;
    top: 20px;
    width: 350px;
    flex-shrink: 0;
    z-index: 100;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
    padding: 20px;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
}

.your_box.sticky-active {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    border: 2px solid #7cb72a;
}

@media (max-width: 768px) {
    .sample_selection {
        flex-direction: column;
    }
    
    .your_box {
        position: sticky;
        top: 10px;
        width: 100%;
    }
}

/* Discovery Set Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    padding: 15px 20px;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    max-width: 350px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.3s ease;
}

.notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification-success {
    background-color: #28a745;
    border-left: 4px solid #1e7e34;
}

.notification-warning {
    background-color: #ffc107;
    color: #212529;
    border-left: 4px solid #e0a800;
}

.notification-error {
    background-color: #dc3545;
    border-left: 4px solid #c82333;
}

/* Mobile Filter Modal Styles */
.mobile-filter-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    visibility: hidden;
}

.mobile-filter-modal.show {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.mobile-filter-modal .modal-content {
    background: white;
    width: 90%;
    max-width: 500px;
    max-height: 85vh;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.mobile-filter-modal.show .modal-content {
    transform: translateY(0);
}

.mobile-filter-modal .modal-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
}

.mobile-filter-modal .modal-title {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.mobile-filter-modal .btn-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s ease;
}

.mobile-filter-modal .btn-close:hover {
    background-color: #f0f0f0;
    color: #333;
}

.mobile-filter-modal .modal-body {
    padding: 20px;
    max-height: 60vh;
    overflow-y: auto;
}

.mobile-filter-modal .modal-footer {
    padding: 15px 20px;
    border-top: 1px solid #eee;
    display: flex;
    gap: 10px;
    background: #f8f9fa;
}

.mobile-filter-modal .modal-footer .btn {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mobile-filter-modal .modal-footer .btn-secondary {
    background: #6c757d;
    color: white;
}

.mobile-filter-modal .modal-footer .btn-secondary:hover {
    background: #5a6268;
}

.mobile-filter-modal .modal-footer .btn-primary {
    background: #007bff;
    color: white;
}

.mobile-filter-modal .modal-footer .btn-primary:hover {
    background: #0056b3;
}
.product-sub-title h5 {
    color: #fc5832;
    font-weight: 700 !important;
    font-size: 21px;
}
.tf-product-form-bottle-wrap {
    max-width: 400px;
}
/* Mobile filter toggle button */
.mobile-filter-toggle .btn {
    padding: 7px 20px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.mobile-filter-toggle .btn:hover {
    background-color: #495057 !important;
    border-color: #495057 !important;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .mobile-filter-modal .modal-content {
        width: 95%;
        max-height: 90vh;
    }
    
    .mobile-filter-modal .modal-body {
        max-height: 70vh;
    }
}

/* Mobile Filter Offcanvas Scrolling */
.canvas-body.mobile-filters-content {
    max-height: 100vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 20px;
}


/* Mobile filter styling */
.mobile-filters-content .widget-facet {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
}

.mobile-filters-content .widget-facet:last-child {
    border-bottom: none;
}

/* Hide desktop sidebar on mobile */
@media (max-width: 991.98px) {
    .tf-shop-sidebar.d-none.d-lg-block {
        display: none !important;
    }
}

/* Ensure mobile offcanvas doesn't inherit desktop sidebar content */
.offcanvas .tf-shop-sidebar {
    display: none !important;
}

/* Prevent any desktop sidebar content from appearing in mobile */
.canvas-body .tf-shop-sidebar,
.canvas-body .wrap-sidebar-mobile {
    display: none !important;
}

/* Canvas footer positioning */
.canvas-footer {
    position: sticky;
        bottom: -150px;
    background: #f8f9fa;
    border-top: 1px solid #eee;
    padding: 15px 20px;
    margin-top: auto;
    display: flex;
}
.canvas-footer .btn.btn-primary {
    font-size: 14px;
}

.canvas-footer .btn.btn-secondary {
    font-size: 14px;
}

/* Smooth scrolling for mobile filters */
.mobile-filters-content {
    scroll-behavior: smooth;
}

/* Better spacing for mobile filter sections */
.mobile-filters-content .current-scrollbar {
    max-height: 200px;
    overflow-y: auto;
}
.bundle-info .discount-info {
    font-size: 16px;
    color: #843c01;
    margin-bottom: 10px;
    text-align: center;
    width: 100%;
}

.bundle-info .savings {
    font-size: 17px;
    font-weight: 600;
    text-align: center;
}

.bundle-info {
    min-width: 100%;
}
.tf-product-bundle-image.frequently_total {
    max-width: 160px;
}
.toggle-content h3 {
    font-size: 26px;
    font-weight: 500;
}
.description table {
   width: 100%;
   border-collapse: collapse;
   font-size: 0.95rem;
}

.description thead {
    background: #fff;
    color: #000000;
    font-weight: 500;
}

.description th {
   padding: 1rem 1.5rem;
   text-align: left;
   font-weight: 500;
   font-size: 1rem;
   letter-spacing: 0.5px;
}

.description th:first-child {
   border-radius: 0;
}

.description th:last-child {
   border-radius: 0;
}

.description tbody tr {
   transition: all 0.3s ease;
   border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.description tbody tr:hover {
   background: linear-gradient(135deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.02) 100%);
   transform: translateX(5px);
   box-shadow: inset 4px 0 0 #6c757d;
}

.description tbody tr:nth-child(even) {
   background: rgba(0, 0, 0, 0.02);
}

.description tbody tr:nth-child(even):hover {
   background: linear-gradient(135deg, rgba(0, 0, 0, 0.07) 0%, rgba(0, 0, 0, 0.03) 100%);
}

.description td {
   padding: 1rem 1.5rem;
   vertical-align: top;
   line-height: 1.6;
}

.description td:first-child {
   font-weight: 500;
   color: #2c3e50;
   background: rgba(0, 0, 0, 0.03);
   border-right: 3px solid rgba(108, 117, 125, 0.3);
   width: 200px;
   position: relative;
}

.description td:first-child::before {
   content: '';
   position: absolute;
   left: 0;
   top: 0;
   bottom: 0;
   width: 3px;
   background: linear-gradient(180deg, #6c757d, #495057);
   opacity: 0;
   transition: opacity 0.3s ease;
}

.description tbody tr:hover td:first-child::before {
   opacity: 1;
}

.description td:last-child {
   color: #34495e;
}
@media screen and (max-width:768px){
  .main-menus{
    display: none !important;
  }
  .child-1 {
    order: 1;
  }

  .child-2 {
    order: 2;
  }

  .child-3 {
    order: 3;
  }
  .child-4 {
    order: 4;
  }
  .logo-header img{
    width: 100% !important;
    margin: 0 !important;
  }
}
p.stock.in-stock {
    padding: 3px 10px;
    border: solid 1px #279508;
    display: inline-block;
    margin-bottom: 15px;
    color: #279508;
    font-weight: bold;
}
.tf-product-info-wrap.position-relative{
  height: 100%;
}
h1.product-title{
  font-size: 36px;
  font-weight: 600;
  line-height: 48px;
  color: #313233;
}
.tf-image-zoom.single-gallery-image {
    cursor: zoom-in;
  }
.seo-text-wrapper h3 {
      font-size: 20px;
      font-weight: 600;
}
.seo-text-wrapper h2 {
      font-size: 24px;
      font-weight: 600;
}
.woocommerce-order h3{
    font-size: 36px;
}
.woocommerce-order h2{
    font-size: 46px;
}
#shoppingCart{
  z-index: 5000000000 !important;
}
body.woocommerce-checkout.woocommerce-page.woocommerce-order-pay {
    padding-bottom: 62px;
}
.description h3 {
    font-size: 27px;
    margin-bottom: 10px;
    font-weight: bold;
}
.card-product .card-product-info .old-price{
  min-width: 50%;
}
.card-product.style-9 .card-product-info .title{
  height: 40px;
}
.card-product.style-9 .card-product-info .inner-info .d-flex.flex-wrap {
    height: 44px;
}
.main-header.line {
    background-color: #000;
    color: #fff;
    padding: 0px 0px;
}
.dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp {
    background: #000 !important;
}
li.menu-item.current-menu-item {
    border-bottom: solid 2px #000;
}
.box-nav-ul.main-menus .menu-item {
    height: 80px;
    line-height: 80px;
    padding: 0;
}
#header .nav-icon .nav-icon-item, #header .nav-icon a{
  color: #fff !important;
}
.header-bottom.line.tf-md-hidden {
    background-color: #fff;
}
.dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input{
  background-color: #fff!important;
    font-family: "Montserrat", sans-serif !important;
}
#header.light-bg .main-header.line{
  background-color: #fff;
  color: #000;
}
#header.light-bg .main-header.line .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp{
  background-color: #fff !important;
  color: #000;
}
#header.light-bg .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp button.dgwt-wcas-search-submit {
  min-height: 22px;
    min-width: 33px;
    height: 22px;
    width: 33px;
}
#header.light-bg .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input {
    padding: 8px 16px 8px 43px;
    line-height: 24px;
    font-size: 14px;
    border: solid 1px #ccc;
}
#header.light-bg .nav-icon .nav-icon-item, #header .nav-icon a {
    color: #000 !important;
}
#header.light-bg a.logo-header .logo {
    max-width: 300px;
    margin-right: 30px;
}
.perfume_menu, .leather_menu{
  display: none;
}
.perfume_menu .box-nav-ul .item-link,
.leather_menu .box-nav-ul .item-link{
  text-transform: capitalize;
}
#header.light-bg .tf-form-search{
  width: 100%;
}

#header.light-bg.header-default .box-nav-ul{
  gap: 30px;
}
.header-default .box-nav-ul{
  font-family: "Montserrat", sans-serif !important
}
#header .box-nav-ul .item-link{
  font-weight: 400;
}
#header .box-nav-ul .current-menu-item .item-link{
  font-weight: 600;
}
#shoppingCart{
  z-index: 5000000000 !important;
}
body.woocommerce-checkout.woocommerce-page.woocommerce-order-pay {
    padding-bottom: 62px;
}
.description h3 {
    font-size: 27px;
    margin-bottom: 10px;
    font-weight: bold;
}
.card-product .card-product-info .old-price{
  min-width: 50%;
}
.card-product.style-9 .card-product-info .title{
  height: 40px;
}
.card-product.style-9 .card-product-info .inner-info .d-flex.flex-wrap {
    height: 44px;
}

button.wc-block-components-button.wp-element-button.wc-block-components-checkout-place-order-button.contained {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    will-change: background-color, color, border;
    pointer-events: auto;
    overflow: hidden;
    font-size: 14px;
    line-height: 16px;
    font-weight: 500;
    box-sizing: border-box;
    padding: 14px 24px;
    display: inline-flex;
    border-radius: 3px;
    align-items: center;
    border: 1px solid transparent;
    background-color: transparent;
    cursor: pointer;
    background-color: #7CB72A !important;
    color: #fff;
    text-transform: uppercase;
}
.description ul li {
    margin-bottom: 6px;
    line-height: 22px;
}

.description p {
    line-height: 20px;
}

.toggle-content .description h2 {
    font-size:28px;
    font-weight:bold;
    margin-bottom: 10px;
    line-height: 30px;
    margin-top: 30px;
}
.toggle-content .description h3{
    font-size:24px;
    font-weight:bold;
    margin-bottom: 10px;
    line-height: 30px;
    margin-top: 30px;
}
.toggle-content .description ul{
    list-style:circle;
    margin-left: 30px
}
.toggle-content .description ul li{
    line-height: 22px;
    list-style: initial;
}
.toggle-content .description table{
    border: solid 1px #ccc;
}
a.add_to_wishlist.single_add_to_wishlist.box-icon.bg_white.wishlist.btn-icon-action.added {
    background-color: var(--main) !important;
    color: var(--white);
}
.form-contact .d-flex > span {
    width: calc(50% - 15px) !important;;
    min-width: calc(50% - 15px);
    flex: 1;
}
.form-contact .d-flex{
    justify-content: space-between;
}

.toggle-content .description table tr td {
    border: solid 1px #ccc;
    padding-left: 10px;
}
form.woocommerce-form.woocommerce-form-login.login {
    border: 1px solid #000000;
}
td.woocommerce-orders-table__cell {
    font-size: 14px;
}
.my-account-content h2{
  font-size: 28px;
}
.my-account-content h3{
  font-size: 24px;
}
.offcanvas.offcanvas-start.show .wrap-sidebar-account {
    display: block;
}
.offcanvas.offcanvas-start.show {
    padding-top: 0px;
    z-index: 50000000000000 !important;
}
li.menu-item.menu-item-has-children.nav-mb-item .menu-item-wrapper {
    display: flex;
    justify-content: space-between;
}

.nav-ul-mb .btn-open-sub {
    border: none;
    background: transparent;
}

.zoomWrapper {
    width: 100% !important;
    height: 100%!important;
}

.toggle-content .description table h3, .toggle-content .description table h2 {
    margin-top: 12px;
}

.toggle-content .description table {
    margin-top: 20px;
}
.toggle-content .description p{
    line-height: 24px;
    margin-bottom: 15px !important;
}
i.icon.icon-star.active {
    color: var(--yellow);
}
.tf-page-privacy-policy h4{
  font-size: 20px;
}
.original-price {
    text-decoration: line-through;
    color: #999;
    margin-right: 8px;
}

.width-400{
  width: 400px;
}
.border-top{
  border-top: solid 1px #ccc;
}

.wc-block-checkout__gift-wrap-option {
    margin: 1.5em 0;
    padding: 1em;
    background: #fff;
    border-radius: 4px;
}

.wc-block-checkout__gift-wrap-option .wc-block-components-checkbox {
    display: flex;
    align-items: center;
    margin: 0;
}

.wc-block-checkout__gift-wrap-option .wc-block-components-checkbox__input {
    margin: 0 8px 0 0;
}

.wc-block-checkout__gift-wrap-option .wc-block-components-checkbox__label {
    font-size: 14px;
    line-height: 1.375;
    position: relative;
    margin: 0;
    display: flex;
    align-items: center;
}

/* Match blocks checkout styling */
.wc-block-checkout__gift-wrap-option .wc-block-components-checkbox__mark {
    fill: currentColor;
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    display: none;
}

.wc-block-checkout__gift-wrap-option .wc-block-components-checkbox__input:checked + .wc-block-components-checkbox__mark {
    display: block;
}
li.menu-item {
    position: relative;
}
.box-nav-ul .menu-item:hover > .sub-menu {
    /* padding: 0px 20px;
    border-top: solid 2px #8dc63f; */
    left: 0;
}
.tf-slideshow {
    overflow: hidden;
    /* height: 600px; */
}
del {
    color: #ccc;
}
span.badge.bg_green.ms-auto {
    width: 48px;
    text-wrap: auto;
}
del span.woocommerce-Price-amount.amount bdi {
    font-weight: normal !important;
    font-size: 16px;
}
.yith-add-to-wishlist-button-block.yith-add-to-wishlist-button-block--initialized {
    transform: translateY(20px);
    opacity: 0;
    visibility: hidden;
            transition: transform 0.4s ease 0.2s, opacity 0.4s ease 0s;
}

.card-product:hover .yith-add-to-wishlist-button-block.yith-add-to-wishlist-button-block--initialized {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

a.yith-wcwl-add-to-wishlist-button.yith-wcwl-add-to-wishlist-button--anchor {
    width: 42px;
    height: 42px;
    background-color: #fff;
    border-radius: 50px;
    text-align: center;
}

a.yith-wcwl-add-to-wishlist-button.yith-wcwl-add-to-wishlist-button--anchor svg {
    width: 20px !important;
    margin-left: 8px;
}
.yith-add-to-wishlist-button-block{
  margin: 0;
}
.tf-slideshow .banner-wrapper{
  text-align: center;
}
.whatsAppFloating {
    right: 20px;
    bottom: 30px;
    display: flex;
    z-index: 1000;
    position: fixed;
    transition: all 250ms ease-in-out 0s;
    flex-direction: column-reverse
}
.whatsAppFloating a {
    color: #fff;
    width: 62px;
    cursor: pointer;
    height: 62px;
    line-height: 62px;
    font-size: 32px;
    margin: 0px auto 10px;
    display: block;
    position: relative;
    box-shadow: #00000033 0px 2px 6px 1px;
    text-align: center;
    transition: all 250ms ease-in-out 0s;
    visibility: visible;
    user-select: none;
    border-radius: 50%;
    background-size: cover;
    text-decoration: none;
    background-color: #25d366;
    background-image: none;
    background-repeat: no-repeat;
    background-position: center center;
    outline: none !important;
    max-width: none !important
}
.card-product .card-product-info .price-primary del{
  display: block !important;
}
.card-product .card-product-info span.woocommerce-Price-amount.amount {
    display: inline;
}
.post-content h1 {
    font-size: 38px;
    line-height: 42px;
    margin-bottom: 10px;
}

.post-content h2 {
    font-size: 30px;
    margin-bottom: 10px;
    margin-top: 30px;
    line-height: 34px;
}
.post-content h3 {
    font-size: 25px;
    margin-bottom: 10px;
    margin-top: 30px;
    line-height: 29px;
}
.post-content h4 {
    font-size: 22px;
    margin-bottom: 10px;
    margin-top: 30px;
    line-height: 26px;
}
.post-content h5 {
    font-size: 18px;
    margin-bottom: 10px;
    margin-top: 30px;
    line-height: 22px;
}
.post-content p{
    margin-bottom: 20px;
}
.post-content ul{
  margin-left: 30px;
  margin-bottom: 30px;
}
.post-content ul li{
  list-style: disc;
}
.tf-image-zoom.single-gallery-image {
    position: relative !important;
}

a.arrow-link {
    position: absolute;
    right: 10px;
    width: 40px;
    height: 40px;
    top: 48%;
    background-color: #fff;
    line-height: 40px;
    text-align: center;
    border-radius: 100%;
}
.variation_price .new-price.price-primary {
    font-weight: 600;
    font-size: 18px;
}

.variation_price .compare-at-price {
    font-size: 14px !important;
}

.variation_price .discount-badge {
    background-color: rgb(252, 87, 50);
    border-radius: 28px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    font-size: 12px;
    font-weight: 700;
    line-height: 28px;
    color: var(--white);
}

a.arrow-link:hover {
    background-color: #aee761;
}
.tf-dropdown-sort .text-sort-value{
  text-transform: uppercase;
}
.zoomContainer {
    z-index: 150000;
}
.tf-dropdown-sort.full .select-item {
    line-height: 40px;
    text-transform: uppercase;
}
i.icon-safe.fw-30 {
    font-size: 30px;
    color: #ff8311;
}
.swiper-button-prev.button-style-arrow.thumbs-prev {
    z-index: 99999999999999;
}
.single_product_excerpt table {
    max-width: 100%;
}
.description table {
    max-width: 100%;
}
@media screen and (min-width:768px){
  .swiper-slide .card-product .card-product-info .title{
    height: 38px;
  }
  .swiper-slide span.new-price.price-primary del {
    display: block;
  }

  .tf-cur.mb-4.tf-md-hidden {
      display: flex
    }
  .tf-main-product.section-image-zoom {
    overflow: hidden;
  }
  div#gallery-swiper-started {
    border: solid 1px #ccc;
}
}

@media screen and (max-width:768px){
  form.wc-block-components-form.wc-block-checkout__form {
    padding-bottom: 74px;
  }
  .tf-product-info-quantity {
    position: fixed;
    bottom: 67px;
    padding: 6px 20px;
    left: 0px;
    padding-bottom: 10px;
    background-color: #f4f4f4;
    width: 102vw;
    border-top: solid 2px #ccc;
    z-index: 1050;
    border-bottom: solid 1px #ccc
  }
  #tf-product-cart-variable .tf-product-info-quantity, .tf-product-info-quantity.has_cistom_fields {
      position: static;
      padding: 0;
      width: 100%;
      border: none;
      background-color: transparent;
      margin-bottom: 26px;
  }
  body.product-template-default.single.single-product.postid-964.logged-in.admin-bar.woocommerce.theme-coral25.woocommerce-page.woocommerce-js.customize-support {
      padding-bottom: 17px;
  }
  .tf-product-info-quantity .tf-product-btn-wishlist {
    display: none;
  }
  .tf-product-info-quantity form.cart .d-flex {
    justify-content: space-between !important;
  }
  .tf-product-info-quantity button.tf-btn.btn-fill.border-0.border-none.bg_green-2.justify-content-center.fw-6.fs-16.flex-grow-1.animate-hover-btn.btn-add-to-cart {
      height: 48px;
  }
  .tf-product-info-quantity .variant-picker-item.mt-3 {
    margin-top: 0 !important;
  }

  .tf-product-info-quantity .variant-picker-label {
      margin-bottom: 0px !important;
  }

  .tf-product-info-quantity .variations.mb-4 {
      margin-bottom: 5px !important;
  }


  .card-product.style-9 .card-product-info .inner-info .d-flex {
    flex-wrap: wrap;
}
  .tf-product-info-wrap.position-relative:before{
    width: 100%;
  }
  .swiper-slide span.new-price.price-primary del {
    display: block;
}
.swiper-slide .card-product .card-product-info .title{
  height: 38px;
}
.tf-product-info-list > div:not(:last-child){
  margin-bottom: 0;
}
.flat-spacing-4.pt-mobile-0{
  padding-top: 0;
}
.flat-spacing-4.pb-mobile-10{
  padding-bottom: 20px !important;
}

.swiper-slide .card-product.style-9 .card-product-info .inner-info > a{
    height: 38px;
}
.tf-product-info-wrap.position-relative {
    padding: 20px;
}
  .tf-icon-box .content p {
    color: #9fdd4b;
    text-transform: uppercase;
    font-size: 12px;
}
section.flat-spacing-1.flat-iconbox.bg_green.text-white {
    padding: 30px 0px;
    padding-bottom: 20px;
}
.tf-icon-box .content .title {
  font-size: 12px;
  height: 39px;
}
  .whatsAppFloating{
    display: none;
  }
  .nav-ul-mb .sub-nav-menu {

    border:none;
  }
  .tf-cur.mb-4.tf-md-hidden {
    display: none;
  }
  .wrap-slider img {
      width: 100%;
      height: auto;
      object-fit: cover;
      /* object-position: -380px; */
  }
  .tf-slideshow .wrap-slider {
      height: auto;
  }
  .swiper-slide.swiper-slide-active .box-content .col-5.ms-auto.text-center {
    width: 100%;
  }
  .wrap-slider .box-content {
    position: absolute;
    left: 0;
    right: 0;
    top: auto;
    bottom: 0;
    /* transform: translateY(-50%); */
    padding: 40px 0px;
    background-color: #00000052;
}
.wrap-slider .box-content h1{
  font-size: 30px;
  font-size: 44px;
}
span.badge.bg_green.ms-auto {
    width: 48px;
    text-wrap: auto;
}

.card-product .card-product-wrapper .on-sale-wrap .on-sale-item {
    padding: 6px 10px;
}

.card-product .card-product-wrapper .on-sale-wrap .on-sale-item span {
    text-align: center;
    font-size: 12px;
    line-height: 13px;
}

.on-sale-wrap.text-start.d-flex.justify-content-between {
    align-items: center;
}
section.tf-slideshow.slider-cta.position-relative .banner-wrapper {
    height: auto;
}
}
@media screen and (max-width:608px){
  .grid-layout.wrapper-shop.gap-20 > div {
      padding: 10px 6px;
      border: solid 1px #e5e5e5;
      gap: 10px;
  }

  .grid-layout.wrapper-shop.gap-20[data-grid=grid-4] {
      gap: 10px;
  }
}
.tf-content-wrap .description p{
  margin-bottom: 20px;
}
.content_box p {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 20px;
}
.content_box ul {
    list-style: circle;
    margin-left: 30px;
    margin-bottom: 30px;
}

ul.footer-menu-list li a {
    font-size: 15px;
}

ul.footer-menu-list li {
    line-height: 24px;
}

.content_box ul li {
    list-style: disc;
    line-height: 24px;
}

.content_box h3 {
    font-size: 20px;
    font-weight: bold;
}
/*  */
.product-brand {
    margin-bottom: 8px;
}

.brand-name {
    display: inline-block;
    background-color: #fff;
    color: #000;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid #e0e0e0;
    margin-right: 8px;
}

.brand-name:hover {
    background-color: #e8e8e8;
    color: #333;
}

/* Alternative minimal style */
.brand-name.minimal {
    background: none;
    border: none;
    padding: 0;
    color: #888;
    font-size: 13px;
    font-weight: 400;
    text-transform: none;
    letter-spacing: normal;
}

/* Alternative badge style */
.brand-name.badge {
    background-color: #007cba;
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}
/* Size Display Styles */
.product-size-display {
    margin-bottom: 16px;
}

.size-badge {
  display: inline-block;
background-color: #f8fdff;
color: #0f93e1;
font-size: 13px;
font-weight: 500;
padding: 6px 12px;
border-radius: 8px;
border: 1px solid #a6d2ff;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.tf-cart-fee-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Color Swatches for Simple Products - Using same classes as Variable Products */
.color-swatches-meta {
    margin-bottom: 16px;
}

.color-swatches-meta .color-palette-selector {
    margin-top: 10px;
}

.color-swatches-meta .color-palette-selector .list-color-product {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.color-swatches-meta .color-palette-selector .list-color-item {
    position: relative;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.color-swatches-meta .color-palette-selector .list-color-item:hover {
    transform: scale(1.1);
    border-color: #ddd;
}

.color-swatches-meta .color-palette-selector .list-color-item.active {
    border-color: #000;
    transform: scale(1.15);
}

.color-swatches-meta .color-palette-selector .swatch-value {
    width: 32px;
    height: 30px;
    border-radius: 50%;
    display: block;
    border: 1px solid rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.color-swatches-meta .color-palette-selector .color-image {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.color-swatches-meta .color-palette-selector .tooltip {
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.color-swatches-meta .color-palette-selector .list-color-item:hover .tooltip {
    opacity: 1;
}
.icon_box.colour-3 {
    background-color: #84310e;
}

.icon_box.colour-4 {
    background-color: #ae0f1e;
}

.icon_box.colour-2 {
    background-color: #e7a607;
}

.icon_box.colour-1 {
    background-color: #3d7b07;
}
section.flat-spacing-14.bg-light_gray.image_bgs{
    position: relative;
}
section.flat-spacing-14.bg-light_gray.image_bgs .container{
    position: relative;
}
section.flat-spacing-14.bg-light_gray.image_bgs:before {
    content: '';
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    position: absolute;
    background-color: #ffffff8f;
    display: block;
    width: 100%;
    height: 100%;
}

/* Fix gallery images with incorrect width/height attributes */
.tf-product-media-main .swiper-slide img.tf-image-zoom,
.tf-product-media-main .swiper-slide img.single-gallery-image {
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
    min-height: 400px !important;
    object-fit: cover !important;
    display: block !important;
}

/* Ensure gallery container maintains aspect ratio */
.tf-product-media-main .swiper-slide {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 400px !important;
}

/* Thumbnail gallery fixes */
.tf-product-media-thumbs .swiper-slide img {
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
    object-fit: cover !important;
    display: block !important;
}

/* Product Gallery Video Styles */
.video-slide .video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-thumbnail {
    position: relative;
    width: 100%;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-thumbnail:hover {
    transform: scale(1.02);
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.9;
}

.video-thumbnail:hover .video-play-button {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
}

.video-player {
    position: relative;
    width: 100%;
    height: 100%;
}

.video-player iframe,
.video-player video {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 8px;
}

/* Video thumbnail indicator */
.video-thumb-indicator {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-thumb-indicator svg {
    width: 16px;
    height: 16px;
}

/* Responsive video styles */
@media (max-width: 768px) {
    .video-player iframe,
    .video-player video {
        height: 250px;
    }
    
    .video-play-button svg {
        width: 40px;
        height: 40px;
    }
}