/**
 * 
 * COMMON STYLE
 *
 * Cursor - September 26, 2025
 *
 * Applied to the whole web-site
 * 
 */
.left {
    float: left
}

.right {
    float: right
}

.clear {
    clear: both;
}

.m16 {
    margin-top: 16px
}

.m24 {
    margin-top: 24px
}

.m32 {
    margin-top: 32px
}

.m40 {
    margin-top: 40px
}

.m48 {
    margin-top: 48px
}

.m64 {
    margin-top: 64px
}

.m80 {
    margin-top: 80px
}

.m120 {
    margin-top: 120px
}

.m128 {
    margin-top: 128px
}

body {
    font-family: "Poppins", sans-serif;
    color: #242426;
    font-style: normal;
    font-weight: 400;
}

.hero,
h1,
h2,
h3,
h4,
.accent,
.button,
.submit,
button {
    font-family: "Fredoka", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-variation-settings:
        "wdth" 100;
    font-size: 48px;
    line-height: 72px;
}

h1 {
    font-size: 32px;
    line-height: 48px;
}

h2 {
    font-size: 24px;
    line-height: 32px;
}

h3 {
    font-size: 20px;
    line-height: 32px;
}

h4 {
    font-size: 18px;
    line-height: 24px;
}

.normal,
.normal strong,
.button,
button {
    font-size: 16px;
    line-height: 24px;
}

.small,
.small strong,
.description p,
.woocommerce-breadcrumb,
lost_password {
    font-size: 14px;
    line-height: 20px;
}

.smallest,
.smallest strong,
.woocommerce-verification-required {
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
}

.accent {
    font-size: 20px;
    line-height: 32px;
}

.big,
.big strong {
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
}

.biggest,
.biggest strong {
    font-size: 24px;
    line-height: 32px;
}

strong {
    font-weight: 700;
}

a {
    color: #3651D9;
}

a:hover {
    text-decoration: underline;
}

.button,
.button:visited,
.button:disabled,
.button.secondary,
.button.secondary:visited,
.button.secondary:disabled,
.button.text,
.button.text:visited,
.button.text:disabled,
.submit,
.submit:visited,
.submit:disabled,
button {
    padding: 12px 16px;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    border-radius: 4px !important;
    display: inline-block;
    background-color: #3651D9;
    border: none;
    cursor: pointer;
    transition: all 0.8s;
}

.button:hover,
.submit:hover,
button:hover {
    background-color: #142ACC;
    box-shadow: 0 4px 8px rgba(20, 42, 204, 0.25);
    text-decoration: none;
    color: #fff;
}

.button:disabled,
.submit:disabled,
button:disabled {
    background-color: #85A2F2;
    color: #3651D9;
    cursor: not-allowed;
}

.button.secondary,
.button.secondary:visited {
    background: #E6EEFF;
    border: 2px solid #3651D9;
    color: #3651D9;
}

.button.secondary:hover {
    background: #85A2F2;
    box-shadow: 0 4px 8px rgba(11, 112, 6, 0.25);
}

.button.secondary:disabled {
    color: #5C7AE6;
}

.button.text,
.button.text:visited {
    padding: 12px 0;
    background: none;
    border: none;
    color: #3651D9;
}

.button.text:hover {
    text-decoration: underline;
    box-shadow: none;
}

.button.text:disabled {
    color: #142ACC;
}

label {
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    margin: 0 0 4px 0;
}

.hidden {
    display: none;
}

.flex {
    display: flex;
    display: -webkit-flex;
    /* Safari */
    column-gap: 32px;
}

.greyish {
    background-color: #F5F6F7;
    border-radius: 4px;
    padding: 24px;
}

.grey-border {
    border: 2px solid #F5F6F7;
    border-radius: 4px;
    padding: 24px;
}

.btn_medium {
    padding: 8px 16px;
}

#primary {
    margin-top: 24px !important;
}

.wrapper .woocommerce {
    margin-top: 24px;
}


/* -------------------------------------------------
                     Alerts
 ------------------------------------------------- */
.woocommerce-notices-wrapper {
    position: fixed !important;
    bottom: 20px;
    right: 20px;
    width: auto !important;
    max-width: 300px;
    z-index: 10000;
    pointer-events: none;
    /* let clicks through, unless on the notice itself */
}

.woocommerce-message,
#form-message .success,
#form-message .error {
    background-color: #E6FFE9;
    border: 1px solid #0B7006;
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(83, 184, 160, 0.5);
    font-size: 14px;
    line-height: 20px;
    padding: 16px 24px;
    box-sizing: border-box;
}

.woocommerce-message .normal {
    color: #0B7006;
    margin: 0 0 8px;
}

.woocommerce-message .small {
    color: #242426;
}

.woocommerce-error li {
    background-color: #FFECE6;
    border: 1px solid #D60B00;
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(245, 137, 110, 0.5);
    color: #E03321;
    font-size: 14px;
    line-height: 20px;
    padding: 16px 24px;
    box-sizing: border-box;
}

.woocommerce-info {
    margin: auto;
}

.woocommerce-message .button {
    font-size: 14px;
    line-height: 20px;
    padding: 8px 12px;
    margin: 16px 0 0;
}

#form-message .error {
    background-color: #FFECE6;
    border: 1px solid #D60B00;
    box-shadow: 0 4px 8px rgba(245, 137, 110, 0.5);
}

.woocommerce-message .wc-forward {
    display: none;
}

/* Remove 'Continue shopping button from the cart notice' */
.cky-consent-bar .cky-banner-btn-close {
    right: 16px !important;
    top: 16px !important;
}

.cky-consent-bar .cky-banner-btn-close img {
    width: 16px !important;
    height: 16px !important;
}


/* -------------------------------------------------
                     Navigation
 ------------------------------------------------- */
.site-header {
    background-color: #E6EEFF;
    padding: 12px 24px;
    position: sticky;
    top: 0;
    z-index: 1000;
    /* Ensure the header is above other content */
    transition: background-color 0.3s;
    /* Smooth transition for background color change */
}

