/* ملف CSS الرئيسي - Main Style File */
/* تصميم نعومي - Naomi Theme */
/* المتغيرات الافتراضية: resources/views/ready-designs/naomi/snippets/theme-variables.blade.php */

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

body {
    font-family: 'Cairo', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    direction: rtl;
}

.container {
    max-width: var(--naomi-container-max-width, 1440px);
    width: 100%;
    margin: 0 auto;
    padding: 0 clamp(16px, 2vw, 28px);
}

/* Sections Styles */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 2rem;
    text-align: center;
}

/* ========== Featured Products Section ========== */
.featured-products-section {
    padding: 4rem 0;
    background: var(--naomi-section-featured-products-bg);
}

.featured-products-section .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--naomi-body-text);
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.featured-products-section .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--naomi-gradient-primary);
    border-radius: 2px;
}

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

.product-card {
    background: var(--naomi-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: rgba(0, 0, 0, 0.1);
}

.product-image {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
    background: var(--naomi-surface-subtle);
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

/* فقط فوق صورة البطاقة — لا يطبّق على صفحة المنتج (.product-page) التي تستخدم نفس الاسم */
.product-card .product-image .product-actions {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
}

.product-card .product-image .product-actions button {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--naomi-text-strong);
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.product-card .product-image .product-actions button:hover {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(0, 0, 0, 0.15);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.product-card .product-image .product-actions .btn-wishlist.active {
    background: var(--primary-color);
    color: var(--naomi-btn-on-primary-text);
    border-color: var(--primary-color);
}

.product-card .product-image .product-actions .btn-wishlist.active:hover {
    background: var(--naomi-primary-dark);
    border-color: var(--naomi-primary-dark);
}

.product-info {
    padding: 1rem 1.25rem 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0.75rem;
}

.product-name {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--naomi-text-strong);
    margin: 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.85rem;
}

.product-name a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-name a:hover {
    color: var(--primary-color);
}

/* Product Price Styles - Salla Style */
.product-price {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin: 0.75rem 0;
}

.product-price h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--naomi-text-strong);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    line-height: 1.2;
}

.product-price h4 i {
    font-size: 1.1rem;
    font-style: normal;
    font-weight: 600;
    color: var(--naomi-text-muted);
}

.product-price .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--naomi-text-strong);
    display: flex;
    align-items: center;
    gap: 0.25rem;
    line-height: 1.2;
}

.product-price .price i {
    font-size: 1.1rem;
    font-style: normal;
    font-weight: 600;
    color: var(--naomi-text-muted);
}

.product-price .price-old {
    font-size: 0.875rem;
    text-decoration: line-through;
    color: var(--naomi-text-soft);
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    line-height: 1.2;
}

.product-price .price-old i {
    font-size: 0.8rem;
    font-style: normal;
}

.product-price .price-new {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--naomi-text-strong);
    display: flex;
    align-items: center;
    gap: 0.25rem;
    line-height: 1.2;
}

.product-price .price-new i {
    font-size: 1.1rem;
    font-style: normal;
    font-weight: 600;
    color: var(--naomi-text-muted);
}

.discount-badge {
    display: none; /* إخفاء badge الخصم حسب تصميم Salla */
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0.25rem 0;
}

.stars {
    color: var(--naomi-star-rating);
    font-size: 0.9rem;
    display: flex;
    gap: 2px;
}

.rating-count {
    font-size: 0.85rem;
    color: var(--naomi-text-muted);
    font-weight: 500;
}

/* Add to Cart Button - Salla Style */
.product-info .btn,
.product-info .add-to-cart {
    width: 100%;
    padding: 0.75rem 1rem;
    background: transparent;
    border: 1.5px solid var(--primary-color);
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: auto;
    text-decoration: none;
}

.product-info .btn:hover,
.product-info .add-to-cart:hover {
    background: var(--primary-color);
    color: var(--naomi-btn-on-primary-text);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px var(--naomi-primary-glow);
}

