

:root {
    --primary-color: #ff6b35;
    --secondary-color: #2c3e50;
    --accent-color: #f39c12;
    --success-color: #27ae60;
    --danger-color: #e74c3c;
    --warning-color: #f39c12;
    --info-color: #3498db;
    --light-color: #ecf0f1;
    --dark-color: #2c3e50;
    --border-color: #dfe6e9;
    --text-color: #2d3436;
    --text-muted: #636e72;
    --background: #ffffff;
    --background-alt: #f8f9fa;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-lg: 0 5px 20px rgba(0,0,0,0.15);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-alt);
}


.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

body.loading .preloader {
    pointer-events: all;
}

.preloader-icon {
    font-size: 80px;
    color: var(--primary-color);
    animation: burningFire 2s ease-in-out infinite, fireFlicker 1s ease-in-out infinite, fireColorShift 3s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.6));
    transition: all 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --move-x: 0px;
    --move-y: 0px;
    --scale: 0.3;
}

.preloader-icon.move-to-header {
    transform: translate(var(--move-x), var(--move-y)) scale(var(--scale));
    filter: drop-shadow(0 0 30px rgba(255, 107, 53, 0.9));
    animation: none;
}


@keyframes fireIgnite {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.4));
    }
    50% {
        transform: scale(1.4);
        filter: drop-shadow(0 0 25px rgba(255, 107, 53, 0.9));
    }
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.4));
    }
}

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


.main-header {
    background: var(--background);
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a252f 100%);
    color: white;
    font-size: 14px;
    padding: 12px 0;
}

.header-top-content {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.header-links {
    display: flex;
    gap: 25px;
}

.header-links a {
    color: white;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
}

.header-links a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}


.user-menu-wrapper {
    position: relative;
}

.user-button {
    position: relative;
    font-size: 24px;
    text-decoration: none;
    color: var(--secondary-color);
    transition: var(--transition);
    padding: 10px;
    border-radius: 50%;
    background: var(--background-alt);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
}

.user-button:hover {
    transform: scale(1.1);
    background: var(--primary-color);
    color: white;
}

.user-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 1000;
    overflow: hidden;
}

.user-dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
    border-radius: 0;
    font-size: 14px;
}

.user-dropdown-menu a:hover {
    background: var(--primary-color);
    color: white;
    transform: none;
}

.user-dropdown-menu a i {
    font-size: 14px;
}

.header-main {
    padding: 15px 0;
}

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

.logo {
    flex-shrink: 0;
    min-width: 0;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--secondary-color);
    font-size: 22px;
    font-weight: 700;
    transition: var(--transition);
    white-space: nowrap;
}

.logo a:hover {
    transform: scale(1.02);
}

.logo-text {
    display: inline-block;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.logo-icon {
    font-size: 32px;
    margin-right: 10px;
    flex-shrink: 0;
    color: var(--primary-color);
    animation: burningFire 3s ease-in-out infinite, fireFlicker 1.5s ease-in-out infinite, fireColorShift 4s ease-in-out infinite;
    filter: drop-shadow(0 0 6px rgba(255, 107, 53, 0.3));
}

.logo a:hover .logo-icon {
    animation: burningFire 2s ease-in-out infinite, fireFlicker 1s ease-in-out infinite, fireColorShift 3s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(255, 140, 0, 0.5));
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    padding: 8px 12px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    border-radius: 8px;
    font-size: 14px;
}

.main-nav a i {
    font-size: 16px;
    transition: var(--transition);
}

.main-nav a:hover {
    background: var(--background-alt);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.main-nav a:hover i {
    transform: scale(1.2);
}

.main-nav a.active {
    background: var(--primary-color);
    color: white;
}

.main-nav a.active::after {
    display: none;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-button {
    position: relative;
    font-size: 28px;
    text-decoration: none;
    color: var(--secondary-color);
    transition: var(--transition);
    padding: 10px;
    border-radius: 50%;
    background: var(--background-alt);
}

.cart-button:hover {
    transform: scale(1.1) rotate(10deg);
    background: var(--primary-color);
    color: white;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c5a 100%);
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.5);
}

