/*
Theme Name: STER Products
Author: Markance Graphics
Description: Custom WooCommerce theme for STER Products
Version: 1.0
Text Domain: ster-products
*/


/* =========================================================
   1. DESIGN SYSTEM
========================================================= */

:root {
    --primary-color: #a0ce5b;
    --secondary-color: #F7EEF4;
    --accent-color: #d18dac;

    --dark-color: #252124;
    --text-color: #555054;
    --light-color: #FFFFFF;
    --border-color: #E8E1E5;
    --soft-background: #FBF8FA;

    --heading-font: "Playfair Display", Georgia, serif;
    --body-font: "Poppins", Arial, sans-serif;

    --container-width: 1120px;

    --transition: 0.3s ease;
    --border-radius: 4px;
}


/* =========================================================
   2. RESET
========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;

    width: 100%;

    overflow-x: hidden;

    background: var(--light-color);
    color: var(--text-color);

    font-family: var(--body-font);
    font-size: 15px;
    line-height: 1.7;
}

img {
    display: block;

    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

ul,
ol {
    margin: 0;
    padding: 0;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;

    color: var(--dark-color);

    font-family: var(--heading-font);
    line-height: 1.2;
}


/* =========================================================
   3. GENERAL LAYOUT
========================================================= */

.container {
    width: 90%;
    max-width: var(--container-width);

    margin-left: auto;
    margin-right: auto;
}

.site-main {
    width: 100%;
    min-height: 60vh;
}

.section-padding {
    padding: 50px 0;
}


/* Section headings */

.section-heading {
    max-width: 620px;

    margin: 0 auto 40px;

    text-align: center;
}

.section-label,
.section-eyebrow {
    display: inline-block;

    margin-bottom: 12px;

    color: var(--primary-color);

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-heading h2 {
    margin: 0 0 14px;

    color: var(--dark-color);

    font-size: clamp(32px, 3.2vw, 44px);
    line-height: 1.15;
}

.section-heading p {
    max-width: 560px;

    margin: 0 auto;

    color: var(--text-color);

    font-size: 15px;
    line-height: 1.7;
}


/* =========================================================
   4. BUTTONS
========================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 42px;

    padding: 10px 24px;

    border: 1px solid var(--primary-color);
    border-radius: var(--border-radius);

    background: var(--primary-color);
    color: var(--light-color);

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 0.5px;

    transition:
        background var(--transition),
        border-color var(--transition),
        color var(--transition);
}

.btn:hover {
    background: var(--dark-color);
    border-color: var(--dark-color);
    color: var(--light-color);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--light-color);
}


/* =========================================================
   5. HEADER
========================================================= */

.site-header {
    position: relative;
    z-index: 1000;

    width: 100%;

    background: var(--light-color);

    border-bottom: 1px solid var(--border-color);
}

.header-inner {
    min-height: 76px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;
}


/* Logo */

.site-logo {
    flex: 0 0 auto;
}

.site-logo a {
    display: inline-flex;
    align-items: center;
}

.site-logo img {
    display: block;

    width: auto;
    max-width: 210px;
    max-height: 75px;
}

.site-name {
    color: var(--dark-color);

    font-family: var(--heading-font);
    font-size: 26px;
    font-weight: 600;
}


/* =========================================================
   6. NAVIGATION
========================================================= */

.main-navigation {
    margin-left: auto;
}

.primary-menu {
    display: flex;
    align-items: center;

    gap: 26px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.primary-menu li {
    position: relative;

    margin: 0;
    padding: 0;

    list-style: none;
}

.primary-menu > li > a {
    display: block;

    padding: 26px 0;

    color: var(--dark-color);

    font-size: 13px;
    font-weight: 500;

    transition: color var(--transition);
}

.primary-menu > li > a:hover,
.primary-menu > li.current-menu-item > a,
.primary-menu > li.current-menu-ancestor > a {
    color: var(--primary-color);
}


/* Dropdown */

.primary-menu .sub-menu {
    position: absolute;

    top: 100%;
    left: -18px;

    z-index: 1100;

    width: 205px;

    display: block;

    margin: 0;
    padding: 10px 0;

    list-style: none;

    background: var(--light-color);

    border: 1px solid var(--border-color);

    box-shadow: 0 12px 30px rgba(37, 33, 36, 0.09);

    opacity: 0;
    visibility: hidden;

    transform: translateY(8px);

    transition:
        opacity var(--transition),
        visibility var(--transition),
        transform var(--transition);
}

.primary-menu li:hover > .sub-menu,
.primary-menu li:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}

.primary-menu .sub-menu li {
    width: 100%;
}

.primary-menu .sub-menu a {
    display: block;

    padding: 9px 18px;

    color: var(--text-color);

    font-size: 13px;

    white-space: nowrap;
}

.primary-menu .sub-menu a:hover {
    background: var(--soft-background);
    color: var(--primary-color);
}


/* =========================================================
   7. HEADER ACTIONS / CART
========================================================= */

.header-actions {
    display: flex;
    align-items: center;

    gap: 18px;

    flex: 0 0 auto;
}

.cart-link {
    position: relative;

    display: flex;
    align-items: center;

    color: var(--dark-color);
}

.cart-icon {
    font-size: 19px;
    line-height: 1;
}

.cart-count {
    position: absolute;

    top: -9px;
    right: -11px;

    min-width: 18px;
    height: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0 4px;

    border-radius: 50%;

    background: var(--primary-color);
    color: var(--light-color);

    font-size: 9px;
    font-weight: 600;
}


/* Mobile button */

.mobile-menu-toggle {
    display: none;

    width: 28px;
    height: 21px;

    padding: 0;

    flex-direction: column;
    justify-content: space-between;

    border: 0;

    background: transparent;
}

.mobile-menu-toggle span {
    display: block;

    width: 100%;
    height: 2px;

    background: var(--dark-color);
}


/* =========================================================
   8. HERO
========================================================= */

.hero-section {
    position: relative;

    width: 100%;
    min-height: 540px;

    display: flex;
    align-items: center;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-content {
    max-width: 540px;
}

.hero-eyebrow {
    margin-bottom: 12px;
}

.hero-content h1 {
    margin: 0 0 20px;

    color: var(--dark-color);

    font-size: clamp(42px, 5vw, 64px);
    line-height: 1.05;
}

.hero-content p:not(.hero-eyebrow) {
    max-width: 470px;

    margin: 0 0 26px;

    font-size: 15px;
    line-height: 1.7;
}


/* =========================================================
   9. SHOP BY CATEGORY
========================================================= */

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 20px;

    margin-top: 35px;
}

.category-card {
    display: block;

    min-width: 0;

    overflow: hidden;

    background: var(--light-color);

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.category-card:hover {
    transform: translateY(-5px);

    box-shadow: 0 12px 28px rgba(37, 33, 36, 0.08);
}

.category-image {
    position: relative;

    width: 100%;
    height: 300px;

    overflow: hidden;

    background: var(--secondary-color);
}

.category-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.04);
}

.category-overlay {
    position: absolute;
    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.16),
            transparent 45%
        );
}

.category-card-content {
    padding: 16px 5px 8px;

    text-align: center;
}

.category-card-content h3 {
    margin: 0 0 6px;

    color: var(--dark-color);

    font-size: 21px;
}

.category-link {
    color: var(--primary-color);

    font-size: 12px;
    font-weight: 500;
}


/* =========================================================
   10. FEATURED PRODUCTS
========================================================= */

.featured-products-section {
    background: var(--soft-background);
}

.ster-product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 22px 18px;

    margin-top: 35px;
}

.ster-product-card {
    min-width: 0;

    overflow: hidden;

    background: var(--light-color);

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.ster-product-card:hover {
    transform: translateY(-4px);

    box-shadow: 0 12px 30px rgba(37, 33, 36, 0.07);
}


/* Product image */

.ster-product-image {
    position: relative;

    width: 100%;

    overflow: hidden;

    aspect-ratio: 1 / 1.1;

    background: #f7f7f7;
}

.ster-product-image a {
    display: block;

    width: 100%;
    height: 100%;
}

.ster-product-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;
}

.ster-product-card:hover .ster-product-image img {
    transform: scale(1.04);
}


/* Sale */

.product-sale-badge {
    position: absolute;

    top: 12px;
    left: 12px;

    z-index: 2;

    padding: 5px 10px;

    background: var(--primary-color);
    color: var(--light-color);

    font-size: 10px;
    font-weight: 600;

    text-transform: uppercase;
}


/* Product content */

.ster-product-content {
    padding: 16px;

    text-align: center;
}

.ster-product-category {
    margin-bottom: 5px;

    font-size: 10px;

    letter-spacing: 1px;
    text-transform: uppercase;
}

.ster-product-category a {
    color: var(--primary-color);
}

.ster-product-title {
    margin: 0 0 8px;

    font-size: 18px;
    line-height: 1.3;
}

.ster-product-title a {
    color: var(--dark-color);
}

.ster-product-title a:hover {
    color: var(--primary-color);
}

