:root {
    --primary-color: #f15c22;
    --primary-hover: #e04a1a;
    --secondary-color: #1d2a21;
    --accent-color: #c0f11c;
    --background-color: #f4f5f8;
    --surface-color: #ffffff;
    --text-color: #000000;
    --text-secondary: #666666;
    --text-muted: #999999;
    --border-color: #e0e0e0;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.15);
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.3s ease;
}
[data-theme="dark"] {
    --primary-color: #f15c22;
    --primary-hover: #ff6d33;
    --secondary-color: #e8e8e8;
    --accent-color: #d4f73c;
    --background-color: #1a1a1a;
    --surface-color: #2d2d2d;
    --text-color: #ffffff;
    --text-secondary: #b3b3b3;
    --text-muted: #808080;
    --border-color: #404040;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.4);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: Cairo, Arial, sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    transition: background-color var(--transition), color var(--transition);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
body.auth-page {
    min-height: 100vh;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}
.header {
    background-color: var(--surface-color);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: background-color var(--transition), box-shadow var(--transition);
}
.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-sm) 0;
    gap: var(--spacing-md);
}
.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}
.logo a {
    text-decoration: none;
}
.nav-menu ul {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
    align-items: center;
}
.nav-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.nav-menu a.active,
.nav-menu a:hover {
    color: var(--primary-color);
    background-color: rgba(241, 92, 34, 0.1);
}
.header-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}
.theme-toggle {
    background: 0 0;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
    background-color: var(--surface-color);
}
.theme-toggle:hover {
    border-color: var(--primary-color);
    transform: rotate(20deg);
}
.cart-icon {
    position: relative;
    font-size: 1.5rem;
    color: var(--text-color);
    text-decoration: none;
    padding: var(--spacing-xs);
}
.cart-badge {
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}
.btn-login {
    background-color: var(--primary-color);
    color: #fff;
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}
.btn-login:hover {
    background-color: var(--primary-hover);
}
.mobile-menu-toggle {
    display: none;
    background: 0 0;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
}
.hero {
    background: linear-gradient(
        135deg,
        rgba(241, 92, 34, 0.1) 0,
        rgba(29, 42, 33, 0.05) 100%
    );
    padding: var(--spacing-xl) 0;
    text-align: center;
    margin-bottom: var(--spacing-xl);
}
.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--secondary-color);
}
.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
}
.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}
.btn {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    font-family: inherit;
    font-size: 1rem;
}
.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
}
.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
.btn-secondary {
    background-color: var(--surface-color);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}
.btn-secondary:hover {
    background-color: var(--primary-color);
    color: #fff;
}
.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}
.service-types {
    padding: calc(var(--spacing-xl) * 1.5) 0;
    background: var(--background-color);
    position: relative;
    overflow: hidden;
}
.service-types::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--primary-color),
        transparent
    );
    opacity: 0.3;
}
.service-types .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: calc(var(--spacing-lg) * 1.5);
    text-align: center;
    color: var(--secondary-color);
    position: relative;
    padding-bottom: var(--spacing-md);
    letter-spacing: -0.5px;
}
.service-types .section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--primary-color),
        transparent
    );
    border-radius: 2px;
}
.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: calc(var(--spacing-lg) * 1.2);
    margin-top: calc(var(--spacing-lg) * 1.5);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 var(--spacing-md);
}
.service-card {
    background: linear-gradient(
        135deg,
        var(--surface-color) 0,
        rgba(255, 255, 255, 0.95) 100%
    );
    padding: calc(var(--spacing-lg) * 1.5);
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    transform: translateY(0);
}
.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--primary-color),
        rgba(241, 92, 34, 0.5)
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(241, 92, 34, 0.12),
        0 4px 15px rgba(0, 0, 0, 0.08);
    border-color: rgba(241, 92, 34, 0.25);
}
.service-card:hover::before {
    opacity: 1;
}
.service-card:first-child {
    animation: fadeInUp 0.6s ease-out 0.1s backwards;
}
.service-card:nth-child(2) {
    animation: fadeInUp 0.6s ease-out 0.2s backwards;
}
.service-card:nth-child(3) {
    animation: fadeInUp 0.6s ease-out 0.3s backwards;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.service-icon {
    font-size: 4.5rem;
    margin-bottom: var(--spacing-md);
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
    position: relative;
    z-index: 1;
}
.service-card:hover .service-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 3px 10px rgba(241, 92, 34, 0.25));
}
.service-card h3 {
    font-size: 1.75rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-color);
    font-weight: 800;
    letter-spacing: -0.3px;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}
.service-card:hover h3 {
    color: var(--primary-color);
}
.service-card p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
    font-weight: 500;
}
.service-card:hover p {
    color: var(--text-color);
}
.service-card:first-child {
    background: linear-gradient(
        135deg,
        rgba(241, 92, 34, 0.05) 0,
        var(--surface-color) 100%
    );
}
.service-card:first-child:hover {
    background: linear-gradient(
        135deg,
        rgba(241, 92, 34, 0.08) 0,
        var(--surface-color) 100%
    );
}
.service-card:nth-child(2) {
    background: linear-gradient(
        135deg,
        rgba(29, 42, 33, 0.05) 0,
        var(--surface-color) 100%
    );
}
.service-card:nth-child(2):hover {
    background: linear-gradient(
        135deg,
        rgba(29, 42, 33, 0.08) 0,
        var(--surface-color) 100%
    );
}
.service-card:nth-child(3) {
    background: linear-gradient(
        135deg,
        rgba(192, 241, 28, 0.05) 0,
        var(--surface-color) 100%
    );
}
.service-card:nth-child(3):hover {
    background: linear-gradient(
        135deg,
        rgba(192, 241, 28, 0.08) 0,
        var(--surface-color) 100%
    );
}
.categories-hero {
    padding: calc(var(--spacing-xl) * 1.5) 0;
    background: linear-gradient(
        135deg,
        rgba(241, 92, 34, 0.08) 0,
        rgba(241, 92, 34, 0.02) 100%
    );
    position: relative;
    overflow: hidden;
}
.categories-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--primary-color),
        transparent
    );
    opacity: 0.3;
}
.categories-hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-xl);
}
.hero-text {
    flex: 1;
}
.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(241, 92, 34, 0.1);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-md);
}
.hero-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: var(--spacing-md);
    color: var(--secondary-color);
    line-height: 1.2;
    letter-spacing: -1px;
}
.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 600px;
}
.hero-stats {
    display: flex;
    gap: var(--spacing-lg);
}
.stat-item {
    text-align: center;
    padding: var(--spacing-lg);
    background: var(--surface-color);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    min-width: 120px;
}
.stat-item .stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
    line-height: 1;
}
.stat-item .stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 600;
}
.categories-filters {
    padding: var(--spacing-lg) 0;
    background: var(--surface-color);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 70px;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.filters-wrapper {
    max-width: 800px;
    margin: 0 auto;
}
.categories-search-form {
    width: 100%;
}
.search-container {
    display: flex;
    align-items: center;
    background: var(--background-color);
    border-radius: 50px;
    padding: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}
.search-container:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 4px 16px rgba(241, 92, 34, 0.15);
}
.search-icon {
    font-size: 1.3rem;
    padding: 0 var(--spacing-sm);
    color: var(--text-secondary);
    flex-shrink: 0;
}
.search-input {
    flex: 1;
    border: none;
    background: 0 0;
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: 1rem;
    color: var(--text-color);
    outline: 0;
}
.search-input::placeholder {
    color: var(--text-muted);
}
.clear-search {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--text-muted);
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    margin-left: var(--spacing-xs);
    transition: all 0.3s ease;
    flex-shrink: 0;
}
.clear-search:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}
.search-btn {
    padding: 10px 24px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}
