/*
Theme Name: STZ Shop Theme
Author: stz
Description: Кастомна тема для інтернет-магазину
Version: 1.0
*/

@font-face {
    font-family: 'Sansation';
    src: url('./fonts/SansationRegular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Sansation';
    src: url('./fonts/SansationBold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

:root {
    --bg-dark: #121212;
    --bg-card: #1E1E1E;
    --accent-orange: #FF6600;
    --text-white: #FFFFFF;
    --text-gray: #A0A0A0;
    --font-main: 'Sansation', sans-serif;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-main);
    line-height: 1.5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}


/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
    display: inline-block;
    padding: 12px 40px;
    border-radius: 35px;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-outline {
    border: 1px solid var(--accent-orange);
    color: var(--accent-orange);
    background: transparent;
}

.btn-outline:hover {
    background: var(--accent-orange);
    color: var(--text-white);
}

.btn-solid {
    background: var(--accent-orange);
    color: var(--bg-dark);
    border: 1px solid var(--accent-orange);
}

.btn-solid:hover {
    background: transparent;
    color: var(--accent-orange);
}

.btn-sm {
    padding: 5px 10px;
    font-size: 16px;
    flex: 1;
    text-align: center;
}

.btn-dark {
    background-color: var(--bg-dark);
    color: var(--accent-orange);
    border: 1px solid var(--bg-dark);
    padding: 5px 80px;
    font-size: 20px;
}

.btn-dark:hover {
    background-color: transparent;
    color: var(--bg-dark);
}

.btn-out-of-stock {
    background-color: transparent;
    color: #FF3333;
    border: 1px solid #FF3333;
    padding: 8px 15px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 12px;
    width: 100%;
    text-align: center;
    cursor: not-allowed;
    text-transform: uppercase;
}


/* ==========================================================================
   HEADER
   ========================================================================== */

.site-header {
    padding: 20px 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 50px;
}

.main-nav a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 20px;
    text-transform: uppercase;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--accent-orange);
}

.header-tools {
    display: flex;
    align-items: center;
    gap: 25px;
}

.burger-menu-btn {
    display: none;
}

.header-cart a {
    position: relative;
    display: flex;
    align-items: center;
    color: var(--text-white);
    transition: color 0.3s ease;
}

.header-cart a:hover {
    color: var(--accent-orange);
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background-color: var(--accent-orange);
    color: var(--bg-dark);
    font-size: 11px;
    font-weight: bold;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    line-height: 1;
}

.search-bar {
    display: flex;
    align-items: center;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 5px 15px;
    height: 40px;
    width: 223px;
}

.search-bar input {
    background: transparent !important;
    border: none !important;
    color: var(--text-white) !important;
    outline: none !important;
    box-shadow: none !important;
    width: 150px;
}

.search-bar button {
    background: transparent !important;
    border: none !important;
    color: var(--text-white) !important;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
}

.site-header .search-bar form {
    display: flex;
    align-items: center;
    width: 100%;
    margin: 0;
    padding: 0;
}

.site-header .search-bar button[type="submit"] {
    background-color: transparent !important;
    color: var(--text-white) !important;
    padding: 0 !important;
    margin: 0 !important;
    min-width: auto !important;
    width: auto !important;
    height: auto !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.site-header .header-cart a {
    background-color: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative;
    color: var(--text-white);
    text-decoration: none;
    width: 30px;
    height: 30px;
}

.site-header .header-cart svg {
    width: 24px;
    height: 24px;
}

.site-header .header-tools {
    gap: 20px !important;
}


/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero-section {
    margin-top: 80px;
}

.hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    max-width: 50%;
}

.hero-content h1 {
    font-size: 40px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-content p {
    font-size: 24px;
    color: #fff;
    margin-bottom: 40px;
    line-height: 45px;
    text-transform: uppercase;
}

.hero-buttons {
    display: flex;
    gap: 40px;
}

.hero-image {
    display: flex;
    justify-content: flex-end;
}

.hero-image img {
    width: 513px;
    max-width: 100%;
    height: auto;
}


/* ==========================================================================
   SECTION TYPOGRAPHY
   ========================================================================== */

.section-title {
    font-size: 40px;
    text-transform: uppercase;
    margin-bottom: 40px;
    font-weight: bold;
}


/* ==========================================================================
   PRODUCT GRID
   ========================================================================== */

.recommended-products {
    margin-top: 30px;
    padding: 60px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.product-card {
    display: flex;
    flex-direction: column;
}

.product-image-link {
    display: block;
    margin-bottom: 15px;
    overflow: hidden;
}

.product-image-link img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-image-link:hover img {
    transform: scale(1.05);
}

.product-title {
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 700;
    min-height: 42px;
}

.product-title a {
    color: var(--text-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-title a:hover {
    color: var(--accent-orange);
}

.product-price {
    font-size: 16px;
    color: #fff;
    margin-bottom: 20px;
    flex-grow: 1;
}

.product-price del {
    opacity: 0.5;
    margin-right: 5px;
}

.product-price ins {
    text-decoration: none;
    color: var(--text-white);
}

.product-actions {
    display: flex;
    gap: 10px;
}

.more-products-wrapper {
    display: flex;
    justify-content: center;
}

.products-grid.catalog-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.products-grid.catalog-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.product-actions a.btn-solid.add_to_cart_button {
    background-color: var(--accent-orange) !important;
    color: var(--bg-dark) !important;
    border: 1px solid var(--accent-orange) !important;
    border-radius: 25px !important;
    font-weight: bold !important;
}

.product-actions a.btn-solid.add_to_cart_button:hover {
    background-color: transparent !important;
    color: var(--accent-orange) !important;
}

.product-actions a.btn-outline {
    background-color: transparent !important;
    color: var(--accent-orange) !important;
    border: 1px solid var(--accent-orange) !important;
}

.product-actions a.btn-outline:hover {
    background-color: var(--accent-orange) !important;
    color: var(--bg-dark) !important;
}


/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */

.about-section {
    display: flex;
    width: 100%;
    max-height: 500px;
    margin-top: 7%;
}

.about-image {
    flex: 0 0 50%;
    min-height: 400px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-content {
    flex: 0 0 50%;
    background-color: var(--accent-orange);
    color: var(--bg-dark);
    display: flex;
    align-items: center;
    padding: 80px;
}

.about-text-wrapper {
    max-width: 600px;
    margin-left: 0;
    text-align: right;
    width: 100%;
}

.about-text-wrapper h2 {
    font-size: 64px;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: bold;
}

.about-text-wrapper p {
    font-size: 20px;
    margin-bottom: 30px;
    line-height: 1.9;
    text-transform: uppercase;
    font-weight: 400;
    color: rgba(20, 22, 21, 1);
}


/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
    background-color: var(--bg-dark);
    padding: 80px 0 30px;
    margin-top: 40px;
}

.footer-top {
    margin-bottom: 40px;
}

.footer-logo-text {
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--text-white);
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.footer-col h3 {
    font-size: 16px;
    color: var(--text-white);
    margin-bottom: 25px;
    text-transform: uppercase;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
    font-size: 16px;
    color: #fff;
    display: flex;
    align-items: center;
}

.footer-col ul li::before {
    content: "•";
    color: var(--text-gray);
    margin-right: 10px;
    font-size: 16px;
}

.footer-col a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--accent-orange);
}

.footer-logos {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: flex-end;
    justify-content: center;
}

.footer-logos img {
    max-width: 140px;
    height: auto;
    transition: opacity 0.3s ease;
}

.footer-logos img:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    font-size: 12px;
    color: var(--text-gray);
}


/* ==========================================================================
   CATALOG PAGE
   ========================================================================== */

.catalog-page-wrapper {
    padding: 40px 0;
}

.catalog-banner {
    background-color: var(--accent-orange);
    color: var(--bg-dark);
    border-radius: 35px;
    height: 70px;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    text-decoration: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.catalog-banner:hover {
    opacity: 0.9;
    transform: scale(0.99);
}

.catalog-banner h1 {
    font-size: 20px;
    margin: 0;
    text-transform: uppercase;
    color: var(--bg-dark);
    line-height: 1;
}

.catalog-categories-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 80px;
    margin-bottom: 60px;
}

.cat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-white);
    transition: transform 0.3s ease;
    width: 180px;
}

