/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: neue-haas-grotesk-display, sans-serif;
    font-weight: 500;
}

:root {
    --black: #000;
    --light-gray: #EFEFEF;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --white: #ffffff;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-800: #1e293b;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border:1px solid #000;
    --text-transform: uppercase;
}

/* Scroll animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
}

.scroll-reveal.revealed {
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Keyframes for fade in animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Keyframes for fade in only (no slide) */
@keyframes fadeInOnly {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Delayed animations for specific elements - override default animation */
hr.scroll-reveal {
    transform: translateY(0) !important;
}

hr.scroll-reveal.revealed {
    animation: fadeInOnly 1s cubic-bezier(0.4, 0, 0.2, 1) forwards !important;
}

.section-header.scroll-reveal {
    transform: translateY(0) !important;
}

.section-header.scroll-reveal.revealed {
    animation: fadeInOnly 1s cubic-bezier(0.4, 0, 0.2, 1) forwards !important;
}

body {
    font-family: neue-haas-grotesk-display, sans-serif;
    font-weight: 500;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--white);
    text-transform: uppercase;
}

.container {
    padding-right: 300px;
    padding-left: 300px;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    box-sizing: border-box;
}
/* Header and Navigation */
.header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: relative;
    top: 0;
    width: 100%;
    z-index: 99999999;
}
h1 {
    font-size: 4rem;
    font-weight: 400;
    line-height: 1.1;
    color: var(--black);
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}
h2 {
    font-size: 18px;
    color: var(--black);
    letter-spacing: 0.1em;
}
.subtitle {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.2em;
    margin-bottom: 5px;
    display: block;
}

a {
    color: black;
    text-decoration: none;
}
/* Fixed Header */
.header__fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    border-bottom: 1px solid #000;
    height: 60px;
    line-height: 60px;
    transform: translateY(0);
    display: flex;
    align-items: center;
    font-size: 14px;
    letter-spacing: 0.04em;
    z-index: 9999;
}

.header__fixed .container {
    display: flex;
    align-items: center;
    height: 60px;
    line-height: 60px;
}

.fixed-burger {
    display: none;
    width: 30px;
    z-index: 9999999;
    position: relative;
}
.header__row {
    border-bottom: 1px solid #000;
    font-size: 14px;
    letter-spacing: 0.04em;
    background: #fff;
    z-index: 999999;
    position: relative;
}
nav.navbar {
    z-index: 999;
    position: relative;
}
.navbar .container {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.nav-logo {
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    height: 90px;
}
.nav-logo:hover {
    color: var(--primary-dark);
}

.mobile-logo {
    display: none;
}

.nav-menu, .shop-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}
.shop-menu{
    float: right;
}
.custom-nav-button {
    line-height: 20px;
    border: 1px solid #000;padding: 6px 8px;box-shadow: 4px 4px 0px 0px var(--black);
}
.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--black);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--black);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}
.nav-toggle {
    display: none;
    cursor: pointer;
    z-index: 9999999;
    position: relative;
    width: 60px;
    height: 60px;
    align-items: center;
    justify-content: center;
}

.nav-toggle img {
    width: 30px;
    height: 30px;
}
.navbar .header__row:first-child .container {
    height: 90px;
    line-height: 90px;
}
.navbar .header__row:nth-child(2) .container{
    height: 60px;
    line-height: 60px;
}
.header__info {
    background: #EFEFEF;
    height: 40px;
    line-height: 40px;
    position: relative;
}
.header__info p {
    font-size: 14px;
    letter-spacing: 0.04em;
    white-space: nowrap;
}
.header__info:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    border-bottom: 4px solid #fff;
}
/* Links */
.nav-menu a,
footer .menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    font-size: 14px;
    letter-spacing: 0.04em;
}
.nav-menu a:hover,
footer .menu a:hover {
    color: var(--black);
}

.nav-menu a::after,
footer .menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--black);
    transition: var(--transition);
}
.nav-menu a:hover::after,
footer .menu a:hover::after {
    width: 100%;
}
/* Mobile Marquee */
.header__info-marquee {
    display: none;
    overflow: hidden;
    white-space: nowrap;
    height: 40px;
    line-height: 40px;
}

.marquee-content {
    display: inline-block;
    animation: marquee 5s linear infinite;
    white-space: nowrap;
}

.marquee-content span {
    font-size: 14px;
    letter-spacing: 0.04em;
    color: var(--text-primary);
}


@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-33.333%);
    }
}

.mobile-menu-close {
    position: absolute;
    top: 0px;
    left: 20px;
    width: 60px;
    height: 60px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999999;
    border-top: none;
    background: none;
}

.mobile-menu-close img {
    width: 20px;
    height: 20px;
}
.navbar .header__row:first-child .col-20{
    text-align: center;
    height: 90px;
}

.localization {
    text-align: right;
}
li.nav-item {
    list-style: none;
    display: inline-block;
}

li.nav-item.cart-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cart-item {
    align-items: center;
}

.cart-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}
.cart-icon {
    display: inline-flex;
    align-items: center;
}
.cart-price {
    font-size: 12px;
    color: var(--black);
    margin-bottom: 2px;
}
.search-bar input:focus {
    background: white;
}
.search-bar .btn img {
    display: flex;
    align-items: center;
}
.search-bar {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 90px;
    line-height: 90px;
    position: relative;
}
form.search-form {
    display: inline-flex
;
}
/* Hero slider */
.hero-slider {
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-carousel {
    width: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-carousel.heights-calculated {
    opacity: 1;
}
.hero-slide {
    background-color: var(--light-gray);
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 80px;
    gap: 60px;
}

.hero-text {
    flex: 1;
    max-width: 500px;
    text-align: left;
}

.hero-title {
    font-size: 4rem;
    font-weight: 400;
    line-height: 1.1;
    color: var(--black);
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}
.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 600px;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 500px;
}

/* Owl Carousel Navigation */
.hero-carousel .owl-prev, .categories-carousel .owl-prev {
    left: -1px;
    height: 100%;
    position: relative;
}
.hero-carousel .owl-next, .categories-carousel .owl-next {
    right: -1px;
    height: 100%;
    position: relative;
}
.hero-carousel .owl-nav, .categories-carousel .owl-nav {
    position: absolute;
    top: -1px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    bottom: 0;
    height: calc(100% + 2px);
}
.hero-carousel .owl-nav button, .categories-carousel .owl-nav button {
    width: 60px;
    background-color: var(--white);
    color: var(--black);
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
    border: 1px solid black !important;
    border-radius: 0 !important;
    box-shadow: none;
    margin: 0 !important;
    z-index: 9;
    background: var(--light-gray) !important;
}
.hero-carousel .owl-nav {
    margin: 0 !important;
}
.hero-carousel .owl-nav button:hover {
    background: var(--white) !important;
}
.categories-carousel .owl-prev {
    background: white !important;
}
.categories-carousel .owl-next {
    background: white !important;
}
.categories-carousel .owl-nav {
    top: 0 !important;
    height: 100% !important;
}
button.owl-prev:after {
    content: "PREV";
    rotate: -90deg;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-smooth: always;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 12px;
    line-height: 1.2;
}
button.owl-next:after {
    content: "NEXT";
    rotate: 90deg;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-smooth: always;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 12px;
    line-height: 1.2;
}
.owl-nav span {
    position: absolute;
    bottom: 10px;
    font-size: 16px;
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    display: inline-block;
    height: 40px;
    line-height: 40px;
    text-align: center;
    left: 0;
    right: 0;
}
.owl-nav button:hover {
    background: white !important;
    color: black !important;
}
.owl-nav button:before {
    content: "";
    border-top: 4px solid white;
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    position: absolute;
}
.badge {
    position: absolute;
    background: white;
    left: 0;
    text-align: center;
    border-bottom: 1px solid;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-smooth: always;
    font-weight: 500;
    font-size: 14px;
    padding: 0 15px;
    border-right: 1px solid;
    z-index: 99;
}
.badge:before {
    content: "";
    border-top: 4px solid #ffffff85;
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    position: absolute;
}
/* Owl Carousel Dots */
.hero-carousel .owl-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
}