.ster-product-price {
    margin-bottom: 14px;

    color: var(--dark-color);

    font-size: 14px;
    font-weight: 600;
}

.ster-product-button .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 39px;

    padding: 8px 17px;

    border: 0;
    border-radius: var(--border-radius);

    background: var(--dark-color);
    color: var(--light-color);

    font-family: var(--body-font);

    font-size: 11px;
    font-weight: 500;
}

.ster-product-button .button:hover {
    background: var(--primary-color);
    color: var(--light-color);
}

.featured-products-footer {
    margin-top: 35px;

    text-align: center;
}

.no-products-message {
    margin-top: 30px;

    padding: 25px;

    background: var(--light-color);

    text-align: center;
}


/* =========================================================
   11. ABOUT
========================================================= */

.about-section {
    padding: 75px 0;

    background: var(--light-color);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    align-items: center;

    gap: 55px;
}

.about-image {
    position: relative;

    min-width: 0;
    height: 480px;

    overflow: hidden;

    background: var(--secondary-color);
}

.about-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.about-image-placeholder {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--secondary-color);
    color: var(--primary-color);

    font-family: var(--heading-font);
    font-size: 28px;
}

.about-content {
    min-width: 0;
    max-width: 500px;
}

.about-content h2 {
    margin: 0 0 20px;

    color: var(--dark-color);

    font-size: clamp(32px, 3.5vw, 46px);
    line-height: 1.1;
}

.about-description {
    margin-bottom: 25px;

    color: var(--text-color);

    font-size: 15px;
    line-height: 1.8;
}

.about-description p {
    margin-top: 0;
}

.about-description p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   12. WHY CHOOSE STER
========================================================= */

.why-ster-section {
    padding: 70px 0 60px;

    background: var(--secondary-color);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 18px;

    margin-top: 38px;
}

.benefit-card {
    min-width: 0;

    padding: 30px 23px;

    background: var(--light-color);

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);

    box-shadow: 0 14px 32px rgba(37, 33, 36, 0.07);
}

.benefit-number {
    margin-bottom: 20px;

    color: var(--accent-color);

    font-family: var(--heading-font);
    font-size: 34px;
    line-height: 1;
}

.benefit-card h3 {
    margin: 0 0 12px;

    color: var(--dark-color);

    font-size: 19px;
}

.benefit-card p {
    margin: 0;

    color: var(--text-color);

    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   13. PROMOTIONAL BANNER
========================================================= */

.promo-section {
    position: relative;

    width: 100%;
    min-height: 430px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background-color: #aaa;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.promo-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(25, 20, 24, 0.72) 0%,
            rgba(25, 20, 24, 0.42) 45%,
            rgba(25, 20, 24, 0.05) 100%
        );
}

.promo-content {
    position: relative;

    z-index: 2;

    max-width: 570px;
}

.promo-content .section-label {
    color: var(--secondary-color);
}

.promo-content h2 {
    max-width: 540px;

    margin: 0 0 16px;

    color: var(--light-color);

    font-size: clamp(36px, 4vw, 52px);
    line-height: 1.08;
}

.promo-content p {
    max-width: 500px;

    margin: 0 0 25px;

    color: rgba(255, 255, 255, 0.88);

    font-size: 15px;
    line-height: 1.7;
}


/* =========================================================
   14. TESTIMONIALS
========================================================= */

.testimonials-section {
    padding: 75px 0;

    background: var(--soft-background);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 20px;

    margin-top: 38px;
}

.testimonial-card {
    min-width: 0;

    padding: 30px 27px;

    background: var(--light-color);

    border: 1px solid var(--border-color);

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);

    box-shadow: 0 12px 28px rgba(37, 33, 36, 0.06);
}

.testimonial-quote {
    height: 38px;

    color: var(--accent-color);

    font-family: Georgia, serif;
    font-size: 56px;
    line-height: 1;
}

.testimonial-text {
    margin: 12px 0 24px;

    color: var(--text-color);

    font-size: 13px;
    line-height: 1.8;
}

.testimonial-text p {
    margin: 0;
}

.testimonial-customer {
    display: flex;
    align-items: center;

    gap: 12px;
}

.testimonial-photo {
    width: 48px;
    height: 48px;

    flex: 0 0 auto;

    overflow: hidden;

    border-radius: 50%;
}

.testimonial-photo img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.testimonial-info h3 {
    margin: 0 0 2px;

    color: var(--dark-color);

    font-size: 15px;
}

.testimonial-info span {
    color: var(--primary-color);

    font-size: 11px;
}

.no-testimonials {
    margin-top: 30px;

    text-align: center;
}


/* =========================================================
   15. BLOG
========================================================= */

.blog-section {
    padding: 75px 0;

    background: var(--light-color);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 24px;

    margin-top: 38px;
}

.blog-card {
    min-width: 0;

    overflow: hidden;

    background: var(--light-color);

    border: 1px solid var(--border-color);

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.blog-card:hover {
    transform: translateY(-4px);

    box-shadow: 0 12px 28px rgba(37, 33, 36, 0.07);
}

.blog-image {
    display: block;

    width: 100%;
    height: 230px;

    overflow: hidden;

    background: var(--secondary-color);
}

.blog-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.04);
}

.blog-image-placeholder {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--primary-color);

    font-family: var(--heading-font);
    font-size: 21px;
}

.blog-content {
    padding: 21px;
}

.blog-meta {
    margin-bottom: 9px;

    color: var(--primary-color);

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 1px;
    text-transform: uppercase;
}

.blog-content h3 {
    margin: 0 0 12px;

    color: var(--dark-color);

    font-size: 20px;
    line-height: 1.3;
}

.blog-content h3 a:hover {
    color: var(--primary-color);
}

.blog-excerpt {
    margin-bottom: 16px;

    color: var(--text-color);

    font-size: 13px;
    line-height: 1.7;
}

.blog-read-more {
    color: var(--primary-color);

    font-size: 12px;
    font-weight: 600;
}

.blog-read-more:hover {
    color: var(--dark-color);
}

.blog-footer {
    margin-top: 35px;

    text-align: center;
}

.no-blog-posts {
    margin-top: 30px;

    text-align: center;
}


/* =========================================================
   16. FOOTER
========================================================= */

.site-footer {
    width: 100%;

    background: var(--dark-color);

    color: rgba(255, 255, 255, 0.76);
}

.footer-grid {
    display: grid;
    grid-template-columns:
        1.35fr
        0.8fr
        0.9fr
        1fr
        0.8fr;

    gap: 28px;

    padding-top: 50px;
    padding-bottom: 42px;
}

.footer-column {
    min-width: 0;
}

.footer-column h3 {
    margin: 0 0 15px;

    color: var(--light-color);

    font-size: 17px;
}

.footer-column p,
.footer-column li {
    margin: 0 0 7px;

    font-size: 12px;
    line-height: 1.7;
}

.footer-column ul {
    margin: 0;
    padding: 0;

    list-style: none;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.74);

    transition: color var(--transition);
}

.footer-column a:hover {
    color: var(--accent-color);
}


/* Footer brand */

.footer-brand {
    max-width: 240px;
}

.footer-logo {
    margin-bottom: 15px;
}

.footer-logo img {
    width: auto;
    max-width: 145px;
    height: auto;
}

.footer-logo > a:not(.custom-logo-link) {
    color: var(--light-color);

    font-family: var(--heading-font);
    font-size: 24px;
    font-weight: 600;
}


/* Footer bottom */

.footer-bottom {
    padding: 17px 0;

    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.footer-bottom p {
    margin: 0;

    font-size: 11px;
}

.footer-legal {
    display: flex;

    gap: 20px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.62);

    font-size: 11px;
}

.footer-legal a:hover {
    color: var(--accent-color);
}


/* =========================================================
   17. WOOCOMMERCE BASE
========================================================= */

.woocommerce,
.woocommerce-page {
    width: 100%;
}

.woocommerce img,
.woocommerce-page img {
    max-width: 100%;
    height: auto;
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
    border-radius: var(--border-radius);

    font-family: var(--body-font);
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
    color: var(--light-color);
}


/* =========================================================
   18. TABLET
========================================================= */

@media (max-width: 1050px) {

    .container {
        width: 92%;
    }

    .primary-menu {
        gap: 20px;
    }

    .category-grid,
    .ster-product-grid,
    .benefits-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .category-image {
        height: 340px;
    }

    .footer-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));

        gap: 35px;
    }
}


/* =========================================================
   19. SMALL TABLET
========================================================= */