.cat-item:hover {
    transform: translateY(-5px);
    color: var(--accent-orange);
}

.cat-item img {
    width: 200px;
    height: 200px;
    margin-bottom: 15px;
}

.cat-item span {
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.3;
    max-width: 100%;
}

.catalog-layout {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.catalog-sidebar {
    width: 260px;
    flex-shrink: 0;
}

.catalog-main {
    flex-grow: 1;
    transition: opacity 0.3s ease;
}

.catalog-main.is-loading {
    opacity: 0.4;
    pointer-events: none;
}

.sort-dropdown {
    margin-bottom: 70px;
}

.sort-dropdown select {
    background-color: transparent;
    color: var(--text-gray);
    border: none;
    font-family: var(--font-main);
    font-size: 16px;
    outline: none;
    cursor: pointer;
}


/* ==========================================================================
   PRICE FILTER
   ========================================================================== */

.custom-price-filter {
    background-color: var(--accent-orange);
    border-radius: 20px;
    padding: 20px;
    color: var(--bg-dark);
}

.custom-price-filter h3 {
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-align: center;
}

.slider-track-visual {
    position: relative;
    height: 4px;
    background-color: var(--bg-dark);
    margin-bottom: 25px;
    border-radius: 2px;
}

.slider-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: var(--bg-dark);
    border-radius: 50%;
    top: -4px;
}

.slider-dot.left {
    left: 20%;
}

.slider-dot.right {
    right: 20%;
}

.price-inputs {
    display: flex;
    gap: 10px;
    align-items: stretch;
}

.price-inputs input {
    flex: 1;
    min-width: 0;
    padding: 8px 5px;
    background: transparent;
    border: 1px solid var(--bg-dark);
    border-radius: 15px;
    color: var(--bg-dark);
    text-align: center;
    font-family: var(--font-main);
    font-weight: bold;
    font-size: 14px;
}

.price-inputs input:focus {
    outline: none !important;
    box-shadow: none !important;
    border-color: var(--bg-dark);
}

.price-inputs button.btn-sm {
    flex: 1.2;
    padding: 8px 8px;
    border-radius: 8px;
    margin: 0;
}

.range-slider-container {
    position: relative;
    height: 4px;
    margin-bottom: 25px;
    margin-top: 10px;
}

.slider-track {
    position: absolute;
    width: 100%;
    height: 4px;
    background-color: var(--bg-dark);
    opacity: 0.2;
    border-radius: 2px;
    z-index: 1;
}

.slider-progress {
    position: absolute;
    height: 4px;
    background-color: var(--bg-dark);
    border-radius: 2px;
    z-index: 2;
    left: 0%;
    right: 50%;
}

.range-slider-container input[type="range"] {
    position: absolute;
    width: 100%;
    height: 4px;
    top: 0;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
    z-index: 3;
    margin: 0;
    outline: none;
}

.range-slider-container input[type="range"]::-webkit-slider-thumb {
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: var(--bg-dark);
    pointer-events: auto;
    -webkit-appearance: none;
    cursor: pointer;
}

.range-slider-container input[type="range"]::-moz-range-thumb {
    height: 16px;
    width: 16px;
    border: none;
    border-radius: 50%;
    background: var(--bg-dark);
    pointer-events: auto;
    cursor: pointer;
}


/* ==========================================================================
   SUBCATEGORY HEADER
   ========================================================================== */

.subcategory-header-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 60px;
}

.active-category-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 160px;
    flex-shrink: 0;
}

.active-category-display img {
    width: 120px;
    height: auto;
    margin-bottom: 15px;
}

.active-category-display span {
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--text-white);
    text-align: center;
}

.subcategories-list-box {
    flex-grow: 1;
    border: 1px solid var(--accent-orange);
    border-radius: 15px;
    padding: 0 40px;
    display: flex;
    align-items: center;
    min-height: 60px;
}

.subcategories-list-box ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin: 0;
    padding: 0;
}