.search-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(241, 92, 34, 0.3);
}
.featured-categories-section {
    padding: calc(var(--spacing-xl) * 1.5) 0;
    background: var(--background-color);
    position: relative;
}
.featured-categories-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: calc(var(--spacing-lg) * 1.5);
    gap: var(--spacing-lg);
}
.section-header-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.featured-categories-section .section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(241, 92, 34, 0.1);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-sm);
    text-align: center;
}
.featured-categories-section .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0 0 var(--spacing-xs) 0;
    color: var(--secondary-color);
    letter-spacing: -0.5px;
    text-align: center;
}
.featured-categories-section .section-description {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
    text-align: center;
}
.view-all-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(241, 92, 34, 0.2);
    white-space: nowrap;
}
.view-all-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(241, 92, 34, 0.3);
}
.view-all-btn .arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}
.view-all-btn:hover .arrow {
    transform: translateX(-3px);
}
.featured-categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: calc(var(--spacing-lg) * 1.2);
    max-width: 1200px;
    margin: 0 auto;
}
.empty-categories {
    text-align: center;
    padding: calc(var(--spacing-xl) * 1.5);
    color: var(--text-secondary);
}
.empty-categories .empty-icon {
    font-size: 4rem;
    margin-bottom: var(--spacing-md);
    opacity: 0.5;
}
.empty-categories p {
    font-size: 1.1rem;
}
.categories-section {
    padding: calc(var(--spacing-xl) * 1.5) 0;
    background: var(--background-color);
}
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-lg);
}
.view-all {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}
.view-all:hover {
    text-decoration: underline;
}
.categories-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: calc(var(--spacing-lg) * 1.5);
    padding-bottom: var(--spacing-md);
    border-bottom: 2px solid var(--border-color);
}
.categories-header .section-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin: 0;
    letter-spacing: -0.5px;
}
.categories-count {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 8px 16px;
    background: rgba(241, 92, 34, 0.1);
    border-radius: 20px;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.95rem;
}
.categories-count span {
    font-size: 1.2rem;
    font-weight: 900;
}
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: calc(var(--spacing-lg) * 1.2);
    margin-bottom: calc(var(--spacing-xl) * 1.5);
}
.category-card {
    background-color: var(--surface-color);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: inherit;
    display: block;
    border: 2px solid transparent;
    position: relative;
    animation: fadeInUp 0.6s ease-out backwards;
}
.category-card:first-child {
    animation-delay: 0.1s;
}
.category-card:nth-child(2) {
    animation-delay: 0.2s;
}
.category-card:nth-child(3) {
    animation-delay: 0.3s;
}
.category-card:nth-child(4) {
    animation-delay: 0.4s;
}
.category-card:nth-child(5) {
    animation-delay: 0.5s;
}
.category-card:nth-child(6) {
    animation-delay: 0.6s;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.category-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(
        180deg,
        var(--primary-color),
        rgba(241, 92, 34, 0.3)
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}
.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(241, 92, 34, 0.15),
        0 6px 20px rgba(0, 0, 0, 0.1);
    border-color: rgba(241, 92, 34, 0.2);
}
.category-card:hover::before {
    opacity: 1;
}
.category-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(
        135deg,
        rgba(241, 92, 34, 0.05),
        rgba(241, 92, 34, 0.02)
    );
}
.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    opacity: 0;
}
.category-image img.lazy-image {
    opacity: 0;
}
.category-image .image-loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--surface-color);
    z-index: 1;
}
.category-card:hover .category-image img {
    transform: scale(1.1);
}
.category-info {
    padding: calc(var(--spacing-md) * 1.2);
    position: relative;
    z-index: 1;
}
.category-info h3 {
    font-size: 1.4rem;
    margin-bottom: var(--spacing-xs);
    color: var(--text-color);
    font-weight: 700;
    transition: color 0.3s ease;
}
.category-card:hover .category-info h3 {
    color: var(--primary-color);
}
.category-info p {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}
.category-info p::before {
    content: "📦";
    font-size: 1.1rem;
}
.products-section {
    padding: calc(var(--spacing-xl) * 1.5) 0;
    background: var(--background-color);
    position: relative;
}
.products-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: calc(var(--spacing-lg) * 1.5);
    gap: var(--spacing-lg);
}
.products-section .section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(241, 92, 34, 0.1);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-sm);
    text-align: center;
}
.products-section .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0 0 var(--spacing-xs) 0;
    color: var(--secondary-color);
    letter-spacing: -0.5px;
    text-align: center;
}
.products-section .section-description {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
    text-align: center;
}
.products-section .products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: calc(var(--spacing-lg) * 1.2);
    max-width: 1200px;
    margin: 0 auto;
}
.empty-products {
    text-align: center;
    padding: calc(var(--spacing-xl) * 1.5);
    color: var(--text-secondary);
}
.empty-products .empty-icon {
    font-size: 4rem;
    margin-bottom: var(--spacing-md);
    opacity: 0.5;
}
.empty-products p {
    font-size: 1.1rem;
}
.products-hero {
    padding: calc(var(--spacing-xl) * 1.5) 0;
    background: linear-gradient(
        135deg,
        rgba(241, 92, 34, 0.08) 0,
        rgba(241, 92, 34, 0.02) 100%
    );
    position: relative;
    overflow: hidden;
}
.products-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--primary-color),
        transparent
    );
    opacity: 0.3;
}
.products-hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-xl);
}
.products-hero .hero-text {
    flex: 1;
}
.products-hero .hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(241, 92, 34, 0.1);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-md);
}
.products-hero .hero-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: var(--spacing-md);
    color: var(--secondary-color);
    line-height: 1.2;
    letter-spacing: -1px;
}
.products-hero .hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 600px;
}
.products-hero .hero-stats {
    display: flex;
    gap: var(--spacing-lg);
}
.products-hero .stat-item {
    text-align: center;
    padding: var(--spacing-lg);
    background: var(--surface-color);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    min-width: 120px;
}
.products-hero .stat-item .stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
    line-height: 1;
}
.products-hero .stat-item .stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 600;
}
.products-filters-section {
    padding: var(--spacing-lg) 0;
    background: var(--surface-color);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 70px;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.products-filters-section .filters-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}
.products-search-form {
    width: 100%;
}
.filters-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr auto;
    gap: var(--spacing-md);
    align-items: center;
}
.filter-group {
    position: relative;
}
.search-group {
    display: flex;
    align-items: center;
    background: var(--background-color);
    border-radius: 50px;
    padding: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}
.search-group:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 4px 16px rgba(241, 92, 34, 0.15);
}
.search-group .search-icon {
    font-size: 1.3rem;
    padding: 0 var(--spacing-sm);
    color: var(--text-secondary);
    flex-shrink: 0;
}
.search-group .search-input {
    flex: 1;
    border: none;
    background: 0 0;
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: 1rem;
    color: var(--text-color);
    outline: 0;
}
.search-group .search-input::placeholder {
    color: var(--text-muted);
}
.search-group .clear-search {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--text-muted);
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    margin-left: var(--spacing-xs);
    transition: all 0.3s ease;
    flex-shrink: 0;
}
.search-group .clear-search:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}
.filter-select {
    width: 100%;
    padding: 12px 20px;
    border: 2px solid var(--border-color);
    border-radius: 30px;
    background-color: var(--background-color);
    color: var(--text-color);
    font-family: inherit;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 15px center;
    padding-right: 20px;
    padding-left: 40px;
}
.filter-select:hover {
    border-color: var(--primary-color);
}
.filter-select:focus {
    outline: 0;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(241, 92, 34, 0.1);
}
.reset-filters-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--text-secondary);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 30px;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-size: 0.95rem;
}
.reset-filters-btn:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(241, 92, 34, 0.3);
}
.reset-filters-btn .reset-icon {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}
.reset-filters-btn:hover .reset-icon {
    transform: rotate(180deg);
}
.products-section-page {
    padding: calc(var(--spacing-xl) * 1.5) 0;
    background: var(--background-color);
}
.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: calc(var(--spacing-lg) * 1.5);
    padding-bottom: var(--spacing-md);
    border-bottom: 2px solid var(--border-color);
}
.products-header .section-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin: 0;
    letter-spacing: -0.5px;
}
.products-count {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 8px 16px;
    background: rgba(241, 92, 34, 0.1);
    border-radius: 20px;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.95rem;
}
.products-count span {
    font-size: 1.2rem;
    font-weight: 900;
}
.products-page-content {
    padding: var(--spacing-lg) 0;
}
.products-filters-row {
    background-color: var(--surface-color);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    margin-bottom: var(--spacing-xl);
}
.filters-form-horizontal {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-end;
    flex-wrap: wrap;
}
.filter-item {
    flex: 1;
    min-width: 200px;
}
.filter-item label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.95rem;
}
.filter-item .btn {
    width: 100%;
    text-align: center;
}
.products-main-full {
    width: 100%;
}
.products-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: var(--spacing-xl);
    align-items: start;
}
.products-main {
    min-width: 0;
}
.products-sidebar {
    position: sticky;
    top: var(--spacing-lg);
}
.filters-form {
    background-color: var(--surface-color);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}
.filter-group {
    margin-bottom: var(--spacing-lg);
}
.filter-group:last-child {
    margin-bottom: 0;
}
.filter-group label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.95rem;
}
.filter-select {
    width: 100%;
    padding: var(--spacing-sm) var(--spacing-md);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    background-color: var(--background-color);
    color: var(--text-color);
    font-family: inherit;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}