.site-header.scrolled {
    background-color: rgba(230, 238, 255, 0.95);
    padding: 4px 24px;
}

.site-header .wrapper {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.mobile-menu-icon,
.main-menu {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.main-menu ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 24px;
}

.main-menu a {
    text-decoration: none;
    color: #242426;
    padding: 8px 12px;
    transition: background-color 0.3s;
}

.main-menu a:hover {
    background-color: #85A2F2;
    border-radius: 2px;
}

.main-menu a.active {
    border-bottom: 2px solid black;
    /* Style for active menu item */
    padding-bottom: 3px;
    /* Adjust padding to account for border */
}

#mobile-dropdown {
    padding: 40px 0 0;
}

#mobile-dropdown ul li a {
    display: block;
    position: relative;
    padding: 16px 32px;
    text-align: center;
}

.main-menu ul li a span {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
}

#mobile-dropdown ul li a span {
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
}

#mobile-dropdown ul li a:focus {
    background-color: #85A2F2
}

.logo {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 16px;
}

.logo img {
    max-height: 80px;
    transition: max-height 0.3s;
    /* Smooth transition for background color change */
}

.scrolled .logo img {
    max-height: 40px;
}

.icons {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.icons a {
    text-decoration: none;
    color: #fff;
    margin: 0 0 0 16px;
}

.header-icon {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.header-icon:hover .tooltip {
    visibility: visible;
    opacity: 1;
}

.cart-count {
    display: block;
    position: relative;
    width: 24px;
    height: 24px;
    background: #3651D9;
    border-radius: 100px;
    text-align: center;
    color: #FFFFFF;
    padding: 2px 0;
    margin: -8px 0 0 -8px;
}

.tooltip {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    bottom: -125%;
    /* Position above the icon */
    left: 50%;
    transform: translateX(-50%);
    /* Center the tooltip */
    padding: 5px 10px;
    background-color: #333;
    color: #fff;
    border-radius: 4px;
    white-space: nowrap;
    transition: opacity 0.3s;
}

.tooltip::after {
    /* Arrow pointing to the icon */
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 0 5px 5px 5px;
    border-style: solid;
    border-color: transparent transparent #333 transparent;
}


/* -------------------------------------------------
                     Products Loop
 ------------------------------------------------- */
ul.products {
    margin: 24px 0 0 0;
}

ul.products li {
    display: block;
    float: left;
    margin: 0 0 24px 0;
}

.woocommerce-loop-product__title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 16px 0 8px 0;
    min-height: 64px;
}

ul.products li .star-rating,
ul.products li .star-rating img,
ul.products li .star-rating span {
    vertical-align: middle;
}

ul.products li a:hover {
    text-decoration: none;
    color: #004FD9;
}

ul.products li a:hover h2 {
    text-decoration: underline;
}

ul.products li .product_thumbnail {
    transition: all 0.8s;
    border-radius: 8px;
}

ul.products li:hover .product_thumbnail {
    transform: scale(1.025);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

ul.products li .button {
    width: 100%;
    text-align: center;
    box-sizing: border-box;
    margin: 8px 0 0;
}

ul.products li .button,
ul.products li h4,
ul.products li .star-rating,
ul.products li .price {
    transition: all 0.8s;
}

ul.products li:hover .button,
ul.products li:hover h4,
ul.products li:hover .star-rating,
ul.products li:hover .price {
    transform: translateY(4px);
}

ul.products li .button:hover {
    color: #fff;
}

ul.products li h4:hover {
    text-decoration: underline;
}

ul.products li span.regular-price,
ul.products li span.sale-price {
    font-size: 40px;
    line-height: 40px;
}

ul.products li span.sale-price {
    color: #F7570C;
}

ul.products li span.compare-price {
    font-size: 24px;
    line-height: 32px;
}


/* -------------------------------------------------
                     Index
 ------------------------------------------------- */
#container article {
    float: left;
}

#container article:nth-of-type(2n) {
    float: right;
}

#container article:last-of-type {
    margin-bottom: 0;
}

#container article h4 {
    margin: 32px 0 0 0;
}

.article-on-main p.accent {
    padding-right: 56px;
}

.arrow {
    float: right;
}

.arrow {
    transition: all 0.8s;
}

.article-on-main:hover {
    cursor: pointer;
}

.article-on-main:hover .arrow {
    margin-right: -24px;
}

.article-on-main:hover a {
    text-decoration: underline;
}

.article-on-main .wp-post-image {
    transition: all 0.8s;
    border-radius: 8px;
}

.article-on-main:hover .wp-post-image {
    transform: scale(1.025);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.wc-block-grid__product-rating {
    display: none;
}



/* -------------------------------------------------
                     Slider on Index
 ------------------------------------------------- */
.my-custom-slider .slide {
    position: relative;
    text-align: center;
    /* or left/right if you prefer */
    padding: 20px;
    /* Adjust spacing, background, etc. */
}

.my-custom-slider .slide img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.my-custom-slider .slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #333;
    background: rgba(255, 255, 255, 0.8);
    padding: 15px;
    border-radius: 8px;
    max-width: 300px;
    /* Adjust as needed */
}

.my-custom-slider .slide-content h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.my-custom-slider .slide-content ul {
    list-style: disc inside;
    margin: 10px 0;
    padding: 0;
}

