:root {
    --bg-main: #181a1c;
    --bg-secondary: #222528;
    --bg-card: rgba(34, 37, 40, 0.7);
    --text-primary: #f0f0f0;
    --text-secondary: #a0a5aa;
    --accent-primary: #cba068;
    --accent-hover: #b48a52;
    --accent-teal: #e0b675;
    --accent-red: #e63946;
    --border-color: rgba(203, 160, 104, 0.2);
    --glass-bg: rgba(34, 37, 40, 0.6);
    --glass-border: rgba(203, 160, 104, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Cinzel', serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-sm {
    max-width: 800px;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h2 span {
    color: var(--accent-primary);
    background: linear-gradient(135deg, #e0b675, #b48a52);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Base Components Output */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    gap: 0.5rem;
    transition: all 0.2s;
    border: none;
}

.btn:active {
    transform: scale(0.97);
}

.btn-primary {
    background: linear-gradient(135deg, #cba068 0%, #a67b43 100%);
    color: #111;
    box-shadow: 0 4px 14px 0 rgba(203, 160, 104, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(203, 160, 104, 0.5);
    background: linear-gradient(135deg, #e0b675 0%, #cba068 100%);
    transform: translateY(-2px);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(24, 26, 28, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.6rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.logo span {
    font-weight: 500;
    color: var(--text-secondary);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-secondary);
}

.nav-links a:hover {
    color: var(--accent-primary);
}

.cart-icon {
    position: relative;
    cursor: pointer;
    font-size: 1.25rem;
    color: var(--text-secondary);
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.cart-icon:hover {
    color: var(--accent-primary);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--accent-red);
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
    font-family: 'Inter', sans-serif;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--text-primary);
    padding: 0.5rem;
}

/* Sidebar Cart */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    max-width: 100vw;
    height: 100%;
    background: var(--bg-secondary);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 1px solid var(--border-color);
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h2 {
    font-size: 1.5rem;
    margin: 0;
}

.close-cart {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: 0.3s;
}

.close-cart:hover {
    color: var(--accent-red);
    transform: rotate(90deg);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

.empty-cart-msg {
    text-align: center;
    color: var(--text-secondary);
    margin-top: 2rem;
}

.cart-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cart-item-img {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
}

.cart-item-title {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
    font-family: 'Inter', sans-serif;
}

.cart-item-variant {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.cart-item-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.5rem;
}

.qty-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-main);
    border-radius: 6px;
    padding: 0.25rem;
    border: 1px solid var(--border-color);
}

.qty-btn {
    background: transparent;
    border: none;
    color: var(--text-primary);
    width: 24px;
    height: 24px;
    cursor: pointer;
    border-radius: 4px;
}

.qty-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.item-qty {
    font-size: 0.9rem;
    font-weight: 600;
    min-width: 20px;
    text-align: center;
}

.remove-btn {
    background: transparent;
    border: none;
    color: var(--accent-red);
    cursor: pointer;
    font-size: 0.9rem;
}

.cart-footer {
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid var(--border-color);
}

.cart-summary {
    margin-bottom: 1rem;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.promo-msg {
    font-size: 0.8rem;
    color: #e0b675;
    background: rgba(203, 160, 104, 0.1);
    padding: 0.5rem;
    border-radius: 6px;
    text-align: center;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: 'Cinzel', serif;
}

.checkout-btn {
    width: 100%;
    font-size: 1rem;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background-image: url('assets/hero_farm.png');
    background-size: cover;
    background-position: center;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(24, 26, 28, 0.95) 0%, rgba(24, 26, 28, 0.8) 50%, rgba(24, 26, 28, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
}

.hero h1 span {
    display: block;
    color: var(--accent-teal);
    background: linear-gradient(135deg, #e0b675, #cba068);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

/* Product Details */
.section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: var(--accent-primary);
}

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--accent-primary);
    color: #111;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-badge.premium {
    background: #3b82f6;
    color: white;
}

.product-badge.ultimate {
    background: #8b5cf6;
    color: white;
}

.product-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.product-card:hover .product-img img {
    transform: scale(1.05);
}

.product-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-info h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
}

.product-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    flex: 1;
}

.variant-select,
.qty-input {
    width: 100%;
    padding: 0.75rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--glass-border);
    color: white;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    outline: none;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: 0.3s;
}

.variant-select:focus,
.qty-input:focus {
    border-color: var(--accent-primary);
}

.variant-select option {
    background: var(--bg-secondary);
}

.product-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-action .price {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    font-family: 'Outfit', sans-serif;
}

/* Grid System */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* About Section */
.about-section {
    background: var(--bg-main);
    overflow: hidden;
}

.about-img {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border: 1px solid var(--border-color);
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.5s;
}

.about-img:hover img {
    transform: scale(1.05);
}

.about-text h2 {
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Info Section */
.info-section {
    background: var(--bg-secondary);
}

.info-card {
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 3rem 0;
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--accent-primary);
    margin-bottom: 1rem;
}

.feature-item h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.terms-box {
    background: rgba(0, 0, 0, 0.2);
    border: 1px dashed var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    text-align: left;
    margin-top: 2rem;
}

.terms-box ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    color: var(--text-secondary);
}

.terms-box li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.terms-box li i {
    color: var(--accent-teal);
    margin-top: 0.25rem;
}

/* Footer */
footer {
    background: #0c0d0f;
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    justify-content: flex-end;
}

.footer-links p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-align: right;
}

.copyright {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.85rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.8s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translate(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--bg-main);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: left 0.3s ease;
        gap: 3rem;
        font-size: 1.5rem;
    }

    .nav-links.active {
        left: 0;
    }

    .navbar.scrolled .nav-links {
        top: 70px;
        height: calc(100vh - 70px);
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .info-card {
        padding: 2rem 1.5rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links a,
    .footer-links p {
        justify-content: center;
        text-align: center;
    }
}

/* Modals */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%);
    width: 600px;
    max-width: 95vw;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    z-index: 2001;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.modal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%);
}