@media (max-width: 850px) {

    .section-padding {
        padding: 65px 0;
    }

    .header-inner {
        min-height: 70px;
    }

    .site-logo img {
        max-width: 140px;
        max-height: 48px;
    }


    /*
     * JavaScript is currently not enabled,
     * so keep desktop-style navigation visible
     * until we implement the mobile menu later.
     */

    .primary-menu {
        gap: 15px;
    }

    .primary-menu > li > a {
        padding: 23px 0;

        font-size: 12px;
    }


    /* About */

    .about-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .about-image {
        height: 430px;
    }

    .about-content {
        max-width: 100%;
    }


    /* Testimonials */

    .testimonials-grid {
        grid-template-columns: 1fr;
    }


    /* Blog */

    .blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


/* =========================================================
   20. MOBILE
========================================================= */

@media (max-width: 700px) {

    .container {
        width: 90%;
    }

    .section-padding {
        padding: 55px 0;
    }


    /* Header */

    .header-inner {
        min-height: 65px;

        gap: 12px;
    }

    .site-logo img {
        max-width: 125px;
        max-height: 44px;
    }

    /*
     * Until navigation.js is restored,
     * hide the desktop navigation on small screens.
     */

    .main-navigation {
        display: none;
    }

    .header-actions {
        margin-left: auto;
    }

    .mobile-menu-toggle {
        display: none;
    }


    /* Hero */

    .hero-section {
        min-height: 480px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 40px;
    }


    /* Categories */

    .category-grid {
        grid-template-columns: 1fr;

        gap: 25px;
    }

    .category-image {
        height: 340px;
    }


    /* Products */

    .ster-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 15px 10px;
    }

    .ster-product-content {
        padding: 12px 8px;
    }

    .ster-product-title {
        font-size: 15px;
    }

    .ster-product-price {
        font-size: 13px;
    }

    .ster-product-button .button {
        width: 100%;

        padding: 8px 5px;

        font-size: 10px;
    }


    /* About */

    .about-section {
        padding: 55px 0;
    }

    .about-image {
        height: 360px;
    }

    .about-content h2 {
        font-size: 34px;
    }


    /* Why STER */

    .benefits-grid {
        grid-template-columns: 1fr;
    }


    /* Promo */

    .promo-section {
        min-height: 400px;

        background-position: 65% center;
    }

    .promo-overlay {
        background: rgba(25, 20, 24, 0.62);
    }

    .promo-content {
        max-width: 100%;

        text-align: center;
    }

    .promo-content h2 {
        font-size: 38px;
    }

    .promo-content h2,
    .promo-content p {
        margin-left: auto;
        margin-right: auto;
    }


    /* Blog */

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-image {
        height: 240px;
    }


    /* Footer */

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 30px;

        padding-top: 40px;
        padding-bottom: 35px;
    }
}


/* =========================================================
   21. SMALL MOBILE
========================================================= */

@media (max-width: 500px) {

    .hero-section {
        min-height: 450px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .section-heading h2 {
        font-size: 32px;
    }

    .category-image {
        height: 310px;
    }

    .about-image {
        height: 330px;
    }

    .promo-section {
        min-height: 380px;
    }

    .promo-content h2 {
        font-size: 34px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;

        gap: 10px;
    }

    .footer-legal {
        flex-wrap: wrap;

        gap: 12px;
    }
}
/* =========================================================
   STER WOOCOMMERCE SHOP PAGE
========================================================= */

body.woocommerce-shop .site-main,
body.tax-product_cat .site-main {
    padding: 70px 0 80px;
    background: var(--light-color);
}

body.woocommerce-shop .woocommerce,
body.tax-product_cat .woocommerce {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
}


/* Shop title */

body.woocommerce-shop .woocommerce-products-header,
body.tax-product_cat .woocommerce-products-header {
    max-width: 720px;
    margin: 0 auto 40px;
    text-align: center;
}

body.woocommerce-shop .woocommerce-products-header__title,
body.tax-product_cat .woocommerce-products-header__title {
    margin: 0 0 12px;
    color: var(--dark-color);
    font-family: var(--heading-font);
    font-size: clamp(36px, 4vw, 50px);
    line-height: 1.1;
}

body.woocommerce-shop .term-description,
body.tax-product_cat .term-description {
    margin-top: 10px;
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.7;
}


/* Result count + sorting */

body.woocommerce-shop .woocommerce-result-count,
body.tax-product_cat .woocommerce-result-count {
    margin: 0 0 30px;
    color: var(--text-color);
    font-size: 13px;
}

body.woocommerce-shop .woocommerce-ordering,
body.tax-product_cat .woocommerce-ordering {
    margin: 0 0 30px;
}

body.woocommerce-shop .woocommerce-ordering select,
body.tax-product_cat .woocommerce-ordering select {
    min-width: 190px;
    padding: 10px 36px 10px 13px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    background: var(--light-color);
    color: var(--dark-color);
    font-size: 13px;
    outline: none;
}

body.woocommerce-shop .woocommerce-ordering select:focus,
body.tax-product_cat .woocommerce-ordering select:focus {
    border-color: var(--primary-color);
}


/* Product grid */

body.woocommerce-shop ul.products,
body.tax-product_cat ul.products {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px 18px;

    margin: 0 !important;
    padding: 0 !important;

    list-style: none;
}

body.woocommerce-shop ul.products::before,
body.woocommerce-shop ul.products::after,
body.tax-product_cat ul.products::before,
body.tax-product_cat ul.products::after {
    display: none !important;
}

body.woocommerce-shop ul.products li.product,
body.tax-product_cat ul.products li.product {
    width: auto !important;
    margin: 0 !important;
    padding: 0 0 18px;

    float: none !important;

    overflow: hidden;

    background: var(--light-color);

    border: 1px solid var(--border-color);

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

body.woocommerce-shop ul.products li.product:hover,
body.tax-product_cat ul.products li.product:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(37, 33, 36, 0.07);
}


/* Product images */

body.woocommerce-shop ul.products li.product a img,
body.tax-product_cat ul.products li.product a img {
    width: 100%;
    height: 280px;

    margin: 0 !important;

    object-fit: cover;

    background: #f7f7f7;

    transition: transform 0.45s ease;
}

body.woocommerce-shop ul.products li.product:hover a img,
body.tax-product_cat ul.products li.product:hover a img {
    transform: scale(1.03);
}


/* Product title */

body.woocommerce-shop ul.products li.product .woocommerce-loop-product__title,
body.tax-product_cat ul.products li.product .woocommerce-loop-product__title {
    margin: 0;
    padding: 16px 16px 7px;

    color: var(--dark-color);

    font-family: var(--heading-font);
    font-size: 18px;
    line-height: 1.3;
}


/* Price */

body.woocommerce-shop ul.products li.product .price,
body.tax-product_cat ul.products li.product .price {
    display: block;

    margin: 0;
    padding: 0 16px 13px;

    color: var(--dark-color);

    font-size: 14px;
    font-weight: 600;
}

body.woocommerce-shop ul.products li.product .price del,
body.tax-product_cat ul.products li.product .price del {
    color: #999;
    opacity: 0.8;
}

body.woocommerce-shop ul.products li.product .price ins,
body.tax-product_cat ul.products li.product .price ins {
    color: var(--primary-color);
    text-decoration: none;
}


/* Sale badge */

body.woocommerce-shop ul.products li.product .onsale,
body.tax-product_cat ul.products li.product .onsale {
    top: 12px;
    right: 12px;
    left: auto;

    min-width: auto;
    min-height: auto;

    margin: 0;
    padding: 5px 10px;

    border-radius: 0;

    background: var(--primary-color);
    color: var(--light-color);

    font-size: 10px;
    font-weight: 600;
    line-height: 1.4;

    text-transform: uppercase;
}


/* Add to cart */

body.woocommerce-shop ul.products li.product .button,
body.tax-product_cat ul.products li.product .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 40px;

    margin: 0 16px;
    padding: 9px 18px;

    border: 0;
    border-radius: var(--border-radius);

    background: var(--dark-color);
    color: var(--light-color);

    font-size: 11px;
    font-weight: 500;

    transition:
        background var(--transition),
        color var(--transition);
}

body.woocommerce-shop ul.products li.product .button:hover,
body.tax-product_cat ul.products li.product .button:hover {
    background: var(--primary-color);
    color: var(--light-color);
}


/* Pagination */

body.woocommerce-shop .woocommerce-pagination,
body.tax-product_cat .woocommerce-pagination {
    margin-top: 45px;
}

body.woocommerce-shop .woocommerce-pagination ul.page-numbers,
body.tax-product_cat .woocommerce-pagination ul.page-numbers {
    display: flex;
    justify-content: center;
    gap: 8px;

    border: 0;
}

body.woocommerce-shop .woocommerce-pagination ul.page-numbers li,
body.tax-product_cat .woocommerce-pagination ul.page-numbers li {
    border: 0;
}

body.woocommerce-shop .woocommerce-pagination ul.page-numbers li a,
body.woocommerce-shop .woocommerce-pagination ul.page-numbers li span,
body.tax-product_cat .woocommerce-pagination ul.page-numbers li a,
body.tax-product_cat .woocommerce-pagination ul.page-numbers li span {
    min-width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border: 1px solid var(--border-color);

    background: var(--light-color);
    color: var(--dark-color);

    font-size: 12px;
}

