* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

@font-face {
    font-family: 'Tachyon';
    src: url(../fonts/TachyonW00-Regular.woff2) format('woff2'), url(../fonts/TachyonW00-Regular.woff) format('woff'), url(../fonts/TachyonW00-Regular.ttf) format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

:root {
    --primary-teal: #486168;
    --dark-blue: #003366;
    --light-gray: #f5f5f5;
    --text-dark: #1a1a1a;
    --white: #ffffff;
    --secondary-light: #e6f7f7;
    --accent-pink: #ff6b9d;
    --border-color: #e0e0e0;
    --hover-teal: #01A0BE;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --max-inline-size: 1420px;
    --max-container: min(var(--max-inline-size), 100% - 3rem)
}

body {
    font-family: sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue' !important;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #f9f9f9
}
body.cell-home-container,.header-container{
	font-family: 'Tachyon', sans-serif!important;	
}
footer {
    font-family: sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue' !important;
}

body.cell-home-container{
	input {
	    font-family: 'Tachyon', sans-serif !important;
	}	
}


a:active,
a:focus {
    outline: none!important
}

body a {
    color: var(--primary-teal)
}

.menu-backdrop {
    position: fixed;
    inset: 0;
    background: rgb(0 0 0 / .35);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 200ms ease, visibility 200ms ease;
    z-index: 40
}

.menu-backdrop.active {
    opacity: 1;
    visibility: visible
}

body.menu-open {
    overflow: hidden
}

.container {
    max-width: var(--max-container);
    margin-inline: auto
}

header:has(.header-container) {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 10000
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--max-container);
    margin: 0 auto;
    padding-block: 1rem;
    gap: 1rem
}

.logo {
    max-width: 180px
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    @media (max-width: 1280px) {
        gap: 1.25rem
    }
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    text-transform: uppercase;
    @media (max-width: 1280px) {
        font-size: 14px
    }
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--hover-teal);
    transition: width 0.3s ease
}

.nav-links a:hover {
    color: var(--hover-teal)
}

.nav-links a:hover::after {
    width: 100%
}

.search-areas {
    display: flex;
    column-gap: 1.5rem;
    @media (max-width: 1280px) {
        column-gap: 1rem
    }
}

.mobile-menu {
    button {
        width: 28px;
        min-width: 28px;
        height: 28px;
        position: absolute;
        padding: 0;
        top: 20px;
        right: 20px;
        background-color: var(--secondary-light)!important;
        border: 1px solid var(--primary-teal)!important;
        display: grid;
        place-content: center;
        svg {
            width: 24px
        }
    }
}

.search-box {
    display: flex;
    align-items: center;
    background-color: var(--secondary-light);
    border-radius: 25px;
    padding: .5rem 1rem;
    width: 250px;
    transition: width 0.3s ease;
    box-shadow: 0 2px 8px rgb(0 0 0 / .05);
    border: 1px solid var(--primary-teal);
    @media (max-width: 1280px) {
        width: 225px
    }
    form {
        margin-bottom: 0;
        display: flex;
        width: 100%;
        >label {
            width: 100%
        }
    }
    .search-field {
        background-color: #fff0;
        border: none;
        outline: none;
        box-shadow: none;
        padding: 0;
        &:focus {
            background-color: #fff0
        }
    }
    .search-submit {
        width: 30px;
        line-height: 0;
        font-size: 0;
        background-color: #fff0;
        flex-shrink: 0;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800px' height='800px' viewBox='0 0 512 512'%3E%3Ctitle%3Eionicons-v5-f%3C/title%3E%3Cpath d='M221.09,64A157.09,157.09,0,1,0,378.18,221.09,157.1,157.1,0,0,0,221.09,64Z' style='fill:none;stroke:%23000000;stroke-miterlimit:10;stroke-width:32px'/%3E%3Cline x1='338.29' y1='338.29' x2='448' y2='448' style='fill:none;stroke:%23000000;stroke-linecap:round;stroke-miterlimit:10;stroke-width:32px'/%3E%3C/svg%3E");
        background-size: 24px;
        background-repeat: no-repeat;
        background-position: center;
        &:hover {
            background-color: #fff0
        }
    }
}

.search-box input {
    border: none;
    outline: none;
    background: #fff0;
    font-size: 1rem;
    padding: .25rem;
    width: 100%;
    color: var(--text-dark)
}

.search-box svg {
    width: 18px;
    height: 18px;
    color: var(--primary-teal);
    cursor: pointer
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark)
}

.header-icons {
    display: flex;
    gap: 1rem;
    align-items: center
}