.hero-carousel .owl-dots .owl-dot {
    width: 8px;
    height: 8px;
    background-color: transparent;
    border: 1px solid var(--black);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: none;
}

.hero-carousel .owl-dots .owl-dot.active,
.hero-carousel .owl-dots .owl-dot:hover {
    background-color: var(--black);
}
.hero-carousel .owl-dots .owl-dot span {
    display: none !important;
}
.hero-slider .owl-carousel {
    border: 1px solid black;
}
/* Image Text Box */
.image-text-box {
    background-color: var(--white);
}
.image-text-content {
    display: flex;
    align-items: center;
    gap: 40px;
    border: 1px solid black;
}
.image-text-content h2 {
    margin-bottom: 30px;
}
.image-text-content .btn {
    margin-top: 30px;
}
.image-box {
    overflow: hidden;
    border-right: 1px solid black;
    width: 50%;
}
.image-box img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
    aspect-ratio: 1 / 1;
    object-fit: cover;
    max-height: 500px;
}
.image-box:hover img {
    transform: scale(1.05);
}
/* Text box*/
.text-content {
    border: 1px solid black;
    padding: 100px 20px;
    background: var(--light-gray);
    text-align: center;
}
.text-content .text-wrapper {
    width: 700px;
    margin: 0 auto;
}
.text-content h2 {
    margin-bottom: 30px;
}
.text-content .btn {
    margin-top: 30px;
}
.text-box {
    padding-top: 0;
}
.text-wrapper {
    flex: 1;
    padding: 0 40px;
    width: 100%;
}
.image-text-content .text-wrapper p {
    width: 70% !important;
}
/* Text Block WYSIWYG */
.text-block-wysiwyg-content ul {
  list-style-position: inside; /* nie wychodzi poza kontener */
  padding-left: 1ch;           /* lekki odstęp od krawędzi */
  margin: 0;
}

.text-block-wysiwyg-content ul li::marker {
  content: "–  "; /* en-dash + spacja */
}
/*FEATURE SECTION*/
.text-image-block {
    display: flow-root;
    margin-bottom: 0;
    padding-bottom: 0;
    padding-top: 0;
}
#feature_boxes {
    margin: 0;
}
.feature_box {
    float: left;
    width: 100%;
    position: relative;
    border-top: 1px solid;
    border-bottom: 1px solid;
    margin-top: -1px;
}
.feature_box_left {
    position: absolute;
    left: 0;
    height: -webkit-fill-available;
    z-index: -9;
    flex: 0 0 50%;
    width: 50%;
    background: no-repeat center / cover;
}
.feature_box.left .image_feature_box_right {
    left: 0;
    border-right: 1px solid;
    border-left: none;
    width: calc(50% + 1px);
}
.image_feature_box_right {
    position: absolute;
    right: 0;
    height: -webkit-fill-available;
    flex: 0 0 50%;
    width: 50%;
    background: no-repeat center / cover;
    z-index: 99;
    border-right: none;
    border-left: 1px solid;
}
.feature_box picture {
    display: inline-flex;
    width: 100%;
    height: -webkit-fill-available;
}
.feature_box picture img {
    object-fit: cover;
}
.feature_box.left .empty-space {
    width: 50%;
    float: left;
    min-height: 60vh;
}
.feature_box_row {
    display: flex;
    flex-wrap: nowrap;
    width: 50%;
    min-height: 60vh;
}
.feature_box .feature_box_text {
    display: flex;
    align-items: flex-start;
    align-content: flex-start;
    justify-content: center;
    flex-direction: column;
    padding: 60px 0 0;
    min-height: 400px;
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 60px;
    word-wrap: break-word;
    width: 500px;
}
.feature_box.left .feature_box_text {
    margin-left: 300px;
}
.feature_box_text h2, .feature_box_text h3 {
    margin-bottom: 30px;
}
/*Categories Carousel*/
.categories-carousel .product-image {
    background: var(--light-gray);
    height: 100%;
    transition: var(--transition);
}
.categories-carousel .product-item .product-details {
    text-align: center;
    min-height: 60px !important;
}
.categories-carousel .product-actions p {
    font-size: 13px;
}
.categories-carousel .product-item:hover .product-details {
    background: white;
}
.categories-carousel .product-item:hover .product-image {
    background: white;
    overflow: hidden;
}
.categories-carousel .product-item:hover .product-image img {
    transform: translateY(-40px);
}
.categories-carousel .product-item .product-image img {
    transition: var(--transition);
}

.category-details {
    border: 1px solid black;
    position: absolute;
    width: calc(100% + 2px);
    flex-direction: column;
    background: var(--light-gray);
    flex-grow: 1;
    box-sizing: border-box;
    padding: 15px 15px 0;
    bottom: -1px;
    transition: var(--transition);
    transform-origin: bottom;
    left: -1px;
    justify-content: space-between;
    height: calc(var(--eqHeight, auto) + var(--hoverBoost, 0px));
}
.category-details a {
    color: black;
    text-decoration: none;
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.2em;
    margin-bottom: 0;
    display: block;
}
.product-item:hover .category-details {
    background: white;
}
.category-details .price {
    text-align: center;
}
/* ——— Equal height + gładki hover ——— */

/* Per-item boost tylko dla hoverowanego kafelka */
.product-item:hover { 
    --hoverBoost: 50px; 
}

/* Obrazki w przykładzie */
.product-image img { display: block; width: 100%; height: auto; }

/* Podstawowe obrazki w przykładzie */
.product-image img { display: block; width: 100%; height: auto; }
/* CTA Button */
.cta-button {
    background-color: var(--white);
    color: var(--black);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all 1s var(--transition);
    border: var(--border);
    height: 40px;
    line-height: 40px;
    padding: 0 30px;
    font-size: 14px;
    text-transform: var(--text-transform);
    position: relative;
}
.cta-button:before {
    content: "";
    width: 100%;
    height: 4px;
    background: #EFEFEF;
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
}
.cta-button:hover {
    box-shadow: 0px 0px 0px 0px var(--black);
    top: 4px;
    left: 4px;
}
.cta-button:hover:after {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    left: 0;
    background: #fff;
    display: block;
    height: 4px;
}
.cta-button:active {
    background: #EFEFEF;
}
.cta-button:active:before,.cta-button:active:after {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    left: 0;
    background: #EFEFEF;
    display: block;
    height: 4px;
}
/* Sections */
.section-header {
    padding: 30px 0;
}
.section-header.center {
    text-align: center;
}
.about {
    background-color: var(--secondary-color);
}

.services {
    background-color: var(--white);
}

.contact {
    background-color: var(--gray-100);
}