.my-custom-slider .button {
    background-color: #000;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}


/* -------------------------------------------------
                     Single Post
 ------------------------------------------------- */



/* -------------------------------------------------
                     Inputs
 ------------------------------------------------- */
input[type="text"],
textarea,
input[type="email"],
input[type="button"],
input[type="reset"],
input[type="search"],
input[type="password"],
input[type="number"],
input[type="checkbox"],
td.value select {
    font-family: "Poppins", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #242426;
    border: 2px solid #A1A2A6;
    border-radius: 4px;
    padding: 10px;
    display: block;
    box-sizing: border-box;
    min-width: 100%;
    max-width: 100%;
}

input:hover,
input:active,
input:focus,
textarea:hover,
textarea:active,
textarea:focus,
td.value select:hover,
td.value select:active,
td.value select:focus {
    border-color: #626266;
    cursor: pointer;
}

input:focus,
textarea:focus,
td.value select:focus {
    box-shadow: 0 4px 8px rgba(212, 213, 217, 0.75);
}

input[type="checkbox"] {
    width: 16px !important;
    min-width: 16px !important;
    max-width: 16px !important;
    height: 16px !important;
    min-height: 16px !important;
    max-height: 16px !important;
}

.woocommerce-form-login input,
.woocommerce-form-login button,
.lost_reset_password input,
.lost_reset_password button {
    width: 100%
}


/* -------------------------------------------------
                     Login
 ------------------------------------------------- */
.wc-login {
    margin: 64px auto 0;
    box-sizing: border-box;
}

.form-row {
    margin: 16px 0 0;
}

.password-input {
    position: relative;
    display: block;
}

.password-input input {
    padding-right: 16px;
}

.password-input .show-password-input {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    margin: 0;
    padding: 0;
    border: none;
    background: url('/images/eye.svg') no-repeat center center;
    background-size: contain;
    cursor: pointer;
    opacity: 0.75;
    transition: opacity 0.2s;
}

.password-input .show-password-input:hover,
.password-input .show-password-input:focus {
    opacity: 1;
    outline: none;
    box-shadow: none;
}

.password-input .show-password-input.display-password {
    background-image: url('/images/eye-off.svg');
}

.lost_password {
    margin: 16px 0;
}

.woocommerce-form-login .woocommerce-form__label-for-checkbox {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 12px;
}




/* -------------------------------------------------
                     Account page
 ------------------------------------------------- */
.woocommerce-MyAccount-dashboard {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.dashboard-section {
    background: #f8f8f8;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 5px;
}

.dashboard-section h2 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 18px;
}

.dashboard-section p {
    margin-bottom: 10px;
}

.dashboard-section .button {
    display: inline-block;
    padding: 10px 15px;
    background: #ebe9eb;
    color: #515151;
    border-radius: 3px;
    text-decoration: none;
}

.dashboard-section .button:hover {
    background: #dfdcde;
    color: #515151;
}

/* My Account General Styles */
.woocommerce-MyAccount-content {
    width: 100%;
    float: none;
}


/* -------------------------------------------------
                     Service Page
 ------------------------------------------------- */
.service-header {
    text-align: center;
    padding: 40px 0;
    border-bottom: 1px solid #C4C4C4;
    display: block;
    position: relative;
    width: 100%;
}

.service-page {
    padding: 0 0 0 16px;
}

.service-page li {
    list-style: disc;
    margin: 8px 0;
    Padding: 0 0 0 16px;
}


/* -------------------------------------------------
                     Product Page
 ------------------------------------------------- */
.summary {
    display: block;
    position: relative;
    float: right;
    margin-bottom: 24px;
}

/* Title & Short description */
.summary .product_title {
    padding: 0 0 8px 0;
}

.summary .short-description,
.summary .product-extra-field {
    padding: 0 0 16px 0;
    border-bottom: 1px solid #D4D5D9;
    margin: 0 0 16px 0;
}

/* Product meta */
.product_meta {
    display: inline-block;
}

.woocommerce-product-rating {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.summary .star-rating img {
    width: 20px;
    height: 20px;
    position: relative;
    vertical-align: top;
    margin: 0 4px 0 0;
}

.summary .small {
    position: relative;
    vertical-align: middle;
}

.summary .woocommerce-review-link {
    margin: 0 0 0 8px;
}

/* Price */
.compare-price {
    font-family: "Fredoka", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-variation-settings:
        "wdth" 100;
    font-size: 24px;
    line-height: 32px;
    color: #A1A2A6;
    padding: 0 0 0 8px;
}

.compare-price span {
    text-decoration: line-through;
}

.price,
.sale-price,
.regular-price {
    font-family: "Fredoka", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-variation-settings:
        "wdth" 100;
    font-size: 48px;
    line-height: 56px;
    color: #242426;
}

.summary .price {
    padding: 16px 0 0 0;
    border-top: 1px solid #D4D5D9;
    margin: 16px 0;
    display: inline-flex !important;
    align-items: baseline;
    white-space: nowrap;
    width: 100%;
}

.summary .price span.price {
    padding: 0;
    border: none;
    margin: 0;
}

.woocommerce-Price-amount,
.woocommerce-price-plus {
    display: inline-block !important;
}

.woocommerce-variation-price {
    display: none;
}

/* Variations */
.variations,
.variations tbody,
.variations th,
.variations tr,
.variations td {
    display: block;
    width: 100%;
    margin-bottom: 16px;
    /* space between fields */
    text-align: left;
}

.variations_form .variations th.label {
    margin-bottom: 4px;
}

.variations_form .variations td.value select {
    box-sizing: border-box;
    cursor: pointer;
}

.variations_form .error-highlight {
    border: 2px solid #E03321 !important;
    background: #FFECE6;
}

/* Add to cart button */
.summary .single_add_to_cart_button {
    width: 100%;
    box-sizing: border-box;
    transition: all 0.8s;
}

/* Reviews */
.product-reviews {
    margin: 40px 0;
    padding: 16px;
    border-radius: 8px;
    border: 2px solid #D4D5D9;
}

.commentlist .review,
.woocommerce-noreviews {
    padding: 0 0 16px 0;
    border-bottom: 1px solid #D4D5D9;
    margin: 24px 0;
}

.comment-text .meta {
    margin: 0 0 8px 0;
    font-size: 14px;
    line-height: 20px;
}

.comment-text .star-review-rating {
    margin: 0 0 16px 0;
}

.review .star-rating img {
    width: 20px;
    height: 20px;
    margin-right: 4px;
}

.review .description p {
    margin-top: 16px;
    font-size: 16px;
    line-height: 24px;
}




.rating {
    float: left;
}

/* :not(:checked) is a filter, so that browsers that don't support :checked don't
 follow these rules. Every browser that supports :checked also supports :not(), so
 it doesn't make the test unnecessarily selective */
.rating:not(:checked)>input {
    display: none;
}

.rating:not(:checked)>label {
    float: right;
    width: 20px;
    overflow: hidden;
    white-space: nowrap;
    cursor: pointer;
    font-size: 200%;
    line-height: 24px;
    color: #A1A2A6;
}

.rating:not(:checked)>label:before {
    content: '★';
}

.rating>input:checked~label {
    color: #F8C032;
}

.rating:not(:checked)>label:hover,
.rating:not(:checked)>label:hover~label {
    color: #F9D357;
}

.rating>input:checked+label:hover,
.rating>input:checked+label:hover~label,
.rating>input:checked~label:hover,
.rating>input:checked~label:hover~label,
.rating>label:hover~input:checked~label {
    color: #F9D357;
}

.rating>label:active {
    position: relative;
    top: 2px;
    left: 2px;
}

.rating p.small {
    font-weight: 500;
}

.comment-form-comment label {
    display: block;
}

#review_form_wrapper {
    background-color: #F5F6F7;
    border-radius: 4px;
    padding: 24px;
    margin: 24px auto 0;
    box-sizing: border-box;
}

#review_form_wrapper textarea {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    min-height: 80px;
    max-height: 240px;
    margin: 0 0 16px 0;
}