.filter-select:hover {
    border-color: var(--primary-color);
}
.filter-select:focus {
    outline: 0;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: calc(var(--spacing-lg) * 1.2);
    margin-bottom: calc(var(--spacing-xl) * 1.5);
}
.product-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}
.product-card {
    background-color: var(--surface-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.product-card-link:hover .product-card {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.product-image {
    width: 100%;
    height: 200px;
    position: relative;
    overflow: hidden;
    background-color: var(--surface-color);
}
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    opacity: 0;
}
.product-image img.lazy-image {
    opacity: 0;
}
.product-image .image-loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--surface-color);
    z-index: 1;
}
.product-card:hover .product-image img {
    transform: scale(1.1);
}
.favorite-btn {
    position: absolute;
    top: var(--spacing-xs);
    left: var(--spacing-xs);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.favorite-btn:hover {
    background: #fff;
    transform: scale(1.1);
}
.product-info {
    padding: var(--spacing-md);
}
.product-info h3 {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-xs);
    color: var(--text-color);
}
.product-description {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
}
.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}
.price small {
    font-size: 0.9rem;
    font-weight: 400;
}
.add-to-cart {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.add-to-cart:hover {
    background-color: var(--primary-hover);
    transform: scale(1.1);
}
.page-header {
    background: linear-gradient(
        135deg,
        rgba(241, 92, 34, 0.1) 0,
        rgba(29, 42, 33, 0.05) 100%
    );
    padding: var(--spacing-xl) 0;
    text-align: center;
    margin-bottom: var(--spacing-lg);
}
.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
    color: var(--secondary-color);
}
.page-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}
.search-section {
    padding: var(--spacing-md) 0;
}
.search-bar {
    display: flex;
    gap: var(--spacing-sm);
    max-width: 600px;
    margin: 0 auto var(--spacing-md);
}
.search-bar input {
    flex: 1;
    padding: var(--spacing-sm) var(--spacing-md);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: inherit;
    background-color: var(--surface-color);
    color: var(--text-color);
    transition: var(--transition);
}
.search-bar input:focus {
    outline: 0;
    border-color: var(--primary-color);
}
.search-bar button {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: var(--radius-md);
    padding: var(--spacing-sm) var(--spacing-md);
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
}
.search-bar button:hover {
    background-color: var(--primary-hover);
}
.filter-buttons {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
}
.filter-btn {
    padding: var(--spacing-xs) var(--spacing-md);
    border: 2px solid var(--border-color);
    background-color: var(--surface-color);
    color: var(--text-color);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    font-weight: 500;
    display: inline-block;
    text-decoration: none;
}
.filter-btn.active,
.filter-btn:hover {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
    color: #fff;
}
.sort-options {
    margin-top: var(--spacing-md);
    display: flex;
    gap: var(--spacing-sm);
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.sort-options label {
    font-weight: 600;
    color: var(--text-color);
}
.cart-section {
    padding: var(--spacing-lg) 0;
}
.cart-items {
    margin-bottom: var(--spacing-lg);
}
.cart-item {
    display: flex;
    gap: var(--spacing-md);
    background-color: var(--surface-color);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-md);
    box-shadow: var(--shadow);
    align-items: center;
}
.item-image {
    width: 100px;
    height: 100px;
    border-radius: var(--radius-md);
    overflow: hidden;
    flex-shrink: 0;
}
.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.item-details {
    flex: 1;
}
.item-details h3 {
    margin-bottom: var(--spacing-xs);
    color: var(--text-color);
}
.item-price {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}
.quantity-controls {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}
.quantity-btn {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.quantity-btn:hover:not(:disabled) {
    background-color: var(--primary-hover);
    transform: scale(1.1);
}
.quantity-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.quantity-value {
    font-weight: 600;
    min-width: 30px;
    text-align: center;
}
.item-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: var(--spacing-sm);
}
.remove-btn {
    background: 0 0;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: var(--spacing-xs);
    transition: var(--transition);
}
.remove-btn:hover {
    transform: scale(1.2);
}
.item-total {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}
.cart-summary {
    background-color: var(--surface-color);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    position: sticky;
    bottom: 0;
}
.summary-row {
    display: flex;
    justify-content: space-between;
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid var(--border-color);
}
.summary-row:last-of-type {
    border-bottom: none;
}
.summary-row.total {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: var(--spacing-sm);
    padding-top: var(--spacing-md);
    border-top: 2px solid var(--border-color);
}
.about-hero {
    padding: calc(var(--spacing-xl) * 2) 0;
    background: linear-gradient(
        135deg,
        rgba(241, 92, 34, 0.05) 0,
        rgba(241, 92, 34, 0.02) 100%
    );
    position: relative;
    overflow: hidden;
}
.about-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--primary-color),
        transparent
    );
    opacity: 0.3;
}
.about-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: calc(var(--spacing-xl) * 1.5);
    align-items: center;
}
.about-hero-text {
    animation: fadeInLeft 0.8s ease-out;
}
.about-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(
        135deg,
        var(--primary-color),
        rgba(241, 92, 34, 0.8)
    );
    color: #fff;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    box-shadow: 0 4px 12px rgba(241, 92, 34, 0.3);
}
.about-hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: var(--spacing-md);
    color: var(--secondary-color);
    line-height: 1.2;
    letter-spacing: -1px;
}
.about-hero-title .highlight {
    color: var(--primary-color);
    position: relative;
}
.about-hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-top: var(--spacing-md);
}
.about-hero-image {
    animation: fadeInRight 0.8s ease-out;
}
.about-hero-image .image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transform: rotate(-2deg);
    transition: transform 0.4s ease;
}
.about-hero-image .image-wrapper:hover {
    transform: rotate(0) scale(1.02);
}
.about-hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}
.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(241, 92, 34, 0.1), transparent);
    pointer-events: none;
}
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.about-stats {
    padding: calc(var(--spacing-xl) * 1.5) 0;
    background: var(--surface-color);
    position: relative;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
    max-width: 1000px;
    margin: 0 auto;
}
.stat-card {
    text-align: center;
    padding: var(--spacing-lg);
    background: linear-gradient(
        135deg,
        rgba(241, 92, 34, 0.05),
        rgba(241, 92, 34, 0.02)
    );
    border-radius: var(--radius-lg);
    border: 2px solid rgba(241, 92, 34, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.stat-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(
        90deg,
        var(--primary-color),
        rgba(241, 92, 34, 0.5)
    );
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(241, 92, 34, 0.3);
    box-shadow: 0 8px 24px rgba(241, 92, 34, 0.15);
}
.stat-card:hover::before {
    transform: scaleX(1);
}
.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
    line-height: 1;
}
.stat-label {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 600;
}
.about-story {
    padding: calc(var(--spacing-xl) * 2) 0;
    background: var(--background-color);
}
.section-header {
    text-align: center;
    margin-bottom: calc(var(--spacing-xl) * 1.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
}
.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(241, 92, 34, 0.1);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0;
    color: var(--secondary-color);
    letter-spacing: -0.5px;
}
.section-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}
.story-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: calc(var(--spacing-xl) * 1.5);
    align-items: start;
}
.story-item {
    margin-bottom: calc(var(--spacing-lg) * 1.5);
    padding: var(--spacing-lg);
    background: var(--surface-color);
    border-radius: var(--radius-lg);
    border-right: 4px solid var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}
.story-item:hover {
    transform: translateX(-10px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.story-year {
    display: inline-block;
    padding: 4px 12px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}
.story-item h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--secondary-color);
    font-weight: 700;
}
.story-item p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.05rem;
}
.story-image-wrapper {
    position: sticky;
    top: 100px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    width: 100%;
    height: 600px;
    display: block;
}
.story-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: var(--radius-xl);
    background: var(--surface-color);
    min-height: 600px;
}
.about-values {
    padding: calc(var(--spacing-xl) * 2) 0;
    background: var(--surface-color);
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    max-width: 1200px;
    margin: 0 auto;
}
.value-card {
    background: linear-gradient(
        135deg,
        var(--surface-color) 0,
        rgba(255, 255, 255, 0.95) 100%
    );
    padding: calc(var(--spacing-lg) * 1.2);
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.value-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--primary-color),
        rgba(241, 92, 34, 0.5)
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}
.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(241, 92, 34, 0.15);
    border-color: rgba(241, 92, 34, 0.2);
}
.value-card:hover::before {
    opacity: 1;
}
.value-icon {
    font-size: 4rem;
    margin-bottom: var(--spacing-md);
    display: inline-block;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}