p {
    font-size: 14px;
    letter-spacing: 0.04em;
    text-transform: none;
}
.page_header {
    padding: 50px 0;
    border-bottom: 1px solid;
}
.page_header h1 {
    font-size: 18px;
    margin: 0;
    text-align: center;
    letter-spacing: 0.1em;
}
/* WooCommerce */
tr, td, tbody, table, .wc-block-components-totals-wrapper,.wc-block-cart .wp-block-woocommerce-cart-order-summary-block,.wp-block-woocommerce-checkout-order-summary-totals-block {
    border-color: black !important;
}
.wp-block-woocommerce-checkout-order-summary-block {
    border-radius: 0 !important;
    border-color: black !important;
}
.woo-account .woocommerce {
    display: grid;
    grid-template-columns: 25% 50% 25%;
    align-items: baseline;
}
.woocommerce-form-row, .woocommerce-form-row input, .form-row, .form-row input {
    display: inline-flex;
    flex-direction: column;
    width: 100%;
    box-shadow: none;
}
.woocommerce-MyAccount-content {
    padding-bottom: 50px;
    border-left: 1px solid black;
    padding-left: 40px;
    padding-top: 50px;
    height: 100%;
    width: calc(100% - 40px);
}
.select2-container--default .select2-selection--single {
    border: 1px solid black;
    border-radius: 0 !important;
    height: 40px;
    display: flex;
    align-items: center;
    color: black;
    background: var(--light-gray);
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 38px;;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: black transparent transparent transparent;
}
#billing_address_1_field, #shipping_address_1_field {
    margin-bottom: 10px !important;
}
.woocommerce-Button, .wc-forward, .woocommerce-Address .edit, .woocommerce-address-fields button, .woocommerce-button {
    height: 40px;
    line-height: 40px;
    padding: 0 30px;
    background: var(--white);
    color: var(--black);
    border: 1px solid var(--black);
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
    letter-spacing: 0.04em;
    box-shadow: 4px 4px 0px 0px var(--black);
    display: inline-block;
}
.woocommerce-Button:hover, .wc-forward:hover, .woocommerce-Address .edit:hover, .woocommerce-address-fields button:hover, .woocommerce-button:hover {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0px 0px var(--black);
}
.woocommerce-info .woocommerce-Button, .woocommerce-info .wc-forward{
    padding: 0 15px;
    margin-bottom: 4px;
}
.woocommerce-error {
    outline: none !important;
}
.woocommerce-Address .edit {
    margin: 5px 0 20px;
}
.woocommerce-Addresses.addresses {
    margin: 20px 0 0;
}
.woocommerce-Address address {
    margin-bottom: 10px;
    font-size: 14px;
    font-style: normal;
    letter-spacing: 0.04em;
}
.woocommerce-address-fields__field-wrapper {
    margin-bottom: 20px;
}
.login-column, .register-column {
    padding: 50px 40px;
}
.login-register-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin: 0 15%;
}
.register-column {
    border-left: 1px solid black;
}
.woocommerce-LostPassword.lost_password {
    margin-top: 20px;
    font-size: 12px;
    text-transform: uppercase;
}
.woocommerce-form__label.woocommerce-form__label-for-checkbox.woocommerce-form-login__rememberme {
    display: inline-flex;
    align-items: center;
    width: 100%;
    margin: 10px 0;
}
.woocommerce-form__label.woocommerce-form__label-for-checkbox.woocommerce-form-login__rememberme input {
    width: 16px;
    height: 16px;
    min-width: 16px;
    margin-right: 10px;
}
.register-column .woocommerce-privacy-policy-text p {
    margin: 15px 0;
    font-size: 12px;
}
.login-column h2,
.register-column h2 {
    margin-bottom: 20px;
}
@media screen and (max-width: 992px) {
    .login-register-grid {
        grid-template-columns: 1fr;
    }
}
/* Flexbox container for column layouts */
.col-group {
    display: flex;
    flex-wrap: wrap;
}
.col-10 {
    width: 10%;
    flex: 0 0 10%;
}
.col-20 {
    width: 20%;
    flex: 0 0 20%;
}
.col-25 {
    width: 25%;
    flex: 0 0 25%;
}
.col-30 {
    width: 30%;
    flex: 0 0 30%;
}
.col-40 {
    width: 40%;
    flex: 0 0 40%;
}
.col-50 {
    width: 50%;
    flex: 0 0 50%;
}
.col-60 {
    width: 60%;
    flex: 0 0 60%;
}
.col-70 {
    width: 70%;
    flex: 0 0 70%;
}
.col-80 {
    width: 80%;
    flex: 0 0 80%;
}
/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    margin: 0;
}
/* Products */
.product-image img {
    object-fit: contain;
}
.categories-carousel .product-actions {
    transition: var(--transition);
    margin-bottom: 0px;
    position: absolute;
    bottom: -15px;
    left: 0;
    right: 0;
    opacity: 0;
    padding-top: 0;
    margin-top: 0;
    text-align: center;
}
.product-item:hover .product-actions {
    bottom: 20px;
    opacity: 1;
}
.product-actions .nav-link {
    display: inline;
}
.product-item {
    border-top: 1px solid black;
    position: relative;
    display: flex;
    flex-direction: column;
    height: auto;
    border-bottom: 1px solid black;
    border-left: 1px solid black;
    overflow: hidden;
}
.product-details:before {
    content: "";
    border-top: 4px solid white;
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    position: absolute;
}
.product-item h3 {
    margin: 0 0 10px 0;
    font-size: 14px;
    line-height: 1.3;
    word-break: break-word;
}
.product-image img {
    aspect-ratio: 2 / 3;
    width: 100%;
    height: auto;
    display: block;
    padding-bottom: calc((var(--eqHeight, auto)) - 5px);
}
.product-carousel .product-image img {
    object-fit: cover;
}

/* Carousel loading state */
.products-carousel.owl-carousel.carousel {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.products-carousel.owl-carousel.carousel.heights-calculated {
    opacity: 1;
}
.price.promo span {
    text-decoration: line-through;
    margin-right: 5px;
    font-size: 14px;
}
hr {
    border-top: 1px solid;
    border-bottom: none;
}
/* Contact Form */
.contact-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-family: neue-haas-grotesk-display, sans-serif;
    font-weight: 500;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--black);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form button {
    background-color: var(--black);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.contact-form button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}
/* Newsletter */
.newsletter .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    text-align: left;
    align-items: center;
}
#newsletter {
    background: var(--light-gray);
    border-bottom: 4px solid white;
    position: relative;
    overflow: hidden;
    padding: 160px 0;
}
#newsletterForm, #searchForm {
    display: inline-flex;
    position: relative;
}
.search-form input, .search-form .btn {
    box-shadow: none;
}
.search-form .btn {
    position: absolute;
    right: 0;
    background: none;
    border: none;
    width: 50px;
}
.search-form .btn:hover {
    box-shadow: none;
}
#newsletter h2 {
    margin-bottom: 20px;
    letter-spacing: 0.1em;
}
#newsletter .container {
    z-index: 99999;
    position: relative;
}
input {
    height: 40px;
    line-height: 30px;
    padding: 15px;
    outline: none;
    background: var(--light-gray);
    border: 1px solid black;
    position: relative;
    font-family: neue-haas-grotesk-display, sans-serif;
    color: black;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    min-width: 300px;
    box-shadow: 4px 4px 0px 0px var(--black);
}
.btn {
    height: 40px;
    line-height: 40px;
    padding: 0 20px;
    border-radius: 0;
    background: white;
    border: 1px solid black;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    box-shadow: 4px 4px 0px 0px var(--black);
    z-index: 9;
    display: inline-block;
    position: relative;
    cursor: pointer;
    color: black;
    text-decoration: none;
    transition: var(--transition);
}
.btn:hover {
transform: translate(2px, 2px);
box-shadow: 2px 2px 0px 0px var(--black);
}
.btn:active {
    transform: translate(4px, 4px);
    box-shadow: 0px 0px 0px 0px var(--black);
}
input::placeholder {
    color: black;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.search-form input {
    min-width: 250px;
}
/* Quick Cart Sidebar */
.quick-cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.quick-cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.quick-cart-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 450px;
    height: 100%;
    background-color: #fff;
    z-index: 1001;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    z-index: 999999;
    border-left: 1px solid;
}