/* -------------------------------------------------
                     Cart - Empty
 ------------------------------------------------- */
.cart-empty {
    display: none;
}

.empty-cart-container,
.empty-cart-illustration {
    margin: 0 auto;
    text-align: center;
}

.empty-cart-illustration {
    max-width: 75%;
}

.empty-cart-illustration img {
    width: 100%;
    height: auto;
}


/* -------------------------------------------------
                     Cart - Filled
 ------------------------------------------------- */
/* -- Cart Table --*/
.product-remove,
.product-thumbnail,
.product-name,
.product-price,
.product-quantity,
.product-subtotal {
    display: table-cell;
    vertical-align: middle;
}

.product-remove a {
    background: url('../img/ic_trash.svg') 50% 50% no-repeat;
    background-size: 16px;
    width: 24px;
    height: 24px;
    display: block;
}

.product-thumbnail {
    border-radius: 6px;
}

.product-name,
.product-price {
    font-size: 16px;
    line-height: 24px;
    text-align: left;
}

.product-price {
    font-weight: 700px;
}

.cart_item {
    border-bottom: 1px solid #D4D5D9;
    padding: 0 0 16px 0;
    margin: 0 0 16px 0;
}

.checkout-button {
    width: 100%;
    text-align: center;
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

/* -- Variations --*/
.label-variation,
.cart-subtotal-label,
.cart-discount-label {
    font-weight: bold;
    margin-right: 8px;
}

.value-variation,
.label-variation {
    margin-bottom: 8px;
}

.variation {
    margin: 8px 0;
}

/* -- Quantity Remove from cart --*/
.cart-product-quantity {
    display: flex;
    align-items: center;
}

.cart-product-quantity .quantity {
    flex: 1 1 auto;
}

.cart-product-quantity .quantity input.qty {
    width: 100%;
    box-sizing: border-box;
}

.cart-remove-link {
    flex: 0 0 24px;
    /* adjust 32px to your icon’s container width */
    margin-left: 16px;
    /* small gap between input & icon */
    text-align: center;
}

.cart-remove-link a {
    background: url('../img/ic_trash.svg') 50% 50% no-repeat;
    background-size: 16px;
    width: 24px;
    height: 24px;
    display: block;
}

.cart-product-subtotal bdi,
.cart-total-value {
    font-family: "Fredoka", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-variation-settings:
        "wdth" 100;
    font-size: 32px;
    line-height: 40px;
    color: #242426;
}

.woocommerce-us-ca-info {
    padding: 16px;
    background-color: #FFFCE6;
    border: 1px solid #F5A70C;
    border-radius: 4px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
}


/* -------------------------------------------------
                     Checkout
 ------------------------------------------------- */
.wc-block-components-checkout-return-to-cart-button,
.wc-block-checkout__guest-checkout-notice {
    display: none;
}

.wc-block-checkout__actions_row button {
    width: 100% !important;
}

.wc-block-checkout__form fieldset {
    padding: 16px 0 0 0 !important;
    margin: 0 0 16px 0 !important;
}

.wc-block-checkout__login-prompt {
    color: #3651D9 !important;
}

.wc-block-checkout__login-prompt:hover {
    text-decoration: underline;
}

.wc-block-components-order-summary-item__individual-prices {
    display: none !important;
}

.wc-block-components-totals-item,
.wc-block-components-totals-footer-item {
    align-items: baseline !important;
}

.wc-block-components-product-price,
.wc-block-formatted-money-amount,
.order-details-item-price {
    font-size: 20px !important;
    line-height: 28px !important;
    font-weight: 700 !important;
    font-family: "Fredoka", sans-serif !important;
}

.wc-block-components-totals-item__value .wc-block-formatted-money-amount,
.wc-block-components-totals-item__value .wc-block-components-totals-item__label {
    font-size: 24px !important;
    line-height: 32px !important;
}

.is-large .wc-block-checkout__sidebar {
    top: 64px !important;
}

/* 1) Make the whole option layout a flex container, center its contents vertically */
.wc-block-components-radio-control__option-layout {
    display: flex !important;
    align-items: center !important;
}

/* 2) Then the label‐group (text + price) also flex, full width */
.wc-block-components-radio-control__label-group {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
}

/* 3) Allow the name to wrap anywhere, and take up remaining space */
.wc-block-components-radio-control__label {
    flex: 1 1 auto !important;
    white-space: normal !important;
    /* allow multiline names */
    margin-right: 1rem !important;
    /* gap before the price */
}

/* 4) Keep the price snug on the right */
.wc-block-components-radio-control__secondary-label {
    flex: 0 0 auto !important;
}

.wc-block-components-radio-control__secondary-label {
    min-width: 20% !important;
}

/* -------------------------------------------------
                     Order Details
 ------------------------------------------------- */
/* Headings */
.woocommerce-order h2.woocommerce-order-details__title,
.woocommerce-order-overview--title {
    font-size: 1.6em;
    margin-bottom: 0.75em;
    color: #333;
}

/* Order overview list */
.woocommerce-order-overview.woocommerce-thankyou-order-details.order_details li {
    display: flex;
    justify-content: space-between;
    padding: 0.5em 0;
    border-bottom: 1px solid #eee;
}

.woocommerce-order-overview.woocommerce-thankyou-order-details.order_details li:last-child {
    border-bottom: none;
}

.woocommerce-order-overview li strong {
    color: #000;
}

/* Products table */
.woocommerce-table--order-details {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1em;
}

.woocommerce-table--order-details th,
.woocommerce-table--order-details td {
    padding: 0.75em 1em;
    border-bottom: 1px solid #eee;
}

.woocommerce-table--order-details th {
    text-align: left;
    background: #f9f9f9;
    font-weight: 600;
}

/* Item meta (color, bundle) tweaks */
.wc-item-meta {
    margin: 0.5em 0 0;
    padding: 0;
    list-style: none;
}

.wc-item-meta li {
    display: flex;
    font-size: 0.95em;
}

.wc-item-meta-label {
    font-weight: 600;
    margin-right: 0.5em;
}

/* Totals at bottom */
.woocommerce-table--order-details tfoot tr th {
    font-weight: 600;
}

.woocommerce-table--order-details tfoot tr td {
    text-align: right;
}

/* “via Standard…” note styling */
.shipped_via {
    font-size: 0.9em;
    color: #555;
    margin-left: 0.5em;
}

/* Addresses columns */
.woocommerce-columns--addresses {
    display: flex;
    gap: 2em;
    margin-top: 2em;
}

.woocommerce-column__title {
    font-size: 1.2em;
    margin-bottom: 0.5em;
}

.woocommerce-column.addresses address {
    line-height: 1.5;
    font-style: normal;
    color: #444;
}

/* Make sure contact bits look tidy */
.woocommerce-customer-details p {
    margin: 0.5em 0;
}


/* -------------------------------------------------
                     Thank You Page
 ------------------------------------------------- */
.woocommerce-order-details {
    border: 1px solid hsla(0, 0%, 7%, .11);
    border-radius: 5px;
    padding: 16px;
}

.woocommerce-order-details .woocommerce-order-details__title {
    font-weight: 500;
    margin: 0 0 16px 0;
}

/* Order number & date */
.order-details-summary {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 16px;
    row-gap: 8px;
    list-style: none;
    margin: 0 0 16px 0;
    padding: 16px;
    background-color: #E6EEFF;
    border-radius: 4px;
}

.order-details-summary-line {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    column-gap: 16px;
    row-gap: 8px;
}

.order-details-summary-line-name {
    grid-row: 1;
}

.order-details-summary-line-value {
    grid-row: 2;
}

.order-details-summary>li:nth-child(1) .order-details-summary-line-name,
.order-details-summary>li:nth-child(1) .order-details-summary-line-value {
    grid-column: 1;
}

.order-details-summary>li:nth-child(2) .order-details-summary-line-name,
.order-details-summary>li:nth-child(2) .order-details-summary-line-value {
    grid-column: 2;
}

/* Order Image & Quantity */
.order-details-item {
    padding: 16px 0;
    border-bottom: 1px solid #E3E8F0;
    margin: 0 0 16px 0;
}

.order-details-item-image {
    position: relative;
    margin: 0 16px 16px 0;
}

.order-details-item-image img {
    width: 48px;
    max-width: 48px;
    height: 48px;
    max-height: 48px;
}

.order-details-item-quantity {
    align-items: center;
    background: #fff;
    border: 2px solid hsla(0, 0%, 7%, .11);
    border-radius: 1em;
    box-shadow: 0 0 0 2px #fff;
    color: #000;
    display: flex;
    justify-content: center;
    line-height: 1;
    min-height: 20px;
    min-width: 20px;
    padding: 0 .4em;
    position: absolute;
    right: 0;
    top: 0;
    transform: translate(50%, -50%);
    white-space: nowrap;
    z-index: 1;
}

/* Order Description & Total Price */
.order-details-item-description {
    position: relative;
    margin: 0 16px 0 0;
    text-align: left;
}

.order-details-item-details span {
    display: inline-block;
}

.order-details-item-details span p {
    font-size: 14px;
    line-height: 20px;
}

.order-details-item-total-price,
.wc-block-formatted-money-amount {
    text-align: right;
}

.wc-block-formatted-money-amount .shipped_via {
    display: none;
}

.woocommerce-order-details .wc-block-components-totals-shipping__via {
    font-family: "Poppins", sans-serif;
    color: #242426;
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
}

.woocommerce-order-details .wc-block-components-totals-item {
    margin: 8px 0;
}

.woocommerce-order-details .wc-block-components-totals-item:last-child {
    border-top: 1px solid #E3E8F0;
    margin-top: 16px;
    padding-top: 16px;
}

/* -------------------------------------------------
                     Footer
 ------------------------------------------------- */
.divider,
.divider-white {
    display: block;
    height: 1px;
    background-color: #C4C4C4;
    width: 100%;
}

.divider-white {
    background-color: #fff;
}

.footer_links {
    flex: 1;
}

.footer_list_left {
    padding: 40px 0;
}

.footer_list_left li {
    display: inline-block;
    margin: 0 16px 0 0;
}

.footer_list_left li a,
.footer_list_left li a img {
    display: block;
    width: 32px;
    height: 32px;
}

.footer_list_right li a {
    color: #626266;
}

#footer .big a:hover,
#footer .small a:hover,
.footer_list_right li a:hover {
    color: #004FD9;
    text-decoration: underline;
}


/* -------------------------------------------------
                     Adaptive style
 ------------------------------------------------- */

/* Extra small devices (phones, 320px and down) */
@media only screen and (min-width: 300px) {

    .wrapper,
    #primary {
        width: 316px;
        margin: 0 auto;
    }

    .col-xxs-2 {
        width: 148px
    }

    .col-xxs-4 {
        width: 316px
    }

    .mobile-menu-icon {
        display: block
    }

    .main-menu {
        display: none
    }

    #container article:first-of-type {
        margin: 104px 0 56px 0;
    }

    #container article {
        margin: 0 0 56px 0;
    }

    .flex {
        column-gap: 20px;
    }

    .spacer {
        width: 8px;
    }

    .footer-container {
        display: block;
    }

    .footer_logo {
        padding: 24px 0;
    }

    .footer_logo img {
        width: 64px;
    }

    #footer {
        padding: 0 0 16px 0;
        text-align: center;
    }

    .footer_list_right {
        padding: 0 0 40px 0;
    }

    .footer_list_right li {
        display: block;
        margin: 0 0 24px 0;
    }

    .product_title {
        font-size: 24px;
        line-height: 32px;
    }

    .summary .product_title {
        display: none;
    }

    .product-thumbnail {
        width: 240px;
    }

    .gallery-thumbs {
        display: none;
    }

    .custom-product-gallery {
        height: 240px;
    }

    .cart-product-subtotal {
        text-align: left;
        padding: 16px 0;
    }

    .cart-update {
        width: 100%;
        text-align: center;
        margin-bottom: 24px;
    }
}