.header-icons button {
    width: 30px;
    height: 30px;
    color: var(--text-dark);
    cursor: pointer;
    transition: color 0.3s ease;
    border: none;
    background-color: #fff0;
    display: grid;
    place-content: center;
    padding: 0;
    img {
        transition: 0.2s linear;
        scale: 1.05;
        width: 100%;
        height: 100%
    }
    &:hover,
    &:active {
        background-color: #fff0;
        img {
            scale: 1.1
        }
    }
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 80%);
    height: 100vh;
    background-color: var(--white);
    box-shadow: -5px 0 15px rgb(0 0 0 / .1);
    transition: right 0.4s cubic-bezier(.4, 0, .2, 1);
    z-index: 1000;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem
}

.mobile-menu.active {
    right: 0
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1
}

.mobile-menu li {
    margin-bottom: 1rem
}

.mobile-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s ease
}

.mobile-menu a:hover {
    color: var(--primary-teal)
}

.banner-section {
    background-repeat: no-repeat;
    background-size: cover;
    animation: fadeInUp 1s ease-out
}

.hero-banner {
    background-color: rgb(72 97 104 / .5);
    backdrop-filter: blur(3px);
    text-align: center;
    padding: 5.5rem 1rem;
    margin: 2rem 0;
    box-shadow: var(--shadow)
}

.hero-banner h1 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 0;
    font-weight: 500;
    max-inline-size: 1200px;
    margin-inline: auto
}

.categories-section {
    max-width: var(--max-container);
    margin: 4rem auto
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 2rem;
    color: var(--text-dark);
    position: relative;
    max-inline-size: 450px;
    margin-inline: auto
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-teal);
    border-radius: 2px
}

.categories-grid {
    --category-box-size: 350px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(var(--category-box-size), 1fr));
    gap: clamp(1rem, 1.944vw - 0.458rem, 1.875rem)
}

.category-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 350px;
    aspect-ratio: 1;
    box-shadow: 0 10px 20px rgb(0 0 0 / .2)
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease
}

.category-card:hover img {
    transform: scale(1.05)
}

.category-overlay {
    position: absolute;
    inset: auto 5px 5px 5px;
    border-radius: 5px;
    background: rgb(0 0 0 / .6);
    color: #fff;
    padding: 1rem;
    transition: 0.3s linear allow-discrete;
    display: grid
}

.category-name {
    font-size: 1.2rem;
    font-weight: 500;
    text-align: center;
    margin: 0;
    place-self: flex-end center;
    transition: all 0.6s cubic-bezier(.86, 0, .07, 1);
    position: relative;
    top: 0%;
    color: var(--white)
}

.category-card:hover {
    .category-overlay {
        background: rgb(0 0 0 / .5);
        inset: 0
    }
    .category-name {
        font-size: 1.5rem;
        top: -50%;
        transform: translateY(50%)
    }
}

.secondary-banner {
    background-color: var(--secondary-light);
    color: var(--text-dark);
    text-align: center;
    padding: 2rem 0;
    margin: 3rem 0;
    border-radius: 8px;
    box-shadow: var(--shadow);
    font-size: clamp(1.25rem, 0.694vw + 0.917rem, 1.75rem);
    animation: fadeInUp 1s ease-out;
    p {
        max-width: var(--max-container);
        margin-inline: auto
    }
}

.why-us {
    max-width: var(--max-container);
    margin: 4rem auto
}

.features-grid {
    --feature-grid-size: 300px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(var(--feature-grid-size), 1fr));
    gap: 2rem;
    margin-top: 2rem
}

.feature-item {
    text-align: center;
    padding: 1.5rem;
    border-radius: 8px;
    background-color: var(--white);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgb(0 0 0 / .15)
}

.icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    img {
        max-width: 100%;
        height: auto
    }
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: .5rem;
    color: var(--text-dark)
}

.feature-description {
    color: #666;
    font-size: .95rem;
    line-height: 1.6
}

footer {
    background-color: var(--text-dark);
    color: #fff;
    padding: 2rem 0 1rem;
    text-align: left
}

.footer-content {
    max-width: var(--max-container);
    margin: 0 auto
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    column-gap: 2.5rem;
    row-gap: 1.5rem;
    margin-bottom: 1.5rem;
    justify-content: space-around;
    @media (max-width:768px) {
        flex-direction:column;
    }
}

.footer-column h4 {
    color: var(--white);
    margin-bottom: .75rem;
    font-size: 1.25rem;
    font-weight: 600
}

.footer-column p {
    color: #ccc;
    line-height: 1.5;
    font-size: .9rem;
    margin-bottom: 1rem
}

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