.quick-cart-sidebar.active {
    right: 0;
}

.quick-cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 10px;
    border-bottom: 1px solid;
}

.quick-cart-header h3 {
    margin: 0;
    font-size: 1.2rem;
}

.quick-cart-close {
    background: none;
    border: none;
    cursor: pointer;
}

.widget_shopping_cart_content {
    flex-grow: 1;
    overflow-y: auto;
    background: var(--light-gray);
}

.woocommerce-mini-cart__empty-message {
    text-align: center;
    padding: 2rem 0;
}
/* Mini cart */
.summary-group {
    position: absolute;
    padding-bottom: 50px;
    left: 0;
    right: 0;
    border-top: 1px solid;
    background: white;
    bottom: 0;
}
li.woocommerce-mini-cart-item.mini_cart_item {
    display: inline-flex;
    align-items: center;
    width: 100%;
    position: relative;
    border-bottom: 1px solid;
    background: white;
}
li.woocommerce-mini-cart-item.mini_cart_item img {
    width: 60px !important;
    object-fit: contain;
    aspect-ratio: 1 / 1;
    height: auto;
    margin: 10px !important;
}
.woocommerce-mini-cart__total.total {
    padding: 10px;
    display: inline-flex;
    justify-content: space-between;
    width: 100%;
}
.woocommerce-mini-cart__buttons.buttons {
    width: 100%;
    display: inline-flex;
    justify-content: center;
    padding: 10px;
}
.woocommerce-mini-cart__buttons.buttons a {
    width: 50%;
    text-align: center;
}
.product-info span.quantity {
    display: flex;
    font-size: 14px;
}
.product-info {
    margin-right: 30px;
}
.product-info a {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.2em;
    display: inline-block;
    line-height: 1.5;
}
.remove.remove_from_cart_button {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    padding: 0 10px;
    border-left: 1px solid;
    font-size: 16px;
}
/* WooCommerce */
.woocommerce-info {
    border: 1px solid !important;
    background: var(--light-gray);
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    font-size: 12px;
    color: black;
    padding: 10px 20px 8px;
    position: relative;
    letter-spacing: 0.04em;
}
.woocommerce-info:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    border-bottom: 4px solid #fff;
}
fieldset {
    border: none;
}
.woocommerce form .form-row .input-text, .woocommerce form .form-row select {
    border-radius: 0;
    height: 40px;
    box-shadow: none;
}
.woocommerce-notices-wrapper ul {
    list-style: none;
    font-size: 14px;
    text-align: center;
    border: 1px solid;
    margin: -1px;
}
/* WooCommerce My Account Navigation */
.woocommerce-MyAccount-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0 0 50px;
}

.woocommerce-MyAccount-navigation ul li {
    margin-bottom: 10px;
}

.woocommerce-MyAccount-navigation a {
    display: inline-block;
    position: relative;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    font-size: 14px;
    letter-spacing: 0.04em;
}

.woocommerce-MyAccount-navigation a:hover {
    color: var(--black);
}

.woocommerce-MyAccount-navigation a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: var(--black);
    transition: var(--transition);
}

.woocommerce-MyAccount-navigation a:hover::after {
    width: 100%;
}

.woocommerce-MyAccount-navigation .is-active a {
    color: var(--black);
    font-weight: 500;
}

.woocommerce-MyAccount-navigation .is-active a::after {
    width: 100%;
}

/* Footer */
footer {
    background-color: var(--white);
    color: var(--black);
    text-align: center;
    border-top: 1px solid var(--black);
}
footer .col-25 p {
    color: var(--black);
    margin: 30px 0;
    width: 80%;
    letter-spacing: 0.04em;
}
.footer-logo img {
    width: 80px;
}
footer .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    text-align: left;
}
footer ul li {
    list-style: none;
}
footer.footer .col-25:nth-child(2) {
    border-left: 1px solid var(--black);
    padding-left: 40px;
}
footer .col-25 {
    padding: 40px 0;
}
.footer-bottom {
    border-top: 1px solid var(--black);
    border-bottom: 1px solid var(--black);
    padding: 15px 0;
    height: 60px;
    display: inline-flex;
    align-items: center;
    width: 100%;
}
.footer-bottom p {
    font-size: 14px;
}
.footer-extra {
    background: #EFEFEF;
    line-height: 40px;
    height: 40px;
    margin-top: 4px;
}
.footer-extra p {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 0;
    text-align: center;
    width: 100%;
}
footer span {
    font-size: 18px;
    margin-bottom: 20px;
    display: block;
    letter-spacing: 0.1em;
}
footer .social-links {
    display: inline-flex;
    margin-top: 30px;
}
footer .social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--black);
    display: inline-flex;
    padding: 5px;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
footer .social-links li {
    margin-left: -1px;
}
footer .social-links li:first-child {
    margin-left: 0;
}
footer .social-links a:hover {
    background: #EFEFEF;
}
.footer-bottom .col-50:last-child {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}
/* Mobile Menu Styles */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 50vw;
    height: 100%;
    background-color: var(--white);
    z-index: 999999;
    transition: var(--transition);
    overflow-y: auto;
    border-right: 1px solid #000;
}

.mobile-menu-sidebar.active {
    left: 0;
}

.mobile-menu-content {
    padding-top: 60px;

}

.mobile-nav-menu,
.mobile-localization {
    list-style: none;
    padding: 0;
    margin: 0;
}
.mobile-nav-link {
    display: block;
    padding: 10px 20px;
    color: var(--black);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
    border-bottom: 1px solid #000000;
    border-top: 1px solid #000;
    margin-top: -1px;
}
.mobile-nav-section h3, .mobile-localization-section h3 {
    font-size: 16px;
    color: var(--black);
    padding: 10px 20px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    background: #EFEFEF;
    border-top: 1px solid;
    margin-top: -1px;
}
.mobile-nav-section {
    margin-bottom: 20px;
}
.mobile-nav-section ul, .mobile-nav-section .custom-nav-button {
    margin-left: 20px;
}
/* Contact Marquee */
.contact-marquee {
    position: absolute;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    font-size: 150px;
    color: #fff;
    display: flex;
    align-items: center;
    top: 0;
    bottom: 0;
    letter-spacing: 0.5em;
}
  .track {
    display: inline-flex;
    will-change: transform;
  }
  .item {
    padding: 0 2rem;
    white-space: nowrap;
  }
  @keyframes scrollLeft {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-50%);
    }
  }
/* Block Margins */
.has-margin-top {
    margin-top: 60px;
}

.has-margin-bottom {
    margin-bottom: 60px;
}

