/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* CSS Variables for Themes */
:root {
    /* Dark Theme (Default) - Dark Green Gradient like logo */
    --bg-primary: linear-gradient(135deg, #1a2e1a 0%, #0d1f1f 50%, #1a2520 100%);
    --bg-primary-solid: #1a2520;
    --bg-secondary: #1f332f;
    --bg-tertiary: #2a3f38;
    --bg-header: #0d1f1a;
    
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-muted: #888888;
    --text-dark: #666666;
    
    --accent-primary: #4ade80;
    --accent-hover: #22c55e;
    --accent-secondary: #f59e0b;
    --accent-danger: #ef4444;
    
    --border-color: #3a3a3a;
    --shadow: rgba(0, 0, 0, 0.3);
    --shadow-hover: rgba(74, 222, 128, 0.3);
}

/* Light Theme - Warm Cream */
body.light-theme {
    --bg-primary: linear-gradient(135deg, #f5f1e8 0%, #ede9dc 50%, #f2ede3 100%);
    --bg-primary-solid: #f2ede3;
    --bg-secondary: #ede7dc;
    --bg-tertiary: #e5dfd4;
    --bg-header: #f8f4ed;
    
    --text-primary: #2d2a24;
    --text-secondary: #5a5650;
    --text-muted: #8a8580;
    --text-dark: #b0aba6;
    
    --accent-primary: #22c55e;
    --accent-hover: #16a34a;
    --accent-secondary: #d97706;
    --accent-danger: #dc2626;
    
    --border-color: #d9d3c8;
    --shadow: rgba(45, 42, 36, 0.08);
    --shadow-hover: rgba(34, 197, 94, 0.15);
}

body {
    font-family: 'Arial', sans-serif;
    background: var(--bg-primary);
    background-attachment: fixed;
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    transition: background 0.3s ease, color 0.3s ease;
}

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

/* Header */
.header {
    background-color: var(--bg-header);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px var(--shadow);
    transition: background-color 0.3s ease;
}

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

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.05);
}