.footer-column ul li {
    margin-bottom: .4rem
}

.footer-column ul li a {
    color: #ccc;
    text-decoration: none; 
    transition: color 0.3s ease
}

.footer-column ul li a:hover {
    color: var(--hover-teal)
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: .75rem
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: .5rem;
    color: #ccc;
    font-size: .9rem;
    line-height: 1.4
}

.contact-item svg {
    flex-shrink: 0;
    margin-top: .2rem
}

.footer-divider {
    border: 0;
    height: 1px;
    background-color: rgb(255 255 255 / .1);
    margin: 1.5rem 0
}

.footer-bottom .copyright {
    margin: 0;
    color: #aaa;
    font-size: .85rem;
    text-align: center
}

@media (max-width:1280px) {
    .logo {
        width: 120px!important;
        flex-shrink: 0;
        img {
            width: 100%
        }
    }
    .categories-grid {
        --category-box-size: 300px;
        gap: 1.5rem
    }
    .category-card {
        min-height: auto
    }
}

@media (max-width:1024px) {
    .nav-links,
    .header-icons {
        display: none
    }
    .header-container .menu-toggle {
        display: block
    }
    .search-areas {
        margin-inline-start: auto;
        transition: width 0.3s linear;
        interpolate-size: allow-keywords;
        &:has(.search-box: focus-within, .search-box: focus-visible) {
            width: 100%
        }
    }
    .search-box {
        width: 100%;
        margin: 0 auto
    }
    .header-container {
        align-items: center;
        padding: 1rem 0
    }
}

@media (max-width:768px) {
    .hero-banner h1 {
        font-size: 2rem
    }
    .section-title {
        font-size: 1.5rem
    }
    .categories-grid {
        gap: 1.5rem
    }
    .features-grid {
        --feature-grid-size: 250px;
        gap: 1.5rem
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1rem
    }
    .contact-item {
        align-items: center
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin
}

a {
    color: var(--primary-teal);
    text-decoration: none;
    transition: color 0.3s ease
}

a:hover {
    color: var(--hover-teal)
}

@media (max-width:576px) {
    .hero-banner {
        padding: 2rem 1rem;
        h1 {
            font-size: 1.5rem
        }
    }
    .search-areas {
        width: unset;
        &:has(.search-box: focus-within, .search-box: focus-visible) {
            width: unset;
            position: fixed;
            inset: 16px 12px auto 12px;
            background-color: var(--white);
            height: 50px
        }
    }
}

.cell-container .search-results {
    padding-block: 2.5rem 1rem
}

.search-results-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2.25rem;
    padding: 1rem;
    border-radius: .5rem;
    background-color: var(--secondary-light);
    flex-wrap: wrap
}

.search-results-title {
    font-size: 1.5rem;
    color: var(--primary-teal);
    margin: 0
}

.search-results-count {
    color: #666;
    font-size: .95rem;
    margin: 0
}

.results-list {
    list-style: none;
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
    padding: 0;
    margin: 0
}

.result-item {
    --transform-delay: 0s;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(2vh);
    transition: all 0.2s linear;
    animation: list-up 0.2s linear var(--transform-delay) forwards
}