@media screen and (max-width: 992px) {
    .has-margin-top {
        margin-top: 40px;
    }

    .has-margin-bottom {
        margin-bottom: 40px;
    }
}

/* Hide the 'x' from search inputs */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
    -webkit-appearance: none;
}

input[type="search"]::-ms-clear {
    display: none;
    width: 0;
    height: 0;
}

/* ============================================
   WooCommerce Cart Page
   ============================================ */

.cart-page {
    padding: 60px 0;
}

.cart-page .page-title {
    font-size: 48px;
    font-weight: 500;
    margin-bottom: 40px;
    text-transform: uppercase;
    text-align: center;
}

.woocommerce-cart-form {
    margin-bottom: 40px;
}

.shop_table {
    width: 100%;
    border-collapse: collapse;
    border: var(--border);
}

.shop_table thead th {
    background: var(--light-gray);
    padding: 15px;
    text-align: left;
    font-weight: 500;
    text-transform: uppercase;
    border-bottom: var(--border);
}

.shop_table tbody td {
    padding: 20px 15px;
    border-bottom: var(--border);
    vertical-align: middle;
}

.shop_table .product-remove a {
    color: var(--black);
    font-size: 24px;
    text-decoration: none;
    font-weight: 300;
}

.shop_table .product-thumbnail img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: var(--border);
}

.shop_table .product-name a {
    color: var(--black);
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
}

.shop_table .product-price,
.shop_table .product-subtotal {
    font-weight: 600;
}

.shop_table .product-quantity input {
    width: 60px;
    padding: 8px;
    border: var(--border);
    text-align: center;
    text-transform: uppercase;
}

.shop_table .actions {
    text-align: right;
}

.shop_table .actions .button {
    background: var(--black);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.shop_table .actions .button:hover {
    background: var(--gray-800);
}

.cart-collaterals {
    display: flex;
    justify-content: flex-end;
}

.cart-totals {
    width: 100%;
    max-width: 500px;
}
.wc-block-checkout__main input, .wc-block-checkout__main select {
    border-radius: 0 !important;
    box-shadow: none !important;
}
.wc-block-components-checkbox label {
    align-items: center !important;
}
.wc-block-components-checkbox .wc-block-components-checkbox__mark {
    height: 32px !important;
    margin-left: 0 !important;
    margin-top: 0 !important;
    width: 32px !important;
    padding: 4px 5px 6px !important;
}
/* ============================================
   WooCommerce Single Product Page
   ============================================ */
.single-product-page {
    padding: 60px 0 0;
}
.single-product-content {
    margin-bottom: 60px;
}

/* New Product Layout */
.product-main-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-main-wrapper.loaded {
    opacity: 1;
}

.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}
.related-products.product-carousel {
    margin-bottom: 60px;
}
/* Product Gallery */
.product-gallery-wrapper {
    display: flex;
    position: relative;
    flex-direction: column;
    overflow: hidden;
    max-width: 100%;
    border-left: 1px solid;
}

/* ========================================
   PRODUCT MAIN SLIDER
======================================== */
.product-main-slider {
    position: relative;
    background: var(--white);
    border-top: 1px solid;
    border-bottom: 1px solid;
    transition: all 0.3s ease;
}

.product-main-slider .main-image-container {
    cursor: zoom-in;
    overflow: hidden;
}

.product-main-slider .main-image-container img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    max-height: 50vh;
}
.product-main-slider .main-image-container:hover img {
    transform: scale(1.5);
}

.product-main-slider .zoom-lens {
    position: absolute;
    border: 1px solid var(--black);
    width: 150px;
    height: 150px;
    pointer-events: none;
    display: none;
    background: rgba(255, 255, 255, 0.3);
    z-index: 10;
}

.product-main-slider .main-image-container:hover .zoom-lens {
    display: block;
}

/* Main Slider Navigation */
.product-main-slider .owl-nav {
    position: absolute;
    top: -1px;
    width: 100%;
    height: calc(100% + 2px);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 9;
    margin-top: 0 !important;
}

.product-main-slider .owl-nav button {
    width: 60px;
    background: var(--white) !important;
    border: 1px solid var(--black) !important;
    pointer-events: all;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    transition: var(--transition);
    margin: 0 !important;
    border-radius: 0 !important;
    box-shadow: none;
    position: relative;
}
.owl-theme .owl-nav .disabled {
    opacity: 1 !important;
}
.product-main-slider .owl-nav button:hover {
    background: var(--light-gray) !important;
}

.product-main-slider .owl-nav button:before {
    content: "";
    border-top: 4px solid white;
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    position: absolute;
}

.product-main-slider .owl-prev {
    left: -1px;
}

.product-main-slider .owl-next {
    right: -1px;
}

.product-main-slider .owl-prev:after {
    content: "PREV";
    rotate: -90deg;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-smooth: always;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 12px;
    line-height: 1.2;
}

.product-main-slider .owl-next:after {
    content: "NEXT";
    rotate: 90deg;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-smooth: always;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 12px;
    line-height: 1.2;
}

.product-main-slider .owl-nav span {
    display: none;
}

.product-main-slider .owl-dots {
    display: none;
}

/* ========================================
   PRODUCT THUMBS SLIDER
======================================== */
.product-thumbs-slider {
    position: relative;
    margin-top: -2px;
    margin-left: -1px;
    width: calc(100% + 1px) !important;
    max-width: calc(100% + 1px) !important;
    overflow: hidden;
}

.product-thumbs-slider .owl-stage-outer {
    background: var(--white);
    border-left: 1px solid;
    border-bottom: 1px solid;
}
.product-thumbs-slider .owl-stage-outer:before {
    content: "";
    border-top: 1px solid;
    width: 100%;
    height: 1px;
    position: relative;
    display: block;
    margin-bottom: -2px;
}
.product-thumbs-slider .thumb-item {
    cursor: pointer;
    transition: var(--transition);
    background: #000;
    padding: 0px;
    margin-left: -1px;
    margin-bottom: -1px;
    overflow: hidden;
}

.product-thumbs-slider .thumb-item:hover img{
    opacity: 1;
}

.product-thumbs-slider .thumb-item.active {
    padding: 0;
    opacity: 1;
}
.product-thumbs-slider .thumb-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
    opacity: 0.9;
    border: 1px solid;
}
.product-thumbs-slider .thumb-item.active img {
    padding: 0;
    opacity: 1;
}
.product-thumbs-slider .owl-nav {
    position: absolute;
    top: -1px;
    width: 100%;
    height: calc(100% + 2px);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 9;
}

.product-thumbs-slider .owl-nav button {
    width: 60px;
    background: var(--white) !important;
    border: 1px solid var(--black) !important;
    pointer-events: all;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    transition: var(--transition);
    margin: 0 !important;
    border-radius: 0 !important;
    box-shadow: none;
}

.product-thumbs-slider .owl-nav button:hover {
    background: var(--light-gray) !important;
}

.product-thumbs-slider .owl-nav button:before {
    content: "";
    border-top: 4px solid white;
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    position: absolute;
}

.product-thumbs-slider .owl-prev {
    left: -1px;
}

.product-thumbs-slider .owl-next {
    right: -1px;
}

.product-thumbs-slider .owl-prev:after {
    content: "PREV";
    rotate: -90deg;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-smooth: always;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 12px;
    line-height: 1.2;
}

.product-thumbs-slider .owl-next:after {
    content: "NEXT";
    rotate: 90deg;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-smooth: always;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 12px;
    line-height: 1.2;
}