/* Header Animated Logo */
.header-logo-animated {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.header-logo-mark {
    position: relative;
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.header-logo-mark svg {
    width: 100%;
    height: 100%;
}

.header-ik-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    font-weight: bold;
    color: #059669;
    opacity: 1;
}

.header-logo-text-block {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.header-logo-arden {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 3px;
    color: #ffffff;
}

.header-logo-rule {
    width: 100%;
    height: 1px;
    background: #059669;
    opacity: 0.25;
}

.header-logo-group {
    font-size: 9px;
    letter-spacing: 5px;
    color: #059669;
    opacity: 1;
}

.logo-svg {
    height: 55px;
    width: auto;
    display: block;
}

@media (max-width: 768px) {
    .logo-svg {
        height: 45px;
    }
}

.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: filter 0.3s ease;
    background: white;
    padding: 8px;
    border-radius: 8px;
}

/* Light theme logo adjustment */
body.light-theme .logo-image {
    filter: brightness(0.95);
}

/* Old logo class for backwards compatibility */
.logo {
    font-size: 28px;
    font-weight: bold;
    color: var(--accent-primary);
    letter-spacing: 2px;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

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

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

.admin-btn {
    background-color: #f59e0b;
    color: #000000;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.3s;
}

.admin-btn:hover {
    background-color: #d97706;
    transform: scale(1.05);
}

.theme-toggle-btn {
    background-color: var(--bg-tertiary);
    color: var(--text-primary);
    border: 2px solid var(--border-color);
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.theme-toggle-btn:hover {
    background-color: var(--accent-primary);
    border-color: var(--accent-primary);
    transform: rotate(20deg) scale(1.1);
}

.theme-icon {
    font-size: 20px;
    line-height: 1;
}

.reload-btn {
    background-color: var(--bg-tertiary);
    color: var(--text-primary);
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.3s;
}

.reload-btn:hover {
    background-color: var(--accent-primary);
    color: #000000;
    transform: scale(1.05);
}

.cart-icon {
    position: relative;
    font-size: 28px;
    cursor: pointer;
    transition: transform 0.3s;
}

.cart-icon:hover {
    transform: scale(1.1);
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #ef4444;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

/* Hero Section */
.hero {
    background: url('../images/hero-bg.png') center center / cover no-repeat;
    background-attachment: fixed;
    padding: 50px 0 40px;
    text-align: center;
    position: relative;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Light theme hero background */
body.light-theme .hero {
    background: linear-gradient(135deg, #f5f1e8 0%, #ede9dc 50%, #f2ede3 100%);
    background-attachment: fixed;
}

.hero-content-wrapper {
    position: relative;
    z-index: 1;
}

/* Hero Single Column Layout */
.hero-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-text-column,
.hero-logo-column {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Animated Logo Container */
.hero-logo-animated {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
    justify-content: center;
    margin-bottom: 40px;
}

/* Logo Mark (IK square) */
.logo-mark {
    position: relative;
    width: 100px;
    height: 100px;
    flex-shrink: 0;
}

.logo-mark svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* Outer square animation */
.sq-outer {
    stroke: #059669;
    stroke-width: 2;
    fill: none;
    stroke-dasharray: 504;
    stroke-dashoffset: 504;
    animation: drawFull 1.1s cubic-bezier(0.4,0,0.2,1) 0.2s forwards;
}

/* Inner square animation */
.sq-inner {
    stroke: #059669;
    stroke-width: 1;
    fill: none;
    opacity: 0.45;
    stroke-dasharray: 408;
    stroke-dashoffset: -408;
    animation: drawFullRev 1.1s cubic-bezier(0.4,0,0.2,1) 0.4s forwards;
}

@keyframes drawFull {
    to { stroke-dashoffset: 0; }
}

@keyframes drawFullRev {
    to { stroke-dashoffset: 0; }
}



/* IK text */
.ik-text {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Arial', sans-serif;
    font-weight: 800;
    font-size: 40px;
    color: #059669;
    opacity: 0;
    transform: scale(0.85);
    animation: popIn 0.45s cubic-bezier(0.2,0,0,1) 1.2s forwards;
}

@keyframes popIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}



/* Text block (ARDEN + GROUP) */
.logo-text-block {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* ARDEN gradient sweep animation */
.logo-arden {
    font-family: 'Arial', sans-serif;
    font-weight: 700;
    font-size: 48px;
    letter-spacing: 6px;
    line-height: 1;
    background: linear-gradient(
        90deg,
        #ffffff  0%,
        #ffffff  28%,
        #0d5c3a  44%,
        #0d3a4a  56%,
        #0c1e22  68%,
        #0c1e22  100%
    );
    background-size: 300% 100%;
    background-position: 100% 0%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: ardenSweep 2.5s cubic-bezier(0.25,0.1,0.1,1) 1.8s forwards;
}

@keyframes ardenSweep {
    0%   { background-position: 100% 0%; }
    100% { background-position: 0% 0%; }
}



/* Line animation */
.logo-rule {
    height: 1px;
    background: #059669;
    opacity: 0;
    transform-origin: right center;
    transform: scaleX(0);
    margin: 7px 0 6px;
    animation: lineRTL 0.7s ease 1.5s forwards;
}

@keyframes lineRTL {
    0%  { opacity: 0.25; transform: scaleX(0); }
    100%{ opacity: 0.25; transform: scaleX(1); }
}



/* GROUP fade up */
.logo-group {
    font-family: 'Arial', sans-serif;
    font-weight: 300;
    font-size: 13px;
    letter-spacing: 12px;
    color: #059669;
    opacity: 0;
    transform: translateY(8px);
    animation: fadeUp 0.6s ease 2.3s forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/* Light theme logo adjustments */
body.light-theme .sq-outer,
body.light-theme .sq-inner {
    stroke: #22c55e;
}

body.light-theme .ik-text {
    color: #22c55e;
}

body.light-theme .logo-arden {
    background: linear-gradient(
        90deg,
        #2d2a24  0%,
        #2d2a24  28%,
        #16a34a  44%,
        #0d5c3a  56%,
        #5a5650  68%,
        #5a5650  100%
    );
    background-size: 300% 100%;
    background-position: 100% 0%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: ardenSweep 2.5s cubic-bezier(0.25,0.1,0.1,1) 1.8s forwards;
}

body.light-theme .logo-rule {
    background: #22c55e;
}

body.light-theme .logo-group {
    color: #22c55e;
}

/* Header logo light theme */
body.light-theme .header-ik-text {
    color: #22c55e;
}

body.light-theme .header-logo-arden {
    color: #2d2a24;
}

body.light-theme .header-logo-rule {
    background: #22c55e;
}

body.light-theme .header-logo-group {
    color: #22c55e;
}

.hero-title {
    font-size: 36px;
    margin-bottom: 12px;
    color: var(--accent-primary);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 16px;
    margin-bottom: 25px;
    color: var(--text-secondary);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 40px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-primary {
    background-color: var(--accent-primary);
    color: #000000;
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow-hover);
}

.btn-secondary {
    background-color: var(--accent-danger);
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: #dc2626;
}

/* Products Section */
.products {
    padding: 30px 0 50px;
}

.section-title {
    font-size: 32px;
    text-align: center;
    margin-bottom: 25px;
    color: var(--accent-primary);
}

/* Categories Filter */
.categories-filter {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
    padding: 0 20px;
    margin-top: 0;
}

.category-btn {
    background-color: var(--bg-secondary);
    border: 2px solid var(--border-color);
    color: var(--text-secondary);
    padding: 12px 24px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 500;
}

.category-btn:hover {
    border-color: var(--accent-primary);
    background-color: var(--bg-tertiary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 222, 128, 0.2);
}

.category-btn.active {
    background-color: var(--accent-primary);
    color: #000000;
    border-color: var(--accent-primary);
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(74, 222, 128, 0.4);
}

.category-icon {
    font-size: 20px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.category-icon svg {
    width: 24px;
    height: 20px;
    stroke: currentColor;
}

.category-name {
    font-size: 15px;
    line-height: 1;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    /* Smooth loading - prevent flickering */
    will-change: contents;
}

.products-grid > * {
    animation: fadeInProduct 0.4s ease-out;
}

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

.product-card {
    background-color: var(--bg-secondary);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
}

/* Sale and New Badges */
.sale-badge, .new-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 13px;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    animation: badgePulse 2s infinite;
}

.sale-badge {
    background-color: #ef4444;
    color: white;
}

.new-badge {
    background-color: #4ade80;
    color: #000000;
    top: 50px;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.product-card:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 10px 30px var(--shadow-hover);
}

.product-card:active {
    transform: translateY(-4px) scale(1.005);
}

.product-media {
    position: relative;
    width: 100%;
}

.product-image-placeholder {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, #3a3a3a 0%, #2a2a2a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4ade80;
    font-size: 16px;
    font-weight: bold;
}

.product-image-single {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

/* Product Slider */
.product-slider {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.slider-images {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: all 0.5s ease;
    cursor: zoom-in;
}

.slider-image.active {
    opacity: 1;
}

.product-image-single {
    cursor: zoom-in;
    transition: none;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 2;
}

.slider-btn:hover {
    background-color: #4ade80;
    color: #000000;
}

.slider-prev {
    left: 8px;
}

.slider-next {
    right: 8px;
}

.slider-dots {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 2;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.slider-dot.active,
.slider-dot:hover {
    background-color: #4ade80;
    transform: scale(1.15);
}

/* Product Video */
.product-video {
    width: 100%;
    max-height: 150px;
    margin-top: 8px;
    border-radius: 5px;
}

/* Image Lightbox */
.image-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
    padding: 20px;
    overflow-y: auto;
}

.image-lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 1400px;
    width: 95%;
    animation: zoomIn 0.3s ease;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 30px;
    align-items: start;
}

.lightbox-image-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.lightbox-image-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #2a2a2a;
    border-radius: 12px 12px 0 0;
    padding: 20px;
    border: 3px solid #3a3a3a;
    border-bottom: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

/* When there are no dots, restore bottom border radius */
.lightbox-image-wrapper:has(.lightbox-dots:empty) .lightbox-image-container {
    border-radius: 12px;
    border-bottom: 3px solid #3a3a3a;
}

.lightbox-image {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.lightbox-close {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: rgba(239, 68, 68, 0.95);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 10px;
    font-size: 28px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
}

.lightbox-close:hover {
    background-color: #dc2626;
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.6);
}

/* Navigation Buttons */
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(74, 222, 128, 0.9);
    color: #000000;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 8px;
    font-size: 32px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(74, 222, 128, 0.4);
}

.lightbox-nav:hover {
    background-color: #4ade80;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(74, 222, 128, 0.6);
}

.lightbox-prev {
    left: 15px;
}

.lightbox-next {
    right: 15px;
}

.lightbox-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.lightbox-nav:disabled:hover {
    transform: translateY(-50%) scale(1);
}

/* Dots Indicator */
.lightbox-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background-color: #2a2a2a;
    border-radius: 0 0 12px 12px;
    border: 3px solid #3a3a3a;
    border-top: none;
    margin-top: -3px;
}

.lightbox-dots:empty {
    display: none;
}

.lightbox-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.lightbox-dot.active {
    background-color: #4ade80;
    transform: scale(1.2);
    border-color: #4ade80;
    box-shadow: 0 0 10px rgba(74, 222, 128, 0.6);
}

.lightbox-dot:hover {
    background-color: rgba(74, 222, 128, 0.7);
    transform: scale(1.1);
}

/* Product Info */
.lightbox-product-info {
    background-color: #2a2a2a;
    padding: 30px;
    border-radius: 12px;
    border: 3px solid #3a3a3a;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: fit-content;
    position: sticky;
    top: 20px;
}

.lightbox-product-name {
    font-size: 26px;
    color: #ffffff;
    margin: 0;
    padding-bottom: 15px;
    border-bottom: 2px solid #3a3a3a;
}

.lightbox-product-description {
    font-size: 15px;
    color: #cccccc;
    line-height: 1.7;
    margin: 0;
}

.lightbox-product-price {
    font-size: 28px;
    color: #4ade80;
    font-weight: bold;
    padding-top: 15px;
    border-top: 2px solid #3a3a3a;
    margin: 0;
}

.lightbox-product-price .old-price {
    text-decoration: line-through;
    color: #777777;
    font-size: 20px;
    margin-right: 12px;
    font-weight: normal;
}

.lightbox-product-price .discount-badge {
    background-color: #ef4444;
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 16px;
    margin-left: 12px;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.4);
}

/* Hint */
.lightbox-hint {
    grid-column: 1 / -1;
    text-align: center;
    color: #666666;
    font-size: 13px;
    padding: 15px;
    background-color: rgba(26, 26, 26, 0.8);
    border-radius: 8px;
    margin-top: 10px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from { 
        opacity: 0;
        transform: scale(0.5);
    }
    to { 
        opacity: 1;
        transform: scale(1);
    }
}

.product-info {
    padding: 12px;
}

.product-name {
    font-size: 18px;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.product-description {
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 10px;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-price-block {
    margin-bottom: 12px;
}

.product-price-old {
    font-size: 14px;
    color: #888888;
    text-decoration: line-through;
    margin-bottom: 4px;
}

.product-price {
    font-size: 20px;
    color: var(--accent-primary);
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
}

.discount-badge {
    background-color: #ef4444;
    color: white;
    font-size: 12px;
    padding: 3px 6px;
    border-radius: 4px;
}

.product-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-btn {
    width: 100%;
    padding: 10px;
    font-size: 13px;
}

.btn-custom {
    background-color: #f59e0b;
    color: #000000;
}

.btn-custom:hover {
    background-color: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.4);
}

.product-btn-custom {
    font-size: 13px;
    padding: 10px 16px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 200;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background-color: var(--bg-secondary);
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
}

.modal-header {
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    color: var(--accent-primary);
}

.modal-close {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 30px;
    cursor: pointer;
    transition: color 0.3s;
}

.modal-close:hover {
    color: #ef4444;
}

.modal-body {
    padding: 20px;
    overflow-y: auto;
    flex-grow: 1;
}

.empty-cart {
    text-align: center;
    color: var(--text-secondary);
    padding: 40px 0;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.cart-item-info {
    flex-grow: 1;
}

.cart-item-name {
    font-size: 18px;
    margin-bottom: 5px;
}

.cart-item-price {
    color: var(--accent-primary);
    font-size: 16px;
}

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

.cart-item-btn {
    background-color: #3a3a3a;
    color: #ffffff;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.cart-item-btn:hover {
    background-color: #4ade80;
    color: #000000;
}

.cart-item-btn.remove {
    background-color: #ef4444;
}

.cart-item-btn.remove:hover {
    background-color: #dc2626;
}

.cart-item-quantity {
    font-size: 16px;
    min-width: 30px;
    text-align: center;
}

.modal-footer {
    padding: 20px;
    border-top: 1px solid #3a3a3a;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 24px;
    margin-bottom: 20px;
    color: #4ade80;
    font-weight: bold;
}

.modal-footer .btn {
    margin-right: 10px;
}

/* Footer */
.footer {
    background-color: var(--bg-header);
    padding: 30px 0;
    text-align: center;
    color: var(--text-muted);
    margin-top: 0;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 15px;
    object-fit: contain;
}

/* Notification */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background-color: #4ade80;
    color: #000000;
    padding: 15px 25px;
    border-radius: 5px;
    font-weight: bold;
    z-index: 1000;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Custom Order Modal Styles */
.custom-order-section {
    margin-bottom: 30px;
}

.custom-order-section h3 {
    color: #4ade80;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: bold;
}

.form-row-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-size: 14px;
    color: #cccccc;
    margin-bottom: 8px;
    font-weight: 600;
}

.custom-order-info {
    background-color: #1a1a1a;
    padding: 15px;
    border-radius: 5px;
    border-left: 4px solid #4ade80;
    color: #cccccc;
    font-size: 14px;
    margin-top: 20px;
}

/* Styling for custom order form inputs */
#customOrderModal .form-input,
#customOrderModal .form-textarea {
    width: 100%;
    padding: 12px 15px;
    background-color: #1a1a1a;
    border: 2px solid #3a3a3a;
    border-radius: 8px;
    color: #ffffff;
    font-size: 16px;
    font-family: Arial, sans-serif;
    transition: all 0.3s;
}

#customOrderModal .form-input:hover,
#customOrderModal .form-textarea:hover {
    border-color: #4a4a4a;
}

#customOrderModal .form-input:focus,
#customOrderModal .form-textarea:focus {
    outline: none;
    border-color: #4ade80;
    background-color: #2a2a2a;
    box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.1);
}

#customOrderModal .form-input::placeholder,
#customOrderModal .form-textarea::placeholder {
    color: #666666;
}

#customOrderModal .form-textarea {
    min-height: 100px;
    resize: vertical;
}

#customOrderModal label {
    display: block;
    color: #cccccc;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 8px;
}