.subcategories-list-box ul li a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
}

.subcategories-list-box ul li a:hover,
.subcategories-list-box ul li a.active-sub {
    color: var(--accent-orange);
}

.category-action-btn .btn-icon-orange {
    background-color: var(--accent-orange);
    color: var(--bg-dark);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.category-action-btn .btn-icon-orange:hover {
    transform: scale(1.1);
}


/* ==========================================================================
   SINGLE PRODUCT PAGE
   ========================================================================== */

.single-product-page {
    padding-bottom: 60px;
}

.custom-breadcrumbs {
    margin-bottom: 30px;
    font-size: 16px;
    color: #e0e0e0;
}

.custom-breadcrumbs nav {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 40px;
}

.custom-breadcrumbs a,
.custom-breadcrumbs a:visited {
    color: var(--text-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.custom-breadcrumbs a:hover {
    color: var(--accent-orange);
}

.single-product-main {
    display: flex;
    gap: 60px;
    margin-bottom: 100px;
}

.single-product-image {
    flex: 1;
    max-width: 50%;
}

.single-product-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    object-fit: cover;
}

.single-product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 10px;
}

.single-title {
    font-size: 24px;
    color: var(--text-white);
    text-transform: uppercase;
    margin: 0 0 10px 0;
}

.title-line {
    height: 1px;
    background-color: var(--accent-orange);
    width: 100%;
    margin-bottom: 25px;
}

.single-desc {
    color: var(--text-white);
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.8;
}

.single-action-row {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.single-price .amount {
    font-size: 28px;
    font-weight: bold;
    color: var(--text-white);
}

.custom-single-cart {
    display: flex;
    align-items: center;
    gap: 15px;
}

.custom-quantity {
    display: flex;
    align-items: stretch;
    background: transparent;
    border: 1px solid var(--accent-orange);
    border-radius: 20px;
    height: 40px;
    overflow: hidden;
}

.custom-quantity input {
    background: transparent;
    border: none;
    color: var(--text-white);
    width: 40px;
    text-align: center;
    font-weight: bold;
    -moz-appearance: textfield;
}

.custom-quantity input:focus {
    outline: none;
}

.custom-quantity input::-webkit-outer-spin-button,
.custom-quantity input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.qty-nav {
    display: flex;
    flex-direction: column;
    background-color: var(--accent-orange);
    width: 25px;
}

.qty-nav button {
    background: transparent;
    border: none;
    height: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s ease;
}

.qty-nav button:hover {
    background-color: #e56b00;
}

.single-related-section {
    margin-bottom: 80px;
}

.single-related-section h2 {
    font-size: 22px;
    color: var(--text-white);
    text-transform: uppercase;
    margin-bottom: 40px;
}


/* ==========================================================================
   VARIATIONS
   ========================================================================== */

.custom-variations-box {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.variation-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.var-label {
    color: var(--text-white);
    font-size: 20px;
    min-width: 180px;
}

.var-select-wrap {
    position: relative;
    width: 180px;
    height: 35px;
    border: 1px solid var(--accent-orange);
    border-radius: 18px;
    overflow: hidden;
    background: transparent;
}

.var-select-wrap select {
    width: 100%;
    height: 100%;
    background: transparent;
    color: var(--text-white);
    border: none;
    padding: 0 45px 0 15px;
    font-family: var(--font-main);
    font-size: 14px;
    -webkit-appearance: none;
    outline: none;
    cursor: pointer;
    margin: 0;
}

.var-select-wrap select option {
    background: var(--bg-dark);
    color: var(--text-white);
}

.var-arrow {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 100%;
    background-color: var(--accent-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.reset_variations {
    display: none !important;
}

.single_variation .woocommerce-variation-price .price,
.single_variation .woocommerce-variation-price .amount {
    font-size: 28px !important;
    font-weight: bold !important;
    color: var(--text-white) !important;
}


/* ==========================================================================
   CART PAGE
   ========================================================================== */

.woocommerce-cart .woocommerce {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 80px;
}

.woocommerce-cart .woocommerce-cart-form {
    flex: 1;
    min-width: 60%;
}

.woocommerce table.shop_table {
    border: none;
    border-collapse: collapse;
    border-radius: 0;
    margin-bottom: 30px;
}

.woocommerce table.shop_table th {
    background-color: transparent;
    color: var(--text-gray);
    text-transform: uppercase;
    font-weight: bold;
    border: none;
    border-bottom: 2px solid var(--accent-orange);
    padding: 15px 10px;
}

.woocommerce table.shop_table td {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 10px;
    color: var(--text-white);
    vertical-align: middle;
}

.woocommerce table.cart .product-thumbnail img {
    width: 80px;
    height: auto;
    border-radius: 10px;
    box-shadow: none;
}

.woocommerce table.cart .product-name a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: color 0.3s ease;
}

.woocommerce table.cart .product-name a:hover {
    color: var(--accent-orange);
}

.woocommerce table.shop_table a.remove {
    color: var(--text-white) !important;
    background: transparent !important;
    font-size: 24px;
    font-weight: normal;
    border: 1px solid var(--accent-orange);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    line-height: 26px;
    transition: all 0.3s ease;
}

.woocommerce table.shop_table a.remove:hover {
    background: var(--accent-orange) !important;
    color: var(--bg-dark) !important;
}

.woocommerce-cart table.cart .quantity .qty {
    width: 60px;
    height: 40px;
    background: transparent;
    border: 1px solid var(--accent-orange);
    border-radius: 20px;
    color: var(--text-white);
    text-align: center;
    font-weight: bold;
    -moz-appearance: textfield;
}

.woocommerce-cart table.cart .quantity .qty:focus {
    outline: none;
}

.woocommerce-cart table.cart .quantity .qty::-webkit-outer-spin-button,
.woocommerce-cart table.cart .quantity .qty::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.woocommerce .cart .actions {
    padding: 20px 0;
    border: none;
}

.woocommerce .cart .actions .coupon {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.woocommerce .cart .actions .coupon input[type="text"] {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-white);
    padding: 10px 20px;
    border-radius: 25px;
    height: 45px;
    width: 200px;
}

.woocommerce .cart .actions .coupon input[type="text"]:focus {
    border-color: var(--accent-orange);
    outline: none;
}

.woocommerce .cart .actions button.button {
    background-color: transparent;
    color: var(--accent-orange);
    border: 1px solid var(--accent-orange);
    border-radius: 25px;
    padding: 10px 25px;
    height: 45px;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.woocommerce .cart .actions button.button:hover {
    background-color: var(--accent-orange);
    color: var(--bg-dark);
}

.woocommerce .cart .actions button[name="update_cart"] {
    opacity: 0.5;
}

.woocommerce .cart .actions button[name="update_cart"]:not([disabled]) {
    opacity: 1;
}

.woocommerce-cart .cart-collaterals {
    flex: 1;
    min-width: 300px;
}

.woocommerce .cart-collaterals .cart_totals {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    width: 100%;
    float: none;
}

.woocommerce .cart-collaterals .cart_totals h2 {
    color: var(--text-white);
    font-size: 22px;
    text-transform: uppercase;
    border-bottom: 2px solid var(--accent-orange);
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.woocommerce .cart-collaterals .cart_totals table {
    width: 100%;
    border: none;
    margin-bottom: 30px;
}

.woocommerce .cart-collaterals .cart_totals table th,
.woocommerce .cart-collaterals .cart_totals table td {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px 0;
    color: var(--text-white);
}

.woocommerce .cart-collaterals .cart_totals table td {
    text-align: right;
}

.woocommerce .cart-collaterals .cart_totals table .order-total th,
.woocommerce .cart-collaterals .cart_totals table .order-total td {
    border-bottom: none;
    font-size: 20px;
    font-weight: bold;
    color: var(--text-white);
}

.woocommerce .cart-collaterals .cart_totals table .order-total .amount {
    color: var(--accent-orange);
}

.woocommerce .cart-collaterals .wc-proceed-to-checkout a.checkout-button {
    display: block;
    background-color: var(--accent-orange);
    color: var(--bg-dark);
    text-align: center;
    border-radius: 25px;
    padding: 15px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.3s ease;
}

.woocommerce .cart-collaterals .wc-proceed-to-checkout a.checkout-button:hover {
    background-color: #e56b00;
}

.woocommerce-cart .cart-empty {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--accent-orange);
    padding: 30px;
    border-radius: 15px;
    color: var(--text-white);
    display: inline-block;
    list-style: none !important;
}

.woocommerce-cart .cart-empty::before {
    display: none !important;
    content: "" !important;
}

.woocommerce-cart .return-to-shop a.button {
    background: var(--accent-orange);
    color: var(--bg-dark);
    padding: 12px 25px;
    border-radius: 25px;
    text-transform: uppercase;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
}

.woocommerce-cart .return-to-shop a.button:hover {
    background: #e56b00;
}

.woocommerce-message {
    background-color: rgba(255, 255, 255, 0.05) !important;
    border-top: 3px solid #7ad03a !important;
    color: var(--text-white) !important;
    padding: 15px 20px !important;
    border-radius: 10px !important;
    margin-bottom: 30px !important;
    display: flex !important;
    align-items: center;
}

.woocommerce-message::before {
    display: none !important;
}

.woocommerce-message::after {
    content: "✓";
    margin-right: 10px;
    color: #7ad03a;
    font-weight: bold;
}

.woocommerce-shipping-calculator {
    display: none !important;
}

.woocommerce-cart-form__contents .woocommerce-shipping-totals,
.shop_table.shop_table_responsive tr.woocommerce-shipping-totals {
    display: none !important;
}


/* ==========================================================================
   CHECKOUT PAGE
   ========================================================================== */

.woocommerce-checkout .select2-container--default .select2-selection--single {
    background-color: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 10px !important;
    height: 50px !important;
    display: flex !important;
    align-items: center !important;
}

.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: var(--text-white) !important;
    line-height: normal !important;
    padding-left: 15px !important;
}

.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100% !important;
    right: 10px !important;
}

.select2-dropdown {
    background-color: #1a1a1a !important;
    border: 1px solid var(--accent-orange) !important;
}

.select2-results__option {
    color: var(--text-white) !important;
    padding: 10px 15px !important;
}

.select2-results__option--highlighted[aria-selected],
.select2-results__option:hover {
    background-color: var(--accent-orange) !important;
    color: var(--bg-dark) !important;
}

.woocommerce-checkout textarea.input-text {
    background-color: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: var(--text-white) !important;
    border-radius: 10px !important;
    padding: 15px !important;
    min-height: 120px;
    resize: vertical;
}

.woocommerce-checkout .required {
    color: var(--accent-orange) !important;
    text-decoration: none !important;
}

.woocommerce-checkout input[type="text"],
.woocommerce-checkout input[type="email"],
.woocommerce-checkout input[type="tel"],
.woocommerce-checkout select,
.woocommerce-checkout textarea.input-text,
.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__rendered {
    font-size: 18px !important;
}

.woocommerce-checkout label {
    font-size: 16px !important;
}

.woocommerce-privacy-policy-text {
    display: none !important;
}

#payment .woocommerce-error,
#payment .woocommerce-info,
#payment .woocommerce-notice,
#payment .woocommerce-message {
    display: none !important;
}

.woocommerce-checkout #payment {
    background: transparent !important;
    border-radius: 0 !important;
}

.woocommerce-checkout #payment div.form-row.place-order {
    background: transparent !important;
    border: none !important;
    padding: 20px 0 0 0 !important;
    margin: 0 !important;
}