.product-thumbs-slider .owl-nav span {
    display: none;
}

.product-thumbs-slider .owl-dots {
    display: none;
}

/* Product Info */
.product-info-wrapper {
    padding: 40px;
    padding-bottom: 200px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border: 1px solid;
    position: relative;
}

.product-info-bottom {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
}
.product-badge {
    top: 0;
    position: absolute;
    background: white;
    text-align: center;
    border-bottom: 1px solid;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-smooth: always;
    font-weight: 500;
    font-size: 14px;
    padding: 0 15px;
    border: 1px solid;
    z-index: 99;
}
.product-quantity {
    max-width: 60px;
    min-width: 50px;
    text-align: center;
}
.product-breadcrumb {
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #00000070;
    margin-bottom: 10px;
}

.product-breadcrumb a {
    color: #00000070;
    text-decoration: none;
    transition: var(--transition);
}

.product-breadcrumb a:hover {
    color: var(--black);
}

.product_title {
    font-size: 24px;
    font-weight: 500;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.3;
}

.stock-status {
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 8px 0;
}

.stock-status.in-stock {
    color: var(--black);
}

.stock-status.out-of-stock {
    color: #ef4444;
}

.woocommerce-product-details__short-description {
    font-size: 14px;
    line-height: 1.8;
    color: var(--black);
    width: 50%;
}
.woocommerce-product-details__short-description p {
    margin-bottom: 15px;
}

.product-price {
    font-size: 18px;
    font-weight: 600;
    color: var(--black);
}

.product-info-bottom .product-price {
    margin-bottom: 20px;
}

.product-price .amount {
    font-size: 18px;
}

.product-cart-form {
    margin: 20px 0;
}

.product-cart-form .cart {
    display: flex;
    gap: 10px;
    align-items: center;
}

.product-cart-form .quantity {
    display: flex;
    align-items: center;
}

.product-cart-form .quantity input {
    width: 60px;
    height: 40px;
    text-align: center;
    border: 1px solid var(--black);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0;
}

.product-cart-form .single_add_to_cart_button {
    height: 40px;
    line-height: 40px;
    padding: 0 30px;
    background: var(--white);
    color: var(--black);
    border: 1px solid var(--black);
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
    letter-spacing: 0.04em;
    box-shadow: 4px 4px 0px 0px var(--black);
}

.product-cart-form .single_add_to_cart_button:hover {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0px 0px var(--black);
}

.product-cart-form .single_add_to_cart_button:active {
    transform: translate(4px, 4px);
    box-shadow: 0px 0px 0px 0px var(--black);
}

/* Product Cart Section - New Layout */
.product-cart-section {
    display: inline-flex;
    align-items: center;
}

.product-info-bottom .product-cart-section {
    margin-bottom: 20px;
}
.product-cart-section .btn {
    margin-left: -1px;
}
.woocommerce-variation-add-to-cart .quantity {
    display: inline-flex;
    margin-right: -1px;
    z-index: -9;
    position: relative;
}
.woocommerce-variation-add-to-cart {
    display: flex;
    margin-bottom: 20px;
}
.variations .reset_variations {
    display: none;
}
.variations select {
    height: 40px;
    border-radius: 0;
    background: var(--light-gray);
}
.variations tr {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.woocommerce-variation-availability p {
    margin: 20px 0;
    font-size: 12px;
}
.product-cart-section .product-quantity, .quantity input {
    width: 60px;
    height: 40px;
    text-align: center;
    border: 1px solid var(--black);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0;
    min-width: 60px;
}

.product-cart-section .add-to-cart-btn, .single_add_to_cart_button{
    height: 40px;
    line-height: 40px;
    padding: 0 30px;
    background: var(--white);
    color: var(--black);
    border: 1px solid var(--black);
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
    letter-spacing: 0.04em;
    box-shadow: 4px 4px 0px 0px var(--black);
}

.product-cart-section .add-to-cart-btn:hover, .single_add_to_cart_button:hover {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0px 0px var(--black);
}

.product-cart-section .add-to-cart-btn:active, .single_add_to_cart_button:active {
    transform: translate(4px, 4px);
    box-shadow: 0px 0px 0px 0px var(--black);
}

.product-category,
.product-tags,
.product-meta-item {
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    display: flex;
    gap: 10px;
}

.product-info-bottom .product-meta-item {
    margin-bottom: 10px;
}

.product-info-bottom .product-meta-item:last-child {
    margin-bottom: 0;
}

.category-label,
.tags-label,
.meta-label {
    font-weight: 600;
}

.category-value,
.tags-value,
.meta-value {
    color: #00000070;
}

/* Product Tabs */
.woocommerce-tabs {
    margin-top: 60px;
}
.woocommerce-tabs .tabs li.active {
    background: var(--light-gray);
    border-bottom: none !important;
}
.woocommerce-tabs .tabs li:not(:first-child) {
    margin-left: -1px;
}
.woocommerce-tabs .tabs {
    display: flex;
    gap: 0;
    list-style: none;
}

.woocommerce-tabs .tabs li {
    border: 1px solid;
    margin-bottom: -1px;
}
.woocommerce-tabs .tabs li a {
    padding: 9px 20px;
    display: block;
}
.woocommerce-tabs .tabs li a {
    color: var(--text-secondary);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 500;
    transition: var(--transition);
    font-size: 14px;
    letter-spacing: 0.04em;
}

.woocommerce-tabs .tabs li.active a,
.woocommerce-tabs .tabs li a:hover {
    color: var(--black);
}

.woocommerce-tabs .woocommerce-Tabs-panel {
    padding: 20px;
    background: var(--light-gray);
    border-top: 1px solid;
    border-bottom: 1px solid;
}

.woocommerce-tabs .woocommerce-Tabs-panel h2 {
    font-size: 18px;
    margin-bottom: 20px;
}

.woocommerce-tabs .woocommerce-Tabs-panel p {
    line-height: 1.8;
}
/* Archive Product */
.woocommerce ul.products {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    margin-bottom: 50px;
}

.woocommerce ul.products.heights-calculated {
    opacity: 1;
}
.woocommerce ul.products .product-actions {
    text-align: center;
}
.woocommerce ul.products li.product {
    margin: 0 !important;
    width: 20%;
    flex: 0 0 20%;
    margin-top: -1px !important;
}
.woocommerce ul.products li.product .price {
    color: black !important;
    font-size: 14px;
    margin-bottom: 0 !important;
}
.woocommerce ul.products li.product .product-item {
    position: relative;
    border-right: 1px solid black;
    margin-left: -1px;
}
.woocommerce ul.products li.product a img {
    margin: 0 !important;
    height: unset !important;
    aspect-ratio: 2 / 3;
}
.woocommerce ul.products li.product .product-image {
    position: relative;
    background: var(--light-gray);
    min-height: 300px;
}

.woocommerce ul.products li.product .product-image.loaded {
    background: transparent;
    border: none;
}

.woocommerce ul.products li.product .product-image img {
    object-fit: cover !important;
    opacity: 0;
}

.woocommerce ul.products li.product .product-image.loaded img {
    opacity: 1;
}
.woocommerce ul.products li.product .category-details {
    height: calc(var(--eqHeight, auto) + var(--hoverBoost, 0px));
}
.woocommerce ul.products .product-item .product-image img {
    transition: var(--transition);
}
.woocommerce ul.products .product-item:hover .product-image img {
    transform: translateY(-40px);
    margin: 0 !important;
}
.woocommerce ul.products li.product .woocommerce-placeholder {
    border: none !important;
}
.woocommerce ul.products li.product .product-item:hover {
    --hoverBoost: 50px;
}
.woocommerce ul.products .product-actions {
    transition: var(--transition);
    margin-bottom: 0px;
    position: absolute;
    bottom: -15px;
    left: 0;
    right: 0;
    opacity: 0;
    padding-top: 0;
    margin-top: 0;
    text-align: center;
}
.woocommerce ul.products li.product:hover .product-actions {
    bottom: 20px;
    opacity: 1;
}
header.woocommerce-products-header {
    width: 100%;
}

header.woocommerce-products-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 40px 300px;
    gap: 40px;
}

