/* ================================
   GLOBAL RESET & BASE STYLES
   ================================ */
@font-face {
    font-family: "Roboto-bold";
    src: url('../WebFonts/Roboto-Bold.woff2') format('woff2'), url('../WebFonts/Roboto-Bold.woff') format('woff');
}

@font-face {
    font-family: "Roboto-Regular";
    src: url('../WebFonts/Roboto-Regular.woff') format('woff'), url('../WebFonts/Roboto-Regular.woff2') format('woff2');
}

:root {
    --bold: "Roboto-bold";
    --Regular: "Roboto-Regular";
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--bold), var(--Regular), sans-serif, system-ui, 'Segoe UI', 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: #f9fafb;
    color: #1f2937;
    padding-top: 8.75rem;
}

/* ================================
    CONTAINER
   ================================ */
.container {
    max-width: 87.5rem !important;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* ================================
   HEADER & NAVIGATION
   ================================ */
.main-header {
    background-color: #ffffff;
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, 0.08);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
}

.navbar {
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
    color: #ffffff;
}

/* Navbar Top Section */
.navbar-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .9375rem 0;
    border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.1);
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    text-decoration: none;
    color: #ffffff;
    display: flex;
    align-items: center;
    transition: color 0.3s ease, transform 0.3s ease;
}

    .logo:hover {
        color: #3b82f6;
        transform: scale(1.05);
    }

    .logo i {
        margin-right: 0.625rem;
        color: #3b82f6;
        font-size: 1.8rem;
    }

/* Search Bar */
.search-container {
    flex-grow: 1;
    max-width: 37.5rem;
    margin: 0 1.875rem;
    position: relative;
}

.search-bar {
    width: 100%;
    padding: 0.75rem 1.25rem 0.75rem 2.8125rem;
    border: none;
    border-radius: 1.5625rem;
    background-color: #374151;
    color: #ffffff;
    font-size: 1rem;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

    .search-bar:focus {
        outline: none;
        background-color: #4b5563;
        box-shadow: 0 0 0.5rem rgba(59, 130, 246, 0.3);
    }

    .search-bar::placeholder {
        color: #9ca3af;
    }

.search-icon {
    position: absolute;
    left: 0.9375rem;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 1rem;
}

/* User Actions */
.user-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    position: relative;
    transition: color 0.3s ease, transform 0.2s ease;
}

    .action-btn:hover {
        color: #3b82f6;
        transform: translateY(-0.125rem);
    }

    .action-btn i {
        font-size: 1.5rem;
        margin-bottom: 0.3125rem;
    }

.cart-count,
.favorite-count {
    background-color: #e74c3c;
    color: #ffffff;
    border-radius: 50%;
    width: 1.375rem;
    height: 1.375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    position: absolute;
    top: -10px;
    right: -10px;
}

.favorite-count {
    background-color: #e91e63;
    right: 2px;
}

/* Navbar Bottom Section */
.navbar-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

.main-menu {
    display: flex;
    list-style: none;
    gap: 1.875rem;
}

    .main-menu > li {
        position: relative;
    }

        .main-menu > li > a {
            color: #ffffff;
            text-decoration: none;
            font-size: 1rem;
            font-weight: 600;
            padding: 0.625rem 0;
            display: flex;
            align-items: center;
            transition: color 0.3s ease;
        }

            .main-menu > li > a:hover {
                color: #3b82f6;
            }

            .main-menu > li > a i {
                margin-left: 0.5rem;
                font-size: 0.75rem;
                transition: transform 0.3s ease;
            }

.has-dropdown:hover > a i {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #374151;
    min-width: 15rem;
    padding: 0.625rem 0;
    border-radius: 0.5rem;
    z-index: 100;
    box-shadow: 0 0.625rem 1.25rem rgba(0, 0, 0, 0.25);
    display: none;
    list-style: none;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-0.625rem);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-menu li {
    position: relative;
}