body.woocommerce-shop .woocommerce-pagination ul.page-numbers li span.current,
body.woocommerce-shop .woocommerce-pagination ul.page-numbers li a:hover,
body.tax-product_cat .woocommerce-pagination ul.page-numbers li span.current,
body.tax-product_cat .woocommerce-pagination ul.page-numbers li a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--light-color);
}


/* =========================================================
   SHOP RESPONSIVE
========================================================= */

@media (max-width: 1000px) {

    body.woocommerce-shop ul.products,
    body.tax-product_cat ul.products {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 750px) {

    body.woocommerce-shop .site-main,
    body.tax-product_cat .site-main {
        padding: 55px 0 65px;
    }

    body.woocommerce-shop ul.products,
    body.tax-product_cat ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px 12px;
    }

    body.woocommerce-shop ul.products li.product a img,
    body.tax-product_cat ul.products li.product a img {
        height: 240px;
    }

    body.woocommerce-shop .woocommerce-products-header,
    body.tax-product_cat .woocommerce-products-header {
        margin-bottom: 30px;
    }
}

@media (max-width: 520px) {

    body.woocommerce-shop .woocommerce,
    body.tax-product_cat .woocommerce {
        width: 90%;
    }

    body.woocommerce-shop ul.products,
    body.tax-product_cat ul.products {
        grid-template-columns: 1fr;
    }

    body.woocommerce-shop ul.products li.product a img,
    body.tax-product_cat ul.products li.product a img {
        height: 320px;
    }

    body.woocommerce-shop .woocommerce-result-count,
    body.tax-product_cat .woocommerce-result-count,
    body.woocommerce-shop .woocommerce-ordering,
    body.tax-product_cat .woocommerce-ordering {
        float: none;
        width: 100%;
    }

    body.woocommerce-shop .woocommerce-ordering select,
    body.tax-product_cat .woocommerce-ordering select {
        width: 100%;
    }
}
/* =========================================================
   STER SINGLE PRODUCT PAGE
========================================================= */

body.single-product .site-main {
    padding: 70px 0 80px;
    background: var(--light-color);
}

body.single-product .woocommerce {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
}


/* Main product layout */

body.single-product div.product {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);

    gap: 60px;

    align-items: start;
}


/* Product gallery */

body.single-product div.product div.images {
    width: 100% !important;
    float: none !important;
    margin: 0 !important;
}

body.single-product div.product div.images img {
    width: 100%;
    height: auto;

    object-fit: cover;

    background: #f7f7f7;
}

body.single-product .woocommerce-product-gallery {
    margin: 0 !important;
}


/* Thumbnail gallery */

body.single-product .flex-control-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 10px;

    margin-top: 12px !important;
}

body.single-product .flex-control-thumbs li {
    width: 100% !important;
    float: none !important;
}

body.single-product .flex-control-thumbs img {
    width: 100%;
    aspect-ratio: 1 / 1;

    object-fit: cover;

    cursor: pointer;

    opacity: 0.7;

    transition: opacity var(--transition);
}

body.single-product .flex-control-thumbs img:hover,
body.single-product .flex-control-thumbs img.flex-active {
    opacity: 1;
}


/* Product summary */

body.single-product div.product div.summary {
    width: 100% !important;

    float: none !important;

    margin: 0 !important;
}

body.single-product .product_title {
    margin: 0 0 15px;

    color: var(--dark-color);

    font-family: var(--heading-font);
    font-size: clamp(34px, 3.5vw, 48px);
    line-height: 1.1;
}


/* Rating */

body.single-product .woocommerce-product-rating {
    margin-bottom: 15px;
}

body.single-product .star-rating {
    color: var(--primary-color);
}


/* Price */

body.single-product div.product p.price,
body.single-product div.product span.price {
    margin: 0 0 20px;

    color: var(--primary-color);

    font-size: 22px;
    font-weight: 600;
}

body.single-product div.product p.price del {
    margin-right: 8px;

    color: #999;

    opacity: 0.7;
}

body.single-product div.product p.price ins {
    color: var(--primary-color);

    text-decoration: none;
}


/* Short description */

body.single-product .woocommerce-product-details__short-description {
    margin-bottom: 25px;

    color: var(--text-color);

    font-size: 15px;
    line-height: 1.8;
}

body.single-product .woocommerce-product-details__short-description p {
    margin-top: 0;
}


/* Quantity */

body.single-product form.cart {
    display: flex;
    align-items: center;

    gap: 12px;

    margin-bottom: 25px !important;
}

body.single-product .quantity .qty {
    width: 70px;
    height: 44px;

    padding: 8px;

    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);

    background: var(--light-color);
    color: var(--dark-color);

    text-align: center;
}


/* Add to cart */

body.single-product .single_add_to_cart_button {
    min-height: 44px !important;

    padding: 10px 28px !important;

    border: 0 !important;
    border-radius: var(--border-radius) !important;

    background: var(--primary-color) !important;
    color: var(--light-color) !important;

    font-size: 12px !important;
    font-weight: 600 !important;

    text-transform: uppercase;

    letter-spacing: 0.5px;
}

body.single-product .single_add_to_cart_button:hover {
    background: var(--dark-color) !important;
}


/* Product meta */

body.single-product .product_meta {
    margin-top: 25px;

    padding-top: 20px;

    border-top: 1px solid var(--border-color);

    color: var(--text-color);

    font-size: 12px;
    line-height: 1.8;
}

body.single-product .product_meta > span {
    display: block;
}

body.single-product .product_meta a {
    color: var(--primary-color);
}

body.single-product .product_meta a:hover {
    color: var(--dark-color);
}


/* Sale badge */

body.single-product .onsale {
    top: 15px !important;
    left: 15px !important;
    right: auto !important;

    min-width: auto !important;
    min-height: auto !important;

    padding: 6px 12px !important;

    border-radius: 0 !important;

    background: var(--primary-color) !important;
    color: var(--light-color) !important;

    font-size: 10px !important;
    font-weight: 600 !important;

    line-height: 1.4 !important;

    text-transform: uppercase;
}


/* =========================================================
   PRODUCT TABS
========================================================= */

body.single-product .woocommerce-tabs {
    grid-column: 1 / -1;

    width: 100%;

    margin-top: 60px;
}

body.single-product .woocommerce-tabs ul.tabs {
    display: flex;

    gap: 30px;

    margin: 0 0 30px !important;
    padding: 0 !important;

    border-bottom: 1px solid var(--border-color);
}

body.single-product .woocommerce-tabs ul.tabs::before {
    display: none !important;
}

body.single-product .woocommerce-tabs ul.tabs li {
    margin: 0 !important;
    padding: 0 !important;

    border: 0 !important;

    background: transparent !important;

    border-radius: 0 !important;
}

body.single-product .woocommerce-tabs ul.tabs li::before,
body.single-product .woocommerce-tabs ul.tabs li::after {
    display: none !important;
}

body.single-product .woocommerce-tabs ul.tabs li a {
    display: block;

    padding: 0 0 12px !important;

    color: var(--text-color) !important;

    font-size: 13px;
    font-weight: 600 !important;
}

body.single-product .woocommerce-tabs ul.tabs li.active a {
    color: var(--primary-color) !important;

    border-bottom: 2px solid var(--primary-color);
}

body.single-product .woocommerce-Tabs-panel {
    margin: 0 !important;

    color: var(--text-color);

    font-size: 14px;
    line-height: 1.8;
}

body.single-product .woocommerce-Tabs-panel h2 {
    margin-bottom: 18px;

    font-size: 28px;
}


/* =========================================================
   RELATED PRODUCTS
========================================================= */

body.single-product section.related,
body.single-product section.upsells {
    grid-column: 1 / -1;

    width: 100%;

    margin-top: 60px;
}

body.single-product section.related > h2,
body.single-product section.upsells > h2 {
    margin-bottom: 30px;

    color: var(--dark-color);

    font-family: var(--heading-font);
    font-size: 34px;

    text-align: center;
}

body.single-product section.related ul.products,
body.single-product section.upsells ul.products {
    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 22px 18px;

    margin: 0 !important;
    padding: 0 !important;
}

body.single-product section.related ul.products::before,
body.single-product section.related ul.products::after,
body.single-product section.upsells ul.products::before,
body.single-product section.upsells ul.products::after {
    display: none !important;
}

body.single-product section.related ul.products li.product,
body.single-product section.upsells ul.products li.product {
    width: auto !important;

    float: none !important;

    margin: 0 !important;
    padding: 0 0 16px;

    overflow: hidden;

    border: 1px solid var(--border-color);

    background: var(--light-color);
}

body.single-product section.related ul.products li.product img,
body.single-product section.upsells ul.products li.product img {
    width: 100%;
    height: 250px;

    margin: 0 !important;

    object-fit: cover;
}

body.single-product section.related .woocommerce-loop-product__title,
body.single-product section.upsells .woocommerce-loop-product__title {
    padding: 15px 15px 6px !important;

    color: var(--dark-color);

    font-size: 17px !important;
}

body.single-product section.related .price,
body.single-product section.upsells .price {
    padding: 0 15px 12px;

    color: var(--primary-color) !important;

    font-size: 13px !important;
}