.value-card:hover .value-icon {
    transform: scale(1.15) rotate(5deg);
}
.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--secondary-color);
    font-weight: 700;
}
.value-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
}
.about-features {
    padding: calc(var(--spacing-xl) * 2) 0;
    background: var(--background-color);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    max-width: 1200px;
    margin: 0 auto;
}
.feature-card {
    background: var(--surface-color);
    padding: calc(var(--spacing-lg) * 1.2);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(241, 92, 34, 0.15);
    border-color: rgba(241, 92, 34, 0.3);
}
.feature-icon {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-md);
    display: inline-block;
    transition: transform 0.3s ease;
}
.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(-5deg);
}
.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: var(--spacing-sm);
    color: var(--secondary-color);
    font-weight: 700;
}
.feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
}
.about-cta {
    padding: calc(var(--spacing-xl) * 2) 0;
    background: linear-gradient(
        135deg,
        var(--primary-color) 0,
        rgba(241, 92, 34, 0.9) 100%
    );
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.about-cta::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.1) 0,
        transparent 70%
    );
    animation: rotate 20s linear infinite;
}
@keyframes rotate {
    from {
        transform: rotate(0);
    }
    to {
        transform: rotate(360deg);
    }
}
.cta-content {
    position: relative;
    z-index: 1;
}
.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    color: #fff;
}
.cta-content p {
    font-size: 1.2rem;
    margin-bottom: calc(var(--spacing-lg) * 1.5);
    opacity: 0.95;
}
.cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}
.cta-buttons .btn {
    padding: 14px 32px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 30px;
    transition: all 0.3s ease;
}
.cta-buttons .btn-primary {
    background: #fff;
    color: var(--primary-color);
    border: 2px solid #fff;
}
.cta-buttons .btn-primary:hover {
    background: 0 0;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}
.cta-buttons .btn-secondary {
    background: 0 0;
    color: #fff;
    border: 2px solid #fff;
}
.cta-buttons .btn-secondary:hover {
    background: #fff;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}
.contact-section {
    padding: var(--spacing-xl) 0;
}
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
}
.contact-info h2 {
    font-size: 2rem;
    margin-bottom: var(--spacing-lg);
    color: var(--secondary-color);
}
.contact-item {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    align-items: flex-start;
}
.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}
.contact-item h3 {
    margin-bottom: var(--spacing-xs);
    color: var(--text-color);
}
.contact-item p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xs);
}
.phone-number {
    direction: ltr;
    text-align: left;
    unicode-bidi: embed;
}
.contact-email-link {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}
.contact-email-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}
.contact-form-wrapper h2 {
    font-size: 2rem;
    margin-bottom: var(--spacing-lg);
    color: var(--secondary-color);
}
.contact-form {
    background-color: var(--surface-color);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}
.social-links {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    margin-top: var(--spacing-sm);
}
.social-link {
    color: var(--text-color);
    text-decoration: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--surface-color);
    border: 2px solid var(--border-color);
    box-shadow: var(--shadow);
}
.social-link svg {
    width: 24px;
    height: 24px;
    transition: var(--transition);
}
.social-link:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}
.social-facebook:hover {
    background-color: #1877f2;
    color: #fff;
    border-color: #1877f2;
}
.social-twitter:hover {
    background-color: #1da1f2;
    color: #fff;
    border-color: #1da1f2;
}
.social-instagram:hover {
    background: linear-gradient(
        45deg,
        #f09433 0,
        #e6683c 25%,
        #dc2743 50%,
        #cc2366 75%,
        #bc1888 100%
    );
    color: #fff;
    border-color: transparent;
}
.social-whatsapp:hover {
    background-color: #25d366;
    color: #fff;
    border-color: #25d366;
}
.alert {
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md);
    border: 1px solid;
}
.alert-success {
    background-color: #d4edda;
    color: #155724;
    border-color: #c3e6cb;
}
[data-theme="dark"] .alert-success {
    background-color: rgba(40, 167, 69, 0.2);
    color: #90ee90;
    border-color: rgba(40, 167, 69, 0.4);
}
.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border-color: #f5c6cb;
}
[data-theme="dark"] .alert-error {
    background-color: rgba(220, 53, 69, 0.2);
    color: #ff6b6b;
    border-color: rgba(220, 53, 69, 0.4);
}
.alert ul {
    margin: 0;
    padding-right: var(--spacing-lg);
    list-style: disc;
}
.form-group {
    margin-bottom: var(--spacing-md);
}
.form-group label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
    color: var(--text-color);
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: var(--spacing-sm);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: inherit;
    background-color: var(--background-color);
    color: var(--text-color);
    transition: var(--transition);
}
.form-group input:focus,
.form-group textarea:focus {
    outline: 0;
    border-color: var(--primary-color);
}
.form-group textarea {
    resize: vertical;
}
.auth-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-xl) 0;
}
.auth-card {
    background-color: var(--surface-color);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    max-width: 450px;
    width: 100%;
}
.auth-card h2 {
    font-size: 2rem;
    margin-bottom: var(--spacing-xs);
    text-align: center;
    color: var(--secondary-color);
}
.auth-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
}
.auth-form {
    margin-bottom: var(--spacing-md);
}
.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-md);
}
.checkbox-label {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    cursor: pointer;
}
.checkbox-label input {
    cursor: pointer;
}
.forgot-password {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
}
.forgot-password:hover {
    text-decoration: underline;
}
.auth-divider {
    text-align: center;
    margin: var(--spacing-lg) 0;
    position: relative;
}
.auth-divider::after,
.auth-divider::before {
    content: "";
    position: absolute;
    top: 50%;
    width: 45%;
    height: 1px;
    background-color: var(--border-color);
}
.auth-divider::before {
    right: 0;
}
.auth-divider::after {
    left: 0;
}
.auth-divider span {
    background-color: var(--surface-color);
    padding: 0 var(--spacing-sm);
    color: var(--text-secondary);
}
.auth-footer {
    text-align: center;
    color: var(--text-secondary);
}
.auth-footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}
.auth-footer a:hover {
    text-decoration: underline;
}
.download-app-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(
        135deg,
        rgba(241, 92, 34, 0.1) 0,
        rgba(29, 42, 33, 0.05) 100%
    );
}
.download-app-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}
.download-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--secondary-color);
}
.download-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
}
.download-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
}
.download-buttons {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}
.download-btn {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-lg);
    background-color: var(--surface-color);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition);
    box-shadow: var(--shadow);
    min-width: 180px;
}
.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}
.download-btn-icon {
    font-size: 2rem;
}
.download-btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.download-btn-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
}
.download-btn-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
}
.download-app-image {
    display: flex;
    justify-content: center;
    align-items: center;
}
.phone-mockup {
    max-width: 300px;
    position: relative;
}
.phone-mockup img {
    width: 100%;
    height: auto;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}
.phone-mockup img:hover {
    transform: translateY(-10px) scale(1.02);
}
@media (max-width: 768px) {
    .download-app-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .download-title {
        font-size: 2rem;
    }
    .download-subtitle {
        font-size: 1.25rem;
    }
    .download-buttons {
        justify-content: center;
    }
    .download-btn {
        min-width: 160px;
    }
    .phone-mockup {
        max-width: 250px;
    }
}
.download-app-hero {
    background: linear-gradient(
        135deg,
        rgba(241, 92, 34, 0.1) 0,
        rgba(29, 42, 33, 0.05) 100%
    );
    padding: var(--spacing-xl) 0;
    text-align: center;
    margin-bottom: var(--spacing-xl);
}
.download-app-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--secondary-color);
}
.download-app-hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
}
.download-app-hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}
.download-app-content-section {
    padding: var(--spacing-xl) 0;
}
.download-app-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}
.download-app-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}
.phone-mockup-large {
    max-width: 350px;
    position: relative;
}
.phone-mockup-large img {
    width: 100%;
    height: auto;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.download-app-details {
    padding: var(--spacing-lg);
}
.download-app-details-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--secondary-color);
}
.download-app-details-text {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
}
.download-buttons-large {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    flex-wrap: wrap;
}
.download-btn-large {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md) var(--spacing-lg);
    background-color: var(--surface-color);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition);
    box-shadow: var(--shadow);
    min-width: 220px;
}
.download-btn-large:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}
.download-btn-large-icon {
    font-size: 2.5rem;
}
.download-btn-large-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.download-btn-large-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
}
.download-btn-large-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-color);
}
.app-features {
    margin-bottom: var(--spacing-xl);
}
.features-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
    color: var(--secondary-color);
}
.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.feature-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    background-color: var(--surface-color);
    border-radius: var(--radius-md);
    transition: var(--transition);
}
.feature-item:hover {
    background-color: var(--background-color);
    transform: translateX(-5px);
}
.feature-icon {
    font-size: 1.5rem;
}
.feature-text {
    font-size: 1.1rem;
    color: var(--text-color);
}
.back-to-products {
    margin-top: var(--spacing-xl);
}
@media (max-width: 768px) {
    .download-app-hero-title {
        font-size: 2rem;
    }
    .download-app-hero-subtitle {
        font-size: 1.2rem;
    }
    .download-app-layout {
        grid-template-columns: 1fr;
    }
    .download-app-details-title {
        font-size: 2rem;
    }
    .download-btn-large {
        width: 100%;
        min-width: auto;
    }
    .phone-mockup-large {
        max-width: 250px;
    }
}
.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--border-color);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
.pagination-wrapper {
    margin-top: var(--spacing-xl);
    display: flex;
    justify-content: center;
    padding: var(--spacing-md) 0;
}
.pagination-wrapper nav {
    display: flex !important;
    justify-content: center;
    width: 100%;
}
.pagination-wrapper nav ul {
    display: flex !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}