.mobile-menu-toggle {
    display: none;
    background: var(--background-alt);
    border: none;
    font-size: 24px;
    cursor: pointer;
    width: 45px;
    height: 45px;
    border-radius: 8px;
    color: var(--secondary-color);
    transition: var(--transition);
}

.mobile-menu-toggle:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.05);
}

.mobile-menu {
    display: none;
    background: var(--background);
    border-top: 1px solid var(--border-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.mobile-menu.active {
    display: block;
}

.mobile-menu ul {
    list-style: none;
    padding: 20px;
}

.mobile-menu li {
    margin: 8px 0;
}

.mobile-menu a {
    text-decoration: none;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 8px;
    transition: var(--transition);
    font-weight: 500;
}

.mobile-menu a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(5px);
}

.mobile-menu a i {
    font-size: 18px;
    width: 20px;
    text-align: center;
}


.flash-message {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 2000;
    min-width: 300px;
    animation: slideIn 0.3s ease;
    transition: opacity 0.3s ease;
}

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

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

.flash-error {
    background: var(--danger-color);
    color: white;
}

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

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

.flash-close {
    margin-left: auto;
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 0 5px;
}


.main-content {
    min-height: calc(100vh - 400px);
}


.hero {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: white;
    padding: 120px 20px;
    text-align: center;
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: inherit;
    filter: blur(2px);
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 62, 80, 0.6);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 10px;
    opacity: 0.95;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}


.info-section {
    padding: 80px 20px;
    background: var(--background);
}