/* WooCommerce Breadcrumbs */
.woocommerce-breadcrumb {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    margin-bottom: 0 !important;
}

.woocommerce-breadcrumb ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
    flex-wrap: nowrap;
    gap: 10px;
}
.woocommerce-breadcrumb li {
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
    color: #00000070;
}

/* Global link animation for elements inside custom-link class */
.custom-link a {
    color: black !important;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    display: inline-block;
}

.custom-link a:hover {
    color: var(--black);
}

.custom-link a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--black);
    transition: var(--transition);
}

.custom-link a:hover::after {
    width: 100%;
}

.woocommerce-breadcrumb .separator {
    margin: 0 5px;
    color: black;
}

.woo_page_title {
    flex: 1;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.woo_page_title h1 {
    margin: 0;
    font-size: 18px;
    letter-spacing: 0.1em;
}

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

.woo_seo_text p {
    margin: 0;
    text-align: right;
    width: 60%;
    font-size: 13px;
    line-height: 1.4;
    letter-spacing: 0.04em;
}
.shop-page-header {
    border-bottom: 1px solid;
}
/* Filters Section */
.filters {
    position: relative;
}
.filters:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    border-bottom: 4px solid #fff;
}
.filters .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 300px;
}

.filters-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.filters-content a {
    font-size: 14px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.sort {
    display: flex;
    align-items: center;
    gap: 15px;
}

.sort p {
    margin: 0;
    font-size: 14px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.sort .woocommerce-ordering {
    margin: 0;
}

.sort select {
    height: 40px;
    line-height: 40px;
    padding: 0 15px;
    border: 1px solid black;
    background: white;
    font-family: neue-haas-grotesk-display, sans-serif;
    font-size: 14px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    outline: none;
    transition: var(--transition);
}

.sort select:hover {
    background: var(--light-gray);
}

/* Filters Lightbox */
.filters-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    display: none;
}

.filters-lightbox {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    background: white;
    border: 1px solid black;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.filters-lightbox.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

body.filters-open {
    overflow: hidden;
}

.filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    border-bottom: 1px solid black;
    position: relative;
}

.filters-header:before {
    content: "";
    border-top: 4px solid #EFEFEF;
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    position: absolute;
}

.filters-header h3 {
    margin: 0;
    font-size: 18px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.close-filters {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.close-filters:hover {
    opacity: 0.7;
}

.filters-body {
    flex: 1;
    overflow-y: auto;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.filter-group {
    display: flex;
    flex-direction: column;
}

.filter-title {
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 500;
}
.filter-options #product_category {
    border: 1px solid;
    border-radius: 0;
    outline: none;
    padding: 10px;
    background: var(--light-gray);
}
.filter-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    letter-spacing: 0.04em;
}

.filter-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    border: 1px solid black;
    cursor: pointer;
    margin: 0;
}

.filter-label {
    flex: 1;
}

.filter-count {
    color: #00000070;
    font-size: 12px;
}

.price-filter {
    gap: 20px;
}

.price-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.price-input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
}

.price-input-group label {
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.price-input-group input {
    width: 100%;
    padding: 8px 35px 8px 10px;
    border: 1px solid #ddd;
    font-size: 14px;
}

/* Remove number input arrows */
.price-input-group input[type="number"]::-webkit-inner-spin-button,
.price-input-group input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.price-input-group input[type="number"] {
    -moz-appearance: textfield;
    appearance: textfield;
}

.price-input-group input {
    font-size: 14px;
    letter-spacing: 0.04em;
    box-shadow: none;
    min-width: auto;
}
.price-input-group .currency {
    position: absolute;
    right: 15px;
    bottom: 12px;
    font-size: 14px;
    pointer-events: none;
}

.price-range-info {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #00000070;
}

.filters-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-top: 1px solid black;
    gap: 15px;
}

.filters-footer .btn {
    flex: 1;
}

.no-filters {
    font-size: 13px;
    color: #00000070;
    margin: 0;
}
nav.woocommerce-pagination {
    margin-top: 40px;
    margin-bottom: 40px;
    height: 34px !important;
    width: 100%;
}
nav.woocommerce-pagination ul {
    display: inline-flex;
    list-style: none;
    justify-content: flex-end;
    width: 100%;
}
span.page-numbers, a.page-numbers {
    width: 60px;
    height: 30px;
    border: 1px solid black;
    background: white !important;
    padding: 0 !important;
    margin: 0 !important;
    color: black !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 13px !important;
}
ul.page-numbers li {
    margin-left: -2px !important;
}
.woocommerce nav.woocommerce-pagination ul {
    border: none !important;
}
span.page-numbers.current {
    background: var(--light-gray)!important;
    color: black!important;
}
/* Active Filters Display */
.active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.active-filter {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: var(--light-gray);
    border: 1px solid black;
    font-size: 12px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.active-filter .remove-filter {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    padding: 0;
    margin-left: 5px;
    transition: var(--transition);
}

.active-filter .remove-filter:hover {
    opacity: 0.7;
}

/* Loading State */
.woocommerce ul.products.loading {
    position: relative;
    pointer-events: none;
}

/* Archive Product Responsive */
@media screen and (max-width: 1640px) {
    .woocommerce ul.products li.product {
        width: 25%;
        flex: 0 0 25%;
    }
}

@media screen and (max-width: 1200px) {
    .woocommerce ul.products li.product {
        width: 33.333%;
        flex: 0 0 33.333%;
    }
}

@media screen and (max-width: 768px) {
    .woocommerce ul.products li.product {
        width: 50%;
        flex: 0 0 50%;
    }
}

@media screen and (max-width: 480px) {
    .woocommerce ul.products li.product {
        width: 100%;
        flex: 0 0 100%;
    }
}

/* Responsive Design */

@media screen and (max-width: 1400px) {
    .fixed-nav-menu {
        display: none;
    }
    
    .fixed-burger {
        display: flex;
    }
    .login-register-grid {
    margin: 0;
}
}

@media screen and (max-width: 1920px) {
    .container {
        padding-right: 10.4%;
        padding-left: 10.4%;
    }
    .feature_box.left .feature_box_text {
        margin-left: 25%;
    }
    .feature_box .feature_box_text {
        width: 70%;
    }

}

@media screen and (max-width: 1080px) {
    .header__info .container {
        display: none;
    }
    
    .header__info-marquee {
        display: block;
    }
    form#newsletterForm input {
        width: 100% !important;
    }
}