.pagination,
.pagination-wrapper .pagination {
    display: flex !important;
    list-style: none !important;
    gap: var(--spacing-xs);
    padding: 0 !important;
    margin: 0 !important;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}
.pagination li,
.pagination-wrapper .pagination li {
    display: inline-block !important;
    margin: 0 !important;
    list-style: none !important;
}
.pagination li a,
.pagination li span,
.pagination-wrapper .pagination li a,
.pagination-wrapper .pagination li span {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-xs) var(--spacing-sm) !important;
    border: 2px solid var(--border-color) !important;
    border-radius: var(--radius-sm) !important;
    color: var(--text-color) !important;
    text-decoration: none !important;
    background-color: var(--surface-color) !important;
    transition: var(--transition);
    min-width: 40px;
    min-height: 40px;
    text-align: center;
    font-weight: 500;
    line-height: 1;
}
.pagination li a:hover,
.pagination-wrapper .pagination li a:hover {
    border-color: var(--primary-color) !important;
    background-color: var(--primary-color) !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.pagination li.active a,
.pagination li.active span,
.pagination-wrapper .pagination li.active a,
.pagination-wrapper .pagination li.active span {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: #fff !important;
    font-weight: 600;
    cursor: default;
}
.pagination li.disabled a,
.pagination li.disabled span,
.pagination-wrapper .pagination li.disabled a,
.pagination-wrapper .pagination li.disabled span {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}
.pagination li.disabled a:hover,
.pagination li.disabled span:hover,
.pagination-wrapper .pagination li.disabled a:hover,
.pagination-wrapper .pagination li.disabled span:hover {
    transform: none;
    box-shadow: none;
    background-color: var(--surface-color);
    border-color: var(--border-color);
    color: var(--text-color);
}
[dir="rtl"] .pagination li a,
[dir="rtl"] .pagination li span {
    direction: ltr;
    unicode-bidi: embed;
}
.empty-state {
    text-align: center;
    padding: calc(var(--spacing-xl) * 2) var(--spacing-lg);
    max-width: 600px;
    margin: 0 auto;
}
.empty-icon {
    font-size: 5rem;
    margin-bottom: var(--spacing-lg);
    opacity: 0.5;
    animation: float 3s ease-in-out infinite;
}
@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}
.empty-state h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    color: var(--secondary-color);
}
.empty-state p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: calc(var(--spacing-lg) * 1.5);
    line-height: 1.7;
}
.empty-state .btn {
    padding: 12px 32px;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 30px;
}
.products-section-page .empty-state {
    text-align: center;
    padding: calc(var(--spacing-xl) * 2) var(--spacing-lg);
    max-width: 600px;
    margin: 0 auto;
}
.no-results {
    text-align: center;
    padding: var(--spacing-xl);
    color: var(--text-secondary);
}
.no-results p {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-md);
}
.footer {
    background-color: var(--secondary-color);
    color: #fff;
    padding: var(--spacing-xl) 0 var(--spacing-md);
    margin-top: auto;
}
[data-theme="dark"] .footer {
    background-color: #252525;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}
.footer-section h3,
.footer-section h4 {
    margin-bottom: var(--spacing-md);
    color: var(--accent-color);
}
.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-xs);
}
.footer-section ul {
    list-style: none;
}
.footer-section ul li {
    margin-bottom: var(--spacing-xs);
}
.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}
.footer-section ul li a:hover {
    color: var(--accent-color);
}
.footer-email,
.footer-phone {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}
.footer-icon {
    font-size: 1.1rem;
}
.footer-email-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}
.footer-email-link:hover {
    color: var(--accent-color);
    text-decoration: underline;
}
.footer-social-links {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
    flex-wrap: wrap;
}
.footer-social-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.footer-social-link svg {
    width: 20px;
    height: 20px;
    transition: var(--transition);
}
.footer-social-link:hover {
    transform: translateY(-3px);
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}
.footer-social-facebook:hover {
    background-color: #1877f2;
    border-color: #1877f2;
    color: #fff;
}
.footer-social-twitter:hover {
    background-color: #1da1f2;
    border-color: #1da1f2;
    color: #fff;
}
.footer-social-instagram:hover {
    background: linear-gradient(
        45deg,
        #f09433 0,
        #e6683c 25%,
        #dc2743 50%,
        #cc2366 75%,
        #bc1888 100%
    );
    border-color: transparent;
    color: #fff;
}
.footer-social-whatsapp:hover {
    background-color: #25d366;
    border-color: #25d366;
    color: #fff;
}
.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.6);
}
.footer-copyright {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    flex-wrap: wrap;
}
.footer-copyright-ltr {
    direction: ltr;
    unicode-bidi: embed;
    display: inline-block;
}
.footer-copyright-rtl {
    direction: rtl;
    unicode-bidi: embed;
    display: inline-block;
}
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: auto;
        max-height: calc(100vh - 70px);
        background-color: var(--surface-color);
        box-shadow: var(--shadow-lg);
        padding: var(--spacing-md);
        transition: right 0.3s ease;
        z-index: 999;
        border-radius: 0 0 var(--radius-lg) var(--radius-lg);
        display: block !important;
        overflow-y: auto;
    }
    .nav-menu.mobile-menu-open {
        right: 0 !important;
    }
    .mobile-menu-backdrop {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 998;
        transition: opacity 0.3s ease;
    }
    .nav-menu ul {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-sm);
    }
    .nav-menu a {
        display: block;
        width: 100%;
        padding: var(--spacing-sm);
    }
    .mobile-menu-toggle {
        display: block;
    }
    .hero-title {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .section-title {
        font-size: 1.5rem;
    }
    .page-header h1 {
        font-size: 2rem;
    }
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    .about-hero-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    .about-hero-title {
        font-size: 2.5rem;
    }
    .about-hero-subtitle {
        font-size: 1.1rem;
    }
    .about-hero-image .image-wrapper {
        transform: rotate(0);
    }
    .story-content {
        grid-template-columns: 1fr;
    }
    .story-image-wrapper {
        position: relative;
        top: 0;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .features-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
    .cta-content h2 {
        font-size: 2rem;
    }
    .cta-buttons {
        flex-direction: column;
    }
    .cta-buttons .btn {
        width: 100%;
    }
    .categories-hero-content,
    .products-hero-content {
        flex-direction: column;
        text-align: center;
    }
    .hero-stats {
        justify-content: center;
    }
    .categories-filters,
    .products-filters-section {
        position: relative;
        top: 0;
    }
    .categories-header,
    .products-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-sm);
    }
    .filters-grid,
    .search-container {
        flex-wrap: wrap;
        grid-template-columns: 1fr;
    }
    .search-btn {
        width: 100%;
        margin-top: var(--spacing-xs);
    }
    .filter-group {
        width: 100%;
    }
    .reset-filters-btn {
        width: 100%;
        justify-content: center;
    }
    .categories-grid,
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    .filters-form-horizontal {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    .filter-item {
        min-width: 100%;
        width: 100%;
    }
    .products-filters-row {
        padding: var(--spacing-md);
    }
    .products-layout {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    .products-sidebar {
        position: static;
        order: 1;
    }
    .products-main {
        order: 2;
    }
    .filters-form {
        padding: var(--spacing-md);
    }
    .service-cards {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        padding: 0 var(--spacing-sm);
    }
    .service-card {
        padding: var(--spacing-lg);
    }
    .service-types .section-title {
        font-size: 2rem;
        padding: 0 var(--spacing-sm);
    }
    .service-icon {
        font-size: 3.5rem;
    }
    .service-card h3 {
        font-size: 1.5rem;
    }
    .service-card:hover {
        transform: translateY(-6px);
    }
    .featured-categories-section .section-header,
    .products-header,
    .products-section .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-md);
    }
    .featured-categories-section .section-title,
    .products-header .section-title,
    .products-section .section-title {
        font-size: 2rem;
    }
    .featured-categories-section .section-description,
    .products-section .section-description {
        font-size: 1rem;
    }
    .view-all-btn {
        width: 100%;
        justify-content: center;
    }
    .featured-categories-grid,
    .products-section .products-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    .products-hero .hero-title {
        font-size: 2rem;
    }
    .products-hero .hero-subtitle {
        font-size: 1.05rem;
    }
    .filters-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    .filter-select {
        padding: 10px 16px;
        padding-right: 16px;
        padding-left: 40px;
    }
    .reset-filters-btn {
        width: 100%;
        justify-content: center;
    }
    .cart-item {
        flex-wrap: wrap;
    }
    .item-image {
        width: 80px;
        height: 80px;
    }
    .header-content {
        flex-wrap: wrap;
    }
    .btn-login {
        font-size: 0.9rem;
        padding: var(--spacing-xs) var(--spacing-sm);
    }
    .pagination,
    .pagination-wrapper .pagination {
        gap: 4px;
    }
    .pagination li a,
    .pagination li span,
    .pagination-wrapper .pagination li a,
    .pagination-wrapper .pagination li span {
        min-width: 36px;
        min-height: 36px;
        padding: var(--spacing-xs);
        font-size: 0.9rem;
    }
}
@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
    .hero-title {
        font-size: 1.5rem;
    }
    .hero-buttons {
        flex-direction: column;
    }
    .btn {
        width: 100%;
    }
    .categories-grid,
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: var(--spacing-sm);
    }
    .auth-card {
        padding: var(--spacing-md);
    }
    .featured-categories-grid,
    .products-section .products-grid {
        grid-template-columns: 1fr;
    }
    .featured-categories-section .section-title,
    .products-section .section-title {
        font-size: 1.75rem;
    }
    .featured-categories-section .section-header,
    .products-section .section-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .view-all-btn {
        width: 100%;
        justify-content: center;
    }
}
.home-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: calc(var(--spacing-xl) * 2) 0;
    margin-bottom: 0;
}
.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(
            circle at 20% 50%,
            rgba(241, 92, 34, 0.1) 0,
            transparent 50%
        ),
        radial-gradient(
            circle at 80% 80%,
            rgba(241, 92, 34, 0.08) 0,
            transparent 50%
        );
    opacity: 0.6;
    animation: patternMove 20s ease-in-out infinite;
}
@keyframes patternMove {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-20px, 20px) scale(1.1);
    }
}
.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(241, 92, 34, 0.12) 0,
        rgba(29, 42, 33, 0.08) 50%,
        rgba(241, 92, 34, 0.05) 100%
    );
}
.hero-content-wrapper {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: calc(var(--spacing-xl) * 1.5);
    align-items: center;
    width: 100%;
}
.hero-content {
    animation: fadeInUpHero 1s ease-out;
}
.hero-badge-wrapper {
    margin-bottom: var(--spacing-md);
}
.hero-badge {
    display: inline-block;
    padding: 10px 24px;
    background: linear-gradient(
        135deg,
        var(--primary-color),
        rgba(241, 92, 34, 0.9)
    );
    color: #fff;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(241, 92, 34, 0.3);
    animation: badgePulse 2s ease-in-out infinite;
}
@keyframes badgePulse {
    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 4px 16px rgba(241, 92, 34, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 24px rgba(241, 92, 34, 0.4);
    }
}
.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
    color: var(--secondary-color);
    letter-spacing: -2px;
}
.title-line {
    display: block;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xs);
    animation: slideInRight 0.8s ease-out;
}
.title-highlight {
    display: block;
    background: linear-gradient(
        135deg,
        var(--primary-color),
        rgba(241, 92, 34, 0.8)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    animation: slideInLeft 0.8s ease-out 0.2s backwards;
}
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.hero-subtitle {
    font-size: 1.4rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: calc(var(--spacing-lg) * 1.2);
    max-width: 600px;
    font-weight: 500;
    animation: fadeInUpHero 1s ease-out 0.4s backwards;
}
.hero-features {
    display: flex;
    gap: var(--spacing-lg);
    margin-bottom: calc(var(--spacing-lg) * 1.5);
    flex-wrap: wrap;
    animation: fadeInUpHero 1s ease-out 0.6s backwards;
}
.hero-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-md);
    background: var(--surface-color);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}