.dropdown-menu a {
    color: #ffffff;
    padding: 0.625rem 1.25rem;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    transition: all 0.2s ease;
}

    .dropdown-menu a:hover {
        background-color: #3b82f6;
        color: #ffffff;
        padding-left: 1.5625rem;
    }

.nested {
    position: absolute;
    top: 0;
    left: 100%;
    min-width: 13.75rem;
    background-color: #4b5563;
    border-radius: 0.5rem;
    box-shadow: .3125rem .3125rem 1.3125rem rgba(0, 0, 0, 0.25);
    display: none;
}

.has-dropdown:hover > .dropdown-menu,
.dropdown-menu li:hover > .nested {
    display: block;
}

/* Utility Links */
.utility-links {
    display: flex;
    align-items: center;
    gap: 1.5625rem;
}

.utility-link {
    color: #d1d5db;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

    .utility-link:hover {
        color: #3b82f6;
    }

    .utility-link i {
        margin-right: 0.5rem;
        font-size: 1rem;
    }

.contact-button {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    color: #ffffff;
    padding: 0.625rem 1.5625rem;
    border-radius: 1.5625rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 0.25rem 0.625rem rgba(59, 130, 246, 0.3);
}

    .contact-button:hover {
        background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
        transform: translateY(-0.125rem);
        box-shadow: 0 0.375rem 0.9375rem rgba(59, 130, 246, 0.4);
    }

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
}

/* ================================
   HERO SECTION
   ================================ */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/pexels-ken-tomita-127057-389819.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 6.25rem 0;
    text-align: center;
    color: #ffffff;
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5rem;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    animation: heroZoom 20s infinite ease-in-out;
}

@keyframes heroZoom {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.hero-content {
    text-align: center;
    color: #ffffff;
    z-index: 1;
}

    .hero-content h1,
    .hero-title {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 1.25rem;
        text-shadow: 0 0.1875rem 0.375rem rgba(0, 0, 0, 0.4);
    }

    .hero-content p,
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 1.875rem;
        text-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.3);
    }

.hero-cta {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    color: #ffffff;
    padding: 0.9375rem 1.875rem;
    border-radius: 1.5625rem;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 0.25rem 0.625rem rgba(59, 130, 246, 0.3);
    display: inline-block;
}

    .hero-cta:hover {
        background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
        transform: translateY(-0.125rem);
        box-shadow: 0 0.375rem 0.9375rem rgba(59, 130, 246, 0.4);
    }

/* ================================
   COMMON SECTION STYLES
   ================================ */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.25rem;
    text-align: center;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 2.5rem;
    text-align: center;
    line-height: 1.5;
    max-width: 43.75rem;
    margin-left: auto;
    margin-right: auto;
}

/* ================================
   FEATURED PRODUCTS SECTION
   ================================ */
.featured-products,
.products-section,
.favorites-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(18.75rem, 1fr));
    gap: 1.25rem;
}

.product-card {
    background-color: #f9fafb;
    border: 0.0625rem solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 1.25rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 0.25rem 0.625rem rgba(0, 0, 0, 0.05);
}

    .product-card:hover {
        transform: translateY(-0.3125rem);
        box-shadow: 0 0.625rem 1.25rem rgba(0, 0, 0, 0.1);
    }

    .product-card h3 {
        font-size: 1.2rem;
        font-weight: 600;
        margin-bottom: 0.625rem;
    }

    .product-card p {
        font-size: 1.1rem;
        color: #1f2937;
        margin-bottom: 0.9375rem;
    }