@keyframes list-up {
    from {
        opacity: 0;
        transform: translateY(2vh)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.result-item:hover {
    translate: 0 -5px;
    box-shadow: 0 10px 20px rgb(0 0 0 / .15)
}

.result-link {
    display: flex;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
    align-items: center;
    padding: .75rem
}

.result-image {
    width: 88px;
    height: 88px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0
}

.result-body {
    flex: 1 1 auto
}

.result-title {
    font-size: 1rem;
    margin: 0 0 .35rem 0;
    color: var(--text-dark)
}

.result-desc {
    margin: 0;
    color: #555;
    font-size: .92rem;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis
}

.result-meta {
    color: var(--primary-teal);
    font-weight: 600;
    white-space: nowrap
}

@media (min-width:992px) {
    .results-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.5rem
    }
}

@media (max-width:576px) {
    .result-link {
        flex-wrap: wrap
    }
    .search-results-title {
        font-size: 1.25rem
    }
}

.pagination {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-top: 2.25rem
}

.pagination .page-list {
    display: flex;
    gap: .5rem;
    list-style: none;
    padding: 0;
    margin: 0
}

.pagination button {
    font-family: 'Tachyon', sans-serif!important;
    border: 1px solid var(--border-color);
    background: #fff;
    color: var(--text-dark);
    padding: .45rem .7rem;
    border-radius: 6px;
    cursor: pointer;
    min-width: 40px;
    transition: background 160ms ease, color 160ms ease, transform 120ms ease
}

.pagination button:hover:not(:disabled,
.page-num.active) {
    background: var(--secondary-light);
    transform: translateY(-1px)
}

.pagination .page-num.active {
    background: var(--primary-teal);
    color: #fff;
    border-color: var(--primary-teal)
}

.pagination button:disabled {
    opacity: .5;
    cursor: not-allowed
}

@media (max-width:480px) {
    .pagination button {
        padding: .35rem .55rem;
        min-width: 34px
    }
    .pagination {
        gap: .5rem
    }
}

.cell-container.right-sidebar {
    .content-area,
    .widget-area {
        max-width: var(--max-container);
        width: 100%;
        margin-inline: auto;
        float: unset
    }
    .content-area {
        margin-top: 2.5rem
    }
}

.p_cart_button {
    position: relative;
    .p_count {
        bottom: calc(100% - 10px);
        position: absolute;
        background-color: var(--primary-teal);
        border-radius: 100vw;
        min-width: 100%;
        width: max-content;
        height: 20px;
        color: #fff;
        z-index: 2;
        display: grid;
        place-content: center;
        padding: 2px;
        pointer-events: none;
        &:empty {
            display: none
        }
    }
}

body:has(.search-results),
body:has(.about-hero ){
    display: flex;
    min-height: 100dvh;
    flex-direction: column;
    .search-results,.about-hero {
        flex-grow: 1;
        width: 100%
    }
}

.cell-contact-page {
    .page-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
        color: var(--primary-teal)
    }
    .contact-grid {
        display: grid;
        grid-template-columns: 2fr 1fr;
        column-gap: 3rem;
        row-gap: 2rem;
        align-items: start
    }
    .contact-form label {
        display: flex;
        font-weight: 600;
        margin-bottom: .5rem;
        color: var(--text-dark)
    }
    .contact-form input[type="text"],
    .contact-form input[type="email"],
    .contact-form textarea {
        width: 100%;
        padding: .9rem .85rem;
        border-radius: 6px;
        border: 1px solid var(--border-color);
        background: #f5f5f5;
        font-size: .95rem
    }
    .contact-form textarea {
        resize: vertical;
        min-height: 220px
    }
    .contact-form .form-submit_btn {
        background: var(--primary-teal);
        color: #fff;
        padding: .6rem 1rem;
        border-radius: 6px;
        cursor: pointer;
        font-size: 1rem;
        border: 2px solid var(--primary-teal);
        transition: 0.3s;
        line-height:1.25;
        &:hover {
            background-color: #fff;
            color: var(--primary-teal)
        }
        &:active {
            scale: 1.05
        }
    }
    .required {
        position: relative;
        display: flex;
        gap: 4px;
        &::after {
            content: "*";
            font-size: 14px;
            color: red
        }
    }
    .contact-info h3 {
        margin-top: 0;
        margin-bottom: .5rem;
        font-size: 1rem;
        display: flex;
        gap: 1rem;
        align-items: flex-end;
        color: var(--primary-teal)
    }
    .contact-info p {
        color: #333;
        line-height: 1.6
    }
    .contact-info {
        address {
            font-style: normal
        }
    }
    @media (max-width:900px) {
        .contact-grid {
            grid-template-columns: 1fr
        }
        .contact-info {
            order: 2
        }
        .contact-form {
            order: 1
        }
    }
    .form-row {
        margin-bottom: 1rem
    }
    .form-row {
        border-radius: 8px;
        padding: .25rem;
        &:focus-within {
            outline: 3px solid rgb(0 128 128 / .12)
        }
    }
    .contact-form input:focus,
    .contact-form textarea:focus {
        outline: 2px solid var(--primary-teal);
        background: #fff
    }
}
#review_form .form-submit input[type="submit"] {
    background: var(--primary-teal);
    color: #fff;
    padding: .6rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    border: 2px solid var(--primary-teal);
    transition: 0.3s;
    &:hover {
        background-color: #fff;
        color: var(--primary-teal)
    }
    &:active {
        scale: 1.05
    }
}
a.contact_d {
    color: white!important
}

.about-hero {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding-block: 2rem
}

.about-title {
    font-size: clamp(1.6rem, 3.6vw, 2.4rem);
    margin: 0 0 .5rem 0;
    color: var(--primary-teal)
}

.about-sub {
    font-size: clamp(1.5rem, 2.2vw, 1.75rem);
    color: var(--hover-teal);
    margin-bottom: 1.25rem
}