@media only screen and (min-width: 300px) and (max-width:599px) {
    ul.products li {
        margin-left: 0;
    }
}

/* Extra small devices (phones, 640px and up) */
@media only screen and (min-width: 600px) {

    .wrapper,
    #primary {
        width: 580px;
        margin: 0 auto;
    }

    .col-xs-2 {
        width: 180px
    }

    .col-xs-3 {
        width: 280px
    }

    .col-xs-4 {
        width: 380px
    }

    .col-xs-6 {
        width: 580px
    }

    .mobile-menu-icon {
        display: block
    }

    .main-menu {
        display: none
    }

    #container article:first-of-type {
        margin: 104px 0 64px 0;
    }

    #container article {
        margin: 0 0 64px 0;
    }

    .flex {
        column-gap: 20px;
    }

    .spacer {
        width: 20px;
    }

    .footer-container {
        display: block;
    }

    .footer_logo {
        padding: 32px 0;
    }

    .footer_logo img {
        width: 64px;
    }

    #footer {
        padding: 0 0 16px 0;
        text-align: center;
    }

    .footer_list_right {
        padding: 0 0 40px 0;
    }

    .footer_list_right li {
        display: inline-block;
        margin: 0 24px 0 0;
    }

    .product_title {
        font-size: 28px;
        line-height: 40px;
    }

    .summary .product_title {
        display: none
    }

    .product-thumbnail {
        width: 80px;
    }

    .gallery-thumbs {
        display: block;
    }

    .gallery-thumbs {
        flex: 0 0 80px;
    }

    .custom-product-gallery {
        height: 360px;
    }

    .cart-product-subtotal {
        text-align: right;
        padding: 0;
    }

    .cart-update {
        width: auto;
    }
}