/* Required field indicator */
#customOrderModal label:after {
    content: '';
}

#customOrderModal input[required] + label:after,
#customOrderModal label:has(+ input[required]):after {
    content: ' *';
    color: #ef4444;
}

/* Submit button in custom order form */
#customOrderModal .btn-primary {
    font-size: 18px;
    padding: 18px 40px;
}

#customOrderModal .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(74, 222, 128, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-image-placeholder,
    .product-image-single,
    .product-slider {
        height: 200px;
    }
    
    .product-name {
        font-size: 16px;
    }
    
    .product-price {
        font-size: 18px;
    }
    
    .nav {
        display: none;
    }
    
    .hero {
        min-height: auto;
        padding: 40px 0 50px;
        background-attachment: scroll;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-logo-animated {
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .header-logo-animated {
        gap: 10px;
    }
    
    .footer-logo-animated {
        gap: 12px;
    }
    
    .hero-title,
    .hero-subtitle {
        text-align: center;
    }
    
    .logo-mark {
        width: 80px;
        height: 80px;
    }
    
    .header-logo-mark {
        width: 40px;
        height: 40px;
    }
    
    .header-ik-text {
        font-size: 16px;
    }
    
    .header-logo-arden {
        font-size: 20px;
        letter-spacing: 2px;
    }
    
    .header-logo-group {
        font-size: 8px;
        letter-spacing: 4px;
    }
    
    .footer-logo-mark {
        width: 50px;
        height: 50px;
    }
    
    .footer-ik-text {
        font-size: 20px;
    }
    
    .footer-logo-arden {
        font-size: 24px;
        letter-spacing: 3px;
    }
    
    .footer-logo-group {
        font-size: 9px;
        letter-spacing: 5px;
    }
    
    .ik-text {
        font-size: 32px;
    }
    
    .logo-arden {
        font-size: 36px;
        letter-spacing: 5px;
    }
    
    .logo-group {
        font-size: 11px;
        letter-spacing: 8px;
    }
    
    .hero-title {
        font-size: 26px;
        margin-bottom: 12px;
    }
    
    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 25px;
    }
    
    .cart-item {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .reload-btn, .admin-btn {
        padding: 8px 15px;
        font-size: 12px;
    }
    
    .form-row-3 {
        grid-template-columns: 1fr;
    }
    
    .lightbox-close {
        top: 10px;
        right: 10px;
        width: 45px;
        height: 45px;
        font-size: 25px;
    }
    
    .lightbox-content {
        grid-template-columns: 1fr;
        max-width: 100%;
        padding: 10px;
        gap: 20px;
    }
    
    .lightbox-image-container {
        padding: 15px;
        border-width: 2px;
        border-radius: 10px 10px 0 0;
    }
    
    .lightbox-dots {
        padding: 12px;
        border-width: 2px;
        border-radius: 0 0 10px 10px;
    }
    
    .lightbox-image-wrapper:has(.lightbox-dots:empty) .lightbox-image-container {
        border-radius: 10px;
        border-bottom: 2px solid #3a3a3a;
    }
    
    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 28px;
    }
    
    .lightbox-prev {
        left: 5px;
    }
    
    .lightbox-next {
        right: 5px;
    }
    
    .lightbox-product-info {
        padding: 20px;
        position: static;
    }
    
    .lightbox-product-name {
        font-size: 22px;
    }
    
    .lightbox-product-description {
        font-size: 14px;
    }
    
    .lightbox-product-price {
        font-size: 24px;
    }
    
    .lightbox-hint {
        font-size: 12px;
        padding: 12px;
    }
    
    .lightbox-image {
        max-height: 50vh;
    }
    
    .lightbox-close {
        top: 10px;
        right: 10px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .lightbox-content {
        grid-template-columns: 1fr 350px;
        gap: 25px;
    }
    
    .lightbox-product-info {
        padding: 25px;
    }
}

/* ========================================
   NEW SECTIONS STYLES
======================================== */

/* Trust Badges */
.trust-badges {
    background-color: var(--bg-secondary);
    border-top: 2px solid var(--border-color);
    border-bottom: 2px solid var(--border-color);
    padding: 30px 20px;
}

.badges-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 10px;
}

