
        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-black: #0a0a0a;
            --secondary-black: #1a1a1a;
            --tertiary-black: #2a2a2a;
            --pure-white: #ffffff;
            --off-white: #fafafa;
            --light-gray: #f0f0f0;
            --mid-gray: #888888;
            --dark-gray: #333333;
            --accent-gold: #d4af37;
            --accent-silver: #c0c0c0;
            --accent-red: #dc2626;
            --accent-green: #16a34a;
            --accent-blue: #2563eb;
            --accent-purple: #7c3aed;
            --accent-orange: #ea580c;
            --shadow-light: rgba(0, 0, 0, 0.05);
            --shadow-medium: rgba(0, 0, 0, 0.1);
            --shadow-dark: rgba(0, 0, 0, 0.2);
            --shadow-intense: rgba(0, 0, 0, 0.4);
            --border-light: rgba(255, 255, 255, 0.1);
            --border-medium: rgba(255, 255, 255, 0.2);
        }

        /* Light Mode Variables */
        :root[data-theme="light"] {
            --primary-black: #ffffff;
            --secondary-black: #f8f9fa;
            --tertiary-black: #e9ecef;
            --pure-white: #000000;
            --off-white: #212529;
            --light-gray: #343a40;
            --mid-gray: #6c757d;
            --dark-gray: #495057;
            --shadow-light: rgba(0, 0, 0, 0.08);
            --shadow-medium: rgba(0, 0, 0, 0.15);
            --shadow-dark: rgba(0, 0, 0, 0.25);
            --shadow-intense: rgba(0, 0, 0, 0.35);
            --border-light: rgba(0, 0, 0, 0.1);
            --border-medium: rgba(0, 0, 0, 0.2);
        }

        body {
            font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-black) 100%);
            min-height: 100vh;
            color: var(--pure-white);
            font-weight: 400;
            line-height: 1.6;
            transition: all 0.3s ease;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Header Styles */
        header {
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border-light);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 32px var(--shadow-dark);
            transition: all 0.3s ease;
        }

        :root[data-theme="light"] header {
            background: rgba(255, 255, 255, 0.95);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 0;
        }

         .logo {
            font-size: 1.875rem;
            font-weight: 700;
            color: var(--pure-white);
            letter-spacing: -0.025em;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .logo::before {
            content: "";
            width: 32px;
            height: 32px;
            background: url("./images/sora.png") no-repeat center center;
            background-size: cover; /* لتعبئة المربع بالصورة */
            border-radius: 4px;
            display: block;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2.5rem;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--pure-white);
            font-weight: 500;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            padding: 0.75rem 1.5rem;
            border-radius: 6px;
            position: relative;
            font-size: 0.9rem;
            letter-spacing: 0.025em;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--accent-gold);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }

        .nav-links a:hover {
            color: var(--accent-gold);
            background: rgba(255, 255, 255, 0.05);
        }

        /* Menu Button */
        .menu-toggle-btn {
            background: var(--accent-gold);
            color: var(--primary-black);
            border: none;
            width: 45px;
            height: 45px;
            border-radius: 8px;
            cursor: pointer;
            font-size: 1.2rem;
            font-weight: 600;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            order: -1;
        }

        .menu-toggle-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 6px 24px rgba(212, 175, 55, 0.5);
        }

        .menu-toggle-btn.active {
            background: var(--accent-red);
            color: var(--pure-white);
            transform: rotate(90deg);
        }

        /* Theme Toggle Button */
        .theme-toggle-btn {
            background: var(--tertiary-black);
            color: var(--pure-white);
            border: 1px solid var(--border-light);
            width: 45px;
            height: 45px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.2rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: 1rem;
        }

        .theme-toggle-btn:hover {
            background: var(--accent-gold);
            color: var(--primary-black);
            transform: scale(1.05);
        }

        /* Menu Sidebar */
        .menu-sidebar {
            position: fixed;
            top: 0;
            right: -400px;
            width: 400px;
            height: 100vh;
            background: var(--secondary-black);
            border-left: 1px solid var(--border-medium);
            z-index: 2000;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: -4px 0 32px var(--shadow-dark);
            overflow-y: auto;
        }

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

        .menu-sidebar-header {
            padding: 2rem;
            border-bottom: 1px solid var(--border-light);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .menu-sidebar-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--pure-white);
        }

        .menu-close-btn {
            background: var(--accent-red);
            color: var(--pure-white);
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .menu-close-btn:hover {
            transform: scale(1.1);
        }

        .menu-sidebar-content {
            padding: 2rem;
        }

        /* Search Section in Menu */
        .menu-search-section {
            margin-bottom: 2rem;
        }

        .menu-search-section h3 {
            color: var(--pure-white);
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .menu-search-box {
            position: relative;
        }

        .menu-search-input {
            width: 100%;
            padding: 0.875rem 3rem 0.875rem 1rem;
            background: var(--tertiary-black);
            border: 1px solid var(--border-medium);
            border-radius: 8px;
            color: var(--pure-white);
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .menu-search-input:focus {
            outline: none;
            border-color: var(--accent-gold);
            box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
        }

        .menu-search-input::placeholder {
            color: var(--mid-gray);
        }

        .menu-search-icon {
            position: absolute;
            right: 1rem;
            top: 50%;
            transform: translateY(-50%);
            color: var(--mid-gray);
            font-size: 1rem;
            pointer-events: none;
        }

        .menu-clear-search {
            position: absolute;
            right: 2.5rem;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: var(--mid-gray);
            cursor: pointer;
            font-size: 1.2rem;
            display: none;
            transition: color 0.3s ease;
        }

        .menu-clear-search:hover {
            color: var(--accent-red);
        }

        .menu-clear-search.show {
            display: block;
        }

        /* Categories Section in Menu */
        .menu-categories-section {
            margin-bottom: 2rem;
        }

        .menu-categories-section h3 {
            color: var(--pure-white);
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .menu-category-item {
            display: flex;
            align-items: center;
            padding: 1rem;
            margin-bottom: 0.5rem;
            background: var(--tertiary-black);
            border: 1px solid var(--border-light);
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            font-weight: 500;
        }

        .menu-category-item:hover {
            background: var(--accent-gold);
            color: var(--primary-black);
            transform: translateX(-4px);
        }

        .menu-category-item.active {
            background: var(--accent-gold);
            color: var(--primary-black);
        }

        .menu-category-icon {
            margin-left: 1rem;
            font-size: 1.2rem;
        }

        /* Cart Section in Menu */
        .menu-cart-section {
            padding-top: 2rem;
            border-top: 1px solid var(--border-light);
        }

        .menu-cart-btn {
            width: 100%;
            background: var(--accent-gold);
            color: var(--primary-black);
            border: none;
            padding: 1rem;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .menu-cart-btn:hover {
            background: #b8941f;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
        }

        .menu-cart-count {
            background: var(--accent-red);
            color: var(--pure-white);
            border-radius: 50%;
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            font-weight: 700;
        }

        /* Menu Overlay */
        .menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1500;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

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

        /* Main Content Sections */
        .page-section {
            display: none;
            padding: 3rem 0;
        }

        .page-section.active {
            display: block;
        }

        /* Products Section */
        #products-section {
            display: block;
        }

        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-title {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, var(--pure-white), var(--accent-gold));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.02em;
        }

        .section-subtitle {
            font-size: 1.125rem;
            color: var(--mid-gray);
            font-weight: 400;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }

        .product-card {
            background: var(--secondary-black);
            border: 1px solid var(--border-light);
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }

        .product-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, transparent, rgba(212, 175, 55, 0.1));
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
            z-index: 1;
        }

        .product-card:hover {
            transform: translateY(-8px);
            border-color: var(--accent-gold);
            box-shadow: 0 20px 40px var(--shadow-intense);
        }

        .product-card:hover::before {
            opacity: 1;
        }

        .product-image {
            width: 100%;
            height: 280px;
            object-fit: cover;
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

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

        .product-info {
            padding: 1.75rem;
            position: relative;
            z-index: 2;
        }

        .product-title {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
            color: var(--pure-white);
            letter-spacing: -0.025em;
        }

        .product-description {
            color: var(--mid-gray);
            margin-bottom: 1.25rem;
            line-height: 1.6;
            font-size: 0.9rem;
        }

        .product-price {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--accent-gold);
            margin-bottom: 1.25rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .product-price::before {
            content: 'درهم';
            font-size: 0.875rem;
            font-weight: 400;
            color: var(--mid-gray);
        }

        /* Enhanced Color Selection */
        .color-selection {
            margin-bottom: 1.25rem;
            display: none;
        }

        .color-selection.show {
            display: block;
        }

        .color-label {
            display: block;
            margin-bottom: 0.75rem;
            font-weight: 600;
            color: var(--pure-white);
            font-size: 0.9rem;
        }

        .color-options {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
            margin-bottom: 1rem;
        }

        .color-option {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            border: 3px solid transparent;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        }

        .color-option:hover {
            transform: scale(1.1);
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
        }

        .color-option.selected {
            border-color: var(--accent-gold);
            transform: scale(1.15);
            box-shadow: 0 0 0 2px var(--accent-gold), 0 4px 16px rgba(212, 175, 55, 0.4);
        }

        .color-option::after {
            content: '✓';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            font-weight: bold;
            font-size: 0.8rem;
            opacity: 0;
            text-shadow: 0 0 4px rgba(0, 0, 0, 0.8);
            transition: opacity 0.3s ease;
        }

        .color-option.selected::after {
            opacity: 1;
        }

        /* Size Selection */
        .size-selection {
            margin-bottom: 1.25rem;
            display: none;
        }

        .size-selection.show {
            display: block;
        }

        .size-label {
            display: block;
            margin-bottom: 0.75rem;
            font-weight: 600;
            color: var(--pure-white);
            font-size: 0.9rem;
        }

        .size-options {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
        }

        .size-btn {
            background: var(--tertiary-black);
            border: 1px solid var(--border-medium);
            color: var(--pure-white);
            padding: 0.5rem 1rem;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 500;
            font-size: 0.875rem;
            transition: all 0.3s ease;
            min-width: 40px;
            text-align: center;
        }

        .size-btn:hover {
            border-color: var(--accent-gold);
            color: var(--accent-gold);
            transform: translateY(-2px);
        }

        .size-btn.selected {
            background: var(--accent-gold);
            color: var(--primary-black);
            border-color: var(--accent-gold);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
        }

        .size-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            transform: none;
        }

        /* Selection Summary */
        .selection-summary {
            background: var(--tertiary-black);
            border: 1px solid var(--border-light);
            border-radius: 8px;
            padding: 1rem;
            margin-bottom: 1rem;
            display: none;
        }

        .selection-summary.show {
            display: block;
        }

        .selection-summary h4 {
            color: var(--accent-gold);
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .selection-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 0.25rem;
            font-size: 0.875rem;
        }

        .selection-label {
            color: var(--mid-gray);
        }

        .selection-value {
            color: var(--pure-white);
            font-weight: 500;
        }

        .add-to-cart-btn {
            width: 100%;
            background: var(--pure-white);
            color: var(--primary-black);
            border: none;
            padding: 1rem;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            position: relative;
            overflow: hidden;
        }

        :root[data-theme="light"] .add-to-cart-btn {
            background: var(--primary-black);
            color: var(--pure-white);
        }

        .add-to-cart-btn::before {
            content: '+';
            font-size: 1.25rem;
            font-weight: 700;
        }

        .add-to-cart-btn:hover {
            background: var(--accent-gold);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px var(--shadow-dark);
        }

        :root[data-theme="light"] .add-to-cart-btn:hover {
            background: var(--accent-gold);
            color: var(--primary-black);
        }

        .add-to-cart-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }

        /* Product Options Modal */
        .product-options-modal {
            display: none;
            position: fixed;
            z-index: 3000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(8px);
        }

        .product-options-content {
            background: var(--secondary-black);
            border: 1px solid var(--border-medium);
            margin: 2% auto;
            padding: 2.5rem;
            border-radius: 12px;
            width: 90%;
            max-width: 600px;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            box-shadow: 0 24px 48px var(--shadow-intense);
        }

        .options-close {
            position: absolute;
            right: 1rem;
            top: 1rem;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: none;
            background: var(--tertiary-black);
            color: var(--mid-gray);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            transition: all 0.3s ease;
        }

        .options-close:hover {
            background: var(--accent-red);
            color: var(--pure-white);
        }

        .options-header {
            margin-bottom: 2rem;
        }

        .options-product-title {
            color: var(--pure-white);
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .options-product-price {
            color: var(--accent-gold);
            font-size: 1.25rem;
            font-weight: 600;
        }

        .options-section {
            margin-bottom: 2rem;
        }

        .options-section h3 {
            color: var(--pure-white);
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .options-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
            gap: 1rem;
        }

        .option-card {
            background: var(--tertiary-black);
            border: 2px solid var(--border-light);
            border-radius: 8px;
            padding: 1rem;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
        }

        .option-card:hover {
            border-color: var(--accent-gold);
            transform: translateY(-2px);
        }

        .option-card.selected {
            border-color: var(--accent-gold);
            background: rgba(212, 175, 55, 0.1);
        }

        .option-card.unavailable {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .option-card.unavailable::after {
            content: 'غير متوفر';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(220, 38, 38, 0.8);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            font-weight: 600;
            border-radius: 6px;
        }

        .option-name {
            color: var(--pure-white);
            font-weight: 500;
            font-size: 0.9rem;
        }

        .option-extra-price {
            color: var(--accent-gold);
            font-size: 0.8rem;
            margin-top: 0.25rem;
        }

        .quantity-section {
            margin-bottom: 2rem;
        }

        .quantity-controls-enhanced {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            margin-top: 1rem;
        }

        .quantity-btn-enhanced {
            background: var(--accent-gold);
            color: var(--primary-black);
            border: none;
            width: 44px;
            height: 44px;
            border-radius: 8px;
            cursor: pointer;
            font-size: 1.2rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .quantity-btn-enhanced:hover {
            background: #b8941f;
            transform: scale(1.05);
        }

        .quantity-display-enhanced {
            background: var(--tertiary-black);
            border: 1px solid var(--border-medium);
            border-radius: 8px;
            padding: 0.75rem 1.5rem;
            font-weight: 600;
            color: var(--pure-white);
            min-width: 80px;
            text-align: center;
            font-size: 1.1rem;
        }

        .total-price-section {
            background: var(--tertiary-black);
            border: 2px solid var(--accent-gold);
            border-radius: 12px;
            padding: 1.5rem;
            margin-bottom: 2rem;
            text-align: center;
        }

        .total-price-label {
            color: var(--mid-gray);
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
        }

        .total-price-amount {
            color: var(--accent-gold);
            font-size: 2rem;
            font-weight: 700;
        }

        .confirm-order-btn {
            width: 100%;
            background: var(--accent-gold);
            color: var(--primary-black);
            border: none;
            padding: 1.25rem;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .confirm-order-btn:hover {
            background: #b8941f;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
        }

        .confirm-order-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }

        /* No Results Message */
        .no-results {
            text-align: center;
            padding: 4rem 2rem;
            color: var(--mid-gray);
            display: none;
        }

        .no-results.show {
            display: block;
        }

        .no-results-icon {
            font-size: 4rem;
            margin-bottom: 1rem;
            opacity: 0.5;
        }

        .no-results h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            color: var(--pure-white);
        }

        .no-results p {
            font-size: 1rem;
        }

        /* Content Sections */
        .content-section {
            background: var(--secondary-black);
            border: 1px solid var(--border-light);
            border-radius: 12px;
            padding: 3rem;
            margin: 2rem 0;
            position: relative;
            overflow: hidden;
        }

        .content-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(to bottom, var(--accent-gold), var(--accent-silver));
        }

        .content-section h2 {
            color: var(--pure-white);
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 2rem;
            text-align: center;
            letter-spacing: -0.025em;
        }

        .about-text {
            font-size: 1.125rem;
            line-height: 1.8;
            color: var(--mid-gray);
            margin-bottom: 2.5rem;
        }

        .about-text p {
            margin-bottom: 1.5rem;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }

        .feature-card {
            background: var(--tertiary-black);
            border: 1px solid var(--border-light);
            padding: 2.5rem;
            border-radius: 12px;
            text-align: center;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }

        .feature-card:hover {
            transform: translateY(-4px);
            border-color: var(--accent-gold);
            box-shadow: 0 16px 32px var(--shadow-dark);
        }

        .feature-icon {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 1.5rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .feature-card:nth-child(1) .feature-icon {
            background: linear-gradient(135deg, var(--accent-green), #22c55e);
            color: var(--pure-white);
        }

        .feature-card:nth-child(2) .feature-icon {
            background: linear-gradient(135deg, var(--accent-gold), #fbbf24);
            color: var(--primary-black);
        }

        .feature-card:nth-child(3) .feature-icon {
            background: linear-gradient(135deg, var(--accent-silver), #e5e7eb);
            color: var(--primary-black);
        }

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

        .feature-title {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--pure-white);
        }

        .feature-description {
            color: var(--mid-gray);
            line-height: 1.6;
            font-size: 0.95rem;
        }

        /* Contact Section */
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 3rem;
            margin-top: 3rem;
        }

        .contact-info {
            background: var(--tertiary-black);
            border: 1px solid var(--border-light);
            padding: 2.5rem;
            border-radius: 12px;
        }

        .contact-info h3 {
            margin-bottom: 2rem;
            color: var(--pure-white);
            font-size: 1.5rem;
            font-weight: 600;
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 2rem;
            padding: 1.5rem;
            background: var(--secondary-black);
            border: 1px solid var(--border-light);
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .contact-item:hover {
            border-color: var(--accent-gold);
            transform: translateX(-4px);
        }

        .contact-icon {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: 1rem;
            font-size: 1.25rem;
            font-weight: 600;
        }

        .contact-item:nth-child(1) .contact-icon {
            background: linear-gradient(135deg, var(--accent-gold), #fbbf24);
            color: var(--primary-black);
        }

        .contact-item:nth-child(2) .contact-icon {
            background: linear-gradient(135deg, var(--accent-green), #22c55e);
            color: var(--pure-white);
        }

        .contact-item:nth-child(3) .contact-icon {
            background: linear-gradient(135deg, var(--accent-silver), #e5e7eb);
            color: var(--primary-black);
        }

        .contact-details h4 {
            color: var(--pure-white);
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .contact-details p {
            color: var(--mid-gray);
            font-size: 0.9rem;
        }

        .contact-form {
            background: var(--tertiary-black);
            border: 1px solid var(--border-light);
            padding: 2.5rem;
            border-radius: 12px;
        }

        .contact-form h3 {
            margin-bottom: 2rem;
            color: var(--pure-white);
            font-size: 1.5rem;
            font-weight: 600;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--pure-white);
            font-size: 0.9rem;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            border: 1px solid var(--border-medium);
            border-radius: 6px;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            background: var(--secondary-black);
            color: var(--pure-white);
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: var(--mid-gray);
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--accent-gold);
            box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
        }

        .submit-btn {
            width: 100%;
            background: var(--accent-gold);
            color: var(--primary-black);
            border: none;
            padding: 1rem;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .submit-btn:hover {
            background: #b8941f;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
        }

        /* Cart Modal */
        .modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(8px);
        }

        .modal-content {
            background: var(--secondary-black);
            border: 1px solid var(--border-medium);
            margin: 2% auto;
            padding: 2.5rem;
            border-radius: 12px;
            width: 90%;
            max-width: 650px;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            box-shadow: 0 24px 48px var(--shadow-intense);
        }

        .close {
            position: absolute;
            right: 1rem;
            top: 1rem;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: none;
            background: var(--tertiary-black);
            color: var(--mid-gray);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            transition: all 0.3s ease;
        }

        .close:hover {
            background: var(--accent-red);
            color: var(--pure-white);
        }

        .modal-content h2 {
            color: var(--pure-white);
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 2rem;
            text-align: center;
        }

        .cart-item {
            display: flex;
            align-items: center;
            padding: 1.5rem 0;
            border-bottom: 1px solid var(--border-light);
            transition: all 0.3s ease;
        }

        .cart-item:hover {
            background: var(--tertiary-black);
            margin: 0 -1rem;
            padding-left: 1rem;
            padding-right: 1rem;
            border-radius: 8px;
        }

        .cart-item img {
            width: 80px;
            height: 80px;
            object-fit: cover;
            border-radius: 8px;
            margin-left: 1rem;
        }

        .item-details {
            flex-grow: 1;
        }

        .item-name {
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--pure-white);
        }

        .item-options {
            font-size: 0.875rem;
            color: var(--accent-gold);
            margin-bottom: 0.25rem;
        }

        .item-price {
            color: var(--accent-gold);
            font-weight: 700;
            font-size: 1.1rem;
        }

        .quantity-controls {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin: 1rem 0;
        }

        .quantity-btn {
            background: var(--accent-gold);
            color: var(--primary-black);
            border: none;
            width: 36px;
            height: 36px;
            border-radius: 6px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .quantity-btn:hover {
            background: #b8941f;
            transform: scale(1.1);
        }

        .quantity-display {
            font-weight: 600;
            color: var(--pure-white);
            min-width: 60px;
            text-align: center;
        }

        .remove-btn {
            background: var(--accent-red);
            color: var(--pure-white);
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 6px;
            cursor: pointer;
            font-size: 0.875rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .remove-btn:hover {
            background: #b91c1c;
            transform: translateY(-1px);
        }

        .cart-total {
            text-align: center;
            margin: 2rem 0;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--pure-white);
            padding: 1.5rem;
            background: var(--tertiary-black);
            border: 1px solid var(--border-medium);
            border-radius: 8px;
            border-left: 4px solid var(--accent-gold);
        }

        .checkout-btn {
            width: 100%;
            background: var(--accent-gold);
            color: var(--primary-black);
            border: none;
            padding: 1rem;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            font-size: 1.1rem;
            margin-top: 1rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .checkout-btn:hover {
            background: #b8941f;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
        }

        .order-form {
            display: none;
            margin-top: 2rem;
            padding: 2rem;
            background: var(--tertiary-black);
            border: 1px solid var(--border-medium);
            border-radius: 12px;
        }

        .order-form h3 {
            margin-bottom: 2rem;
            color: var(--pure-white);
            font-size: 1.5rem;
            font-weight: 600;
        }

        .success-message {
            display: none;
            text-align: center;
            padding: 3rem 2rem;
        }

        .success-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: var(--accent-green);
            color: var(--pure-white);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: 600;
            margin: 0 auto 1.5rem;
        }

        .success-message h3 {
            color: var(--pure-white);
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .success-message p {
            color: var(--mid-gray);
        }

        /* Loading Animation */
        .loading {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 2px solid var(--border-medium);
            border-top: 2px solid var(--accent-gold);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Mobile Navigation */
        .mobile-nav {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(20px);
            border-top: 1px solid var(--border-medium);
            z-index: 1000;
        }

        :root[data-theme="light"] .mobile-nav {
            background: rgba(255, 255, 255, 0.95);
        }

        .mobile-nav-items {
            display: flex;
            justify-content: space-around;
            align-items: center;
            padding: 1rem 0;
            max-width: 400px;
            margin: 0 auto;
        }

        .mobile-nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            color: var(--mid-gray);
            font-size: 0.75rem;
            font-weight: 600;
            transition: all 0.3s ease;
            padding: 0.75rem;
            border-radius: 8px;
            min-width: 70px;
            position: relative;
        }

        .mobile-nav-item.active,
        .mobile-nav-item:hover {
            color: var(--accent-gold);
            background: rgba(212, 175, 55, 0.1);
        }

        .mobile-nav-icon {
            width: 32px;
            height: 32px;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 0.25rem;
            font-size: 1rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .container {
                padding: 0 20px;
            }

            .section-title {
                font-size: 2.5rem;
            }

            .products-grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                gap: 1.5rem;
            }

            .features-grid,
            .contact-grid {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
                gap: 2rem;
            }

            .menu-sidebar {
                width: 350px;
                right: -350px;
            }
        }

        @media (max-width: 768px) {
            body {
                padding-bottom: 90px;
            }

            .container {
                padding: 0 16px;
            }

            /* Header Mobile */
            .nav-links {
                display: none;
            }
            
            nav {
                padding: 1rem 0;
            }
            
            .logo {
                font-size: 1.5rem;
            }

            /* Menu Sidebar Mobile */
            .menu-sidebar {
                width: 300px;
                right: -300px;
            }

            .menu-sidebar-content {
                padding: 1.5rem;
            }

            /* Sections Mobile */
            .page-section {
                padding: 2rem 0;
            }

            .section-title {
                font-size: 2rem;
            }

            .section-subtitle {
                font-size: 1rem;
            }
            
            /* Products Grid Mobile */
            .products-grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                gap: 1.25rem;
                margin: 2rem 0;
            }

            .product-card {
                border-radius: 10px;
            }

            .product-image {
                height: 240px;
            }

            .product-info {
                padding: 1.5rem;
            }

            .product-title {
                font-size: 1.125rem;
                line-height: 1.4;
            }

            .product-description {
                font-size: 0.875rem;
            }

            .product-price {
                font-size: 1.25rem;
            }

            .size-options {
                gap: 0.375rem;
            }

            .size-btn {
                padding: 0.375rem 0.75rem;
                font-size: 0.8rem;
                min-width: 35px;
            }

            .add-to-cart-btn {
                padding: 0.875rem;
                font-size: 0.875rem;
            }
            
            /* Modal Mobile */
            .modal-content {
                margin: 5% auto;
                padding: 1.5rem;
                width: 95%;
                max-width: none;
                border-radius: 10px;
            }

            .modal-content h2 {
                font-size: 1.5rem;
                margin-bottom: 1.5rem;
            }
            
            .cart-item {
                flex-direction: column;
                text-align: center;
                padding: 1.5rem;
                gap: 1rem;
            }
            
            .cart-item img {
                width: 100px;
                height: 100px;
                margin: 0;
            }

            .item-details {
                order: 2;
            }

            .item-name {
                font-size: 1.125rem;
            }

            .item-price {
                font-size: 1.25rem;
            }

            .quantity-controls {
                justify-content: center;
                margin: 1.25rem 0;
            }

            .remove-btn {
                order: 3;
                margin: 0;
                padding: 0.75rem 1.5rem;
            }

            .cart-total {
                font-size: 1.375rem;
                padding: 1.25rem;
                margin: 1.5rem 0;
            }

            /* Content Sections Mobile */
            .content-section {
                padding: 2rem 1.5rem;
                margin: 1.5rem 0;
            }

            .content-section h2 {
                font-size: 2rem;
            }

            .about-text {
                font-size: 1rem;
            }

            .features-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .feature-card {
                padding: 2rem;
            }

            .feature-icon {
                width: 56px;
                height: 56px;
                font-size: 1.25rem;
            }

            .feature-title {
                font-size: 1.125rem;
            }

            /* Contact Section Mobile */
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .contact-info,
            .contact-form {
                padding: 2rem;
            }

            .contact-item {
                flex-direction: row;
                text-align: right;
                padding: 1.25rem;
            }

            .contact-icon {
                width: 44px;
                height: 44px;
                font-size: 1.125rem;
                margin-left: 1rem;
            }

            .form-group input,
            .form-group textarea {
                padding: 0.875rem;
                font-size: 0.9rem;
            }

            /* Order Form Mobile */
            .order-form {
                padding: 1.5rem;
            }

            .order-form h3 {
                font-size: 1.375rem;
                margin-bottom: 1.5rem;
            }

            .form-group {
                margin-bottom: 1.25rem;
            }

            /* Mobile Navigation */
            .mobile-nav {
                display: block;
            }

            /* No Results Mobile */
            .no-results {
                padding: 3rem 1.5rem;
            }

            .no-results-icon {
                font-size: 3rem;
            }

            .no-results h3 {
                font-size: 1.25rem;
            }

            .no-results p {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 480px) {
            .logo {
                font-size: 1.25rem;
            }

            .products-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 1rem;
            }

            .product-image {
                height: 200px;
            }

            .product-info {
                padding: 1.25rem;
            }

            .product-title {
                font-size: 1rem;
            }

            .product-price {
                font-size: 1.125rem;
            }

            .content-section {
                padding: 1.5rem 1rem;
            }

            .content-section h2 {
                font-size: 1.75rem;
            }

            .modal-content {
                width: 98%;
                margin: 2% auto;
                padding: 1rem;
            }

            .cart-total {
                font-size: 1.25rem;
            }

            .mobile-nav-item {
                font-size: 0.7rem;
                min-width: 60px;
                padding: 0.5rem;
            }

            .mobile-nav-icon {
                width: 28px;
                height: 28px;
                font-size: 0.875rem;
            }

            .menu-sidebar {
                width: 280px;
                right: -280px;
            }
        }

        /* Landscape Mobile */
        @media (max-width: 768px) and (orientation: landscape) {
            body {
                padding-bottom: 70px;
            }

            .mobile-nav-items {
                padding: 0.75rem 0;
            }

            .mobile-nav-item {
                padding: 0.5rem;
            }

            .products-grid {
                grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            }

            .modal-content {
                max-height: 85vh;
            }
        }

        /* Touch Improvements */
        @media (pointer: coarse) {
            .menu-category-item,
            .add-to-cart-btn,
            .quantity-btn,
            .remove-btn,
            .checkout-btn,
            .submit-btn,
            .mobile-nav-item,
            .size-btn,
            .menu-toggle-btn,
            .theme-toggle-btn {
                min-height: 44px;
                touch-action: manipulation;
            }

            .quantity-btn {
                width: 44px;
                height: 44px;
            }
        }

        /* High contrast mode support */
        @media (prefers-contrast: high) {
            :root {
                --primary-black: #000000;
                --secondary-black: #1a1a1a;
                --tertiary-black: #333333;
                --pure-white: #ffffff;
                --accent-gold: #ffdd00;
                --border-light: rgba(255, 255, 255, 0.3);
                --border-medium: rgba(255, 255, 255, 0.5);
            }
        }

        /* Reduced motion support */
        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
                scroll-behavior: auto !important;
            }
        }

        /* Print styles */
        @media print {
            .mobile-nav,
            .menu-sidebar,
            .menu-overlay,
            .modal,
            .menu-toggle-btn,
            .theme-toggle-btn,
            .add-to-cart-btn,
            .size-selection {
                display: none !important;
            }

            body {
                background: white !important;
                color: black !important;
            }

            .content-section {
                background: white !important;
                border: 1px solid black !important;
                page-break-inside: avoid;
            }
        }

        /* Additional 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); }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(100%);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .product-card {
            animation: fadeInUp 0.6s ease-out forwards;
            opacity: 0;
        }

        .cart-item {
            animation: fadeInUp 0.4s ease-out forwards;
            opacity: 0;
        }

        .menu-sidebar.active {
            animation: slideInRight 0.4s ease-out;
        }

        .modal, .product-options-modal {
            transition: opacity 0.3s ease;
            opacity: 0;
        }

        .modal.show, .product-options-modal.show {
            opacity: 1;
        }

        /* Theme transition */
        * {
            transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
        }