@media only screen and (min-width: 600px) and (max-width: 749px) {
    ul.products li {
        margin-left: 20px;
    }

    ul.products li:nth-of-type(2n+1) {
        margin-left: 0;
    }
}

/* Small devices (portrait tablets and large phones, 768px and up) */
@media only screen and (min-width: 750px) {

    .wrapper,
    #primary {
        width: 688px;
        margin: 0 auto;
    }

    .col-s-1 {
        width: 72px
    }

    .col-s-2 {
        width: 160px
    }

    .col-s-3 {
        width: 248px
    }

    .col-s-4 {
        width: 336px
    }

    .col-s-5 {
        width: 424px
    }

    .col-s-6 {
        width: 512px
    }

    .col-s-8 {
        width: 688px
    }

    .mobile-menu-icon {
        display: block
    }

    .main-menu {
        display: none
    }

    #container article:first-of-type {
        margin: 104px 0 64px 0;
    }

    #container article {
        margin: 0 0 64px 0;
    }

    .flex {
        column-gap: 16px;
    }

    .spacer {
        width: 16px;
    }

    .footer-container {
        display: block;
    }

    .footer_logo {
        padding: 40px 0;
    }

    .footer_logo img {
        width: 64px;
    }

    #footer {
        padding: 0 0 16px 0;
        text-align: center;
    }

    .footer_list_right {
        padding: 0 0 40px 0;
    }

    .product_title {
        font-size: 32px;
        line-height: 48px;
    }

    .summary .product_title {
        display: none;
    }

    .product-thumbnail {
        width: 160px;
    }

    .gallery-thumbs {
        flex: 0 0 104px;
    }

    .custom-product-gallery {
        height: 440px;
    }
}

@media only screen and (min-width: 750px) and (max-width: 999px) {
    ul.products li {
        margin-left: 16px;
    }

    ul.products li:nth-of-type(2n+1) {
        margin-left: 0;
    }
}

/* Medium devices (landscape tablets, 1024px and up) */
@media only screen and (min-width: 1000px) {

    .wrapper,
    #primary {
        width: 944px;
        margin: 0 auto;
    }

    .col-m-1 {
        width: 64px
    }

    .col-m-2 {
        width: 144px
    }

    .col-m-3 {
        width: 224px
    }

    .col-m-4 {
        width: 304px
    }

    .col-m-5 {
        width: 384px
    }

    .col-m-6 {
        width: 464px
    }

    .col-m-7 {
        width: 544px
    }

    .col-m-8 {
        width: 624px
    }

    .col-m-9 {
        width: 704px
    }

    .col-m-12 {
        width: 944px
    }

    .mobile-menu-icon {
        display: none
    }

    .main-menu {
        display: flex
    }

    #container article:first-of-type {
        margin: 128px 0 80px 0;
    }

    #container article {
        margin: 0 0 80px 0;
    }

    .flex {
        column-gap: 16px;
    }

    .spacer {
        width: 16px;
    }

    .footer-container {
        display: flex;
        column-gap: 16px;
    }

    .footer_logo {
        padding: 0;
    }

    .footer_logo img {
        width: 64px;
    }

    #footer {
        padding: 0 0 24px 0;
        text-align: left;
    }

    #footer p.small {
        padding: 0 0 0 80px;
    }

    .footer_list_right {
        padding: 0 0 0 24px;
    }

    .ml4 div,
    .ml6 div {
        margin-left: 16px;
    }

    .ml4 div:nth-of-type(4n+1) {
        margin-left: 0;
    }

    .ml6 div:nth-of-type(6n+1) {
        margin-left: 0;
    }

    .summary .product_title {
        display: block;
        font-size: 24px;
        line-height: 32px;
    }

    .product_title {
        display: none;
    }

    .product-thumbnail {
        width: 144px;
    }

    .custom-product-gallery {
        height: 400px;
    }
}