body.single-product section.related .button,
body.single-product section.upsells .button {
    margin-left: 15px !important;

    padding: 9px 16px !important;

    background: var(--dark-color) !important;
    color: var(--light-color) !important;

    font-size: 10px !important;
}

body.single-product section.related .button:hover,
body.single-product section.upsells .button:hover {
    background: var(--primary-color) !important;
}


/* =========================================================
   SINGLE PRODUCT RESPONSIVE
========================================================= */

@media (max-width: 900px) {

    body.single-product div.product {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    body.single-product .woocommerce-tabs,
    body.single-product section.related,
    body.single-product section.upsells {
        grid-column: 1;
    }

    body.single-product section.related ul.products,
    body.single-product section.upsells ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


@media (max-width: 600px) {

    body.single-product .site-main {
        padding: 50px 0 60px;
    }

    body.single-product .product_title {
        font-size: 34px;
    }

    body.single-product form.cart {
        flex-wrap: wrap;
    }

    body.single-product .single_add_to_cart_button {
        flex: 1;
    }

    body.single-product .woocommerce-tabs {
        margin-top: 40px;
    }

    body.single-product .woocommerce-tabs ul.tabs {
        flex-wrap: wrap;

        gap: 15px;
    }

    body.single-product section.related,
    body.single-product section.upsells {
        margin-top: 45px;
    }

    body.single-product section.related ul.products,
    body.single-product section.upsells ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 14px 10px;
    }

    body.single-product section.related ul.products li.product img,
    body.single-product section.upsells ul.products li.product img {
        height: 190px;
    }
}
/* Remove WooCommerce sidebar and use full width */

.woocommerce-page #sidebar,
.woocommerce-page .widget-area {
    display: none;
}

.woocommerce-page #primary,
.woocommerce-page .content-area {
    width: 100%;
    float: none;
    margin: 0;
}
/* =========================================================
   STER CART & CHECKOUT
========================================================= */

body.woocommerce-cart .site-main,
body.woocommerce-checkout .site-main {
    padding: 70px 0 80px;
    background: var(--soft-background);
}

body.woocommerce-cart .woocommerce,
body.woocommerce-checkout .woocommerce {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
}


/* Page headings */

body.woocommerce-cart .entry-title,
body.woocommerce-checkout .entry-title {
    margin-bottom: 35px;

    color: var(--dark-color);

    font-family: var(--heading-font);
    font-size: clamp(34px, 4vw, 46px);
}


/* WooCommerce notices */

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    margin-bottom: 25px !important;

    padding: 16px 20px 16px 45px !important;

    border-top: 3px solid var(--primary-color) !important;

    background: var(--light-color) !important;
    color: var(--text-color) !important;

    font-size: 13px;
}

.woocommerce-message::before,
.woocommerce-info::before {
    color: var(--primary-color) !important;
}


/* =========================================================
   CART TABLE
========================================================= */

body.woocommerce-cart table.shop_table {
    border: 1px solid var(--border-color);
    border-radius: 0;

    background: var(--light-color);
}

body.woocommerce-cart table.shop_table th {
    padding: 15px;

    color: var(--dark-color);

    font-size: 12px;
    font-weight: 600;

    text-transform: uppercase;
}

body.woocommerce-cart table.shop_table td {
    padding: 16px;

    border-top: 1px solid var(--border-color);

    font-size: 13px;
}

body.woocommerce-cart .product-thumbnail img {
    width: 75px;
    height: 75px;

    object-fit: cover;
}

body.woocommerce-cart .product-name a {
    color: var(--dark-color);

    font-family: var(--heading-font);
    font-size: 16px;
}

body.woocommerce-cart .product-name a:hover {
    color: var(--primary-color);
}

body.woocommerce-cart .product-price,
body.woocommerce-cart .product-subtotal {
    color: var(--dark-color);

    font-weight: 600;
}


/* Quantity */

body.woocommerce-cart .quantity .qty {
    width: 65px;
    height: 40px;

    border: 1px solid var(--border-color);

    text-align: center;
}


/* Remove item */

body.woocommerce-cart a.remove {
    color: var(--primary-color) !important;
}

body.woocommerce-cart a.remove:hover {
    background: var(--primary-color) !important;
    color: var(--light-color) !important;
}


/* Coupon */

body.woocommerce-cart .coupon {
    display: flex;

    gap: 10px;
}

body.woocommerce-cart .coupon input.input-text {
    min-width: 190px;

    padding: 10px 12px !important;

    border: 1px solid var(--border-color) !important;

    font-size: 12px;
}


/* Cart buttons */

body.woocommerce-cart button.button,
body.woocommerce-cart a.button {
    min-height: 40px;

    padding: 9px 18px !important;

    border-radius: var(--border-radius) !important;

    background: var(--dark-color) !important;
    color: var(--light-color) !important;

    font-size: 11px !important;
}

body.woocommerce-cart button.button:hover,
body.woocommerce-cart a.button:hover {
    background: var(--primary-color) !important;
    color: var(--light-color) !important;
}


/* =========================================================
   CART TOTALS
========================================================= */

body.woocommerce-cart .cart-collaterals {
    margin-top: 35px;
}

body.woocommerce-cart .cart_totals {
    width: 42% !important;

    padding: 25px;

    background: var(--light-color);

    border: 1px solid var(--border-color);
}

body.woocommerce-cart .cart_totals h2 {
    margin-bottom: 20px;

    font-size: 26px;
}

body.woocommerce-cart .cart_totals table {
    border: 0;
}

body.woocommerce-cart .cart_totals th,
body.woocommerce-cart .cart_totals td {
    padding: 12px 0;

    border-top: 1px solid var(--border-color);
}

body.woocommerce-cart .wc-proceed-to-checkout {
    padding-bottom: 0;
}

body.woocommerce-cart .checkout-button {
    width: 100%;

    min-height: 45px;

    display: flex !important;
    align-items: center;
    justify-content: center;

    background: var(--primary-color) !important;

    font-size: 12px !important;
    font-weight: 600 !important;
}

body.woocommerce-cart .checkout-button:hover {
    background: var(--dark-color) !important;
}


/* =========================================================
   CHECKOUT
========================================================= */

body.woocommerce-checkout form.checkout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);

    gap: 45px;
}

body.woocommerce-checkout #customer_details {
    width: 100%;
}

body.woocommerce-checkout #customer_details .col-1,
body.woocommerce-checkout #customer_details .col-2 {
    width: 100%;

    float: none;

    padding: 0;
}

body.woocommerce-checkout #customer_details .col-2 {
    margin-top: 35px;
}


/* Checkout headings */

body.woocommerce-checkout h3 {
    margin-bottom: 20px;

    color: var(--dark-color);

    font-size: 24px;
}


/* Checkout inputs */

body.woocommerce-checkout .form-row {
    margin-bottom: 16px;
}

body.woocommerce-checkout .form-row label {
    margin-bottom: 5px;

    color: var(--dark-color);

    font-size: 12px;
    font-weight: 500;
}

body.woocommerce-checkout input.input-text,
body.woocommerce-checkout textarea,
body.woocommerce-checkout select {
    width: 100%;

    min-height: 44px;

    padding: 10px 12px;

    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);

    background: var(--light-color);

    font-size: 13px;
}

body.woocommerce-checkout textarea {
    min-height: 120px;

    resize: vertical;
}

body.woocommerce-checkout input.input-text:focus,
body.woocommerce-checkout textarea:focus,
body.woocommerce-checkout select:focus {
    border-color: var(--primary-color);

    outline: none;
}


/* Order summary */

body.woocommerce-checkout #order_review_heading,
body.woocommerce-checkout #order_review {
    width: 100%;

    float: none;
}

body.woocommerce-checkout #order_review {
    padding: 25px;

    background: var(--light-color);

    border: 1px solid var(--border-color);
}

body.woocommerce-checkout table.shop_table {
    border: 0;

    border-radius: 0;
}

body.woocommerce-checkout table.shop_table th,
body.woocommerce-checkout table.shop_table td {
    padding: 12px 0;

    border-top: 1px solid var(--border-color);

    font-size: 12px;
}

body.woocommerce-checkout table.shop_table th {
    color: var(--dark-color);
}


/* Payment area */

body.woocommerce-checkout #payment {
    margin-top: 25px;

    background: var(--secondary-color) !important;

    border-radius: 0 !important;
}

body.woocommerce-checkout #payment ul.payment_methods {
    padding: 20px !important;

    border-bottom: 1px solid var(--border-color) !important;
}

body.woocommerce-checkout #payment div.payment_box {
    background: var(--light-color) !important;

    font-size: 12px;
}

body.woocommerce-checkout #payment div.payment_box::before {
    border-bottom-color: var(--light-color) !important;
}

body.woocommerce-checkout #payment div.form-row {
    padding: 20px !important;
}


/* Place order */