.hero-feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(241, 92, 34, 0.15);
}
.feature-icon {
    font-size: 1.8rem;
    margin: 0;
}
.feature-text {
    font-weight: 600;
    color: var(--text-color);
    font-size: 1rem;
}
.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    animation: fadeInUpHero 1s ease-out 0.8s backwards;
}
.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(
        135deg,
        var(--primary-color),
        rgba(241, 92, 34, 0.9)
    );
    color: #fff;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(241, 92, 34, 0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}
.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(241, 92, 34, 0.4);
}
.btn-hero-primary .btn-icon {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}
.btn-hero-primary:hover .btn-icon {
    transform: translateX(5px);
}
.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--surface-color);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.btn-hero-secondary:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(241, 92, 34, 0.3);
}
.hero-image-wrapper {
    position: relative;
    animation: fadeInRightHero 1s ease-out 0.3s backwards;
}
.hero-image-container {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: visible;
}
.hero-image-bg {
    position: absolute;
    inset: -20px;
    background: linear-gradient(
        135deg,
        rgba(241, 92, 34, 0.15),
        rgba(241, 92, 34, 0.05)
    );
    border-radius: var(--radius-xl);
    filter: blur(20px);
    z-index: 0;
    animation: bgPulse 3s ease-in-out infinite;
}
@keyframes bgPulse {
    0%,
    100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}
.hero-image {
    position: relative;
    z-index: 1;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: transform 0.5s ease;
}
.hero-image:hover {
    transform: perspective(1000px) rotateY(0) rotateX(0) scale(1.02);
}
.hero-main-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.hero-image:hover .hero-main-image {
    transform: scale(1.1);
}
.hero-floating-elements {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}
.floating-element {
    position: absolute;
    font-size: 3rem;
    opacity: 0.7;
    animation: floatElement 4s ease-in-out infinite;
}
.element-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}
.element-2 {
    top: 60%;
    right: 15%;
    animation-delay: 1.3s;
}
.element-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 2.6s;
}
@keyframes floatElement {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
        opacity: 1;
    }
}
@keyframes fadeInUpHero {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeInRightHero {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.hero-scroll-indicator {
    position: absolute;
    bottom: var(--spacing-lg);
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
    animation: bounce 2s ease-in-out infinite;
}
.scroll-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 600;
}
.scroll-arrow {
    font-size: 1.5rem;
    color: var(--primary-color);
    animation: arrowBounce 1.5s ease-in-out infinite;
}
@keyframes bounce {
    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}
@keyframes arrowBounce {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(5px);
    }
}
@media (max-width: 768px) {
    .home-hero {
        min-height: auto;
        padding: calc(var(--spacing-xl) * 1.5) 0;
    }
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
        text-align: center;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .title-line {
        font-size: 1.5rem;
    }
    .title-highlight {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
        margin: 0 auto var(--spacing-lg);
    }
    .hero-features {
        justify-content: center;
    }
    .hero-buttons {
        justify-content: center;
    }
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }
    .hero-image-wrapper {
        order: -1;
    }
    .hero-main-image {
        height: 300px;
    }
    .floating-element {
        font-size: 2rem;
    }
    .hero-scroll-indicator {
        bottom: var(--spacing-md);
    }
}
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    .title-line {
        font-size: 1.2rem;
    }
    .title-highlight {
        font-size: 1.5rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .hero-features {
        flex-direction: column;
        align-items: stretch;
    }
    .hero-feature {
        justify-content: center;
    }
    .hero-main-image {
        height: 250px;
    }
}
[data-theme="dark"] .home-hero {
    background: linear-gradient(
        135deg,
        rgba(241, 92, 34, 0.05) 0,
        rgba(29, 42, 33, 0.08) 50%,
        rgba(241, 92, 34, 0.03) 100%
    );
}
[data-theme="dark"] .hero-pattern {
    opacity: 0.3;
    background-image: radial-gradient(
            circle at 20% 50%,
            rgba(241, 92, 34, 0.08) 0,
            transparent 50%
        ),
        radial-gradient(
            circle at 80% 80%,
            rgba(241, 92, 34, 0.05) 0,
            transparent 50%
        );
}
[data-theme="dark"] .hero-gradient {
    background: linear-gradient(
        135deg,
        rgba(241, 92, 34, 0.06) 0,
        rgba(29, 42, 33, 0.1) 50%,
        rgba(241, 92, 34, 0.04) 100%
    );
}
[data-theme="dark"] .hero-image-bg {
    background: linear-gradient(
        135deg,
        rgba(241, 92, 34, 0.1),
        rgba(241, 92, 34, 0.03)
    );
}