.woocommerce-checkout #payment div.payment_box {
    background-color: rgba(255, 255, 255, 0.05) !important;
    color: var(--text-white) !important;
    border-radius: 10px !important;
}

.woocommerce-checkout #payment div.payment_box::before {
    display: none !important;
}


/* ==========================================================================
   THANK YOU PAGE
   ========================================================================== */

.woocommerce-checkout p.woocommerce-notice.woocommerce-notice--success.woocommerce-thankyou-order-received {
    font-size: 26px !important;
    color: var(--accent-orange) !important;
    font-weight: bold;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 40px !important;
}

ul.woocommerce-order-overview {
    background: rgba(255, 255, 255, 0.02) !important;
    border-radius: 10px;
    padding: 20px 30px !important;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 40px !important;
    list-style: none !important;
}

ul.woocommerce-order-overview li {
    border-right: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding-right: 30px;
    margin-right: 0 !important;
    color: var(--text-gray) !important;
    font-size: 14px;
    text-transform: uppercase;
}

ul.woocommerce-order-overview li:last-child {
    border-right: none !important;
}

ul.woocommerce-order-overview li strong {
    display: block;
    font-size: 18px;
    color: var(--text-white) !important;
    margin-top: 8px;
    text-transform: none;
}

.woocommerce-table--order-details a {
    color: var(--text-white) !important;
    text-decoration: none !important;
    font-weight: bold;
    transition: color 0.3s ease;
}