@media only screen and (min-width: 1000px) and (max-width: 1279px) {
    ul.products li {
        margin-left: 16px;
    }

    ul.products li:nth-of-type(3n+1) {
        margin-left: 0;
    }
}

/* Large devices (laptops/desktops, 1280px and up) */
@media only screen and (min-width: 1280px) {

    .wrapper,
    #primary {
        width: 1128px;
        margin: 0 auto;
    }

    .col-l-1 {
        width: 72px
    }

    .col-l-2 {
        width: 168px
    }

    .col-l-3 {
        width: 264px
    }

    .col-l-4 {
        width: 360px
    }

    .col-l-5 {
        width: 456px
    }

    .col-l-6 {
        width: 552px
    }

    .col-l-7 {
        width: 648px
    }

    .col-l-8 {
        width: 744px
    }

    .col-l-9 {
        width: 840px
    }

    .col-l-12 {
        width: 1128px
    }

    #container article:first-of-type {
        margin: 128px 0 80px 0;
    }

    #container article {
        margin: 0 0 80px 0;
    }

    .flex {
        column-gap: 24px;
    }

    .spacer {
        width: 24px;
    }

    .footer-container {
        display: flex;
        column-gap: 24px;
    }

    .footer_logo {
        padding: 0;
    }

    .footer_logo img {
        width: 104px;
    }

    #footer {
        padding: 0 0 24px 0;
        text-align: left;
    }

    #footer p.small {
        padding: 0 0 0 128px;
    }

    .footer_list_right {
        padding: 0 0 0 24px;
    }

    .ml4 div,
    .ml6 div {
        margin-left: 24px;
    }

    .ml4 div:nth-of-type(4n+1) {
        margin-left: 0;
    }

    .ml6 div:nth-of-type(6n+1) {
        margin-left: 0;
    }

    .summary .product_title {
        display: block;
        font-size: 28px;
        line-height: 40px;
    }

    .product-thumbnail {
        width: 168px;
    }

    .custom-product-gallery {
        height: 480px;
    }
}

@media only screen and (min-width: 1280px) and (max-width: 1899px) {
    ul.products li {
        margin-left: 24px;
    }

    ul.products li:nth-of-type(3n+1) {
        margin-left: 0;
    }
}

/* Extra large devices (large laptops and desktops, 1920px and up) */
@media only screen and (min-width: 1900px) {

    .wrapper,
    #primary {
        width: 1600px;
        margin: 0 auto;
    }

    .col-1 {
        width: 104px
    }

    .col-2 {
        width: 240px
    }

    .col-3 {
        width: 376px
    }

    .col-4 {
        width: 512px
    }

    .col-5 {
        width: 648px
    }

    .col-6 {
        width: 784px
    }

    .col-7 {
        width: 920px
    }

    .col-8 {
        width: 1056px
    }

    .col-9 {
        width: 1192px
    }

    .col-12 {
        width: 1600px
    }

    #container article {
        margin: 160px 0 80px 0;
    }

    #container article:nth-of-type(2) {
        margin: 424px 0 80px 0;
    }

    .flex {
        column-gap: 32px;
    }

    .spacer {
        width: 32px;
    }

    .footer-container {
        display: flex;
        column-gap: 32px;
    }

    .footer_logo {
        padding: 0;
    }

    .footer_logo img {
        width: 104px;
    }

    #footer {
        padding: 0 0 24px 0;
        text-align: left;
    }

    #footer p.small {
        padding: 0 0 0 136px;
    }

    .footer_list_right {
        padding: 0 0 0 24px;
    }

    .ml4 div,
    .ml6 div {
        margin-left: 32px;
    }

    .ml4 div:nth-of-type(4n+1) {
        margin-left: 0;
    }

    .ml6 div:nth-of-type(6n+1) {
        margin-left: 0;
    }

    .summary .product_title {
        display: block;
        font-size: 32px;
        line-height: 48px;
    }

    ul.products li {
        margin-left: 32px;
    }

    ul.products li:nth-of-type(4n+1) {
        margin-left: 0;
    }

    .product-thumbnail {
        width: 240px;
    }

    .gallery-thumbs {
        flex: 0 0 104px;
    }

    .custom-product-gallery {
        height: 720px;
    }
}