.modal-sm {
    width: 450px;
}

.modal-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    font-size: 1.5rem;
    margin: 0;
}

.close-modal {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: 0.3s;
}

.close-modal:hover {
    color: var(--accent-red);
    transform: rotate(90deg);
}

.modal-body {
    padding: 2rem;
}

/* Forms */
.checkout-form .form-row,
#update-profile-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.req {
    color: var(--accent-red);
}

.checkout-form input,
.checkout-form textarea,
.track-form input,
#update-profile-form input,
#update-profile-form textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.checkout-form input:focus,
.checkout-form textarea:focus,
.track-form input:focus,
#update-profile-form input:focus,
#update-profile-form textarea:focus {
    border-color: var(--accent-primary);
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 0 4px rgba(203, 160, 104, 0.1), inset 0 2px 4px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

.checkout-form input[readonly],
#update-profile-form input[readonly] {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    cursor: not-allowed;
    opacity: 0.8;
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    background: rgba(203, 160, 104, 0.05);
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
}

.pay-opt {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: 0.2s;
}

.pay-opt:hover {
    background: rgba(255, 255, 255, 0.05);
}

.pay-opt input {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-primary);
}

.order-summary-box {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.25rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    border: 1px dashed var(--glass-border);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.checkout-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border-color);
    margin-top: 1rem;
}

.modal-price {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--accent-primary);
    font-family: 'Cinzel', serif;
}

.submit-order-btn {
    width: 100%;
    font-size: 1.1rem;
    padding: 1rem;
}

/* Success Modal */
.success-icon {
    font-size: 4rem;
    color: #10b981;
    margin-bottom: 1.5rem;
    animation: scaleIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

.order-number-badge {
    background: linear-gradient(135deg, #cba068 0%, #a67b43 100%);
    color: #111;
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1.1rem;
    margin: 1.5rem 0;
    font-family: monospace;
    letter-spacing: 1px;
}

.success-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--accent-primary);
    color: var(--accent-primary);
}

.btn-outline:hover {
    background: rgba(203, 160, 104, 0.1);
}

/* Track Order Result */
.track-result-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 1.5rem;
    margin-top: 1.5rem;
    border: 1px solid var(--glass-border);
}

.track-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.status-badge {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-pending {
    background: #f59e0b;
    color: #111;
}

.status-confirmed {
    background: #3b82f6;
    color: white;
}

.status-processing {
    background: #8b5cf6;
    color: white;
}

.status-shipped {
    background: #f97316;
    color: white;
}

.status-delivered {
    background: #10b981;
    color: white;
}

.status-cancelled {
    background: #ef4444;
    color: white;
}

.track-detail-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
}