.hero-scroll-indicator {
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}
.hero-scroll-indicator:hover .scroll-text {
    color: var(--primary-color);
}
.hero-scroll-indicator:hover .scroll-arrow {
    transform: translateY(8px);
}
.story-image {
    width: 100%;
    height: 100%;
}
.story-image-wrapper {
    display: flex;
    align-items: stretch;
}
.story-image-wrapper img {
    max-height: 800px;
}
@media (max-width: 768px) {
    .story-image-wrapper {
        position: relative;
        top: 0;
        height: 400px;
    }
    .story-image-wrapper img {
        min-height: 400px;
    }
}
.story-image {
    display: flex;
    align-items: stretch;
    width: 100%;
}
.story-image-wrapper {
    background: var(--surface-color);
    display: block;
}

[data-theme="dark"] .value-card {
    background: linear-gradient(
        135deg,
        var(--surface-color) 0,
        rgba(45, 45, 45, 0.95) 100%
    );
}
[data-theme="dark"] .about-values {
    background: var(--background-color);
}
[data-theme="dark"] .contact-info-card {
    background: linear-gradient(
        135deg,
        var(--background-color) 0,
        rgba(40, 40, 40, 0.95) 100%
    ) !important;
}
.contact-hero {
    padding: calc(var(--spacing-xl) * 2) 0;
    background: linear-gradient(
        135deg,
        rgba(241, 92, 34, 0.05) 0,
        rgba(241, 92, 34, 0.02) 100%
    );
    position: relative;
    overflow: hidden;
}
.contact-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--primary-color),
        transparent
    );
    opacity: 0.3;
}
.contact-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: calc(var(--spacing-xl) * 1.5);
    align-items: center;
}
.contact-hero-text {
    animation: fadeInLeft 0.8s ease-out;
}
.contact-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(
        135deg,
        var(--primary-color),
        rgba(241, 92, 34, 0.8)
    );
    color: #fff;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    box-shadow: 0 4px 12px rgba(241, 92, 34, 0.3);
}
.contact-hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: var(--spacing-md);
    color: var(--secondary-color);
    line-height: 1.2;
    letter-spacing: -1px;
}
.contact-hero-title .highlight {
    color: var(--primary-color);
    position: relative;
}
.contact-hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-top: var(--spacing-md);
}
.contact-hero-image {
    animation: fadeInRight 0.8s ease-out;
}
.contact-hero-image .image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transform: rotate(-2deg);
    transition: transform 0.4s ease;
}
.contact-hero-image .image-wrapper:hover {
    transform: rotate(0) scale(1.02);
}
.contact-hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}
.contact-hero-image .image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(241, 92, 34, 0.1), transparent);
    pointer-events: none;
}
.contact-info-section {
    padding: calc(var(--spacing-xl) * 1.5) 0;
    background: var(--surface-color);
    position: relative;
}
.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    max-width: 1200px;
    margin: 0 auto;
}
.contact-info-card {
    background: linear-gradient(
        135deg,
        var(--surface-color) 0,
        rgba(255, 255, 255, 0.95) 100%
    );
    padding: calc(var(--spacing-lg) * 1.2);
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.contact-info-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--primary-color),
        rgba(241, 92, 34, 0.5)
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}
.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(241, 92, 34, 0.15);
    border-color: rgba(241, 92, 34, 0.2);
}
.contact-info-card:hover::before {
    opacity: 1;
}
.contact-card-icon {
    font-size: 4rem;
    margin-bottom: var(--spacing-md);
    display: inline-block;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}
.contact-info-card:hover .contact-card-icon {
    transform: scale(1.15) rotate(5deg);
}
.contact-info-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--secondary-color);
    font-weight: 700;
}
.contact-card-description {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: var(--spacing-md);
}
.contact-card-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    display: inline-block;
}
.contact-card-link:hover {
    color: var(--primary-hover);
    text-decoration: underline;
    transform: translateY(-2px);
}
.contact-form-section {
    padding: calc(var(--spacing-xl) * 2) 0;
    background: var(--background-color);
}
.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--surface-color);
    padding: calc(var(--spacing-lg) * 1.5);
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}
.contact-form .form-group {
    margin-bottom: var(--spacing-md);
}
.contact-form .form-group label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
    color: var(--text-color);
    font-size: 1rem;
}
.contact-form .form-group .required {
    color: var(--primary-color);
    font-weight: 700;
}
.contact-form .form-group input,
.contact-form .form-group textarea {
    width: 100%;
    padding: var(--spacing-sm) var(--spacing-md);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: inherit;
    background-color: var(--background-color);
    color: var(--text-color);
    transition: var(--transition);
}
.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
    outline: 0;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(241, 92, 34, 0.1);
}
.contact-form .form-group textarea {
    resize: vertical;
    min-height: 150px;
}
.contact-form .btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-lg);
    font-size: 1.1rem;
    font-weight: 700;
}
.contact-form .btn-primary svg {
    transition: transform 0.3s ease;
}
.contact-form .btn-primary:hover svg {
    transform: translateX(5px);
}
.contact-info-card .social-links {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    justify-content: center;
    margin-top: var(--spacing-sm);
}
@media (max-width: 768px) {
    .contact-hero-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    .contact-hero-title {
        font-size: 2.5rem;
    }
    .contact-hero-subtitle {
        font-size: 1.1rem;
    }
    .contact-hero-image .image-wrapper {
        transform: rotate(0);
    }
    .contact-cards-grid {
        grid-template-columns: 1fr;
    }
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
}
.download-app-hero {
    padding: calc(var(--spacing-xl) * 2) 0;
    background: linear-gradient(
        135deg,
        rgba(241, 92, 34, 0.05) 0,
        rgba(241, 92, 34, 0.02) 100%
    );
    position: relative;
    overflow: hidden;
}
.download-app-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--primary-color),
        transparent
    );
    opacity: 0.3;
}
.download-app-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: calc(var(--spacing-xl) * 1.5);
    align-items: center;
}
.download-app-hero-text {
    animation: fadeInLeft 0.8s ease-out;
}
.download-app-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(
        135deg,
        var(--primary-color),
        rgba(241, 92, 34, 0.8)
    );
    color: #fff;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    box-shadow: 0 4px 12px rgba(241, 92, 34, 0.3);
}
.download-app-hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: var(--spacing-md);
    color: var(--secondary-color);
    line-height: 1.2;
    letter-spacing: -1px;
}
.download-app-hero-title .highlight {
    color: var(--primary-color);
    position: relative;
}
.download-app-hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-top: var(--spacing-md);
}
.download-app-hero-image {
    animation: fadeInRight 0.8s ease-out;
}
.download-app-hero-image .image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transform: rotate(-2deg);
    transition: transform 0.4s ease;
}
.download-app-hero-image .image-wrapper:hover {
    transform: rotate(0) scale(1.02);
}
.download-app-hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}
.download-app-hero-image .image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(241, 92, 34, 0.1), transparent);
    pointer-events: none;
}
.download-buttons-section {
    padding: calc(var(--spacing-xl) * 1.5) 0;
    background: var(--surface-color);
    position: relative;
}
.download-buttons-wrapper {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
    flex-wrap: wrap;
    max-width: 800px;
    margin: calc(var(--spacing-lg) * 1.5) auto 0;
}
.download-btn-card {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-lg) calc(var(--spacing-lg) * 1.5);
    background: linear-gradient(
        135deg,
        var(--surface-color) 0,
        rgba(255, 255, 255, 0.95) 100%
    );
    border-radius: var(--radius-xl);
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    min-width: 280px;
}
.download-btn-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--primary-color),
        rgba(241, 92, 34, 0.5)
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}
.download-btn-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(241, 92, 34, 0.15);
    border-color: rgba(241, 92, 34, 0.2);
}
.download-btn-card:hover::before {
    opacity: 1;
}
.download-btn-icon-wrapper {
    flex-shrink: 0;
}
.download-btn-icon {
    font-size: 3.5rem;
    display: block;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}