.badge-icon {
    font-size: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.badge-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--accent-primary);
}

.badge-text {
    color: var(--text-secondary);
    font-size: 15px;
}

/* Gallery Section */
.gallery-section {
    padding: 50px 20px;
    background-color: #1a1a1a;
}

body.light-theme .gallery-section {
    background: var(--bg-secondary);
}

.section-subtitle {
    text-align: center;
    color: #888888;
    margin-top: 10px;
    margin-bottom: 40px;
}

body.light-theme .section-subtitle {
    color: var(--text-muted);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    background-color: #2a2a2a;
    border: 2px solid #3a3a3a;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 20px;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    margin: 0 0 5px 0;
    font-size: 18px;
}

.gallery-overlay p {
    margin: 0;
    color: #cccccc;
    font-size: 14px;
}

/* FAQ Section */
.faq-section {
    padding: 50px 20px;
    background-color: #1a1a1a;
}

body.light-theme .faq-section {
    background: var(--bg-primary);
}

.faq-container {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    border: 2px solid #3a3a3a;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    background-color: #2a2a2a;
}

.faq-question {
    width: 100%;
    background-color: #2a2a2a;
    border: none;
    padding: 20px;
    text-align: left;
    font-size: 18px;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #3a3a3a;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background-color: #1a1a1a;
    padding: 0 20px;
    color: #cccccc;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 20px;
}