.woocommerce-table--order-details a:hover {
    color: var(--accent-orange) !important;
}

h2.woocommerce-order-details__title {
    color: var(--text-white);
    font-size: 24px;
    text-transform: uppercase;
    border-bottom: 2px solid var(--accent-orange);
    padding-bottom: 15px;
    margin-bottom: 25px;
}

.woocommerce-table--order-details {
    border: none !important;
    margin-bottom: 50px !important;
}

.woocommerce-table--order-details th,
.woocommerce-table--order-details td {
    background: transparent !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    color: var(--text-white) !important;
    padding: 20px 10px !important;
}

.woocommerce-table--order-details tfoot th {
    text-align: right;
    color: var(--text-gray) !important;
}

.woocommerce-table--order-details tfoot tr:last-child th,
.woocommerce-table--order-details tfoot tr:last-child td {
    border-bottom: none !important;
    color: var(--accent-orange) !important;
    font-size: 20px;
    font-weight: bold;
}

.woocommerce-customer-details h2.woocommerce-column__title {
    color: var(--text-white);
    font-size: 20px;
    text-transform: uppercase;
    border-bottom: 2px solid var(--accent-orange);
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.woocommerce-customer-details address {
    background: rgba(255, 255, 255, 0.02);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-white) !important;
    font-style: normal;
    line-height: 1.8;
}

.woocommerce-customer-details .col-1,
.woocommerce-customer-details .woocommerce-column--1 {
    display: none !important;
}

.woocommerce-customer-details .col-2,
.woocommerce-customer-details .woocommerce-column--2 {
    width: 100% !important;
    max-width: 100% !important;
    float: none !important;
    padding: 0 !important;
}


/* ==========================================================================
   GALLERY PAGE
   ========================================================================== */

.gallery-page-wrap {
    padding: 40px 0 80px;
    color: #fff;
}

.gallery-breadcrumbs {
    margin-bottom: 30px;
    font-size: 16px;
    color: #e0e0e0;
}

.gallery-breadcrumbs a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.gallery-breadcrumbs a:hover {
    color: #f97316;
}

.gallery-layout {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.gallery-slider-section {
    flex: 1;
    max-width: 650px;
}

.gallery-slider-section .swiper {
    width: 100%;
    padding-bottom: 45px;
}

.gallery-slider-section .swiper-wrapper {
    border-radius: 8px;
    overflow: hidden;
}

.gallery-slider-section img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

.gallery-slider-section .swiper-pagination {
    position: absolute !important;
    bottom: 5px !important;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 0 !important;
}

.gallery-slider-section .swiper-pagination-bullet {
    background: #555 !important;
    opacity: 1 !important;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.3s, background-color 0.3s;
    margin: 0 !important;
}

.gallery-slider-section .swiper-pagination-bullet-active {
    background: #fff !important;
    transform: scale(1.2);
}

.gallery-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gallery-menu li {
    margin-bottom: 18px;
}

.gallery-menu a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.gallery-menu a::before {
    content: "•";
    color: #e0e0e0;
}

.gallery-menu a:hover,
.gallery-menu a:hover::before {
    color: #f97316;
}


/* ==========================================================================
   CONTACTS PAGE
   ========================================================================== */

.contacts-page-wrap {
    padding: 40px 0 80px;
    color: #fff;
}

.contacts-layout {
    display: flex;
    gap: 80px;
    align-items: center;
    margin-top: 40px;
}

.about-brand-box {
    flex: 1;
    background-color: #d9d9d9;
    border-radius: 20px;
    padding: 50px 40px;
    color: #111;
    max-width: 600px;
}

.about-brand-box h2 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #111;
}

.about-brand-box p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #222;
}

.about-brand-box p:last-child {
    margin-bottom: 0;
}

.contacts-sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.contact-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.contact-item a {
    font-size: 16px;
    color: #e0e0e0;
    text-decoration: none;
    transition: 0.3s;
}

.contact-item a:hover {
    color: #f97316;
}


/* ==========================================================================
   ANIMATIONS
   ========================================================================== */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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


/* ==========================================================================
   RESPONSIVE — max-width: 992px
   ========================================================================== */

@media (max-width: 992px) {
    .gallery-layout {
        flex-direction: column;
    }

    .gallery-sidebar {
        width: 100%;
        margin-top: 40px;
    }

    .contacts-layout {
        flex-direction: column;
        align-items: flex-start;
        gap: 50px;
    }

    .about-brand-box {
        max-width: 100%;
        padding: 30px 25px;
    }
}


/* ==========================================================================
   RESPONSIVE — max-width: 768px
   ========================================================================== */