@media screen and (max-width: 992px) {
    .register-column {
        border-left: 0;
        margin-bottom: 50px;
    }
    .register-column h2 {
        margin-top: 50px;
    }
    .register-column:before {
        content: "";
        border-top: 1px solid;
        height: 1px;
        width: 100%;
        position: absolute;
        left: 0;
    }
    .login-column, .register-column {
    padding: 50px 0px 0;
    }
    /* Single Product Responsive */
    .product-layout {
        grid-template-columns: 1fr;
    }
    
    .product-gallery-wrapper {
        border-right: none;
        border-bottom: 1px solid var(--black);
    }
    
    .product-info-wrapper {
        padding: 30px;
    }
    
    .product-main-slider .owl-nav button {
        width: 50px;
    }
    
    .product-main-slider .owl-prev:after,
    .product-main-slider .owl-next:after {
        font-size: 11px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    .image_feature_box_right {
        position: relative;
        flex: 0 0 100%;
        width: 100%;
        border-left: none;
    }
    .text-content .text-wrapper {
        width: 100%;
    }
    .feature_box .feature_box_text {
        min-height: 300px;
    }
    .feature_box.left .image_feature_box_right {
        width: 100%;
        border-right: none;
    }
    .feature_box.left .empty-space {
        display: none;
    }
    .feature_box_row {
        display: flex;
        flex-wrap: nowrap;
        width: 100%;
        min-height: auto;
    }

    .container {
        padding-right: 40px;
        padding-left: 40px;
    }
    .feature_box.left .feature_box_text {
        margin-left: 0px;
    }
    footer .col-25:first-child {
        width: 100%;
        flex: 0 0 100%;
        position: relative;
    }
    footer .col-25:nth-child(2), footer .col-25:nth-child(3), footer .col-25:nth-child(4) {
        width: 33.333%;
        flex: 0 0 33.333%;
        border-left: none !important;
        padding-left: 0 !important;
    }
    footer .col-25:first-child:after {
        content: "";
        border-bottom: 1px solid #000;
        width: calc(100% + 80px);
        position: absolute;
        bottom: 0;
        left: -40px;
        overflow: hidden;
    }
    #newsletter .col-50 {
        width: 100%;
        flex: 0 0 100%;
    }
    #newsletterForm {
        margin-top: 30px;
    }
    .image-text-content {
        align-items: flex-start;
        flex-direction: column;
        padding-bottom: 50px;
    }
    .owl-item.active .product-item .category-details {
        background: white;
    }
    .owl-item.active .categories-carousel .product-item .product-image img {
        transform: translateY(-30px);
    }
    .owl-item.active .categories-carousel .product-item .product-image {
        background: white;
    }
    .search-bar input {
        display: none;
    }
    .header__row .col-40:first-child {
        display: inline-flex;
        align-items: center;
    }
    .search-form .btn {
        border: none;
        box-shadow: none;
        position: relative;
    }
    .image-box {
        border-right: none;
        border-bottom: 1px solid;
        width: 100%;
    }
    .owl-item.active .product-item .product-details {
        background: white;
    }
    .owl-item.active .product-item .product-image {
        background: white;
    }
    .owl-item.active .product-item .category-details {
        background: white;
    }
    .product-carousel .owl-item.active .product-item {
        --hoverBoost: 50px;
    }
    .product-carousel .owl-item.active .product-item .product-actions {
        bottom: 20px;
        opacity: 1;
    }
    .woo-account .woocommerce {
    grid-template-columns: 25% 75%;
    }
    .woocommerce-MyAccount-content {
        width: 100%;
    }



}

@media screen and (max-width: 768px) {
    /* Single Product Mobile */
    .product-gallery-wrapper {
        padding: 20px;
    }
    
    .product-info-wrapper {
        padding: 20px;
    }
    
    .product_title {
        font-size: 20px;
    }
    
    .product-main-slider .owl-nav button {
        width: 40px;
    }
    
    .product-main-slider .owl-prev:after,
    .product-main-slider .owl-next:after {
        font-size: 10px;
    }
    
    .product-thumbs-slider .owl-nav button {
        width: 40px;
    }
    
    .product-thumbs-slider .owl-prev:after,
    .product-thumbs-slider .owl-next:after {
        font-size: 10px;
    }
    
    footer .col-25:first-child:after {
        width: calc(100% + 40px);
        left: -20px;
    }
    .nav-menu,
    .localization {
        display: none;
    }

    .desktop-logo {
        display: none;
    }

    .mobile-logo {
        display: block;
        aspect-ratio: 3 / 2;
    }
    .nav-toggle {
        display: flex;
        width: 40px;
        height: 40px;
        align-items: center;
        justify-content: center;
        z-index: 9999999;
        position: relative;
    }
    .header__fixed .nav-toggle {
        border-top: none;
    }
    /* Hero slider responsive */
    .hero-slide {
        min-height: 500px;
    }
    
    .hero-content {
        text-align: center;
        flex-direction: column-reverse;
        max-width: 100%;
        gap: 0;
        padding: 0 50px;
    }
    
    .hero-text {
        max-width: 100%;
        text-align: center;
        padding-bottom: 100px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-image {
        max-width: 100%;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 2rem;
    }
    .container, .full-container {
        padding-right: 20px;
        padding-left: 20px;
    }
    nav.navbar .header__row:nth-child(2) {
        display: none;
    }
    .shop-menu li:first-child {
        display: none;
    }
    .mobile-menu-sidebar {
        width: 100vw;
    }
    .custom-nav-button {
        display: none;
    }
}

@media screen and (max-width: 640px) {
    footer .col-25:nth-child(2), footer .col-25:nth-child(3), footer .col-25:nth-child(4) {
        width: 100%;
        flex: 0 0 100%;
        position: relative;
    }
    footer .col-25:nth-child(3), footer .col-25:nth-child(4){
        padding: 0 0 40px;
    }
    .footer-bottom {
        height: 90px;
    }
    .footer-bottom .col-50 {
        width: 100%;
        flex: 0 0 100%;
        text-align: center;
    }
    .footer-bottom .col-50:last-child {
        align-items: center;
        justify-content: center;
        margin-top: 10px;
    }
    #newsletterForm {
        width: 100%;
    }
    form#newsletterForm input {
        min-width: calc(100% - 100px);
    }
    .mobile-menu-close {
        left: 10px;
    }
    .woo-account .woocommerce {
    grid-template-columns: 1fr;
    }
    .woocommerce-MyAccount-content {
        width: 100%;
        padding-left: 0;
        border: none;
    }
    .woocommerce-MyAccount-navigation ul {
        margin: 50px 0 0;
    }
    .woocommerce-form-row, .woocommerce-form-row input, .form-row, .form-row input {
        min-width: 100%;
    }
}

hr.block-divider {
    border: none;
    border-top: 1px solid var(--black);
    margin: 0;
}

@media screen and (max-width: 480px) {
    .hero {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 30px;
    }
    .feature_box .feature_box_text {
        width: 90%;
    }
    .text-content {
        padding: 60px 20px;
    }
    .hero-text {
        padding-bottom: 60px;
    }
    .image-text-content .text-wrapper p {
        width: 90% !important;
    }
    .text-wrapper {
        padding: 0 20px;
    }
    .hero-carousel .owl-nav button, .categories-carousel .owl-nav button {
        width: 40px;
    }
    .hero-slider .container, .categories-carousel .container {
        padding-left: 5px;
        padding-right: 5px;
    }
    .nav-toggle, .header__fixed .nav-toggle {
        margin-left: -15px;
    }
    .mobile-menu-close {
        left: 0px;
    }

}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

