@charset "UTF-8";

/* ========================================
   Header Section (xyz)
   ======================================== */

.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 15px;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
}

/* Site Logo */
/* Site Logo */
.site h1 {
    display: none;
}

/* Order Check Button */
/* Order Check Button (Cart Style) */
.Cart {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    background-color: transparent;
    color: #333;
    text-decoration: none;
    border-radius: 0;
    font-weight: 700;
    transition: color 0.3s ease;
    white-space: nowrap;
    margin-left: 0;
    line-height: 1.2;
    cursor: pointer;
}

.Cart-icon {
    display: block;
    margin-bottom: 4px;
}

.Cart-icon i {
    font-size: 20px;
}

.Cart-label {
    font-size: 10px;
    display: block;
}

.Cart:hover {
    color: #0088cc;
    background-color: transparent;
}

.site a {
    color: #0088cc;
    /* xyz Primary Blue */
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.site img {
    height: 40px;
    width: auto;
}

/* ========================================
   Main Navigation (PC)
   ======================================== */

.main-nav {
    background: #0088cc;
    /* xyz Primary Blue */
    padding: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
}

.main-nav .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.nav-menu {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: flex-start;
    /* Left align for xyz */
    align-items: center;
}

.nav-item {
    position: relative;
    margin: 0;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 15px 25px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    white-space: nowrap;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-bottom-color: #fff;
    color: #fff;
}

.nav-link i {
    margin-right: 8px;
    font-size: 16px;
}

.nav-link .fa-chevron-down {
    margin-left: 8px;
    font-size: 12px;
    transition: transform 0.3s ease;
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 10px 0;
    margin: 0;
    list-style: none;
}

.dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu,
.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown:hover .nav-link .fa-chevron-down,
.dropdown.active .nav-link .fa-chevron-down {
    transform: rotate(180deg);
}

.dropdown-item {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.dropdown-item:hover {
    background: #f8f9fa;
    color: #0088cc;
    /* xyz Primary Blue */
}

.dropdown-item i {
    margin-right: 10px;
    font-size: 14px;
    width: 24px;
    /* Fixed width for alignment */
    text-align: center;
    color: #0088cc;
    /* xyz Primary Blue */
}

/* ========================================
   Mobile Menu (Smart)
   ======================================== */

.mobile-menu-toggle {
    display: none;
    background: #0088cc;
    /* xyz Primary Blue */
    color: #fff;
    border: none;
    padding: 0;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    position: relative;
    width: 50px;
    height: 50px;
    z-index: 2005;
    /* Above header content */
}

.mobile-menu-toggle:hover {
    background: #006699;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.mobile-menu-toggle.active {
    background: #006699;
}

.hamburger-icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.hamburger-line {
    width: 20px;
    height: 2px;
    background: #fff;
    margin: 2px 0;
    transition: all 0.3s ease;
    border-radius: 1px;
}

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

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

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

/* Mobile Menu Container */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2009;
    /* Top z-index */
}

.mobile-menu.active {
    display: block;
}

.mobile-menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(2px);
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background: #fff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.mobile-menu.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #0088cc;
    /* xyz Primary Blue */
    color: #fff;
    border-bottom: 1px solid #006699;
}

.mobile-menu-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
    border-radius: 3px;
    transition: background-color 0.3s ease;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-body {
    height: calc(100% - 70px);
    overflow-y: auto;
}

.mobile-nav-menu {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mobile-nav-item {
    border-bottom: 1px solid #e9ecef;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    background: #fff;
}

.mobile-nav-link:hover {
    background: #f8f9fa;
    color: #0088cc;
}

.mobile-nav-link i {
    margin-right: 15px;
    font-size: 18px;
    width: 24px;
    text-align: center;
    color: #555;
}

.mobile-nav-link span {
    flex: 1;
    font-size: 16px;
}

.mobile-nav-link .fa-chevron-right {
    margin-left: auto;
    font-size: 14px;
    color: #999;
}

/* Submenu */
.mobile-submenu {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-submenu.active {
    transform: translateX(0);
}

.mobile-submenu-header {
    display: flex;
    align-items: center;
    padding: 20px;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.mobile-submenu-back {
    background: none;
    border: none;
    color: #0088cc;
    font-size: 18px;
    cursor: pointer;
    padding: 5px;
    margin-right: 15px;
    border-radius: 3px;
    transition: background-color 0.3s ease;
}

.mobile-submenu-back:hover {
    background: rgba(0, 136, 204, 0.1);
}

.mobile-submenu-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.mobile-submenu-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mobile-submenu-item {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-submenu-item:hover {
    background: #f8f9fa;
    color: #0088cc;
}

.mobile-submenu-item i {
    margin-right: 15px;
    font-size: 16px;
    width: 24px;
    text-align: center;
}

.emoji-icon {
    font-size: 18px;
    margin-right: 15px;
    width: 24px;
    text-align: center;
    display: inline-block;
}

/* Responsive Media Queries */
@media (max-width: 768px) {
    .header-content {
        justify-content: center;
        padding: 15px;
    }

    .main-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
        position: fixed;
        top: 10px;
        right: 10px;
    }

    .site h1 {
        font-size: 18px;
    }
}
/* Standardized Action Buttons */
.btn-group {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.btn-submit {
    display: inline-block;
    background: #FF4081; /* Default accent color, can serve as fallback or primary action color */
    color: #fff;
    padding: 1rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    box-shadow: 0 4px 15px rgba(245, 124, 0, 0.3);
}

.btn-submit:hover {
    background: #E91E63;
    transform: scale(1.05);
}

.btn-back-outline {
    display: inline-block;
    background: #fff;
    color: #666;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    border: 2px solid #ccc;
    transition: 0.3s;
}

.btn-back-outline:hover {
    background: #f5f5f5;
    border-color: #999;
}