.about-body {
    color: #222;
    margin-bottom: 1.5rem;
    font-weight: 500;
    p {
        font-size: clamp(1.125rem, 1.0897rem + 0.5128vw, 1.25rem);
        &:not(:last-child) {
            margin-bottom: 1.5rem
        }
    }
}

.cta-row {
    margin-top: 1.5rem
}

.btn-cta,
.cell-container :is(.woocommerce-button,
.woocommerce-Button,
.button.add_to_cart_button) {
    display: inline-block;
    padding: .65rem 1rem;
    background: var(--primary-teal);
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    border: 2px solid var(--primary-teal);
    font-weight: 600;
    transition: transform 120ms ease, box-shadow 120ms ease;
    margin-top: .75rem;
    min-width: 100px
}

.btn-cta:hover,
.cell-container .woocommerce-button:hover,
.cell-container .add_to_cart_button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgb(0 0 0 / .08);
    background-color: var(--white);
    color: var(--primary-teal)
}

@media (min-width:900px) {
    .about-hero {
        grid-template-columns: 1fr
    }
    .about-body {
        font-size: 1.125rem
    }
}

@media (min-width:1100px) {
    .about-hero {
        grid-template-columns: 1fr
    }
}

.page-id-92 .wcpt-filter-heading {
    display: none!important
}

.page-id-92 .wcpt-table a.wcpt-button,
body .wcpt-table a.wcpt-link_button {
    background: var(--primary-teal)
}

.cell-container {
    .wcpt-cart-widget {
        background: var(--hover-teal)
    }
    .entry-title {
        color: var(--primary-teal)
    }
    &.page-id-10 article.status-publish {
        max-width: 800px;
        margin-inline: auto
    }
    .add_to_cart_button.ajax_add_to_cart {
        margin-inline: .5rem
    }
    .added_to_cart.wc-forward {
        padding: .65rem 1rem;
        border-radius: 8px;
        border: 1px solid currentColor;
        transition: transform 120ms ease, box-shadow 120ms ease;
        margin-inline: .5rem;
        &:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 18px rgb(0 0 0 / .08)
        }
    }
}

/* Detail Reviw Form */
.cell-container {
    .product_meta{
        font-size: 1.125rem;
    }
    .woocommerce-Tabs-panel {
        h2 {
            font-weight: 600;
            color: var(--primary-teal);
        }
    }

    .woocommerce-Reviews {
        .woocommerce-Reviews-title {
            font-weight: 600;
            color: var(--primary-teal);
        }

        .comment-respond {
            border: 1px solid var(--primary-teal);
            border-radius: 16px;

            .comment-notes {
                margin-bottom: 1rem;
                font-size: 20px;
                font-weight: 600;
                color: var(--hover-teal)
            }

            .comment-form-rating {
                display: flex;
                align-items: center;
                gap: 16px;
                margin-bottom: 1rem;
            }

            .comment-form-comment {
                label {
                    margin-bottom: 6px;
                    display: inline-block;
                    display: block;
                }
            }

            input[type=text],
            input[type=email],
            textarea {
                border-radius: 8px;
                border: 1px solid var(--primary-teal);

                &:focus {
                    outline-color: var(--hover-teal);
                    border-color: transparent;
                }
            }
             textarea {
                height:160px !important;
            }

            input[type=checkbox] {
                accent-color: var(--primary-teal);
                width: 20px;
                height: 20px;

                &:focus {
                    outline-color: var(--hover-teal);
                    border-color: transparent;
                }
            }
        }
    }
}

/* shopping Tab */

.category-tabs {
    display: flex;
    gap: 0.25rem;
    flex-wrap: wrap;
    padding-block: 1rem;
    border-bottom: 1px solid var(--primary-teal);
   
    @media (max-width:600px) {
        .category-tab {
            padding: 0.25rem 0.75rem;
            font-size: 13px;
        }
    }

    .category-tab {
        padding: 0.5rem 1rem;
        border-radius: 0.25rem;
        background-color: var(--secondary-light);
        color: var(--primary-teal);
        font-weight: 500;
        border: 1px solid var(--primary-teal);

        &.active,
        &:hover {
            background-color: var(--primary-teal);
            color: var(--white);
        }
    }
}

.category-tabs-content {
    .category-content {
        display: none;
        transition: 0.5s linear;

        &.tab-active {
            display: block;

            @starting-style {
                opacity: 0;
                transform: translateY(2vh);
            }
        }
        h3 {
            text-align: center;
            font-weight: 600;
            margin-top: 1rem;
            text-transform:uppercase;
            color: var(--primary-teal);
        }
    }
}