/* —–
 Checkout Page Styles
 
 .checkout-wrapper {
     display: flex;
     flex-wrap: wrap;
     margin: 0 -15px;
 }
 .checkout-details {
     flex: 1;
     padding: 0 15px;
     min-width: 60%;
 }
 .order-summary {
     width: 40%;
     padding: 0 15px;
     background-color: #f8f8f8;
     border-radius: 4px;
 }
 @media (max-width: 768px) {
     .checkout-details,
     .order-summary {width: 100%;}
 }
 .checkout h1 {
     font-size: 24px;
     margin-bottom: 20px;
 }
 .returning-customer {margin-bottom: 20px;}
 .returning-customer a {
     color: #006400;
     text-decoration: none;
 }
 .woocommerce-billing-fields,
 .woocommerce-shipping-fields {margin-bottom: 30px;}
 .woocommerce-billing-fields h3,
 .woocommerce-shipping-fields h3 {
     font-size: 18px;
     margin-bottom: 15px;
 }
 .form-row {margin-bottom: 15px;}
 .form-row label {
     display: block;
     margin-bottom: 5px;
 }
 .form-row input,
 .form-row select,
 .form-row textarea {
     width: 100%;
     padding: 10px;
     border: 1px solid #ddd;
     border-radius: 4px;
 }
 .woocommerce-checkout-payment {margin-top: 30px;}
 #place_order {
     background-color: #006400;
     color: #fff;
     padding: 12px 20px;
     border: none;
     border-radius: 4px;
     cursor: pointer;
     font-size: 16px;
 }
 #place_order:hover {background-color: #004d00;}
 
 /* Apple Pay button styles /
 .apple-pay-button {
     display: inline-block;
     -webkit-appearance: -apple-pay-button;
     appearance: none; /* Standard property for compatibility 
     -apple-pay-button-type: buy;
     -apple-pay-button-style: black;
     height: 40px;
     width: 100%;
     margin-bottom: 15px;
 }
 .apple-pay-button:after {
     content: 'Buy with';
     visibility: hidden;
 }
 
 /* Service Guarantees Styles */
.service-guarantees {
    margin: 3rem 0;
    padding: 2rem 0;
    background: #f8f9fa;
}

.guarantees-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.guarantee-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.guarantee-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f4ff;
    border-radius: 8px;
}

.guarantee-content h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.125rem;
    font-weight: 600;
    color: #2b2b2b;
}

.guarantee-content p {
    margin: 0;
    color: #666;
    font-size: 0.875rem;
    line-height: 1.4;
}

/* Service Guarantees Responsive Design */
@media (min-width: 768px) {
    .guarantees-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .guarantee-item {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
    }

    .guarantee-icon {
        margin: 0 auto 1rem auto;
    }
}

@media (min-width: 1024px) {
    .guarantees-container {
        gap: 2rem;
    }

    .guarantee-item {
        padding: 2.5rem 2rem;
    }
}

/* Coupon code styles */
.coupon-code-wrapper {
    display: flex;
    margin-bottom: 15px;
}

.coupon-code-wrapper input {
    flex-grow: 1;
    margin-right: 10px;
}

.coupon-code-wrapper button {
    background-color: #006400;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
}

.coupon-code-wrapper button:hover {
    background-color: #004d00;
}

/* —–
 Contacts
 —– */
.selectron23,
.selectron23-container,
.selectron23-option {
    background: none !important;
}

.selectron23-option {
    padding: 8px !important;
}

.selectron23-option-title {
    font-family: 'Poppins', sans-serif !important;
}

.selectron23 span {
    display: none !important;
}

/* ----------  Sticky Announcement Bar ---------- */
#fp-announcement-bar {
    position: relative;
    background: #3651D9;
    color: #fff;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 40px 8px 40px;
    /* space for arrows */
    height: 48px;
}

#fp-announcement-bar a {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

.fp-viewport {
    overflow: hidden;
    flex: 1;
}

.fp-slides {
    display: flex;
    transition: transform .4s ease;
}

.fp-slide {
    flex: 0 0 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fp-nav {
    background: none;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    opacity: .6;
}

.fp-prev {
    left: 8px;
}

.fp-next {
    right: 8px;
}

.fp-nav:hover {
    opacity: 1;
}

@media(max-width:500px) {
    #fp-announcement-bar {
        font-size: 12px;
        padding: 6px 32px
    }
}

/* Countdown digits */
.fp-countdown span {
    display: inline-block;
    background: #E64575;
    color: #fff;
    width: 32px;
    padding: 4px;
    margin: 0 4px 0 0;
    border-radius: 4px;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
}

/* Allow wrapping when needed */
.fp-slide {
    flex: 0 0 100%;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.fp-msg {
    white-space: nowrap;
}

/* desktop */

/* Countdown digits */
.fp-countdown span {
    display: inline-block;
    background: #E64575;
    color: #fff;
    width: 32px;
    padding: 4px 0;
    margin: 0 4px 0 0;
    border-radius: 4px;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
}

/* ---------- MOBILE ---------- */
@media (max-width:500px) {
    #fp-announcement-bar {
        font-size: 12px;
        padding: 6px 32px;
        height: auto;
        /* let it grow to two lines */
    }

    .fp-slide {
        flex-direction: column;
        /* stack msg over timer */
        gap: 4px;
        text-align: center;
    }

    .fp-msg {
        white-space: normal;
    }

    /* allow line break */
    .fp-countdown span {
        width: 26px;
        font-size: 14px;
        line-height: 18px;
        margin: 0 2px 0 0;
    }
}

/* Product Category Thumbnails */
.product-category-thumbnails {
    margin: 40px 0;
    padding: 20px 0;
}

.category-thumbnails-title {
    text-align: center;
    margin-bottom: 30px;
    color: #242426;
    font-size: 28px;
    font-weight: 700;
}

.category-thumbnails-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.category-thumbnail-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.category-thumbnail-item:hover {
    transform: translateY(-5px);
}

.category-thumbnail-link {
    display: block;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.category-thumbnail-link:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    color: inherit;
}

.category-thumbnail-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.category-thumbnail-placeholder {
    width: 100%;
    height: 150px;
    background: #f8f9fa;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    border: 2px dashed #dee2e6;
}

.category-icon {
    font-size: 48px;
    opacity: 0.6;
}

.category-thumbnail-name {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: #242426;
}

.category-product-count {
    font-size: 14px;
    color: #6c757d;
    font-weight: 400;
}

/* Responsive design for category thumbnails */
@media (max-width: 768px) {
    .category-thumbnails-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
        padding: 0 15px;
    }

    .category-thumbnail-link {
        padding: 15px;
    }

    .category-thumbnail-image,
    .category-thumbnail-placeholder {
        height: 120px;
    }

    .category-thumbnail-name {
        font-size: 16px;
    }

    .category-thumbnails-title {
        font-size: 24px;
    }
}