.info-box {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.info-icon {
    font-size: 64px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.info-title {
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.info-lead {
    font-size: 20px;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.highlight-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--background-alt);
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: 2px solid transparent;
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.highlight-item i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: block;
}

.highlight-item h3 {
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.highlight-item p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
}


.categories-section,
.featured-section,
.features-section {
    padding: 60px 20px;
}

.section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 40px;
    font-size: 18px;
}

.section-footer {
    text-align: center;
    margin-top: 40px;
}


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

.category-card {
    background: var(--background);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    text-decoration: none;
    color: var(--text-color);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.category-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.category-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.category-card p {
    color: var(--text-muted);
    margin-bottom: 15px;
}

.category-link {
    color: var(--primary-color);
    font-weight: 600;
}


.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.product-card {
    background: var(--background);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.product-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--background-alt);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.product-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.product-name {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.product-description {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 15px;
    flex: 1;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

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

.product-price .price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.product-price .unit {
    font-size: 12px;
    color: var(--text-muted);
}


.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
}

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

.btn-primary:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

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

.btn-secondary:hover {
    background: #1e2a38;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 14px;
}

.btn-large {
    padding: 16px 40px;
    font-size: 18px;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-text {
    background: none;
    color: var(--primary-color);
    padding: 8px 16px;
}

.btn-text:hover {
    background: var(--background-alt);
}


.features-section {
    background: var(--background);
}

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

.feature-card {
    text-align: center;
    padding: 30px;
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.feature-card p {
    color: var(--text-muted);
}


.cta-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}


.form-group {
    margin-bottom: 20px;
    flex: 1;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-section {
    margin-bottom: 30px;
}

.form-section h3 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: var(--text-color);
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="number"],
select,
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

small {
    display: block;
    margin-top: 5px;
    color: var(--text-muted);
    font-size: 14px;
}


.auth-page {
    padding: 60px 20px;
    min-height: calc(100vh - 400px);
    display: flex;
    align-items: center;
}

.auth-box {
    max-width: 600px;
    margin: 0 auto;
    background: var(--background);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.auth-box h1 {
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.auth-subtitle {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.auth-footer {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.auth-footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.form-group-inline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
}

.text-link {
    color: var(--primary-color);
    text-decoration: none;
}

.error-box {
    background: #fee;
    border: 1px solid var(--danger-color);
    color: var(--danger-color);
    padding: 15px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
}


.page-header {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 36px;
    margin-bottom: 10px;
}


.products-page {
    padding: 40px 20px;
}

.products-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
}

.products-sidebar {
    background: var(--background);
    padding: 20px;
    border-radius: var(--border-radius);
    height: fit-content;
    box-shadow: var(--shadow);
}

.sidebar-section {
    margin-bottom: 30px;
}

.sidebar-section h3 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.category-filter {
    list-style: none;
}

.category-filter li {
    margin-bottom: 8px;
}

.category-filter a {
    text-decoration: none;
    color: var(--text-color);
    display: block;
    padding: 8px 12px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.category-filter a:hover,
.category-filter a.active {
    background: var(--primary-color);
    color: white;
}

.search-box {
    display: flex;
    gap: 10px;
}

.search-box input {
    flex: 1;
}

.search-box button {
    background: var(--primary-color);
    border: none;
    padding: 12px 20px;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

.search-box button:hover {
    background: #e55a2b;
}

.products-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 15px;
    background: var(--background);
    border-radius: var(--border-radius);
}

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

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
}

.pagination-btn,
.pagination-number,
.pagination-current {
    padding: 8px 16px;
    border-radius: var(--border-radius);
    text-decoration: none;
    color: var(--text-color);
    background: var(--background);
    transition: var(--transition);
}

.pagination-btn:hover,
.pagination-number:hover {
    background: var(--primary-color);
    color: white;
}

.pagination-current {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
}


.cart-page {
    padding: 40px 20px;
}

.empty-cart {
    text-align: center;
    padding: 60px 20px;
    background: var(--background);
    border-radius: var(--border-radius);
}

.empty-cart-icon {
    font-size: 96px;
    margin-bottom: 20px;
}

.cart-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 30px;
}

.cart-items,
.cart-summary {
    background: var(--background);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

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

.cart-item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.cart-item-image {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.product-placeholder-small {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    background: var(--background-alt);
    border-radius: var(--border-radius);
}

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

.cart-item-info h3 {
    margin-bottom: 5px;
}

.cart-item-info a {
    text-decoration: none;
    color: var(--secondary-color);
}

.cart-item-price {
    color: var(--text-muted);
    font-size: 14px;
}

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

.quantity-input {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.quantity-input button {
    background: var(--background-alt);
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 16px;
    transition: var(--transition);
}

.quantity-input button:hover {
    background: var(--border-color);
}

.quantity-input input {
    width: 60px;
    text-align: center;
    border: none;
    padding: 8px;
}

.cart-item-subtotal {
    font-size: 18px;
    font-weight: 600;
    min-width: 100px;
    text-align: right;
}

.btn-remove {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: var(--danger-color);
    transition: var(--transition);
}

.btn-remove:hover {
    transform: scale(1.2);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.summary-total {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
}

.shipping-notice {
    background: var(--background-alt);
    padding: 10px;
    border-radius: var(--border-radius);
    text-align: center;
    margin: 10px 0;
    font-size: 14px;
    color: var(--text-muted);
}

.text-success {
    color: var(--success-color);
}


.checkout-page {
    padding: 40px 20px;
}

.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 30px;
}

.checkout-section {
    background: var(--background);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 20px;
}

.checkout-section h2 {
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.payment-method {
    display: block;
    cursor: pointer;
}

.payment-method-content {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.payment-method input:checked + .payment-method-content {
    border-color: var(--primary-color);
    background: rgba(255, 107, 53, 0.05);
}

.payment-method-content:hover {
    border-color: var(--primary-color);
}

.payment-icon {
    font-size: 32px;
}

.order-summary {
    background: var(--background);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.order-items {
    margin: 20px 0;
}

.order-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.order-item-info {
    flex: 1;
}

.order-item-info strong {
    display: block;
    margin-bottom: 5px;
}

.order-item-info span {
    font-size: 14px;
    color: var(--text-muted);
}

.order-totals {
    margin: 20px 0;
}

.order-total-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
}

.order-total-row.total {
    border-top: 2px solid var(--border-color);
    padding-top: 15px;
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
}

.checkout-notice {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    font-size: 14px;
    color: var(--text-muted);
}

.checkout-notice a {
    color: var(--primary-color);
}


.order-confirmation-page {
    padding: 40px 20px;
}

.confirmation-header {
    text-align: center;
    margin-bottom: 40px;
}

.confirmation-icon {
    width: 100px;
    height: 100px;
    background: var(--success-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 20px;
}

.confirmation-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
}

.confirmation-message {
    text-align: center;
    background: var(--background-alt);
    padding: 30px;
    border-radius: var(--border-radius);
}

.order-details-box {
    background: var(--background);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.order-details-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
}

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

.order-info-section h3 {
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.order-status {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.status-pending {
    background: var(--warning-color);
    color: white;
}

.status-processing {
    background: var(--info-color);
    color: white;
}

.status-shipped {
    background: var(--primary-color);
    color: white;
}

.status-delivered {
    background: var(--success-color);
    color: white;
}

.status-cancelled {
    background: var(--danger-color);
    color: white;
}

.order-items-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.order-items-table th,
.order-items-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.order-items-table th {
    background: var(--background-alt);
    font-weight: 600;
    color: var(--secondary-color);
}

.order-items-table tfoot td {
    font-weight: 600;
}


.profile-page {
    padding: 40px 20px;
}

.profile-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 2px solid var(--border-color);
}

.profile-tab {
    padding: 15px 30px;
    text-decoration: none;
    color: var(--text-color);
    border-bottom: 3px solid transparent;
    transition: var(--transition);
    font-weight: 500;
}

.profile-tab:hover,
.profile-tab.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.tab-content {
    background: var(--background);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.no-orders {
    text-align: center;
    padding: 60px 20px;
}

.orders-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.order-card {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
}

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

.order-date {
    color: var(--text-muted);
    font-size: 14px;
}

.order-card-body {
    padding: 20px;
}

.order-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.order-total {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
}


.quote-details {
    background: var(--background-alt);
    padding: 20px;
    border-radius: var(--border-radius);
    margin-bottom: 15px;
}

.quote-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.quote-col strong {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary-color);
    margin-bottom: 8px;
    font-size: 14px;
}

.quote-col strong i {
    color: var(--primary-color);
    font-size: 16px;
}

.quote-col p {
    margin: 0;
    color: var(--text-color);
    font-size: 15px;
}

.quote-total {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.quote-info-box {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    padding: 15px;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--info-color);
}

.quote-info-box p {
    margin: 0;
    color: var(--text-color);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.quote-info-box i {
    color: var(--info-color);
    margin-top: 2px;
    flex-shrink: 0;
}

.empty-icon {
    font-size: 64px;
    color: var(--text-muted);
    margin-bottom: 20px;
    opacity: 0.5;
}


.admin-page {
    padding: 40px 20px;
    background: var(--background-alt);
    min-height: 100vh;
}

.admin-header {
    margin-bottom: 30px;
}

.admin-nav {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.admin-nav a {
    padding: 10px 20px;
    text-decoration: none;
    color: var(--text-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.admin-nav a:hover,
.admin-nav a.active {
    background: var(--primary-color);
    color: white;
}

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

.stat-card {
    background: var(--background);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-icon {
    font-size: 48px;
}

.stat-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
}

.stat-label {
    color: var(--text-muted);
}

.admin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
}

.admin-section {
    background: var(--background);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.admin-toolbar {
    background: var(--background);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.search-form {
    display: flex;
    gap: 10px;
}

.admin-table {
    width: 100%;
    background: var(--background);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.admin-table th,
.admin-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.admin-table th {
    background: var(--background-alt);
    font-weight: 600;
    color: var(--secondary-color);
}

.admin-table tr:hover {
    background: var(--background-alt);
}

.action-buttons {
    display: flex;
    gap: 10px;
}

.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

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

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

.badge-secondary {
    background: var(--text-muted);
    color: white;
}

.badge-pending {
    background: var(--warning-color);
    color: white;
}

.badge-processing {
    background: var(--info-color);
    color: white;
}

.badge-shipped {
    background: var(--primary-color);
    color: white;
}

.badge-delivered {
    background: var(--success-color);
    color: white;
}

.badge-cancelled {
    background: var(--danger-color);
    color: white;
}

.text-danger {
    color: var(--danger-color);
}

.text-warning {
    color: var(--warning-color);
}


.main-footer {
    background: linear-gradient(180deg, #2c3e50 0%, #1a252f 100%);
    color: white;
    margin-top: 60px;
}


.footer-newsletter {
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff8c5a 100%);
    padding: 50px 20px;
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.newsletter-text h3 {
    font-size: 28px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.newsletter-text p {
    font-size: 16px;
    opacity: 0.95;
}

.newsletter-input-group {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 50px;
    padding: 8px;
    min-width: 500px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.newsletter-input-group i {
    color: var(--text-muted);
    margin-left: 20px;
    margin-right: 10px;
    font-size: 18px;
}

.newsletter-input-group input {
    flex: 1;
    border: none;
    padding: 12px;
    font-size: 16px;
    outline: none;
    background: transparent;
}

.newsletter-input-group button {
    border-radius: 50px;
    padding: 12px 30px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-content {
    padding: 60px 20px 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo i {
    font-size: 36px;
    color: var(--primary-color);
}

.footer-logo h3 {
    font-size: 24px;
    margin: 0;
}

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

.footer-column h3 {
    margin-bottom: 25px;
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--primary-color);
}

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

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
}

.footer-column a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-column a i {
    font-size: 12px;
    color: var(--primary-color);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.9);
}

.footer-contact i {
    margin-top: 4px;
    color: var(--primary-color);
    font-size: 16px;
    min-width: 20px;
}

.ml-4 {
    margin-left: 32px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-5px) rotate(10deg);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.footer-contact li {
    margin-bottom: 15px;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 25px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-bottom-content p {
    display: flex;
    align-items: center;
    gap: 8px;
}

.payment-methods {
    display: flex;
    gap: 20px;
}

.payment-methods span {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 14px;
    transition: var(--transition);
}

.payment-methods span:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}


.breadcrumb {
    background: var(--background-alt);
    padding: 15px 20px;
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb span {
    margin: 0 10px;
    color: var(--text-muted);
}


.product-detail-page {
    padding: 40px 20px;
}

.product-detail {
    background: var(--background);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.product-detail-image img {
    width: 100%;
    border-radius: var(--border-radius);
}

.product-placeholder-large {
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 128px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: var(--border-radius);
}

.product-category-badge {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.product-detail-info h1 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.product-price-large {
    margin: 20px 0;
}

.product-price-large .price {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
}

.product-price-large .unit {
    font-size: 16px;
    color: var(--text-muted);
    margin-left: 10px;
}

.product-stock {
    padding: 10px 15px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    font-weight: 500;
}

.product-stock.in-stock {
    background: rgba(39, 174, 96, 0.1);
    color: var(--success-color);
}

.product-stock.out-of-stock {
    background: rgba(231, 76, 60, 0.1);
    color: var(--danger-color);
}

.product-description {
    margin: 30px 0;
}

.add-to-cart-form {
    margin: 30px 0;
}

.quantity-selector {
    margin-bottom: 20px;
}

.quantity-selector label {
    margin-bottom: 10px;
}

.product-features {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.feature-item .feature-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.related-products {
    margin-top: 60px;
}

.related-products h2 {
    margin-bottom: 30px;
    text-align: center;
}


.configurator-page {
    padding: 40px 20px;
    background: var(--background-alt);
}

.configurator-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.configurator-form-section {
    background: var(--background);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.info-banner {
    background: linear-gradient(135deg, var(--primary-color), #ff8c5a);
    color: white;
    padding: 20px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 30px;
}

.info-banner > i {
    font-size: 32px;
    margin-top: 2px;
    flex-shrink: 0;
}

.info-banner > div {
    flex: 1;
}

.info-banner strong {
    display: block;
    font-size: 18px;
    margin-bottom: 8px;
}

.info-banner p {
    margin: 0;
    opacity: 0.95;
    line-height: 1.5;
}

.info-banner p i {
    margin-right: 5px;
}

.configurator-form h2 {
    color: var(--secondary-color);
    margin: 30px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.configurator-form h2:first-of-type {
    margin-top: 0;
}

.discount-info {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 15px;
    border-radius: var(--border-radius);
    margin: 15px 0;
    display: none;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.discount-info i {
    font-size: 20px;
}

.login-notice {
    text-align: center;
    color: var(--text-muted);
    margin-top: 15px;
    font-size: 14px;
}

.login-notice i {
    color: var(--info-color);
}


.price-preview {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.price-box {
    background: var(--background);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    margin-bottom: 20px;
}

.price-box h3 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
}

.price-details {
    margin: 20px 0;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.price-row span {
    color: var(--text-muted);
}

.price-row strong {
    color: var(--text-color);
    font-size: 16px;
}

.discount-row {
    color: var(--success-color);
}

.discount-badge {
    background: var(--success-color);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 14px !important;
}

.price-divider {
    border-top: 2px solid var(--border-color);
    margin: 15px 0;
}

.total-row {
    padding: 15px 0;
}

.total-row span {
    font-size: 18px;
    color: var(--text-color);
    font-weight: 600;
}

.total-price {
    font-size: 28px !important;
    color: var(--primary-color) !important;
    font-weight: 700 !important;
}

.price-info {
    background: var(--background-alt);
    padding: 15px;
    border-radius: var(--border-radius);
    margin-top: 20px;
}

.price-info p {
    margin: 8px 0;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.price-info i {
    color: var(--success-color);
}

.savings-box {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    padding: 20px;
    border-radius: var(--border-radius);
    margin-top: 20px;
    border: 2px solid #bae6fd;
}

.savings-box h4 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.savings-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.savings-item {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.savings-item.highlight {
    padding-top: 10px;
    border-top: 1px solid #bae6fd;
    font-weight: 600;
    font-size: 16px;
}

.savings-amount {
    color: var(--success-color);
    font-weight: 700;
}

.benefits-box {
    background: var(--background);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.benefits-box h4 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.benefits-list li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-color);
    border-bottom: 1px solid var(--border-color);
}

.benefits-list li:last-child {
    border-bottom: none;
}

.benefits-list i {
    color: var(--primary-color);
    font-size: 16px;
}


@media (max-width: 992px) {
    .products-layout,
    .cart-layout,
    .checkout-layout,
    .product-detail,
    .configurator-layout {
        grid-template-columns: 1fr;
    }

    .price-preview {
        position: static;
    }

    .admin-grid {
        grid-template-columns: 1fr;
    }

    .order-summary {
        position: static;
    }

    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-input-group {
        min-width: 100%;
    }
}

@media (max-width: 768px) {
    .header-top {
        display: none;
    }

    .main-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero {
        min-height: 400px;
        padding: 60px 20px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .info-title {
        font-size: 28px;
    }

    .info-lead {
        font-size: 18px;
    }

    .info-highlights {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
    }

    .newsletter-input-group {
        flex-direction: column;
        padding: 15px;
        border-radius: 15px;
    }

    .newsletter-input-group input {
        text-align: center;
        width: 100%;
    }

    .newsletter-input-group button {
        width: 100%;
        justify-content: center;
    }

    .payment-methods {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .form-row {
        flex-direction: column;
    }

    .cart-item {
        flex-direction: column;
    }

    .cart-item-actions {
        width: 100%;
        justify-content: space-between;
    }

    .header-top-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .header-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
}