body.woocommerce-checkout #place_order {
    width: 100%;

    min-height: 46px;

    border-radius: var(--border-radius) !important;

    background: var(--primary-color) !important;
    color: var(--light-color) !important;

    font-size: 12px !important;
    font-weight: 600 !important;

    text-transform: uppercase;

    letter-spacing: 0.5px;
}

body.woocommerce-checkout #place_order:hover {
    background: var(--dark-color) !important;
}


/* =========================================================
   CART / CHECKOUT RESPONSIVE
========================================================= */

@media (max-width: 850px) {

    body.woocommerce-cart .cart_totals {
        width: 100% !important;
    }

    body.woocommerce-checkout form.checkout {
        grid-template-columns: 1fr;

        gap: 35px;
    }
}


@media (max-width: 600px) {

    body.woocommerce-cart .site-main,
    body.woocommerce-checkout .site-main {
        padding: 50px 0 60px;
    }

    body.woocommerce-cart .woocommerce,
    body.woocommerce-checkout .woocommerce {
        width: 90%;
    }

    body.woocommerce-cart table.shop_table td,
    body.woocommerce-cart table.shop_table th {
        font-size: 11px;
    }

    body.woocommerce-cart .coupon {
        flex-direction: column;
    }

    body.woocommerce-cart .coupon input.input-text {
        width: 100%;

        min-width: 0;
    }

    body.woocommerce-cart .coupon .button {
        width: 100%;
    }

    body.woocommerce-checkout #order_review {
        padding: 18px;
    }
}
/* =========================================================
   STER ABOUT PAGE
========================================================= */

.about-page-hero {
    padding: 100px 0;
    background: var(--secondary-color);
    text-align: center;
}

.about-hero-content {
    max-width: 760px;
}

.about-page-hero h1 {
    margin: 0 0 20px;
    color: var(--dark-color);
    font-size: clamp(44px, 5vw, 64px);
}

.about-page-hero p {
    max-width: 590px;
    margin: 0 auto;
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.8;
}


/* OUR STORY */

.about-story {
    background: var(--light-color);
}

.about-story-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 65px;
    align-items: center;
}

.about-story-image {
    height: 520px;
    overflow: hidden;
    background: var(--secondary-color);
}

.about-story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-story-placeholder {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--primary-color);
    font-family: var(--heading-font);
    font-size: 30px;
}

.about-story-content {
    max-width: 500px;
}

.about-story-content h2 {
    margin: 0 0 22px;

    color: var(--dark-color);

    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.1;
}

.about-page-description {
    color: var(--text-color);
    font-size: 14px;
    line-height: 1.9;
}

.about-page-description p {
    margin: 0 0 16px;
}

.about-page-description p:last-child {
    margin-bottom: 0;
}


/* WHAT WE OFFER */

.about-offer {
    background: var(--soft-background);
}

.about-offer-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 38px;
}

.about-offer-card {
    overflow: hidden;
    background: var(--light-color);

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.about-offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(37, 33, 36, 0.08);
}

.about-offer-image {
    height: 280px;
    overflow: hidden;
}

.about-offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: transform 0.5s ease;
}

.about-offer-card:hover img {
    transform: scale(1.04);
}

.about-offer-content {
    padding: 18px;
    text-align: center;
}

.about-offer-content h3 {
    margin: 0 0 6px;
    font-size: 20px;
}

.about-offer-content span {
    color: var(--primary-color);
    font-size: 11px;
    font-weight: 600;
}


/* VALUES */

.about-values {
    background: var(--light-color);
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 38px;
}

.about-value-card {
    padding: 35px 30px;

    border: 1px solid var(--border-color);

    background: var(--light-color);
}

.about-value-card > span {
    display: block;
    margin-bottom: 20px;

    color: var(--accent-color);

    font-family: var(--heading-font);
    font-size: 35px;
}

.about-value-card h3 {
    margin: 0 0 12px;
    font-size: 22px;
}

.about-value-card p {
    margin: 0;

    color: var(--text-color);

    font-size: 13px;
    line-height: 1.8;
}


/* ABOUT CTA */

.about-shop-cta {
    padding: 65px 0;
    background: var(--dark-color);
}

.about-shop-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.about-shop-cta .section-label {
    color: var(--accent-color);
}

.about-shop-cta h2 {
    margin: 0 0 10px;

    color: var(--light-color);

    font-size: clamp(30px, 3vw, 40px);
}

.about-shop-cta p {
    max-width: 600px;
    margin: 0;

    color: rgba(255, 255, 255, 0.72);

    font-size: 14px;
}


/* RESPONSIVE */

@media (max-width: 900px) {

    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-story-content {
        max-width: 100%;
    }

    .about-offer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-values-grid {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 650px) {

    .about-page-hero {
        padding: 70px 0;
    }

    .about-page-hero h1 {
        font-size: 40px;
    }

    .about-story-image {
        height: 380px;
    }

    .about-offer-grid {
        grid-template-columns: 1fr;
    }

    .about-offer-image {
        height: 330px;
    }

    .about-shop-cta-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }
}
/* =========================================================
   STER BLOG
========================================================= */

.blog-page-hero {
    padding: 95px 0;
    background: var(--secondary-color);
    text-align: center;
}

.blog-page-hero h1 {
    margin: 0 0 18px;
    font-size: clamp(42px, 5vw, 60px);
}

.blog-page-hero p {
    max-width: 590px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.8;
}


/* BLOG ARCHIVE */

.blog-archive {
    background: var(--light-color);
}

.blog-archive-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px 22px;
}

.blog-archive-card {
    overflow: hidden;
    border: 1px solid var(--border-color);
    background: var(--light-color);

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.blog-archive-card:hover {
    transform: translateY(-4px);

    box-shadow:
        0 12px 30px rgba(37, 33, 36, 0.07);
}

.blog-archive-image {
    display: block;
    height: 245px;
    overflow: hidden;
    background: var(--secondary-color);
}

.blog-archive-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: transform 0.5s ease;
}

.blog-archive-card:hover
.blog-archive-image img {
    transform: scale(1.04);
}

.blog-archive-content {
    padding: 22px;
}

.blog-archive-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;

    margin-bottom: 10px;

    color: var(--primary-color);

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.blog-archive-content h2 {
    margin: 0 0 12px;

    font-size: 22px;
    line-height: 1.3;
}

.blog-archive-content h2 a {
    color: var(--dark-color);
}

.blog-archive-content h2 a:hover {
    color: var(--primary-color);
}

.blog-archive-excerpt {
    margin-bottom: 17px;

    color: var(--text-color);

    font-size: 13px;
    line-height: 1.75;
}


/* PAGINATION */

.ster-pagination {
    margin-top: 50px;
}

.ster-pagination .nav-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.ster-pagination .page-numbers {
    min-width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0 12px;

    border: 1px solid var(--border-color);

    color: var(--dark-color);

    font-size: 12px;
}

.ster-pagination .page-numbers.current,
.ster-pagination a.page-numbers:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--light-color);
}


/* =========================================================
   SINGLE BLOG ARTICLE
========================================================= */

.single-blog-header {
    padding: 85px 0 50px;

    background: var(--secondary-color);

    text-align: center;
}

.single-blog-header-inner {
    max-width: 850px;
}

.single-blog-meta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;

    margin-bottom: 16px;

    color: var(--primary-color);

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 1px;
    text-transform: uppercase;
}

.single-blog-header h1 {
    margin: 0 auto 18px;

    max-width: 800px;

    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.1;
}

.single-blog-intro {
    max-width: 650px;
    margin: 0 auto;

    color: var(--text-color);

    font-size: 15px;
    line-height: 1.8;
}


/* FEATURED IMAGE */

.single-blog-featured {
    padding: 50px 0 0;
}

.single-blog-featured .container {
    max-width: 1000px;
}

.single-blog-featured img {
    width: 100%;
    max-height: 600px;

    object-fit: cover;
}


/* ARTICLE CONTENT */

.single-blog-content-section {
    padding: 55px 0 30px;
}

.single-blog-content-section .container {
    max-width: 800px;
}

.single-blog-content {
    color: var(--text-color);

    font-size: 15px;
    line-height: 1.9;
}

.single-blog-content p {
    margin: 0 0 22px;
}

.single-blog-content h2 {
    margin: 42px 0 17px;

    font-size: 31px;
}

.single-blog-content h3 {
    margin: 32px 0 14px;

    font-size: 24px;
}

.single-blog-content ul,
.single-blog-content ol {
    margin: 0 0 25px 22px;
    padding: 0;
}

.single-blog-content li {
    margin-bottom: 8px;
}

.single-blog-content img {
    margin: 30px 0;
}


/* ARTICLE FOOTER */

.single-blog-footer {
    padding: 20px 0 70px;
}

.single-blog-footer .container {
    max-width: 800px;
}


/* RESPONSIVE */

@media (max-width: 900px) {

    .blog-archive-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}