.faq-icon {
    font-size: 24px;
    transition: transform 0.3s;
    color: #4ade80;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* Contact Section */
.contact-section {
    padding: 50px 20px;
    background-color: var(--bg-primary);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contact-item {
    background-color: var(--bg-secondary);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: all 0.3s;
}

.contact-item:hover {
    border-color: var(--accent-primary);
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.contact-icon svg {
    width: 48px;
    height: 48px;
    stroke: var(--accent-primary);
}

.contact-item h3 {
    color: var(--accent-primary);
    margin: 0 0 10px 0;
    font-size: 20px;
}

.contact-item p {
    color: var(--text-secondary);
    margin: 5px 0;
    line-height: 1.6;
}

.contact-note {
    color: #666666 !important;
    font-size: 12px;
    font-style: italic;
}

/* Newsletter Section */
.newsletter-section {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border-top: 2px solid #3a3a3a;
    border-bottom: 2px solid #3a3a3a;
}

body.light-theme .newsletter-section {
    background: linear-gradient(135deg, #e5dfd4, #ede7dc);
    border-top: 2px solid var(--border-color);
    border-bottom: 2px solid var(--border-color);
}

.newsletter-section h2 {
    color: #ffffff;
    margin-bottom: 10px;
}

body.light-theme .newsletter-section h2 {
    color: var(--text-primary);
}

.newsletter-section p {
    color: #888888;
    margin-bottom: 30px;
}

body.light-theme .newsletter-section p {
    color: var(--text-secondary);
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    gap: 10px;
}

.newsletter-input {
    flex: 1;
    padding: 15px;
    background-color: #1a1a1a;
    border: 2px solid #3a3a3a;
    border-radius: 8px;
    color: #ffffff;
    font-size: 16px;
}

.newsletter-input:focus {
    outline: none;
    border-color: #4ade80;
}

.newsletter-btn {
    padding: 15px 30px;
    background-color: #4ade80;
    color: #000000;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s;
}

.newsletter-btn:hover {
    background-color: #22c55e;
    transform: scale(1.05);
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    padding: 40px 20px 20px;
    border-top: 2px solid #3a3a3a;
}

body.light-theme .footer {
    background-color: var(--bg-header);
    border-top: 2px solid var(--border-color);
}

/* Project Modal */
.project-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.project-modal-content {
    background: var(--bg-primary-solid);
    border-radius: 12px;
    padding: 30px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.project-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 36px;
    cursor: pointer;
    color: var(--text-primary);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s;
}

.project-modal-close:hover {
    background: var(--bg-tertiary);
}

.project-modal-content h2 {
    color: var(--accent-primary);
    margin-bottom: 10px;
    font-size: 28px;
}

.project-meta {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 14px;
}

.project-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 16px;
}

.project-images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
}

.project-images-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s;
    border: 2px solid var(--border-color);
}

.project-images-grid img:hover {
    transform: scale(1.05);
}

.project-videos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}