.product-cta {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    color: #ffffff;
    padding: 0.625rem 1.25rem;
    border-radius: 1.5625rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .product-cta:hover {
        background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
        transform: translateY(-0.125rem);
        box-shadow: 0 0.375rem 0.9375rem rgba(59, 130, 246, 0.4);
    }

.product-actions {
    display: flex;
    gap: 0.625rem;
    justify-content: center;
    margin-top: 0.625rem;
}

.remove-favorite {
    /* background: #e91e63; */
    /* color: #ffffff; */
    border: none;
    /* padding: 0.625rem 1.25rem; */
    border-radius: 1.875rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
    gap: 0.3125rem;
}

    .remove-favorite:hover {
        background: red;
        color: white !important;
        transform: scale(1.05);
    }

.empty-favorites {
    text-align: center;
    font-size: 1.2rem;
    color: #7f8c8d;
    padding: 2.5rem;
}

    .empty-favorites p {
        margin-bottom: 1.25rem;
    }

/* Products Filter */
.products-filter {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1.875rem;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

    .filter-group label {
        font-size: 1rem;
        font-weight: 500;
    }

    .filter-group select {
        padding: 0.625rem;
        border: 0.0625rem solid #d1d5db;
        border-radius: 0.5rem;
        font-size: 1rem;
        background-color: #f9fafb;
        transition: border-color 0.3s ease;
    }

        .filter-group select:focus {
            outline: none;
            border-color: #3b82f6;
        }

/* ================================
   PROMOTIONS SECTION
   ================================ */
.promotions-section {
    padding: 5rem 0;
    background-color: #f9fafb;
}

.promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(18.75rem, 1fr));
    gap: 1.25rem;
}

.promotion-card {
    background-color: #ffffff;
    border: 0.0625rem solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 1.25rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 0.25rem 0.625rem rgba(0, 0, 0, 0.05);
}

    .promotion-card:hover {
        transform: translateY(-0.3125rem);
        box-shadow: 0 0.625rem 1.25rem rgba(0, 0, 0, 0.1);
    }

    .promotion-card img {
        width: 100%;
        max-width: 25rem;
        border-radius: 0.5rem;
        margin-bottom: 0.9375rem;
    }

    .promotion-card h3 {
        font-size: 1.4rem;
        font-weight: 600;
        margin-bottom: 0.625rem;
    }

    .promotion-card p {
        font-size: 1rem;
        color: #6b7280;
        margin-bottom: 0.9375rem;
    }

.promotion-cta {
    background: linear-gradient(135deg, #ef4444 0%, #f87171 100%);
    color: #ffffff;
    padding: 0.625rem 1.25rem;
    border-radius: 1.5625rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .promotion-cta:hover {
        background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
        transform: translateY(-0.125rem);
        box-shadow: 0 0.375rem 0.9375rem rgba(239, 68, 68, 0.4);
    }

/* ================================
   PROMO BANNER
   ================================ */
.promo-banner {
    padding: 5rem 0;
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    color: #ffffff;
    text-align: center;
}

.banner-content {
    max-width: 50rem;
    margin: 0 auto;
}

    .banner-content h2 {
        font-size: 2.5rem;
        font-weight: 800;
        margin-bottom: 1.25rem;
    }

    .banner-content p {
        font-size: 1.4rem;
        margin-bottom: 1.875rem;
    }

.banner-cta {
    background: #ffffff;
    color: #1a2b49;
    padding: 0.875rem 2.1875rem;
    border-radius: 3.125rem;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

    .banner-cta:hover {
        background: #ecf0f1;
        transform: translateY(-0.1875rem);
        box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.2);
    }

/* ================================
   TESTIMONIALS/REVIEWS SECTION
   ================================ */
.testimonials-section,
.reviews-section {
    padding: 5rem 0;
    background-color: #ffffff;
    position: relative;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.3;
    z-index: 0;
}

.testimonials-grid,
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(18.75rem, 1fr));
    gap: 1.25rem;
    position: relative;
    z-index: 1;
}

.testimonial-card,
.review-card {
    background-color: #f9fafb;
    border: 0.0625rem solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 1.25rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 0.25rem 0.625rem rgba(0, 0, 0, 0.05);
}

    .testimonial-card:hover,
    .review-card:hover {
        transform: translateY(-0.3125rem);
        box-shadow: 0 0.625rem 1.25rem rgba(0, 0, 0, 0.1);
    }

    .testimonial-card p,
    .review-card p {
        font-size: 1rem;
        color: #6b7280;
        margin-bottom: 0.9375rem;
    }

        .testimonial-card p:first-child,
        .review-card p:first-child {
            font-weight: 600;
            color: #1f2937;
        }