.product-info .btn i,
.product-info .add-to-cart i {
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--naomi-btn-on-primary-text);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background: var(--naomi-primary-dark);
    border-color: var(--naomi-primary-dark);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.category-card {
    background: var(--naomi-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 1.5rem;
}

.category-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-item {
    background: var(--naomi-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.testimonial-item img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 1rem;
}

/* ========== Header Styles ========== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--naomi-header-main-bg, var(--naomi-white));
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

/* Header Top Bar */
.header-top {
    background: var(--naomi-gradient-header-top-bar);
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--naomi-header-top-border);
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.header-top-left,
.header-top-right {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.header-info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--naomi-accent-ink);
    font-weight: 500;
}

.header-info-item i {
    font-size: 0.9rem;
    opacity: 0.8;
}

.header-social {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.social-link {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--naomi-accent-ink);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.social-link:hover {
    background: var(--naomi-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Header Main */
.header-main {
    padding: 1.25rem 0;
    background: var(--naomi-header-main-bg, var(--naomi-white));
}

.header-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    align-items: center;
}

/* Logo */
.header-logo {
    flex-shrink: 0;
}

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

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

.logo-icon {
    width: 55px;
    height: 55px;
    background: var(--naomi-gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--naomi-btn-on-primary-text);
    font-size: 1.5rem;
    box-shadow: 0 4px 16px rgba(var(--naomi-primary-rgb), 0.3);
    transition: all 0.3s ease;
}

.logo-link:hover .logo-icon {
    transform: rotate(-5deg) scale(1.1);
    box-shadow: 0 6px 20px var(--naomi-primary-glow-strong);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-color);
    line-height: 1.2;
}

.logo-tagline {
    font-size: 0.75rem;
    color: var(--naomi-text-muted);
    font-weight: 500;
}

/* Search Bar */
.header-search {
    position: relative;
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
}

.search-form {
    position: relative;
}

.search-wrapper {
    display: flex;
    background: var(--naomi-surface-muted);
    border-radius: 50px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.search-wrapper:focus-within {
    border-color: var(--primary-color);
    background: var(--naomi-white);
    box-shadow: 0 4px 20px rgba(var(--naomi-primary-rgb), 0.15);
}

.search-category {
    padding: 0.875rem 1.25rem;
    border: none;
    background: var(--naomi-gradient-nav-bar);
    color: var(--naomi-accent-ink);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    outline: none;
    border-radius: 50px 0 0 50px;
    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='%23831843' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 1rem center;
    padding-left: 2.5rem;
    padding-right: 1.25rem;
}

.search-input {
    flex: 1;
    padding: 0.875rem 1.5rem;
    border: none;
    background: transparent;
    outline: none;
    font-size: 0.95rem;
    color: var(--text-color);
    font-family: 'Cairo', sans-serif;
}

.search-input::placeholder {
    color: var(--naomi-text-soft);
}

.search-btn {
    padding: 0.875rem 1.75rem;
    background: var(--naomi-gradient-primary);
    border: none;
    color: var(--naomi-btn-on-primary-text);
    border-radius: 0 50px 50px 0;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.search-btn:hover {
    background: var(--naomi-gradient-primary-hover);
    transform: scale(1.05);
}

.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--naomi-white);
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.16);
    margin-top: 0.5rem;
    max-height: 400px;
    overflow-y: auto;
    display: none;
    z-index: 1000;
}

.search-suggestions.active {
    display: block;
    animation: fadeInUp 0.3s ease;
}

.suggestion-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.2s ease;
    border-bottom: 1px solid var(--naomi-border-light);
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-item:hover {
    background: var(--naomi-surface-muted);
    color: var(--primary-color);
}

.suggestion-item i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.suggestion-item div {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.suggestion-item strong {
    font-size: 0.95rem;
    font-weight: 600;
}

.suggestion-item span {
    font-size: 0.8rem;
    color: var(--naomi-text-muted);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-action-item {
    position: relative;
}

.action-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    text-decoration: none;
    color: var(--text-color);
    padding: 0.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    min-width: 70px;
}

.action-link:hover {
    background: var(--naomi-surface-muted);
    color: var(--primary-color);
}

.action-icon {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--naomi-surface-muted);
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.action-link:hover .action-icon {
    background: var(--naomi-gradient-nav-bar);
    color: var(--primary-color);
    transform: scale(1.1);
}

.action-badge {
    position: absolute;
    top: -5px;
    left: -5px;
    background: var(--naomi-gradient-primary);
    color: var(--naomi-btn-on-primary-text);
    font-size: 0.7rem;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px var(--naomi-primary-glow-strong);
    animation: pulse 2s infinite;
}

.action-text {
    font-size: 0.75rem;
    font-weight: 600;
}

.cart-total {
    font-size: 0.7rem;
    color: var(--naomi-text-muted);
    margin-top: 0.25rem;
}

/* Dropdowns */
.action-dropdown,
.cart-dropdown {
    position: absolute;
    top: calc(100% + 1rem);
    left: 0;
    background: var(--naomi-white);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.16);
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    border: 1px solid var(--naomi-border);
}

.account-action:hover .account-dropdown,
.cart-action:hover .cart-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.2s ease;
    border-bottom: 1px solid var(--naomi-border-light);
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background: var(--naomi-surface-muted);
    color: var(--primary-color);
    padding-right: 1.75rem;
}

.dropdown-item i {
    width: 20px;
    color: var(--primary-color);
}

.dropdown-divider {
    height: 1px;
    background: var(--naomi-border);
    margin: 0.5rem 0;
}

/* Cart Dropdown */
.cart-dropdown {
    right: 0;
    left: auto;
    min-width: 350px;
}

.cart-dropdown-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--naomi-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-dropdown-header h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-color);
}

.cart-items-count {
    font-size: 0.85rem;
    color: var(--naomi-text-muted);
}