.project-videos video {
    width: 100%;
    border-radius: 8px;
    border: 2px solid var(--border-color);
}

.project-date {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 5px;
}

/* Gallery improvements */
.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-tertiary);
    border-radius: 8px;
}

.video-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 14px;
}

/* Footer Animated Logo */
.footer-logo-animated {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    margin-bottom: 15px;
}

.footer-logo-mark {
    position: relative;
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.footer-logo-mark svg {
    width: 100%;
    height: 100%;
}

.footer-ik-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    font-weight: bold;
    color: #059669;
    opacity: 1;
}

.footer-logo-text-block {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.footer-logo-arden {
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 4px;
    color: #ffffff;
}

.footer-logo-rule {
    width: 100%;
    height: 1px;
    background: #059669;
    opacity: 0.25;
}

.footer-logo-group {
    font-size: 10px;
    letter-spacing: 6px;
    color: #059669;
    opacity: 1;
}

/* Footer logo light theme */
body.light-theme .footer-ik-text {
    color: #22c55e;
}

body.light-theme .footer-logo-arden {
    color: #2d2a24;
}

body.light-theme .footer-logo-rule {
    background: #22c55e;
}

body.light-theme .footer-logo-group {
    color: #22c55e;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #4ade80;
    margin-bottom: 20px;
}

.footer-section p {
    color: #888888;
    line-height: 1.6;
}

.footer-link {
    display: block;
    color: #cccccc;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-link:hover {
    color: #4ade80;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-link {
    color: #cccccc;
    text-decoration: none;
    padding: 10px 15px;
    background-color: #2a2a2a;
    border-radius: 8px;
    transition: all 0.3s;
    display: inline-block;
}

.social-link:hover {
    background-color: #4ade80;
    color: #000000;
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #3a3a3a;
    color: #666666;
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-btn svg {
    vertical-align: middle;
}

/* Scroll to Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 90px;
    right: 20px;
    background-color: #4ade80;
    color: #000000;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(74, 222, 128, 0.4);
    z-index: 1000;
    transition: all 0.3s;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
}

.scroll-top-btn.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    background-color: #22c55e;
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(74, 222, 128, 0.6);
}

.scroll-top-btn svg {
    width: 24px;
    height: 24px;
}

/* ========================================
   VALIDATION STYLES
   ======================================== */

/* Input Validation States */
input.input-error,
textarea.input-error {
    border-color: #ef4444 !important;
    background-color: rgba(239, 68, 68, 0.05);
}

input.input-valid {
    border-color: #22c55e !important;
    background-color: rgba(34, 197, 94, 0.05);
}

body.light-theme input.input-error,
body.light-theme textarea.input-error {
    background-color: rgba(239, 68, 68, 0.1);
}

body.light-theme input.input-valid {
    background-color: rgba(34, 197, 94, 0.1);
}

.error-message {
    display: block;
    color: #ef4444;
    font-size: 13px;
    margin-top: 5px;
    font-weight: 500;
}

body.light-theme .error-message {
    color: #dc2626;
}

button[disabled] {
    opacity: 0.6;
    cursor: not-allowed !important;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

input.input-error {
    animation: shake 0.3s ease;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .logo-image {
        height: 40px;
    }
    
    .footer-logo {
        height: 50px;
    }
    
    .badges-grid {
        gap: 20px;
    }
    
    .badge-text {
        font-size: 13px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-btn {
        width: 100%;
    }
    
    .whatsapp-btn {
        bottom: 10px;
        right: 10px;
        padding: 12px 20px;
        font-size: 14px;
    }
    
    /* Categories mobile */
    .categories-filter {
        gap: 10px;
    }
    
    .category-btn {
        padding: 10px 16px;
        font-size: 14px;
    }
    
    .category-icon {
        font-size: 18px;
    }
    
    .category-name {
        font-size: 13px;
    }
}