.testimonial-author,
.review-author {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
}

/* ================================
   PRODUCT DETAIL SECTION
   ================================ */
.product-detail-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.product-detail-content {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.product-detail-image img {
    width: 100%;
    max-width: 31.25rem;
    border-radius: 0.75rem;
    box-shadow: 0 0.25rem 0.625rem rgba(0, 0, 0, 0.1);
}

.product-detail-info {
    flex: 1;
    min-width: 18.75rem;
}

.product-title {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.9375rem;
}

.product-price {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.625rem;
}

.product-availability {
    font-size: 1rem;
    color: #10b981;
    margin-bottom: 1.25rem;
}

.product-quantity {
    display: flex;
    align-items: center;
    gap: 0.9375rem;
    margin-bottom: 1.25rem;
}

    .product-quantity label {
        font-size: 1rem;
        font-weight: 500;
    }

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.quantity-btn {
    background-color: #3b82f6;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    width: 1.875rem;
    height: 1.875rem;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .quantity-btn:hover {
        background-color: #2563eb;
    }

.quantity-input {
    width: 3.75rem;
    padding: 0.5rem;
    border: 0.0625rem solid #d1d5db;
    border-radius: 0.5rem;
    text-align: center;
    font-size: 1rem;
}

.add-to-cart-btn {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    color: #ffffff;
    padding: 0.9375rem 1.875rem;
    border: none;
    border-radius: 1.5625rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    margin-bottom: 1.25rem;
}

    .add-to-cart-btn:hover {
        background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
        transform: translateY(-0.125rem);
        box-shadow: 0 0.375rem 0.9375rem rgba(59, 130, 246, 0.4);
    }

.product-description,
.product-specifications {
    margin-bottom: 1.875rem;
}

    .product-description h3,
    .product-specifications h3 {
        font-size: 1.4rem;
        font-weight: 600;
        margin-bottom: 0.9375rem;
    }

    .product-description p {
        font-size: 1rem;
        color: #6b7280;
        line-height: 1.6;
    }

    .product-specifications ul {
        list-style: none;
    }

        .product-specifications ul li {
            font-size: 1rem;
            color: #1f2937;
            margin-bottom: 0.625rem;
        }

.product-reviews {
    margin-bottom: 2.5rem;
}

    .product-reviews h2 {
        font-size: 1.6rem;
        font-weight: 600;
        margin-bottom: 1.25rem;
    }

.review {
    background-color: #f9fafb;
    border: 0.0625rem solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 0.9375rem;
    margin-bottom: 0.9375rem;
}

.related-products h2 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.related-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(12.5rem, 1fr));
    gap: 1.25rem;
}

/* ================================
   CART SECTION
   ================================ */
.cart-section {
    padding: 12rem 0;
    background-color: #ffffff;
    text-align: center;
}