.download-btn-card:hover .download-btn-icon {
    transform: scale(1.15) rotate(5deg);
}
.download-btn-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.download-btn-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}
.download-btn-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    transition: color 0.3s ease;
}
.download-btn-card:hover .download-btn-name {
    color: var(--primary-color);
}
.download-btn-arrow {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}
.download-btn-card:hover .download-btn-arrow {
    color: var(--primary-color);
    transform: translateX(-5px);
}
.android-btn:hover {
    background: linear-gradient(
        135deg,
        rgba(76, 175, 80, 0.05) 0,
        var(--surface-color) 100%
    );
}
.ios-btn:hover {
    background: linear-gradient(
        135deg,
        rgba(0, 122, 255, 0.05) 0,
        var(--surface-color) 100%
    );
}
.app-features-section {
    padding: calc(var(--spacing-xl) * 2) 0;
    background: var(--background-color);
    position: relative;
}
.app-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    max-width: 1200px;
    margin: calc(var(--spacing-lg) * 1.5) auto 0;
}
.app-feature-card {
    background: linear-gradient(
        135deg,
        var(--surface-color) 0,
        rgba(255, 255, 255, 0.95) 100%
    );
    padding: calc(var(--spacing-lg) * 1.2);
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.app-feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--primary-color),
        rgba(241, 92, 34, 0.5)
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}
.app-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(241, 92, 34, 0.15);
    border-color: rgba(241, 92, 34, 0.2);
}
.app-feature-card:hover::before {
    opacity: 1;
}
.app-feature-icon {
    font-size: 4rem;
    margin-bottom: var(--spacing-md);
    display: inline-block;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}
.app-feature-card:hover .app-feature-icon {
    transform: scale(1.15) rotate(5deg);
}
.app-feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--secondary-color);
    font-weight: 700;
    transition: color 0.3s ease;
}
.app-feature-card:hover h3 {
    color: var(--primary-color);
}
.app-feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}
.download-app-cta {
    padding: calc(var(--spacing-xl) * 2) 0;
    background: linear-gradient(
        135deg,
        var(--primary-color) 0,
        rgba(241, 92, 34, 0.9) 100%
    );
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.download-app-cta::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.1) 0,
        transparent 70%
    );
    animation: rotate 20s linear infinite;
}
@keyframes rotate {
    from {
        transform: rotate(0);
    }
    to {
        transform: rotate(360deg);
    }
}
.download-app-cta .cta-content {
    position: relative;
    z-index: 1;
}
.download-app-cta .cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    color: #fff;
}
.download-app-cta .cta-content p {
    font-size: 1.2rem;
    margin-bottom: calc(var(--spacing-lg) * 1.5);
    opacity: 0.95;
}
.download-app-cta .cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}
.download-app-cta .cta-buttons .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 30px;
    transition: all 0.3s ease;
}
.download-app-cta .cta-buttons .btn-primary {
    background: #fff;
    color: var(--primary-color);
    border: 2px solid #fff;
}
.download-app-cta .cta-buttons .btn-primary:hover {
    background: 0 0;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}
.download-app-cta .cta-buttons .btn-secondary {
    background: 0 0;
    color: #fff;
    border: 2px solid #fff;
}
.download-app-cta .cta-buttons .btn-secondary:hover {
    background: #fff;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}
.download-app-cta .cta-buttons .btn svg {
    transition: transform 0.3s ease;
}
.download-app-cta .cta-buttons .btn:hover svg {
    transform: translateX(5px);
}
@media (max-width: 768px) {
    .download-app-hero-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    .download-app-hero-title {
        font-size: 2.5rem;
    }
    .download-app-hero-subtitle {
        font-size: 1.1rem;
    }
    .download-app-hero-image .image-wrapper {
        transform: rotate(0);
    }
    .download-buttons-wrapper {
        flex-direction: column;
        align-items: stretch;
    }
    .download-btn-card {
        min-width: auto;
        width: 100%;
    }
    .app-features-grid {
        grid-template-columns: 1fr;
    }
    .download-app-cta .cta-content h2 {
        font-size: 2rem;
    }
    .download-app-cta .cta-buttons {
        flex-direction: column;
    }
    .download-app-cta .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Privacy Policy Page Styles */
.privacy-hero {
    padding: calc(var(--spacing-xl) * 2) 0;
    background: linear-gradient(
        135deg,
        rgba(241, 92, 34, 0.05) 0,
        rgba(241, 92, 34, 0.02) 100%
    );
    position: relative;
    overflow: hidden;
    text-align: center;
}
.privacy-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--primary-color),
        transparent
    );
    opacity: 0.3;
}
.privacy-hero-content {
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out;
}
.privacy-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(
        135deg,
        var(--primary-color),
        rgba(241, 92, 34, 0.8)
    );
    color: #fff;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    box-shadow: 0 4px 12px rgba(241, 92, 34, 0.3);
}
.privacy-hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: var(--spacing-md);
    color: var(--secondary-color);
    line-height: 1.2;
    letter-spacing: -1px;
}
.privacy-hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
}
.privacy-updated {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
}
.privacy-content {
    padding: calc(var(--spacing-xl) * 2) 0;
    background: var(--background-color);
}
.privacy-wrapper {
    max-width: 900px;
    margin: 0 auto;
}
.privacy-section {
    margin-bottom: calc(var(--spacing-xl) * 1.5);
    background: var(--surface-color);
    padding: calc(var(--spacing-lg) * 1.5);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: box-shadow var(--transition);
}
.privacy-section:hover {
    box-shadow: var(--shadow-lg);
}
.privacy-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 3px solid var(--primary-color);
    display: inline-block;
}
.privacy-section-content {
    color: var(--text-color);
    line-height: 1.8;
}
.privacy-section-content p {
    margin-bottom: var(--spacing-md);
    color: var(--text-secondary);
}
.privacy-section-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
}
.privacy-section-content ul {
    margin: var(--spacing-md) 0;
    padding-right: var(--spacing-lg);
    list-style-type: disc;
}
.privacy-section-content li {
    margin-bottom: var(--spacing-sm);
    color: var(--text-secondary);
    line-height: 1.8;
}
.privacy-section-content li strong {
    color: var(--text-color);
    font-weight: 600;
}
.privacy-section-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition);
}
.privacy-section-content a:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}
.contact-info {
    background: var(--background-color);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    margin-top: var(--spacing-md);
}
.contact-info p {
    margin-bottom: var(--spacing-sm);
}
.privacy-cta {
    padding: calc(var(--spacing-xl) * 2) 0;
    background: linear-gradient(
        135deg,
        var(--primary-color) 0,
        rgba(241, 92, 34, 0.9) 100%
    );
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.privacy-cta::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.1) 0,
        transparent 70%
    );
    animation: rotate 20s linear infinite;
}
.privacy-cta .cta-content {
    position: relative;
    z-index: 1;
}
.privacy-cta .cta-content h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: var(--spacing-md);
    color: #fff;
}
.privacy-cta .cta-content p {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-lg);
    opacity: 0.95;
}
.privacy-cta .btn-primary {
    background: #fff;
    color: var(--primary-color);
    padding: var(--spacing-sm) calc(var(--spacing-lg) * 1.5);
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.privacy-cta .btn-primary:hover {
    background: var(--accent-color);
    color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Dark theme for privacy page */
[data-theme="dark"] .privacy-section {
    background: linear-gradient(
        135deg,
        var(--surface-color) 0,
        rgba(45, 45, 45, 0.95) 100%
    );
}
[data-theme="dark"] .contact-info {
    background: var(--surface-color);
}

/* Responsive styles for privacy page */
@media (max-width: 768px) {
    .privacy-hero-title {
        font-size: 2.5rem;
    }
    .privacy-hero-subtitle {
        font-size: 1.1rem;
    }
    .privacy-section {
        padding: var(--spacing-md);
    }
    .privacy-section-title {
        font-size: 1.5rem;
    }
    .privacy-section-content h3 {
        font-size: 1.1rem;
    }
    .privacy-cta .cta-content h2 {
        font-size: 2rem;
    }
    .privacy-section-content ul {
        padding-right: var(--spacing-md);
    }
}