.track-detail-item span:last-child {
    color: white;
    font-weight: 500;
}

.text-center {
    text-align: center;
}

@media (max-width: 992px) {
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background: var(--bg-secondary);
        flex-direction: column;
        padding: 5rem 2rem;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1001;
        border-right: 1px solid var(--border-color);
        align-items: flex-start;
    }

    .nav-links a {
        font-size: 1.25rem;
        width: 100%;
        padding: 1.25rem 0;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        color: var(--text-primary) !important;
    }

    .nav-links.active {
        left: 0;
        box-shadow: 0 0 50px rgba(0,0,0,0.8);
    }

    /* Mobile User Menu Immersive Style */
    #user-menu {
        width: 100%;
        padding: 0 !important;
    }

    .user-dropdown {
        position: relative !important;
        top: 0 !important;
        right: 0 !important;
        width: 100% !important;
        background: rgba(0,0,0,0.2) !important;
        border: none !important;
        box-shadow: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        display: none; /* Toggle via class */
        margin-top: 0.5rem;
        padding-left: 1.5rem !important;
    }

    #user-menu.open .user-dropdown {
        display: block;
    }

    #user-menu.open .nav-user-name i {
        transform: rotate(180deg);
    }

    .nav-user-name {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 1rem 0;
        font-size: 1.25rem;
    }

    .user-dropdown a {
        padding: 0.75rem 0 !important;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .hamburger {
        display: block;
    }

    .hero h1 {
        font-size: 2.75rem;
    }
}

@media (max-width: 600px) {
    .checkout-form .form-row {
        grid-template-columns: 1fr;
    }
    .about-img {
        max-height: 300px;
    }
}

/* User Menu & Dropdown */
#user-menu {
    position: relative;
    padding: 0.5rem 0;
}

#user-menu:hover .user-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 200px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 0.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s;
}

.user-dropdown a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary) !important;
}

.user-dropdown a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--accent-primary) !important;
}

/* Password Eye Toggle */
.pass-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.pass-wrapper input {
    padding-right: 45px !important;
}

.eye-toggle {
    position: absolute;
    right: 15px;
    cursor: pointer;
    color: var(--text-secondary);
    transition: 0.3s;
    z-index: 5;
    padding: 5px;
}

.eye-toggle:hover {
    color: var(--accent-primary);
}

/* Chat Widget */
.chat-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #cba068 0%, #a67b43 100%);
    color: #111;
    padding: 0.85rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(203, 160, 104, 0.4);
    z-index: 1500;
    transition: 0.3s;
}

.chat-toggle:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(203, 160, 104, 0.6);
}

.chat-widget {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 350px;
    max-width: 90vw;
    height: 500px;
    background: var(--bg-secondary);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    z-index: 1500;
    display: none;
    flex-direction: column;
    overflow: hidden;
    animation: chatSlide 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes chatSlide {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chat-widget.active {
    display: flex;
}

.chat-header {
    padding: 1.25rem 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header h4 span {
    color: var(--accent-primary);
}

.chat-messages {
    flex: 1;
    padding: 1.25rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.msg {
    max-width: 85%;
    padding: 0.85rem 1.15rem;
    border-radius: 16px;
    font-size: 0.9rem;
    line-height: 1.4;
}

.bot-msg,
.admin-msg {
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border-bottom-left-radius: 2px;
}

.user-msg {
    align-self: flex-end;
    background: var(--accent-primary);
    color: #111;
    border-bottom-right-radius: 2px;
    font-weight: 500;
}

.chat-input-area {
    padding: 1rem 1.25rem;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 0.75rem;
}

.chat-input-area input {
    flex: 1;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--glass-border);
    padding: 0.85rem;
    border-radius: 10px;
    color: white;
    outline: none;
}

.chat-input-area button {
    background: var(--accent-primary);
    color: #111;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
}

/* User Order List Items */
.order-card-web {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.25rem;
}

.order-card-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.order-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.w-100 {
    width: 100%;
}

.mt-2 {
    margin-top: 0.75rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.text-secondary {
    color: var(--text-secondary);
}

/* Chat Notification Badge */

.chat-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #ff4757;
    color: white;
    font-size: 11px;
    font-weight: 800;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 3px solid #1a1a1a;
    box-shadow: 0 4px 10px rgba(255, 71, 87, 0.4);
    animation: badge-pop 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10;
}

@keyframes badge-pop {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}