.cart-content {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.cart-items {
    flex: 2;
    min-width: 18.75rem;
}

.cart-item {
    display: flex;
    align-items: center;
    background-color: #f9fafb;
    border: 0.0625rem solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 1.25rem;
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
    box-shadow: 0 0.25rem 0.625rem rgba(0, 0, 0, 0.05);
}

    .cart-item:hover {
        box-shadow: 0 0.625rem 1.25rem rgba(0, 0, 0, 0.1);
    }

.cart-item-image img {
    width: 6.25rem;
    height: 6.25rem;
    object-fit: cover;
    border-radius: 0.5rem;
}

.cart-item-details {
    flex: 1;
    text-align: left;
    padding: 0 1.25rem;
}

    .cart-item-details h3 {
        font-size: 1.3rem;
        font-weight: 600;
        margin-bottom: 0.625rem;
    }

    .cart-item-details p {
        font-size: 1rem;
        color: #6b7280;
        margin-bottom: 0.625rem;
    }

.cart-item-price {
    font-size: 1.1rem;
    color: #1f2937;
    font-weight: 500;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.cart-item-total {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    padding: 0 1.25rem;
}

.cart-item-actions {
    display: flex;
    gap: 0.625rem;
}

.cart-item-remove,
.remove-btn {
    background: none;
    border: none;
    color: #ef4444;
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

    .cart-item-remove:hover,
    .remove-btn:hover {
        color: #dc2626;
    }

.cart-summary {
    flex: 1;
    min-width: 18.75rem;
    background-color: #f9fafb;
    border: 0.0625rem solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 1.875rem;
    box-shadow: 0 0.25rem 0.625rem rgba(0, 0, 0, 0.05);
}

    .cart-summary h2 {
        font-size: 1.6rem;
        font-weight: 600;
        margin-bottom: 1.25rem;
    }

.summary-item,
.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
    margin-bottom: 0.9375rem;
}

.summary-row {
    font-size: 1.1rem;
}

.summary-total {
    font-weight: 600;
    font-size: 1.2rem;
    border-top: 0.0625rem solid #e5e7eb;
    padding-top: 0.9375rem;
    margin-top: 0.9375rem;
    display: flex;
    justify-content: space-between;
}


.checkout-btn {
    width: 100%;
    background: linear-gradient(135deg, #2a3446 0%, #1b2432 100%); /* Professional soft gradient */
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
    text-decoration: none;
}

    /* Premium soft shine effect */
    .checkout-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient( 90deg, transparent, rgba(255, 255, 255, 0.15), transparent );
        transition: left 0.6s ease;
    }

    .checkout-btn:hover::before {
        left: 100%;
    }

    /* Hover effect: lighter, modern elevation */
    .checkout-btn:hover {
        transform: translateY(-3px);
        background: linear-gradient(135deg, #34425a 0%, #1f2938 100%); /* Brighter on hover */
        box-shadow: 0 10px 24px rgba(27, 36, 50, 0.45);
    }

    /* Tap feel */
    .checkout-btn:active {
        transform: translateY(0);
        box-shadow: 0 4px 12px rgba(27, 36, 50, 0.25);
    }

.continue-shopping {
    display: block;
    color: #3b82f6;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    transition: color 0.3s ease;
    margin-top: 1.25rem;
}

    .continue-shopping:hover {
        color: #2563eb;
    }

/* ================================
   CHECKOUT SECTION
   ================================ */
.checkout-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.checkout-content {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.checkout-form {
    flex: 2;
    min-width: 18.75rem;
}

    .checkout-form h2 {
        font-size: 1.6rem;
        font-weight: 600;
        margin-bottom: 1.25rem;
    }

/* ================================
   ORDER CONFIRMATION SECTION
   ================================ */
.order-confirmation-section {
    padding: 5rem 0;
    background-color: #ffffff;
    text-align: center;
}

.order-confirmation-content {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.order-details {
    flex: 2;
    min-width: 18.75rem;
    background-color: #f9fafb;
    border: 0.0625rem solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 1.875rem;
    box-shadow: 0 0.25rem 0.625rem rgba(0, 0, 0, 0.05);
    text-align: left;
}

    .order-details h2 {
        font-size: 1.6rem;
        font-weight: 600;
        margin-bottom: 1.25rem;
    }

    .order-details h3 {
        font-size: 1.3rem;
        font-weight: 600;
        margin: 1.25rem 0 0.625rem;
    }

    .order-details p {
        font-size: 1rem;
        color: #6b7280;
        margin-bottom: 0.625rem;
    }

.order-actions {
    flex: 1;
    min-width: 18.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.9375rem;
}

.track-order-btn {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    color: #ffffff;
    padding: 0.9375rem 1.5625rem;
    border-radius: 1.5625rem;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

    .track-order-btn:hover {
        background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
        transform: translateY(-0.125rem);
        box-shadow: 0 0.375rem 0.9375rem rgba(59, 130, 246, 0.4);
    }

/* ================================
   ACCOUNT SECTION
   ================================ */
.account-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #e5e7eb 100%);
    min-height: 100vh;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.account-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(21.25rem, 1fr));
    gap: 2rem;
}

.account-card {
    background-color: #ffffff;
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 0.25rem 1.25rem rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .account-card:hover {
        transform: translateY(-0.375rem);
        box-shadow: 0 0.5rem 1.875rem rgba(0, 0, 0, 0.12);
    }

    .account-card h3 {
        margin-bottom: 1rem;
    }

    .account-card p {
        margin-bottom: 1.5rem;
    }

.account-icon {
    width: 2.5rem;
    height: 2.5rem;
    color: #2563eb;
    margin: 0 auto 1rem;
    display: block;
    transition: transform 0.3s ease;
}

.account-card:hover .account-icon {
    transform: scale(1.15);
}

.card-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
}

.card-description {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.4;
    margin-bottom: 1.5rem;
}

.account-cta {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    display: inline-block;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

    .account-cta:hover {
        background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%);
        transform: translateY(-0.125rem);
        box-shadow: 0 0.25rem 0.75rem rgba(37, 99, 235, 0.3);
    }

/* ================================
   AUTHENTICATION SECTION
   ================================ */
.auth-section {
    padding: 12rem 0;
    background-color: #f9fafb;
    display: flex;
    justify-content: center;
}

.auth-card {
    background-color: #ffffff;
    border: 0.0625rem solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 2.5rem;
    max-width: 31.25rem;
    width: 100%;
    box-shadow: 0 0.25rem 1.25rem rgba(0, 0, 0, 0.1);
    text-align: center;
}

.auth-title {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.9375rem;
}

.auth-subtitle {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 1.875rem;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    text-align: left;
}

    .form-group label {
        font-size: 0.95rem;
        font-weight: 500;
        color: #1f2937;
        margin-bottom: 0.5rem;
        display: block;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 0.75rem 0.9375rem;
        border: 0.0625rem solid #d1d5db;
        border-radius: 0.5rem;
        font-size: 1rem;
        color: #1f2937;
        background-color: #f9fafb;
        transition: border-color 0.3s ease, box-shadow 0.3s ease;
    }

        .form-group input:focus,
        .form-group textarea:focus,
        .auth-form select:focus {
            outline: none;
            border-color: #3b82f6;
            box-shadow: 0 0 0.5rem rgba(59, 130, 246, 0.3);
        }

        .form-group input::placeholder {
            color: #9ca3af;
        }

    .form-group textarea {
        resize: vertical;
        min-height: 7.5rem;
    }

.auth-form select {
    width: 100%;
    padding: 0.75rem 0.9375rem;
    border: 0.0625rem solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    color: #1f2937;
    background-color: #f9fafb;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-options {
    display: flex;
    justify-content: flex-end;
}

.forgot-password {
    font-size: 0.9rem;
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.3s ease;
}

    .forgot-password:hover {
        color: #2563eb;
    }

.auth-submit {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

    .auth-submit:hover {
        background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%);
        transform: translateY(-0.125rem);
        box-shadow: 0 0.25rem 0.75rem rgba(37, 99, 235, 0.3);
    }

/* ================================
   DASHBOARD SECTION
   ================================ */
.dashboard-section {
    padding: 5rem 0;
    background-color: #f9fafb;
}

.dashboard-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(18.75rem, 1fr));
    gap: 1.25rem;
}

.dashboard-card {
    background-color: #ffffff;
    border: 0.0625rem solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 1.875rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 0.25rem 0.625rem rgba(0, 0, 0, 0.05);
}

    .dashboard-card:hover {
        transform: translateY(-0.3125rem);
        box-shadow: 0 0.625rem 1.25rem rgba(0, 0, 0, 0.1);
    }

    .dashboard-card h3 {
        font-size: 1.4rem;
        font-weight: 600;
        margin-bottom: 0.625rem;
    }

    .dashboard-card p {
        font-size: 1rem;
        color: #6b7280;
        margin-bottom: 1.25rem;
    }

.dashboard-cta {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    color: #ffffff;
    padding: 0.625rem 1.25rem;
    border-radius: 1.5625rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .dashboard-cta:hover {
        background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
        transform: translateY(-0.125rem);
        box-shadow: 0 0.375rem 0.9375rem rgba(59, 130, 246, 0.4);
    }

.dashboard-table {
    background-color: #ffffff;
    border: 0.0625rem solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 1.875rem;
    margin-top: 1.875rem;
    box-shadow: 0 0.25rem 0.625rem rgba(0, 0, 0, 0.05);
    overflow-x: auto;
}

    .dashboard-table h2 {
        font-size: 1.6rem;
        font-weight: 600;
        margin-bottom: 1.25rem;
    }

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    color: #374151;
}

th, td {
    padding: 0.9375rem;
    text-align: left;
    border-bottom: 0.0625rem solid #e5e7eb;
}

th {
    background-color: #f3f4f6;
    font-weight: 600;
    color: #1f2937;
    font-size: 0.85rem;
    text-transform: uppercase;
}

td {
    font-weight: 400;
    color: #6b7280;
}

.table-action {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    margin-right: 0.625rem;
    transition: color 0.3s ease;
}

    .table-action:hover {
        color: #2563eb;
    }

    .table-action.delete {
        color: #ef4444;
    }

        .table-action.delete:hover {
            color: #dc2626;
        }

/* ================================
   CATEGORY & USER MANAGEMENT
   ================================ */
.category-management-section,
.user-management-section {
    padding: 5rem 0;
    background-color: #f9fafb;
}

.category-form,
.category-table,
.user-table {
    background-color: #ffffff;
    border: 0.0625rem solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 1.875rem;
    margin-bottom: 1.875rem;
    box-shadow: 0 0.25rem 0.625rem rgba(0, 0, 0, 0.05);
}

    .category-form h2,
    .category-table h2,
    .user-table h2 {
        font-size: 1.6rem;
        font-weight: 600;
        margin-bottom: 1.25rem;
    }

    .category-form form {
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
    }

/* ================================
   ABOUT SECTION
   ================================ */
.about-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.about-content {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.about-image img {
    width: 100%;
    max-width: 37.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 0.25rem 0.625rem rgba(0, 0, 0, 0.1);
}

.about-text {
    flex: 1;
    min-width: 18.75rem;
}

    .about-text h2 {
        font-size: 1.6rem;
        font-weight: 600;
        margin-bottom: 0.9375rem;
    }

    .about-text p {
        font-size: 1rem;
        color: #6b7280;
        line-height: 1.6;
        margin-bottom: 1.25rem;
    }

    .about-text ul {
        list-style: none;
    }

        .about-text ul li {
            font-size: 1rem;
            color: #1f2937;
            margin-bottom: 0.625rem;
            position: relative;
            padding-left: 1.25rem;
        }

            .about-text ul li::before {
                content: "\f058";
                font-family: "Font Awesome 5 Free";
                font-weight: 900;
                color: #3b82f6;
                position: absolute;
                left: 0;
                top: 0.125rem;
            }

/* ================================
   CONTACT SECTION
   ================================ */
.contact-section {
    padding: 5rem 0;
    background-color: #f9fafb;
}

.contact-content {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.contact-form {
    flex: 2;
    min-width: 18.75rem;
}

    .contact-form h2 {
        font-size: 1.6rem;
        font-weight: 600;
        margin-bottom: 1.25rem;
    }

    .contact-form form {
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
    }

.contact-info {
    flex: 1;
    min-width: 18.75rem;
    background-color: #ffffff;
    border: 0.0625rem solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 1.875rem;
    box-shadow: 0 0.25rem 0.625rem rgba(0, 0, 0, 0.05);
}

    .contact-info h2 {
        font-size: 1.6rem;
        font-weight: 600;
        margin-bottom: 1.25rem;
    }

    .contact-info h3 {
        font-size: 1.3rem;
        font-weight: 600;
        margin: 1.25rem 0 0.625rem;
    }

    .contact-info p {
        font-size: 1rem;
        color: #6b7280;
        margin-bottom: 0.625rem;
        display: flex;
        align-items: center;
        gap: 0.625rem;
    }

        .contact-info p i {
            color: #3b82f6;
            font-size: 1.2rem;
        }

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

    .footer-contact a,
    .footer-contact span {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        color: #d1d5db;
        text-decoration: none;
        font-size: 0.95rem;
        transition: color 0.3s ease;
    }

        .footer-contact a:hover {
            color: #60a5fa;
        }

/* ================================
   FAQ SECTION
   ================================ */
.faq-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.faq-content {
    max-width: 50rem;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.25rem;
    border-bottom: 0.0625rem solid #e5e7eb;
    padding-bottom: 1.25rem;
}

.faq-question {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1f2937;
    cursor: pointer;
    position: relative;
    padding-right: 1.875rem;
}

    .faq-question::after {
        content: "\f078";
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        color: #3b82f6;
        transition: transform 0.3s ease;
    }

    .faq-question:hover::after {
        transform: translateY(-50%) rotate(180deg);
    }

.faq-answer {
    display: none;
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
    margin-top: 0.625rem;
}

    .faq-answer a {
        color: #3b82f6;
        text-decoration: none;
    }

        .faq-answer a:hover {
            color: #2563eb;
        }

/* ================================
   TRACK ORDER SECTION
   ================================ */
.track-order-section {
    padding: 5rem 0;
    background-color: #f9fafb;
    text-align: center;
}

.track-order-content {
    max-width: 37.5rem;
    margin: 0 auto;
}

.track-order-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 1.875rem;
}

.order-status {
    background-color: #ffffff;
    border: 0.0625rem solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 1.875rem;
    box-shadow: 0 0.25rem 0.625rem rgba(0, 0, 0, 0.05);
    text-align: left;
}

    .order-status h2 {
        font-size: 1.6rem;
        font-weight: 600;
        margin-bottom: 1.25rem;
    }

    .order-status p {
        font-size: 1rem;
        color: #6b7280;
        margin-bottom: 0.625rem;
    }

        .order-status p strong {
            color: #1f2937;
        }

    .order-status a {
        color: #3b82f6;
        text-decoration: none;
    }

        .order-status a:hover {
            color: #2563eb;
        }

/* ================================
   FOOTER
   ================================ */
.footer {
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
    color: #e5e7eb;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15.625rem, 1fr));
    gap: 3rem;
    max-width: 75rem;
    margin: 0 auto 3rem;
}

.footer-column h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #d1d5db;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

    .footer-column ul li {
        margin-bottom: 0.75rem;
    }

        .footer-column ul li a {
            color: #d1d5db;
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.3s ease, transform 0.2s ease;
        }

            .footer-column ul li a:hover {
                color: #60a5fa;
                transform: translateX(0.3125rem);
            }

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

    .social-icons a {
        color: #d1d5db;
        font-size: 1.5rem;
        transition: color 0.3s ease, transform 0.2s ease;
    }

        .social-icons a:hover {
            color: #60a5fa;
            transform: scale(1.1);
        }

.icon {
    width: 1.25rem;
    height: 1.25rem;
    flex: none;
}

.footer-copyright {
    text-align: center;
    font-size: 0.85rem;
    color: #9ca3af;
    border-top: 0.0625rem solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    margin: 0 auto;
    max-width: 75rem;
}

.text-danger {
    color: #dc2626;
}
