
        :root {
            --primary: #111827;
            --secondary: #f97316;
            --secondary-dark: #ea580c;
            --background: #f8fafc;
            --border: #e5e7eb;
            --muted: #6b7280;
            --success: #16a34a;
            --danger: #dc2626;
        }

        * {
            box-sizing: border-box;
        }

        body {
            margin: 0;
            font-family: Arial, Helvetica, sans-serif;
            background: var(--background);
            color: #1f2937;
        }

        a {
            text-decoration: none;
        }

        /* =========================
           TOP BAR
        ========================= */

        .top-bar {
            background: var(--primary);
            color: #fff;
            text-align: center;
            padding: 9px 15px;
            font-size: 13px;
        }

        /* =========================
           HEADER
        ========================= */

        .main-header {
            background: #fff;
            border-bottom: 1px solid var(--border);
        }

        .navbar {
            padding: 18px 0;
        }

        .logo {
            font-size: 28px;
            font-weight: 800;
            color: var(--primary);
        }

        .logo span {
            color: var(--secondary);
        }

        .search-box {
            position: relative;
            max-width: 550px;
            margin: auto;
        }

        .search-box input {
            width: 100%;
            height: 45px;
            padding: 0 50px 0 16px;
            border: 1px solid #d1d5db;
            border-radius: 6px;
            outline: none;
        }

        .search-box input:focus {
            border-color: var(--secondary);
        }

        .search-box button {
            position: absolute;
            top: 0;
            right: 0;
            width: 48px;
            height: 45px;
            border: none;
            border-radius: 0 6px 6px 0;
            background: var(--secondary);
            color: #fff;
        }

        .header-icon {
            position: relative;
            color: var(--primary);
            font-size: 22px;
        }

        .header-icon:hover {
            color: var(--secondary);
        }

        .cart-count {
            position: absolute;
            top: -9px;
            right: -9px;
            width: 20px;
            height: 20px;
            background: var(--secondary);
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 11px;
            font-weight: 700;
        }

        /* =========================
           NAVIGATION
        ========================= */

        .category-nav {
            background: #fff;
            border-bottom: 1px solid var(--border);
        }

        .category-nav a {
            display: inline-block;
            padding: 13px 18px;
            color: #374151;
            font-size: 14px;
            font-weight: 600;
        }

        .category-nav a:hover,
        .category-nav a.active {
            color: var(--secondary);
        }

        /* =========================
           REGISTER SECTION
        ========================= */

        .register-section {
            padding: 60px 15px 80px;
        }

        .register-wrapper {
            max-width: 620px;
            margin: auto;
        }

        .register-card {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 38px;
            box-shadow: 0 15px 45px rgba(0, 0, 0, .05);
        }

        .register-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 20px;
            border-radius: 50%;
            background: #fff7ed;
            color: var(--secondary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
        }

        .register-title {
            text-align: center;
            color: var(--primary);
            font-size: 30px;
            font-weight: 800;
            margin-bottom: 8px;
        }

        .register-subtitle {
            text-align: center;
            color: var(--muted);
            font-size: 14px;
            margin-bottom: 30px;
        }

        /* =========================
           ALERT
        ========================= */

        .register-alert {
            display: none;
            padding: 12px 14px;
            margin-bottom: 20px;
            border-radius: 7px;
            font-size: 13px;
            line-height: 1.5;
        }

        .register-alert.error {
            display: block;
            color: #991b1b;
            background: #fef2f2;
            border: 1px solid #fecaca;
        }

        .register-alert.success {
            display: block;
            color: #166534;
            background: #f0fdf4;
            border: 1px solid #bbf7d0;
        }

        /* =========================
           FORM
        ========================= */

        .form-group {
            margin-bottom: 18px;
        }

        .form-label {
            display: block;
            margin-bottom: 7px;
            color: #374151;
            font-size: 13px;
            font-weight: 700;
        }

        .input-wrapper {
            position: relative;
        }

        .input-icon {
            position: absolute;
            left: 14px;
            top: 50%;
            transform: translateY(-50%);
            color: #9ca3af;
            font-size: 17px;
            z-index: 2;
        }

        .form-control-custom,
        .form-select-custom {
            width: 100%;
            height: 49px;
            border: 1px solid #d1d5db;
            border-radius: 7px;
            outline: none;
            padding: 0 14px 0 45px;
            background: #fff;
            font-size: 14px;
            color: #1f2937;
        }

        .form-control-custom:focus,
        .form-select-custom:focus {
            border-color: var(--secondary);
            box-shadow: 0 0 0 3px rgba(249, 115, 22, .10);
        }

        .password-toggle {
            position: absolute;
            right: 0;
            top: 0;
            width: 45px;
            height: 49px;
            border: none;
            background: transparent;
            color: #9ca3af;
            font-size: 17px;
        }

        .password-toggle:hover {
            color: var(--primary);
        }

        /* =========================
           TWO COLUMNS
        ========================= */

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }

        /* =========================
           PASSWORD STRENGTH
        ========================= */

        .password-strength {
            margin-top: 8px;
        }

        .strength-bar {
            height: 5px;
            background: #e5e7eb;
            border-radius: 10px;
            overflow: hidden;
        }

        .strength-progress {
            height: 100%;
            width: 0;
            border-radius: 10px;
            transition: .25s;
        }

        .strength-text {
            margin-top: 5px;
            font-size: 11px;
            color: var(--muted);
        }

        /* =========================
           TERMS
        ========================= */

        .terms {
            display: flex;
            align-items: flex-start;
            gap: 9px;
            margin: 20px 0;
            font-size: 13px;
            color: #4b5563;
            line-height: 1.5;
        }

        .terms input {
            width: 17px;
            height: 17px;
            margin-top: 1px;
            accent-color: var(--secondary);
            flex-shrink: 0;
        }

        .terms a {
            color: var(--secondary);
            font-weight: 700;
        }

        .terms a:hover {
            text-decoration: underline;
        }

        /* =========================
           REGISTER BUTTON
        ========================= */

        .register-btn {
            width: 100%;
            min-height: 50px;
            border: none;
            border-radius: 7px;
            background: var(--secondary);
            color: #fff;
            font-size: 15px;
            font-weight: 800;
            transition: .2s;
        }

        .register-btn:hover {
            background: var(--secondary-dark);
        }

        .register-btn:disabled {
            opacity: .7;
            cursor: not-allowed;
        }

        /* =========================
           LOGIN LINK
        ========================= */

        .login-text {
            text-align: center;
            margin-top: 25px;
            color: var(--muted);
            font-size: 13px;
        }

        .login-text a {
            color: var(--secondary);
            font-weight: 800;
        }

        .login-text a:hover {
            text-decoration: underline;
        }

        /* =========================
           BENEFITS
        ========================= */

        .account-benefits {
            margin-top: 25px;
            padding: 18px;
            background: #f9fafb;
            border: 1px solid var(--border);
            border-radius: 8px;
        }

        .benefit-title {
            font-size: 13px;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 12px;
        }

        .benefit {
            display: flex;
            align-items: center;
            gap: 9px;
            color: #4b5563;
            font-size: 12px;
            margin-bottom: 9px;
        }

        .benefit:last-child {
            margin-bottom: 0;
        }

        .benefit i {
            color: var(--success);
            font-size: 15px;
        }

        /* =========================
           FOOTER
        ========================= */

        footer {
            background: var(--primary);
            color: #9ca3af;
            padding: 35px 0;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
        }

        footer a {
            color: #d1d5db;
        }

        footer a:hover {
            color: #fff;
        }

        /* =========================
           MOBILE
        ========================= */

        @media (max-width: 768px) {

            .navbar {
                padding: 15px 0;
            }

            .logo {
                font-size: 24px;
            }

            .search-box {
                margin-top: 5px;
            }

            .category-nav {
                overflow-x: auto;
                white-space: nowrap;
            }

            .category-nav a {
                padding: 12px 14px;
            }

            .register-section {
                padding: 40px 15px 60px;
            }

            .register-card {
                padding: 28px 20px;
            }

            .register-title {
                font-size: 27px;
            }

            .form-row {
                grid-template-columns: 1fr;
                gap: 0;
            }

            .footer-content {
                flex-direction: column;
                text-align: center;
            }

        }

        @media (max-width: 400px) {

            .register-card {
                padding: 25px 17px;
            }

        }

  