@media (max-width: 650px) {

    .blog-page-hero {
        padding: 70px 0;
    }

    .blog-page-hero h1 {
        font-size: 39px;
    }

    .blog-archive-grid {
        grid-template-columns: 1fr;
    }

    .blog-archive-image {
        height: 270px;
    }

    .single-blog-header {
        padding: 65px 0 40px;
    }

    .single-blog-header h1 {
        font-size: 36px;
    }

    .single-blog-featured {
        padding-top: 35px;
    }

    .single-blog-content-section {
        padding-top: 40px;
    }
}
/* =========================================================
   STER CONTACT PAGE
========================================================= */

.contact-hero {
    padding: 95px 0;
    background: var(--secondary-color);
    text-align: center;
}

.contact-hero-inner {
    max-width: 760px;
}

.contact-hero h1 {
    margin: 0 0 18px;
    font-size: clamp(42px, 5vw, 60px);
}

.contact-hero p {
    max-width: 600px;
    margin: 0 auto;

    color: var(--text-color);

    font-size: 15px;
    line-height: 1.8;
}


/* MAIN CONTACT */

.contact-main {
    background: var(--light-color);
}

.contact-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(0, 1.1fr);

    gap: 75px;

    align-items: start;
}

.contact-information h2,
.contact-form-wrapper h2 {
    margin: 0 0 16px;

    font-size: clamp(32px, 3vw, 42px);
}

.contact-intro,
.contact-form-wrapper > p {
    max-width: 500px;

    margin: 0 0 30px;

    color: var(--text-color);

    font-size: 14px;
    line-height: 1.8;
}


/* CONTACT DETAILS */

.contact-details {
    margin-top: 30px;
}

.contact-detail {
    padding: 18px 0;

    border-bottom:
        1px solid var(--border-color);
}

.contact-detail:first-child {
    border-top:
        1px solid var(--border-color);
}

.contact-detail-label {
    display: block;

    margin-bottom: 5px;

    color: var(--primary-color);

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 1.4px;

    text-transform: uppercase;
}

.contact-detail a,
.contact-detail p {
    margin: 0;

    color: var(--dark-color);

    font-size: 14px;
}

.contact-detail a:hover {
    color: var(--primary-color);
}


/* SOCIAL */

.contact-social {
    margin-top: 35px;
}

.contact-social h3 {
    margin-bottom: 13px;

    font-size: 20px;
}

.contact-social-links {
    display: flex;

    flex-wrap: wrap;

    gap: 10px;
}

.contact-social-links a {
    padding: 8px 13px;

    border:
        1px solid var(--border-color);

    color: var(--dark-color);

    font-size: 11px;

    transition:
        background var(--transition),
        border-color var(--transition),
        color var(--transition);
}

.contact-social-links a:hover {
    background: var(--primary-color);

    border-color:
        var(--primary-color);

    color: var(--light-color);
}


/* FORM */

.contact-form-wrapper {
    padding: 35px;

    background: var(--soft-background);

    border:
        1px solid var(--border-color);
}

.contact-form-area p {
    margin: 0 0 16px;
}

.contact-form-area label {
    display: block;

    margin-bottom: 6px;

    color: var(--dark-color);

    font-size: 12px;
    font-weight: 500;
}

.contact-form-area input:not([type="submit"]),
.contact-form-area textarea,
.contact-form-area select {
    width: 100%;

    padding: 11px 13px;

    border:
        1px solid var(--border-color);

    border-radius:
        var(--border-radius);

    background: var(--light-color);

    color: var(--dark-color);

    outline: none;
}

.contact-form-area input:not([type="submit"]) {
    min-height: 44px;
}

.contact-form-area textarea {
    min-height: 150px;

    resize: vertical;
}

.contact-form-area input:focus,
.contact-form-area textarea:focus,
.contact-form-area select:focus {
    border-color:
        var(--primary-color);
}

.contact-form-area input[type="submit"],
.contact-form-area button[type="submit"] {
    min-height: 43px;

    padding: 10px 25px;

    border: 0;

    border-radius:
        var(--border-radius);

    background:
        var(--primary-color);

    color:
        var(--light-color);

    font-size: 12px;
    font-weight: 600;

    cursor: pointer;
}

.contact-form-area input[type="submit"]:hover,
.contact-form-area button[type="submit"]:hover {
    background:
        var(--dark-color);
}


/* SUPPORT */

.contact-support {
    background:
        var(--soft-background);
}

.contact-support-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 22px;

    margin-top: 38px;
}

.contact-support-card {
    padding: 32px 27px;

    background:
        var(--light-color);

    border:
        1px solid var(--border-color);
}

.contact-support-card > span {
    display: block;

    margin-bottom: 20px;

    color:
        var(--accent-color);

    font-family:
        var(--heading-font);

    font-size: 34px;
}

.contact-support-card h3 {
    margin: 0 0 11px;

    font-size: 21px;
}

.contact-support-card p {
    margin: 0;

    color:
        var(--text-color);

    font-size: 13px;

    line-height: 1.8;
}


/* RESPONSIVE */

@media (max-width: 850px) {

    .contact-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .contact-support-grid {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 600px) {

    .contact-hero {
        padding: 70px 0;
    }

    .contact-hero h1 {
        font-size: 38px;
    }

    .contact-form-wrapper {
        padding: 25px 20px;
    }
}
/* =========================================================
   STER MOBILE NAVIGATION
========================================================= */

@media (max-width: 700px) {

    .site-header {
        position: relative;
    }

    .header-inner {
        position: relative;

        min-height: 68px;
    }


    /* Show hamburger */

    .mobile-menu-toggle {
        width: 27px;
        height: 20px;

        display: flex;

        flex-direction: column;
        justify-content: space-between;

        padding: 0;

        border: 0;

        background: transparent;

        cursor: pointer;
    }

    .mobile-menu-toggle span {
        width: 100%;
        height: 2px;

        display: block;

        background: var(--dark-color);

        transition:
            transform 0.3s ease,
            opacity 0.3s ease;
    }


    /* Mobile navigation */

    .main-navigation {
        position: absolute;

        top: 100%;
        left: 0;

        z-index: 1200;

        width: 100%;

        display: none;

        margin: 0;

        padding: 0 5% 20px;

        background: var(--light-color);

        border-top: 1px solid var(--border-color);
        border-bottom: 1px solid var(--border-color);

        box-shadow:
            0 12px 25px rgba(37, 33, 36, 0.08);
    }

    .main-navigation.is-open {
        display: block;
    }


    /* Main menu */

    .primary-menu {
        width: 100%;

        display: block;

        margin: 0;
        padding: 10px 0;

        list-style: none;
    }

    .primary-menu > li {
        width: 100%;

        border-bottom:
            1px solid var(--border-color);
    }

    .primary-menu > li:last-child {
        border-bottom: 0;
    }

    .primary-menu > li > a {
        width: 100%;

        display: block;

        padding: 14px 5px;

        color: var(--dark-color);

        font-size: 13px;
    }


    /* Shop submenu */

    .primary-menu .sub-menu {
        position: static;

        width: 100%;

        display: block;

        margin: 0;

        padding: 0 0 10px 18px;

        border: 0;

        background: transparent;

        box-shadow: none;

        opacity: 1;

        visibility: visible;

        transform: none;
    }

    .primary-menu .sub-menu a {
        padding: 8px 5px;

        color: var(--text-color);

        font-size: 12px;
    }


    /* Cart + hamburger */

    .header-actions {
        margin-left: auto;

        display: flex;

        align-items: center;

        gap: 18px;
    }


    /* Hamburger becomes X */

    .mobile-menu-toggle.is-active span:nth-child(1) {
        transform:
            translateY(9px)
            rotate(45deg);
    }

    .mobile-menu-toggle.is-active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.is-active span:nth-child(3) {
        transform:
            translateY(-9px)
            rotate(-45deg);
    }
}
/* =========================================================
   HEADER CART POLISH
========================================================= */

.cart-link {
    position: relative;

    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--border-color);
    border-radius: 50%;

    background: var(--light-color);

    color: var(--dark-color);

    transition:
        border-color var(--transition),
        background var(--transition),
        color var(--transition);
}

.cart-link:hover {
    border-color: var(--primary-color);

    background: var(--secondary-color);

    color: var(--primary-color);
}

.cart-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 17px;
    line-height: 1;
}

.cart-count {
    position: absolute;

    top: -6px;
    right: -6px;

    min-width: 18px;
    height: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0 4px;

    border-radius: 50%;

    background: var(--primary-color);

    color: var(--light-color);

    font-size: 9px;
    font-weight: 600;

    line-height: 1;
}


/* MOBILE */

@media (max-width: 700px) {

    .cart-link {
        width: 36px;
        height: 36px;
    }

    .cart-icon {
        font-size: 16px;
    }

    .header-actions {
        gap: 14px;
    }
}
/* =========================================================
   STER FINAL FOOTER POLISH
========================================================= */

.site-footer {
    background: var(--dark-color);
    color: rgba(255, 255, 255, 0.72);
}

/* Main footer */

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.8fr 0.9fr 1fr 0.8fr;
    gap: 35px;

    padding-top: 55px;
    padding-bottom: 45px;
}