.cart-dropdown-body {
    max-height: 300px;
    overflow-y: auto;
    padding: 1rem;
}

.cart-empty {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--naomi-text-soft);
}

.cart-empty i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.cart-dropdown-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--naomi-border);
    background: var(--naomi-surface-muted);
    border-radius: 0 0 20px 20px;
}

.cart-total-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.cart-total-price strong {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.btn-cart-checkout {
    width: 100%;
    padding: 1rem;
    background: var(--naomi-gradient-primary);
    color: var(--naomi-btn-on-primary-text);
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    text-align: center;
}

.btn-cart-checkout:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--naomi-primary-glow-strong);
}

/* Navigation Menu */
.header-nav {
    background: var(--naomi-gradient-nav-bar);
    border-top: 1px solid var(--naomi-header-top-border);
}

.main-menu {
    padding: 0;
}

.menu-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.5rem;
}

.menu-item {
    position: relative;
}

.menu-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    text-decoration: none;
    color: var(--naomi-accent-ink);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
}

.menu-link i {
    font-size: 1rem;
}

.menu-link::before {
    content: '';
    position: absolute;
    bottom: 0.5rem;
    right: 1.5rem;
    left: 1.5rem;
    height: 2px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.menu-link:hover,
.menu-link.active {
    background: rgba(255, 255, 255, 0.3);
    color: var(--primary-color);
}

.menu-link:hover::before,
.menu-link.active::before {
    transform: scaleX(1);
}

.menu-arrow {
    font-size: 0.7rem;
    margin-right: auto;
    transition: transform 0.3s ease;
}

.menu-item:hover .menu-arrow {
    transform: rotate(180deg);
}

/* Sub Menu */
.sub-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: var(--naomi-white);
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.16);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    padding: 0.5rem 0;
    border: 1px solid var(--naomi-border);
    list-style: none;
}

.menu-item:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sub-menu li a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    color: var(--text-color);
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.sub-menu li a i {
    font-size: 0.5rem;
    color: var(--primary-color);
}

.sub-menu li a:hover {
    background: var(--naomi-surface-muted);
    color: var(--primary-color);
    padding-right: 1.75rem;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    width: 40px;
    height: 40px;
    justify-content: center;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: var(--naomi-white);
    z-index: 9999;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -4px 0 30px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--naomi-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--naomi-gradient-nav-bar);
}

.mobile-menu-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--naomi-accent-ink);
}

.mobile-menu-close {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    border-radius: 50%;
    color: var(--naomi-accent-ink);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: var(--naomi-white);
    transform: rotate(90deg);
}

.mobile-menu-body {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 0;
}

.mobile-menu-nav .menu-list {
    flex-direction: column;
    gap: 0;
}

.mobile-menu-nav .menu-link {
    border-radius: 0;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--naomi-border-light);
}

.mobile-menu-nav .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: var(--naomi-surface-muted);
    margin: 0.5rem 0;
    border-radius: 0;
}

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

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

/* Animations */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

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

/* Responsive Header */
@media (max-width: 992px) {
    .header-content {
        grid-template-columns: auto 1fr auto;
        gap: 1rem;
    }
    
    .header-search {
        max-width: 100%;
    }
    
    .header-top-content {
        justify-content: center;
        text-align: center;
    }
    
    .header-top-left,
    .header-top-right {
        justify-content: center;
    }
    
    .action-text,
    .cart-total {
        display: none;
    }
}

@media (max-width: 768px) {
    .header-top {
        display: none;
    }
    
    .header-content {
        grid-template-columns: auto 1fr auto;
    }
    
    .logo-text {
        display: none;
    }
    
    .logo-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .header-search {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-nav {
        display: none;
    }
    
    .action-link {
        min-width: 50px;
    }
    
    .action-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    /* Products Responsive */
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 1rem;
    }
    
    .featured-products-section {
        padding: 2rem 0;
    }
    
    .featured-products-section .section-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .product-card {
        border-radius: 12px;
    }
    
    .product-image {
        padding-top: 100%;
    }
    
    .product-card .product-image .product-actions {
        top: 8px;
        right: 8px;
        gap: 6px;
    }
    
    .product-card .product-image .product-actions button {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
    
    .product-info {
        padding: 1rem;
        gap: 0.5rem;
    }
    
    .product-name {
        font-size: 0.9rem;
        min-height: 2.5rem;
    }
    
    .product-price h4,
    .product-price .price-new {
        font-size: 1.25rem;
    }
    
    .product-price .price-old {
        font-size: 0.85rem;
    }
    
    .product-info .btn,
    .product-info .add-to-cart {
        padding: 0.75rem 0.875rem;
        font-size: 0.85rem;
    }
    
    .discount-badge {
        font-size: 0.7rem;
        padding: 3px 8px;
    }
}

@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1.25rem;
    }
    
    .featured-products-section {
        padding: 3rem 0;
    }
    
    .featured-products-section .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
}