@media (max-width: 768px) {

    /* Header */
    .site-header .header-inner {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 10px 15px !important;
    }

    .site-header .logo {
        order: 1 !important;
        flex: 0 0 auto !important;
        max-width: 60% !important;
    }

    .site-header .logo img {
        max-width: 130px !important;
        height: auto !important;
    }

    .site-header .header-tools {
        order: 2 !important;
        flex: 0 0 auto !important;
        display: flex !important;
        align-items: center !important;
        gap: 15px !important;
    }

    .site-header .search-bar {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        width: auto !important;
        margin: 0 !important;
        background: transparent !important;
        border: none !important;
        padding: 0 !important;
    }

    .site-header .search-bar button {
        border: none !important;
        background: transparent !important;
        padding: 0 !important;
        margin: 0 !important;
        box-shadow: none !important;
        height: auto !important;
        min-width: auto !important;
        color: var(--text-white) !important;
        display: flex !important;
        align-items: center !important;
    }

    .site-header .search-bar button svg {
        width: 22px !important;
        height: 22px !important;
        display: block !important;
    }

    .site-header .search-bar input {
        display: none !important;
        position: absolute;
        top: 40px;
        right: -10px;
        width: 280px !important;
        background: #121212 !important;
        border: 1px solid var(--accent-orange) !important;
        padding: 12px 15px !important;
        border-radius: 10px !important;
        box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.8);
        z-index: 1000;
        color: var(--text-white) !important;
    }

    .site-header .search-bar.open input {
        display: block !important;
        margin-top: 30px;
    }

    .site-header .header-cart a {
        display: flex !important;
        align-items: center !important;
        position: relative !important;
        text-decoration: none !important;
    }

    .site-header .header-cart svg,
    .site-header .header-cart img {
        width: 24px !important;
        height: 24px !important;
        display: block !important;
    }

    .site-header .header-cart .count,
    .site-header .header-cart .cart-contents-count {
        position: absolute !important;
        top: -5px !important;
        right: -8px !important;
        background: var(--accent-orange) !important;
        color: var(--text-white, #fff) !important;
        font-size: 11px !important;
        font-weight: bold !important;
        width: 18px !important;
        height: 18px !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        line-height: 1 !important;
        padding: 0 !important;
    }

    /* Burger */
    .burger-menu-btn {
        display: flex !important;
        flex-direction: column;
        justify-content: space-between;
        width: 24px !important;
        height: 16px !important;
        background: transparent !important;
        border: none !important;
        padding: 0 !important;
        margin: 0 !important;
        cursor: pointer;
        z-index: 1001;
    }

    .burger-menu-btn span {
        display: block;
        width: 100% !important;
        height: 2px !important;
        background-color: var(--text-white) !important;
        border-radius: 2px !important;
        transition: all 0.3s ease;
    }

    .burger-menu-btn.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
        background-color: var(--accent-orange) !important;
    }

    .burger-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .burger-menu-btn.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
        background-color: var(--accent-orange) !important;
    }

    /* Mobile nav */
    .main-nav {
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
        width: 260px !important;
        height: 100vh !important;
        background-color: #121212 !important;
        border-left: 1px solid var(--accent-orange) !important;
        margin: 0 !important;
        padding: 80px 20px 30px !important;
        transition: right 0.3s ease-in-out !important;
        z-index: 1000 !important;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.8);
        overflow-y: auto;
        order: 3 !important;
        flex: 0 0 100% !important;
    }

    .main-nav.active {
        right: 0 !important;
    }

    .main-nav ul {
        display: flex !important;
        flex-direction: column !important;
        gap: 25px !important;
        white-space: normal !important;
        padding: 0 !important;
        margin: 0 !important;
        list-style: none !important;
    }

    .main-nav ul li a {
        font-size: 18px !important;
        display: block;
        width: 100%;
    }

    .main-nav ul li a.active {
        color: #ffffff !important;
        border-bottom: 2px solid var(--accent-orange);
        padding-bottom: 3px;
    }

    /* Typography */
    h1, .h1 {
        font-size: 30px !important;
        line-height: 1.2 !important;
        margin-bottom: 15px !important;
    }

    h2, .h2 {
        font-size: 24px !important;
        line-height: 1.3 !important;
        margin-bottom: 15px !important;
    }

    h3, .h3 {
        font-size: 18px !important;
    }

    p {
        font-size: 15px !important;
        line-height: 1.4 !important;
    }

    /* Hero */
    .hero-section {
        min-height: auto !important;
        padding-top: 0px !important;
        padding-bottom: 40px !important;
        display: block !important;
    }

    .hero-inner {
        display: block !important;
        width: 100% !important;
        padding: 0 20px !important;
        box-sizing: border-box !important;
        margin: 0 !important;
    }

    .hero-content {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        text-align: left !important;
    }

    .hero-content h1 {
        font-size: 42px !important;
        line-height: 1.1 !important;
        margin-bottom: 15px !important;
    }

    .hero-content p {
        font-size: 16px !important;
        line-height: 1.4 !important;
        margin-bottom: 20px !important;
        margin-top: 80px !important;
        color: #e0e0e0;
    }

    .hero-image {
        display: none !important;
    }

    .hero-buttons {
        display: flex !important;
        flex-direction: row !important;
        width: 100% !important;
        margin-top: 80px !important;
        gap: 10px !important;
    }

    .hero-buttons .btn {
        flex: 1 !important;
        border-radius: 50px !important;
        padding: 14px 5px !important;
        font-size: 14px !important;
        text-align: center !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        white-space: nowrap !important;
    }

    /* Products grid */
    .products-grid {
        display: flex !important;
        flex-direction: column;
        gap: 40px !important;
    }

    .product-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0 15px;
    }

    .product-image-link img {
        width: 100%;
        height: auto;
        max-width: 300px;
        display: block;
        margin: 0 auto;
    }

    .product-actions .btn-solid {
        background-color: #262626 !important;
        color: #fff !important;
        padding: 12px 30px !important;
        border-radius: 50px !important;
        font-weight: bold;
        text-transform: uppercase;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        margin-top: 15px;
    }

    .product-actions .btn-outline {
        display: none;
    }

    /* About section */
    .about-section {
        display: block !important;
    }

    .about-image {
        display: none !important;
    }

    .about-content {
        width: 100% !important;
        padding: 40px 20px !important;
        background-color: #ff6600;
    }

    .about-text-wrapper {
        text-align: center;
        max-width: 100% !important;
    }

    /* Footer */
    .footer-widgets {
        display: flex !important;
        flex-direction: column !important;
        gap: 30px !important;
    }

    .footer-accordion-content {
        display: none !important;
    }

    .footer-accordion-header.active + .footer-accordion-content {
        display: block !important;
        margin-top: 10px;
    }

    .footer-accordion-header {
        cursor: pointer;
        position: relative;
        padding-right: 20px;
        margin-bottom: 0;
        user-select: none;
    }

    .footer-accordion-header::after {
        content: '+';
        position: absolute;
        right: 0;
        top: 0;
        font-size: 20px;
        color: #f97316;
    }

    .footer-accordion-header.active::after {
        content: '-';
    }

    .footer-logos {
        display: flex !important;
        flex-direction: row !important;
        justify-content: center;
        align-items: center;
        gap: 20px !important;
        margin-top: 20px;
    }

    .footer-logos img {
        max-width: 100px !important;
        width: 100%;
        height: auto;
    }

    /* Catalog banner */
    .catalog-banner {
        padding: 10px 20px !important;
        max-width: 380px !important;
        margin: 0 auto 20px auto !important;
        border-radius: 50px !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 10px !important;
    }

    .catalog-banner h1 {
        font-size: 16px !important;
        margin: 0 !important;
        line-height: 1 !important;
    }

    .catalog-banner svg {
        width: 18px !important;
        height: 18px !important;
    }

    /* Catalog layout */
    .catalog-layout {
        display: flex !important;
        flex-direction: column !important;
    }

    .catalog-sidebar {
        display: none;
        width: 100% !important;
        margin-bottom: 30px !important;
    }

    .catalog-sidebar.show-filters {
        display: block !important;
        animation: fadeIn 0.3s ease;
    }

    .catalog-main {
        width: 100% !important;
    }

    .mobile-filter-btn {
        display: flex !important;
        justify-content: center;
        align-items: center;
        width: 100%;
        background-color: transparent !important;
        color: #f97316 !important;
        border: 2px solid #f97316 !important;
        padding: 12px 20px !important;
        border-radius: 50px !important;
        font-weight: 600;
        font-size: 14px !important;
        margin-bottom: 25px !important;
        cursor: pointer;
        text-transform: uppercase;
        transition: all 0.3s ease;
    }

    .mobile-filter-btn svg {
        stroke: #f97316 !important;
    }

    .mobile-filter-btn.is-open {
        background-color: #f97316 !important;
        color: #fff !important;
    }

    .mobile-filter-btn.is-open svg {
        stroke: #fff !important;
    }

    /* Category grid */
    .catalog-categories-grid {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        gap: 15px !important;
        padding-bottom: 20px !important;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .catalog-categories-grid::-webkit-scrollbar {
        display: none;
    }

    .catalog-categories-grid .cat-item {
        flex: 0 0 42vw !important;
        max-width: 140px !important;
        justify-content: flex-start;
    }

    .catalog-categories-grid .cat-item img {
        width: 100px !important;
        height: 100px !important;
        margin-bottom: 8px !important;
    }

    .catalog-categories-grid .cat-item span {
        font-size: 13px !important;
        line-height: 1.3 !important;
    }

    /* Subcategory header */
    .category-action-btn {
        display: none !important;
    }

    .subcategories-list-box {
        height: auto !important;
        min-height: unset !important;
        padding: 12px 15px !important;
        margin: 0 !important;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .subcategories-list-box ul {
        display: flex !important;
        flex-direction: column !important;
        gap: 6px !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .subcategories-list-box li {
        margin: 0 !important;
        padding: 0 !important;
        line-height: 1.2 !important;
        text-align: left;
    }

    .subcategories-list-box a {
        display: block;
        padding: 2px 0 !important;
    }

    /* Catalog product limit */
    .catalog-grid-3 .product-card:nth-child(n+11) {
        display: none !important;
    }

    .catalog-grid-3.show-all-mobile .product-card:nth-child(n+11) {
        display: flex !important;
        animation: fadeInProduct 0.4s ease forwards;
    }

    .desktop-more-btn {
        display: none !important;
    }

    .mobile-more-btn {
        display: inline-flex !important;
        width: 100%;
        justify-content: center;
        border-radius: 50px !important;
        padding: 12px 20px !important;
    }

    /* WooCommerce product list */
    ul.products {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 12px !important;
        margin: 0 !important;
        padding: 0 !important;
        list-style: none !important;
    }

    ul.products li.product {
        width: 100% !important;
        margin: 0 !important;
        padding: 10px !important;
    }

    ul.products li.product .woocommerce-loop-product__title {
        font-size: 14px !important;
        line-height: 1.3 !important;
    }

    ul.products li.product .price {
        font-size: 14px !important;
        margin-top: 5px !important;
    }

    /* Single product */
    .single-product-main {
        display: block !important;
    }

    .single-product-image,
    .woocommerce-product-gallery,
    .woocommerce-product-gallery__wrapper,
    .woocommerce-product-gallery__image,
    .woocommerce-product-gallery__image a {
        width: 100% !important;
        max-width: 100% !important;
        display: block !important;
        margin: 0 auto !important;
        padding: 0 !important;
    }

    .single-product-image img,
    .woocommerce-product-gallery img {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
        margin: 0 auto 25px auto !important;
        border-radius: 12px !important;
    }

    .woocommerce-breadcrumb {
        font-size: 12px !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        margin-bottom: 15px !important;
        display: block !important;
    }

    .single-title {
        font-size: 22px !important;
        line-height: 1.2 !important;
        margin-bottom: 15px !important;
    }

    .single-desc {
        max-height: 150px !important;
        overflow-y: auto !important;
        font-size: 14px !important;
        line-height: 1.5 !important;
        margin-bottom: 25px !important;
        padding-right: 10px !important;
        -webkit-mask-image: linear-gradient(to bottom, black 65%, transparent 100%);
        mask-image: linear-gradient(to bottom, black 65%, transparent 100%);
    }

    .single-action-row {
        position: relative !important;
        display: block !important;
        margin-top: 40px !important;
    }

    .single-price {
        position: absolute !important;
        left: 0 !important;
        top: 0 !important;
        height: 48px !important;
        display: flex !important;
        align-items: center !important;
        font-size: 26px !important;
        font-weight: 700 !important;
        margin: 0 !important;
    }

    .custom-single-cart {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: flex-end !important;
        gap: 15px !important;
        width: 100% !important;
    }

    .custom-quantity {
        flex: 0 0 110px !important;
        height: 48px !important;
        margin: 0 !important;
        position: relative !important;
        display: flex !important;
        align-items: center !important;
        border: 1px solid #f97316 !important;
        border-radius: 50px !important;
        overflow: hidden !important;
        background: transparent !important;
    }

    .custom-quantity .qty-input {
        width: 100% !important;
        height: 100% !important;
        border: none !important;
        background: transparent !important;
        color: #fff !important;
        font-size: 16px !important;
        font-weight: 600 !important;
        text-align: center !important;
        padding: 0 35px 0 10px !important;
        -moz-appearance: textfield !important;
    }

    .custom-quantity .qty-input::-webkit-outer-spin-button,
    .custom-quantity .qty-input::-webkit-inner-spin-button {
        -webkit-appearance: none !important;
        margin: 0 !important;
    }

    .custom-quantity .qty-nav {
        position: absolute !important;
        right: 0 !important;
        top: 0 !important;
        width: 35px !important;
        height: 100% !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .custom-quantity .qty-up,
    .custom-quantity .qty-down {
        flex: 1 !important;
        width: 100% !important;
        background-color: #f97316 !important;
        border: none !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        padding: 0 !important;
    }

    .custom-quantity .qty-up {
        border-bottom: 1px solid #1a1a1a !important;
    }

    .btn-add-to-cart {
        flex: 0 0 100% !important;
        height: 52px !important;
        border-radius: 50px !important;
        font-size: 16px !important;
        font-weight: 600 !important;
        margin: 0 !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .btn-buy-now {
        display: none !important;
    }

    /* Related products */
    .single-related-section .products-grid {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        gap: 15px !important;
        padding-bottom: 20px !important;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .single-related-section .products-grid::-webkit-scrollbar {
        display: none;
    }

    .single-related-section .product-card {
        flex: 0 0 65vw !important;
        max-width: 260px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
    }

    .single-related-section .product-card img {
        width: 100% !important;
        height: auto !important;
        object-fit: cover !important;
        border-radius: 8px !important;
    }

    .single-related-section .product-actions {
        margin-top: auto !important;
    }

    /* Cart */
    .woocommerce-cart .woocommerce {
        flex-direction: column !important;
        gap: 20px !important;
    }

    .woocommerce-cart .woocommerce-cart-form,
    .woocommerce-cart .cart-collaterals {
        width: 100% !important;
        min-width: 100% !important;
    }

    .woocommerce table.shop_table_responsive thead {
        display: none !important;
    }

    .woocommerce table.shop_table_responsive tbody tr {
        display: block !important;
        margin-bottom: 15px !important;
        border: 1px solid rgba(255, 255, 255, 0.08) !important;
        padding: 12px !important;
        position: relative !important;
        border-radius: 10px !important;
        background: rgba(255, 255, 255, 0.01) !important;
    }

    .woocommerce table.shop_table_responsive tbody td {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        border: none !important;
        padding: 8px 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    }

    .woocommerce table.shop_table_responsive tbody td:last-child {
        border-bottom: none !important;
    }

    .woocommerce table.shop_table_responsive tbody td::before {
        content: attr(data-title);
        font-size: 11px;
        color: var(--text-gray);
        text-transform: uppercase;
        font-weight: bold;
    }

    .woocommerce table.shop_table a.remove {
        position: absolute !important;
        top: 12px;
        right: 12px;
        z-index: 10;
    }

    .woocommerce-cart .cart-collaterals .cart_totals {
        padding: 20px !important;
    }

    .woocommerce-cart-form__contents td.actions {
        display: flex !important;
        flex-direction: column !important;
        gap: 15px !important;
        padding: 20px 10px !important;
    }

    .woocommerce-cart-form__contents .coupon {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        gap: 10px !important;
        float: none !important;
        padding-bottom: 15px !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .woocommerce-cart-form__contents .coupon .input-text {
        width: 100% !important;
        margin: 0 !important;
        border-radius: 50px !important;
        padding: 14px 20px !important;
        box-sizing: border-box !important;
        text-align: center !important;
    }

    .woocommerce-cart-form__contents .coupon .button {
        width: 100% !important;
        margin: 0 !important;
        border-radius: 50px !important;
        white-space: nowrap !important;
        font-size: 14px !important;
        padding: 14px 10px !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .woocommerce-cart-form__contents td.actions > .button {
        width: 100% !important;
        margin: 0 !important;
        border-radius: 50px !important;
        font-size: 14px !important;
        padding: 14px 10px !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }

    /* Checkout */
    .checkout-page-wrapper {
        padding: 25px 0 !important;
    }

    .woocommerce-checkout .col2-set .col-1,
    .woocommerce-checkout .col2-set .col-2 {
        width: 100% !important;
        float: none !important;
        margin-bottom: 25px !important;
    }

    /* Thank you page */
    ul.woocommerce-order-overview {
        flex-direction: column !important;
        gap: 12px !important;
        padding: 15px !important;
    }

    ul.woocommerce-order-overview li {
        border-right: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
        padding: 0 0 12px 0 !important;
        width: 100% !important;
    }

    ul.woocommerce-order-overview li:last-child {
        border-bottom: none !important;
        padding-bottom: 0 !important;
    }

    /* Gallery */
    .gallery-slider-section {
        width: 100% !important;
        padding: 0 15px !important;
        box-sizing: border-box !important;
    }

    .myGallerySwiper {
        width: 100% !important;
        height: 300px !important;
        border-radius: 16px !important;
        overflow: hidden !important;
    }

    .myGallerySwiper .swiper-slide img {
        width: 100% !important;
        height: 300px !important;
        object-fit: cover !important;
        display: block !important;
    }

    .myGallerySwiper .swiper-pagination {
        bottom: 10px !important;
    }
}


/* ==========================================================================
   RESPONSIVE — min-width: 769px
   ========================================================================== */

@media (min-width: 769px) {
    .mobile-filter-btn {
        display: none !important;
    }

    .mobile-more-btn {
        display: none !important;
    }
}