.footer-column {
    min-width: 0;
}

.footer-column h3 {
    position: relative;

    margin: 0 0 20px;

    color: var(--light-color);

    font-size: 17px;
    font-weight: 500;
}

.footer-column h3::after {
    content: "";

    display: block;

    width: 28px;
    height: 2px;

    margin-top: 8px;

    background: var(--accent-color);
}


/* BRAND */

.footer-brand {
    max-width: 260px;
}

.footer-logo {
    margin-bottom: 18px;
}

.footer-logo img {
    width: auto;
    max-width: 150px;
    max-height: 55px;
}

.footer-logo > a:not(.custom-logo-link) {
    color: var(--light-color);

    font-family: var(--heading-font);
    font-size: 26px;
    font-weight: 600;
}

.footer-brand p {
    margin: 0;

    color: rgba(255, 255, 255, 0.65);

    font-size: 12px;
    line-height: 1.8;
}


/* FOOTER LINKS */

.footer-column ul {
    margin: 0;
    padding: 0;

    list-style: none;
}

.footer-column li {
    margin: 0 0 9px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.72);

    font-size: 12px;

    transition:
        color var(--transition),
        padding-left var(--transition);
}

.footer-column a:hover {
    color: var(--accent-color);
}


/* Only move menu links slightly */

.footer-column ul a:hover {
    padding-left: 3px;
}


/* CONTACT */

.footer-column p {
    margin: 0 0 9px;

    font-size: 12px;
    line-height: 1.7;
}


/* FOOTER BOTTOM */

.footer-bottom {
    padding: 18px 0;

    border-top:
        1px solid rgba(255, 255, 255, 0.10);
}

.footer-bottom-inner {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 25px;
}

.footer-bottom p {
    margin: 0;

    color: rgba(255, 255, 255, 0.55);

    font-size: 11px;
}

.footer-legal {
    display: flex;
    align-items: center;

    gap: 20px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.58);

    font-size: 11px;
}

.footer-legal a:hover {
    color: var(--accent-color);
}


/* TABLET */

@media (max-width: 1000px) {

    .footer-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));

        gap: 38px 30px;
    }
}


/* MOBILE */

@media (max-width: 700px) {

    .footer-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 35px 25px;

        padding-top: 45px;
        padding-bottom: 38px;
    }

    .footer-brand {
        max-width: 100%;
    }
}


/* SMALL MOBILE */

@media (max-width: 480px) {

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 30px;
    }

    .footer-bottom-inner {
        flex-direction: column;

        align-items: flex-start;

        gap: 10px;
    }

    .footer-legal {
        flex-wrap: wrap;

        gap: 10px 16px;
    }
}
/* =========================================================
   PRODUCT CATEGORY PAGES
========================================================= */

.tax-product_cat .site-main,
.tax-product_cat #main {
    width: 90%;
    max-width: var(--container-width);
    margin-left: auto;
    margin-right: auto;
}


/* Category header */

.tax-product_cat .woocommerce-products-header {
    max-width: 720px;
    margin: 0 auto 50px;
    padding-top: 65px;
    text-align: center;
}


/* Category title */

.tax-product_cat .woocommerce-products-header__title {
    margin: 0 0 18px;

    color: var(--dark-color);

    font-family: var(--heading-font);
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.1;
}


/* Category description */

.tax-product_cat .term-description {
    max-width: 620px;
    margin: 0 auto;

    color: var(--text-color);

    font-size: 14px;
    line-height: 1.8;
}

.tax-product_cat .term-description p {
    margin: 0;
}


/* Results + sorting area */

.tax-product_cat .woocommerce-result-count {
    margin: 0 0 25px;
    color: var(--text-color);
    font-size: 13px;
}


/* Product grid spacing */

.tax-product_cat ul.products {
    clear: both;
    margin-top: 25px;
}


/* Bottom breathing room */

.tax-product_cat .woocommerce {
    padding-bottom: 70px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 850px) {

    .tax-product_cat .woocommerce-products-header {
        padding-top: 50px;
        margin-bottom: 40px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .tax-product_cat .site-main,
    .tax-product_cat #main {
        width: 90%;
    }

    .tax-product_cat .woocommerce-products-header {
        padding-top: 40px;
        margin-bottom: 35px;
    }

    .tax-product_cat .woocommerce-products-header__title {
        font-size: 38px;
    }

    .tax-product_cat .term-description {
        font-size: 13px;
        line-height: 1.7;
    }

}
/* =========================================================
   SINGLE PRODUCT PAGE SPACING
========================================================= */

.single-product .site-main,
.single-product #main {
    width: 90%;
    max-width: var(--container-width);
    margin-left: auto;
    margin-right: auto;
}


/* Main product area */

.single-product div.product {
    padding-top: 55px;
    padding-bottom: 60px;
}


/* Keep product summary comfortably spaced */

.single-product div.product .summary {
    padding-left: 20px;
}


/* Product tabs */

.single-product .woocommerce-tabs {
    margin-top: 45px;
}


/* Related products */

.single-product .related.products {
    margin-top: 60px;
    padding-bottom: 40px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 850px) {

    .single-product div.product {
        padding-top: 40px;
    }

    .single-product div.product .summary {
        padding-left: 0;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .single-product .site-main,
    .single-product #main {
        width: 90%;
    }

    .single-product div.product {
        padding-top: 30px;
        padding-bottom: 45px;
    }

    .single-product .woocommerce-tabs {
        margin-top: 35px;
    }

    .single-product .related.products {
        margin-top: 45px;
    }

}
/* =========================================================
   REDUCE WOOCOMMERCE TOP WHITE SPACE
========================================================= */

/* Product category pages */
.tax-product_cat .woocommerce-products-header {
    padding-top: 25px;
    margin-top: 0;
    margin-bottom: 35px;
}


/* Single product pages */
.single-product div.product {
    padding-top: 25px;
    margin-top: 0;
}


/* Remove extra WooCommerce top spacing if present */
.tax-product_cat .site-main,
.single-product .site-main,
.tax-product_cat #main,
.single-product #main {
    margin-top: 0;
}


/* Mobile */
@media (max-width: 700px) {

    .tax-product_cat .woocommerce-products-header {
        padding-top: 20px;
        margin-bottom: 30px;
    }

    .single-product div.product {
        padding-top: 20px;
    }

}
.tax-product_cat #primary,
.single-product #primary,
.tax-product_cat .content-area,
.single-product .content-area {
    padding-top: 0;
    margin-top: 0;
}
/* =========================================================
   CART COUNT BADGE
========================================================= */

.cart-link {
    position: relative;
}

.cart-count {
    position: absolute;

    top: -7px;
    right: -9px;

    min-width: 19px;
    height: 19px;

    display: flex !important;
    align-items: center;
    justify-content: center;

    padding: 0 5px;

    border-radius: 50%;

    background: var(--primary-color);
    color: #ffffff;

    font-size: 10px;
    font-weight: 600;
    line-height: 19px;

    z-index: 10;
}
/* =========================================================
   CART QUANTITY BADGE
========================================================= */

.cart-link {
    position: relative;
    overflow: visible !important;
}

.cart-count {
    position: absolute !important;

    top: -8px !important;
    right: -10px !important;

    min-width: 20px !important;
    height: 20px !important;

    display: flex !important;
    align-items: center;
    justify-content: center;

    padding: 0 5px;

    background: var(--primary-color) !important;
    color: #ffffff !important;

    border: 2px solid #ffffff;
    border-radius: 999px;

    font-size: 10px !important;
    font-weight: 700;
    line-height: 1;

    opacity: 1 !important;
    visibility: visible !important;

    z-index: 9999;
}
/* =========================================================
   FLOATING WHATSAPP BUTTON
========================================================= */

.ster-whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9999;

    width: 56px;
    height: 56px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #25D366;
    color: #ffffff;

    border-radius: 50%;

    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.20);

    transition: transform 0.3s ease,
                box-shadow 0.3s ease;
}

.ster-whatsapp-float:hover {
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 9px 25px rgba(0, 0, 0, 0.25);
}

.ster-whatsapp-icon {
    width: 31px;
    height: 31px;
    display: block;
}


/* Mobile */

@media (max-width: 700px) {

    .ster-whatsapp-float {
        right: 16px;
        bottom: 18px;

        width: 52px;
        height: 52px;
    }

    .ster-whatsapp-icon {
        width: 29px;
        height: 29px;
    }
}
.cart-count {
    background: #8B5E83 !important;
    color: #ffffff !important;

    border: 2px solid #ffffff;

    min-width: 20px;
    height: 20px;

    display: flex !important;
    align-items: center;
    justify-content: center;

    border-radius: 999px;

    font-size: 10px;
    font-weight: 700;

    position: absolute;
    top: -8px;
    right: -10px;

    z-index: 9999;
}
/* Shop page product prices only */
.post-type-archive-product .price,
.post-type-archive-product .price *,
.post-type-archive-product .woocommerce-Price-amount {
    color: #000000 !important;
}