:root {
    --primary-color: #FF8800;
    --primary-hover: #E67600;
    --light-accent: #FFD7A3;
    --text: #1A1A1A;
    --background: #FFFFFF;
    --secondary-text: #333333;
    --border-color: #E5E5E5;
    --primary-button-background: #FF8800;
    --primary-button-hover: #E67600;
    --primary-button-text: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Override Bootstrap's HTML5 reset for header */
header {
    display: flex !important;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text);
}

/* Search Overlay */
.search-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    pointer-events: auto;
}

.search-overlay.active {
    display: block;
}

/* Ensure search wrapper is above overlay and can be interacted with */
.search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    z-index: 3000;
    pointer-events: auto;
}

/* ==================== HEADER STYLES ==================== */
header {
    background: linear-gradient(135deg, var(--background) 0%, #fafafa 100%);
    border-bottom: 2px solid var(--primary-color);
    box-shadow: 0 2px 8px rgba(255, 136, 0, 0.1);
    padding: 1.2rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
    position: relative;
    z-index: 1001;
    flex-wrap: nowrap;
    overflow: visible;
}

/* Hamburger Menu - Hidden on Desktop */
.hamburger-menu {
    display: none;
    order: -1;
}

.hamburger-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.hamburger-toggle:hover {
    background-color: var(--light-accent);
}

.hamburger-toggle span {
    width: 28px;
    height: 3px;
    background-color: var(--text);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
    background-color: var(--primary-color);
}

.hamburger-toggle.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    background-color: var(--primary-color);
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo img {
    height: 55px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo a:hover img {
    transform: scale(1.05);
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.5px;
    line-height: 1;
}

.logo-text .brand-name {
    display: block;
    font-size: 1.3rem;
}

/* Header Navigation - Desktop Only */
.header-nav {
    flex: 1;
    display: flex;
    justify-content: center;
    overflow: visible;
}

.header-nav .nav-list {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    align-items: center;
    margin: 0;
    overflow: visible;
}

.header-nav .nav-list>li {
    position: relative;
    overflow: visible;
}

.header-nav .nav-list>li>a {
    color: var(--text);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    padding: 0.5rem 0.75rem;
    border-bottom: 3px solid transparent;
    text-transform: uppercase;
}

.header-nav .nav-list>li>a:hover,
.header-nav .nav-list>li>a.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

/* Desktop Dropdown Menu */
.nav-item-dropdown {
    position: relative;
    overflow: visible;
}

.nav-item-dropdown>a {
    cursor: pointer;
}

.nav-item-dropdown>a::after {
    content: '\f078';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-left: 0.5rem;
    font-size: 0.7rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

.nav-item-dropdown:hover>a::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--background);
    border: 2px solid var(--primary-color);
    border-radius: 0.6rem;
    list-style: none;
    padding: 1rem 0;
    margin-top: 0.8rem;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 25px rgba(255, 136, 0, 0.15);
    z-index: 1050;
    display: block !important;
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    pointer-events: auto;
}

.dropdown-menu li a {
    display: block;
    padding: 0.85rem 1.5rem;
    color: var(--text);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
    border-left: 3px solid transparent;
}

.dropdown-menu li a:hover {
    background-color: var(--light-accent);
    color: var(--primary-color);
    padding-left: 2rem;
    border-left-color: var(--primary-color);
}

/* Header Icons */
.header-icons {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-shrink: 0;
}

/* Search Wrapper */
/* ==================== SEARCH WRAPPER STYLES ==================== */
.search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    z-index: 3000;
}

/* Search Toggle Button */
.search-toggle {
    background: linear-gradient(135deg, rgba(255, 136, 0, 0.08), rgba(255, 136, 0, 0.04));
    border: 1.5px solid rgba(255, 136, 0, 0.25);
    cursor: pointer;
    font-size: 1.1rem;
    color: var(--text);
    padding: 0.55rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
}

.search-toggle::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50%;
}

.search-toggle:hover {
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(255, 136, 0, 0.2);
}

.search-toggle:hover::before {
    opacity: 0.15;
}

.search-toggle i {
    position: relative;
    z-index: 1;
}

/* Search Modal - Input Container */
.search-modal {
    display: none;
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #FFFFFF;
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    min-width: 400px;
    width: 90vw;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    z-index: 3000;
    animation: popInSmooth 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: auto;
}

.search-modal.active {
    display: flex;
    flex-direction: column;
}

@keyframes popInSmooth {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.92);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes slideDownSmooth {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Search Container (Input Area) */
.search-container {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    position: relative;
}

/* Search Input */
.search-input {
    flex: 1;
    border: 2px solid var(--border-color);
    padding: 1rem 1.3rem;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    outline: none;
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--text);
    font-weight: 500;
}

.search-input::placeholder {
    color: #B0B0B0;
    font-weight: 400;
}

.search-input:focus {
    border-color: var(--primary-color);
    background: var(--background);
    box-shadow: 0 0 0 4px rgba(255, 136, 0, 0.12);
}

/* Search Buttons */
.search-submit,
.search-close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--secondary-text);
    padding: 0.65rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 1.1rem;
    height: 44px;
    width: 44px;
}

.search-submit:hover,
.search-close:hover {
    color: var(--primary-color);
    background-color: rgba(255, 136, 0, 0.1);
    transform: scale(1.1);
}

/* Search Results Container */
.search-results-container {
    display: none;
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #FFFFFF;
    border: 2px solid var(--border-color);
    border-top: none;
    border-radius: 0 0 16px 16px;
    min-width: 400px;
    width: 90vw;
    max-width: 500px;
    max-height: 500px;
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    z-index: 3000;
    animation: slideDownSmooth 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: calc(7rem);
    pointer-events: auto;
}

.search-results-container.show {
    display: flex;
    flex-direction: column;
}

/* Scrollbar Styling - Custom */
.search-results-container::-webkit-scrollbar {
    width: 10px;
}

.search-results-container::-webkit-scrollbar-track {
    background: transparent;
}

.search-results-container::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, rgba(255, 136, 0, 0.4), rgba(255, 136, 0, 0.2));
    border-radius: 10px;
    border: 3px solid transparent;
    background-clip: padding-box;
}

.search-results-container::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--primary-color), rgba(255, 136, 0, 0.7));
    background-clip: padding-box;
}

/* Individual Search Result Item */
.search-result-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 18px;
    border-bottom: 1px solid rgba(255, 136, 0, 0.08);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background: linear-gradient(90deg, rgba(255, 136, 0, 0.08), transparent);
    padding-left: 20px;
}

.search-result-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary-color), var(--primary-hover));
    border-radius: 0 2px 2px 0;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.search-result-item:hover::before {
    opacity: 1;
}

/* Result Image */
.result-image {
    width: 72px;
    height: 72px;
    border-radius: 10px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f8f8, #efefef);
    flex-shrink: 0;
    border: 1.5px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.search-result-item:hover .result-image {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.search-result-item:hover .result-image img {
    transform: scale(1.12);
}

/* Result Info */
.result-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.result-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
    letter-spacing: -0.3px;
}

.result-price {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 800;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 4px;
}

.result-price::before {
    content: '$';
    font-size: 12px;
    opacity: 0.9;
}

/* Result Link/Arrow */
.result-link {
    color: white;
    text-decoration: none;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    border: none;
    box-shadow: 0 4px 12px rgba(255, 136, 0, 0.25);
}

.result-link:hover {
    background: linear-gradient(135deg, var(--primary-hover), var(--primary-color));
    color: white;
    transform: translateX(3px);
    box-shadow: 0 6px 16px rgba(255, 136, 0, 0.35);
}

/* Loading, No Results, Error States */
.search-loading,
.search-no-results,
.search-error {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 24px;
    text-align: center;
    color: #757575;
}

.search-loading i,
.search-no-results i,
.search-error i {
    font-size: 32px;
    margin-bottom: 12px;
    color: var(--text-muted);
}

.search-loading p,
.search-no-results p,
.search-error p {
    font-size: 13px;
    margin: 0;
}

.search-no-results strong {
    color: var(--text);
}

.search-error {
    color: #e74c3c;
}

.search-error i {
    color: #e74c3c;
}

/* Search Animations & Effects */
@keyframes spinSmooth {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.search-loading i {
    animation: spinSmooth 1s linear infinite;
}

/* Stagger animation for search results */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.search-result-item {
    animation: fadeInUp 0.3s ease-out forwards;
}

.search-result-item:nth-child(1) { animation-delay: 0ms; }
.search-result-item:nth-child(2) { animation-delay: 30ms; }
.search-result-item:nth-child(3) { animation-delay: 60ms; }
.search-result-item:nth-child(4) { animation-delay: 90ms; }
.search-result-item:nth-child(5) { animation-delay: 120ms; }
.search-result-item:nth-child(6) { animation-delay: 150ms; }
.search-result-item:nth-child(7) { animation-delay: 180ms; }
.search-result-item:nth-child(8) { animation-delay: 210ms; }

/* Smooth focus transition */
.search-input:focus-visible {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(255, 136, 0, 0.1);
}

/* Icon Links */
.icon-link {
    position: relative;
    color: var(--text);
    font-size: 1.3rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.icon-link:hover {
    color: var(--primary-color);
    background-color: var(--light-accent);
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background-color: var(--primary-color);
    color: var(--primary-button-text);
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 800;
    border: 2px solid var(--background);
}

/* User Profile */
.user-profile-wrapper {
    position: relative;
}

.user-profile-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-profile-btn:hover {
    background-color: var(--light-accent);
}

.user-avatar {
    font-size: 1.4rem;
    color: var(--text);
    transition: color 0.3s ease;
}

.user-profile-btn:hover .user-avatar {
    color: var(--primary-color);
}

.user-indicator {
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: inline-block;
}

/* User Dropdown Menu */
.user-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: var(--background);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 1rem 0;
    margin-top: 0.5rem;
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.user-profile-wrapper:hover .user-dropdown-menu,
.user-dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-header {
    padding: 0 1rem 1rem 1rem;
}

.user-info {
    text-align: left;
}

.user-name {
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.user-email {
    font-size: 0.85rem;
    color: var(--secondary-text);
}

.dropdown-divider {
    height: 1px;
    background-color: var(--border-color);
    margin: 0.5rem 0;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--text);
    text-decoration: none;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: var(--light-accent);
    color: var(--primary-color);
    padding-left: 1.25rem;
}

.dropdown-item i {
    font-size: 1rem;
    min-width: 20px;
}

.item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.item-label {
    font-weight: 600;
    font-size: 0.95rem;
}

.item-desc {
    font-size: 0.8rem;
    color: var(--secondary-text);
}

.logout-item {
    border-top: 1px solid var(--border-color);
    margin-top: 0.5rem;
    padding-top: 0.75rem;
}

/* Mobile Sidebar - Hidden on Desktop */
.mobile-sidebar {
    display: none;
    position: fixed;
    left: 0;
    top: 65px;
    width: 85%;
    max-width: 320px;
    height: calc(100vh - 65px);
    background: linear-gradient(180deg, var(--background) 0%, #fafafa 100%);
    border-right: 2px solid var(--primary-color);
    padding: 1.5rem 0;
    overflow-y: auto;
    z-index: 999;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 2px 0 15px rgba(255, 136, 0, 0.2);
}

.mobile-sidebar.active {
    transform: translateX(0);
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-list>li {
    border-bottom: 1px solid var(--border-color);
}

.mobile-nav-list>li>a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.1rem 1.5rem;
    color: var(--text);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.mobile-nav-list>li>a:hover,
.mobile-nav-list>li>a.active {
    color: var(--primary-color);
    background-color: var(--light-accent);
    padding-left: 2rem;
}

/* Mobile Dropdown */
.mobile-nav-item-dropdown>a::after {
    content: '\f078';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 0.7rem;
    transition: transform 0.3s ease;
    color: var(--text);
}

.mobile-nav-item-dropdown>a.active::after {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.mobile-dropdown-menu {
    display: none;
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: #f5f5f5;
}

.mobile-nav-item-dropdown.active .mobile-dropdown-menu {
    display: block !important;
}

.mobile-dropdown-menu li a {
    display: block !important;
    padding: 0.9rem 1.5rem 0.9rem 2.75rem;
    color: var(--secondary-text);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.mobile-dropdown-menu li a:hover {
    color: var(--primary-color);
    background-color: #efefef;
    border-left-color: var(--primary-color);
    padding-left: 3.25rem;
}

/* ==================== RESPONSIVE DESIGN ==================== */

/* Tablets and smaller screens */
@media (max-width: 991px) {
    header {
        padding: 0.9rem 1.5rem;
        gap: 1.2rem;
    }

    /* Show hamburger on tablets */
    .hamburger-menu {
        display: flex;
        align-items: center;
    }

    /* Hide desktop navigation */
    .header-nav {
        display: none;
    }

    .logo img {
        height: 48px;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .logo-text .brand-tagline {
        font-size: 0.6rem;
    }

    /* Adjust icons spacing */
    .header-icons {
        gap: 0.8rem;
    }

    .icon-link,
    .search-toggle,
    .user-profile-btn,
    .hamburger-toggle {
        width: 38px;
        height: 38px;
    }

    .icon-link {
        font-size: 1.2rem;
    }

    /* Show mobile sidebar */
    .mobile-sidebar {
        display: block;
    }

    .logo-text .brand-name {
        display: block;
    }

    /* Tablet Search Responsive */
    .search-toggle {
        width: 38px;
        height: 38px;
    }

    .search-modal {
        width: 95vw;
        max-width: 520px;
        top: 20px;
        left: 50%;
        transform: translateX(-50%);
    }

    .search-results-container {
        width: 95vw;
        max-width: 520px;
        top: 20px;
        left: 50%;
        transform: translateX(-50%);
        margin-top: calc(7rem);
        max-height: 55vh;
    }

    .result-image {
        width: 64px;
        height: 64px;
    }
}

/* Mobile phones */
@media (max-width: 576px) {
    header {
        padding: 0.8rem 1rem;
        gap: 0.8rem;
    }

    .hamburger-menu {
        order: 1;
    }

    .hamburger-toggle span {
        width: 24px;
        height: 2.5px;
    }

    .logo {
        gap: 0.5rem;
        flex-shrink: 0;
        order: 2;
    }

    .logo img {
        height: 42px;
    }

    .logo-text {
        font-size: 1rem;
    }

    .logo-text .brand-tagline {
        font-size: 0.55rem;
    }

    .header-icons {
        gap: 0.6rem;
        order: 3;
    }

    .icon-link,
    .search-toggle,
    .user-profile-btn,
    .hamburger-toggle {
        width: 36px;
        height: 36px;
    }

    .icon-link {
        font-size: 1.1rem;
    }

    .search-modal {
        width: 90vw;
        max-width: 480px;
        top: 20px;
        left: 50%;
        transform: translateX(-50%);
    }

    .search-results-container {
        width: 90vw;
        max-width: 480px;
        top: 20px;
        left: 50%;
        transform: translateX(-50%);
        margin-top: calc(7rem);
        max-height: 65vh;
        z-index: 2000;
    }

    .result-image {
        width: 60px;
        height: 60px;
    }

    .result-title {
        font-size: 13px;
    }

    .result-price {
        font-size: 12px;
    }

    .result-link {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
}

/* Tablet Portrait Mode (577px - 768px) */
@media (min-width: 577px) and (max-width: 768px) {
    .search-modal {
        width: 92vw;
        max-width: 500px;
        top: 20px;
        left: 50%;
        transform: translateX(-50%);
    }

    .search-results-container {
        width: 92vw;
        max-width: 500px;
        top: 20px;
        left: 50%;
        transform: translateX(-50%);
        margin-top: calc(7rem);
        max-height: 60vh;
    }

    .result-image {
        width: 62px;
        height: 62px;
    }

    .search-toggle {
        width: 38px;
        height: 38px;
    }
}

/* ==================== HERO SECTION ====================*/

.hero-section {
    max-width: 100%;
    min-height: 800px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    border-radius: 0;
}

.hero-container {
    border-radius: 0;
    height: 800px;
    width: 100%;
    position: relative;
}

.hero-img-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.8s ease-out;
    filter: brightness(0.55) blur(0.5px);
}

.hero-section:hover .hero-img-wrapper img {
    transform: scale(1.05);
}

/* Enhanced overlay effect with multiple layers */
.hero-img-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    transition: all 0.3s ease;
}

.hero-img-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    width: 100%;
    padding: 0 3rem;
    animation: fadeInUp 1s ease-out;
    text-align: center;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate(-50%, -30%);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.8;
    }

    50% {
        opacity: 1;
    }
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1.2rem;
    text-shadow: 0 6px 30px rgba(0, 0, 0, 0.4), 0 0 40px rgba(255, 136, 0, 0.2);
    letter-spacing: -1.5px;
    line-height: 1.15;
    font-family: 'Plus Jakarta Sans', sans-serif;
    animation: slideInLeft 0.8s ease-out 0.1s backwards;
    word-spacing: 0.1em;
}

.hero-title::before {
    content: '';
    display: block;
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), #FFD7A3, var(--primary-color));
    margin: 0 auto 1.5rem;
    border-radius: 3px;
    box-shadow: 0 0 20px rgba(255, 136, 0, 0.5);
    animation: slideInLeft 0.8s ease-out 0.2s backwards;
}

.hero-subtitle {
    font-size: 1.35rem;
    color: #e8e8e8;
    margin-bottom: 3rem;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.3);
    font-weight: 400;
    letter-spacing: 0.3px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    animation: slideInLeft 0.8s ease-out 0.3s backwards;
}

.hero-content .btn {
    padding: 1.1rem 3rem;
    font-size: 1.05rem;
    font-weight: 700;
    border: 2px solid transparent;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--primary-color), #FF9D1F);
    color: white;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(255, 136, 0, 0.35);
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    letter-spacing: 0.6px;
    position: relative;
    overflow: hidden;
    animation: slideInLeft 0.8s ease-out 0.4s backwards;
}

.hero-content .btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hero-content .btn:hover::before {
    opacity: 1;
}

.hero-content .btn:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 16px 50px rgba(255, 136, 0, 0.5);
    background: linear-gradient(135deg, #FF9D1F, var(--primary-color));
    border-color: rgba(255, 255, 255, 0.3);
}

.hero-content .btn:active {
    transform: translateY(-2px) scale(0.98);
}

/* Secondary CTA Button */
.hero-content .btn-secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: white;
    box-shadow: none;
    margin-left: 1rem;
}

.hero-content .btn-secondary:hover {
    background: rgba(255, 136, 0, 0.1);
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(255, 136, 0, 0.3);
}

/* Decorative elements */
.hero-decor {
    position: absolute;
    z-index: 1;
}

.hero-decor-circle-1 {
    width: 300px;
    height: 300px;
    border: 3px solid rgba(255, 136, 0, 0.15);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    animation: float 6s ease-in-out infinite;
}

.hero-decor-circle-2 {
    width: 200px;
    height: 200px;
    border: 2px solid rgba(255, 136, 0, 0.1);
    border-radius: 50%;
    bottom: -50px;
    left: -50px;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Responsive Hero Section */
@media (max-width: 1400px) {
    .hero-title {
        font-size: 3.2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-section {
        min-height: 700px;
    }

    .hero-container {
        height: 700px;
    }
}

@media (max-width: 1200px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }

    .hero-section {
        min-height: 600px;
    }

    .hero-container {
        height: 600px;
    }

    .hero-content .btn {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 500px;
    }

    .hero-container {
        height: 500px;
    }

    .hero-title {
        font-size: 2.2rem;
        letter-spacing: -0.5px;
    }

    .hero-title::before {
        width: 50px;
        height: 4px;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-content {
        padding: 0 1.5rem;
    }

    .hero-content .btn {
        padding: 0.95rem 2.2rem;
        font-size: 0.95rem;
        margin-left: 0;
    }

    .hero-content .btn-secondary {
        display: none;
    }

    .hero-decor-circle-1,
    .hero-decor-circle-2 {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-section {
        min-height: 350px;
        height: 600px;
        background: #ffffff;
        border-radius: 15px;
    }

    .hero-container {
        padding: 0.5rem;
        height: 600px;
        border-radius: 15px;
    }

    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }

    .hero-title::before {
        width: 40px;
        height: 3px;
        margin-bottom: 0.8rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .hero-content .btn {
        padding: 0.85rem 1.8rem;
        font-size: 0.9rem;
        border-radius: 40px;
    }

    .hero-img-wrapper {
        border-radius: 15px;
    }
}

/* ==================== FEATURED PRODUCTS SECTION ====================*/

.featured-products-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
    position: relative;
    overflow: hidden;
}

.featured-products-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 136, 0, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.featured-products-section .container {
    position: relative;
    z-index: 1;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1.5rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #FFD7A3);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(255, 136, 0, 0.3);
}

.featured-products-slider {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.product-item {
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card {
    background: white;
    border-radius: 1.2rem;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.product-item:hover .product-card::before {
    transform: scaleX(1);
}

.product-item:hover .product-card {
    box-shadow: 0 12px 35px rgba(255, 136, 0, 0.2);
    transform: translateY(-8px);
}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: contain;
    border-radius: 0.8rem;
    transition: all 0.4s ease;
    background: white;
}

.product-item:hover .product-image {
    transform: scale(1.08);
    filter: brightness(1.1);
}

.product-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.product-item:hover .product-name {
    color: var(--primary-color);
}

.product-price {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.action-buttons {
    display: flex;
    gap: 0.7rem;
    margin-top: auto;
    flex-wrap: wrap;
}

.action-buttons .btn {
    flex: 1;
    padding: 0.7rem 0.8rem;
    font-size: 0.85rem;
    border-radius: 0.6rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    font-weight: 600;
}

.action-buttons .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #FF9D1F);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 136, 0, 0.2);
}

.action-buttons .btn-primary:hover {
    background: linear-gradient(135deg, #FF9D1F, var(--primary-color));
    box-shadow: 0 8px 25px rgba(255, 136, 0, 0.35);
    transform: translateY(-2px);
    color: white;
}

.action-buttons .btn-success {
    background: #10b981;
    color: white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
}

.action-buttons .btn-success:hover {
    background: #059669;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.35);
    transform: translateY(-2px);
    color: white;
}

.action-buttons .btn-outline-danger {
    background: transparent;
    color: #ef4444;
    border: 2px solid #ef4444;
    box-shadow: none;
}

.action-buttons .btn-outline-danger:hover {
    background: #ef4444;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.3);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .featured-products-slider {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .section-title {
        font-size: 2.3rem;
        margin-bottom: 2.5rem;
    }

    .featured-products-section {
        padding: 4rem 0;
    }
}

@media (max-width: 992px) {
    .featured-products-slider {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .product-card {
        padding: 1.2rem;
    }

    .product-image {
        height: 180px;
    }

    .featured-products-section {
        padding: 3rem 0;
    }
}

@media (max-width: 768px) {
    .featured-products-slider {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1.8rem;
    }

    .section-title::after {
        width: 60px;
        height: 3px;
    }

    .product-card {
        padding: 1rem;
        border-radius: 1rem;
    }

    .product-image {
        height: 150px;
        border-radius: 0.6rem;
        margin-bottom: 0.8rem;
    }

    .product-name {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }

    .product-price {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .action-buttons {
        gap: 0.5rem;
    }

    .action-buttons .btn {
        padding: 0.6rem 0.7rem;
        font-size: 0.8rem;
        min-height: 36px;
    }

    .featured-products-section {
        padding: 2.5rem 0;
    }

    .featured-products-section::before {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 576px) {
    .featured-products-slider {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.25rem;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .section-title::after {
        width: 50px;
    }

    .product-card {
        padding: 0.9rem;
        border-radius: 0.9rem;
    }

    .product-image {
        height: 130px;
        margin-bottom: 0.6rem;
    }

    .product-name {
        font-size: 0.95rem;
        margin-bottom: 0.3rem;
    }

    .product-price {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }

    .action-buttons {
        gap: 0.4rem;
    }

    .action-buttons .btn {
        padding: 0.5rem 0.6rem;
        font-size: 0.75rem;
        min-height: 32px;
    }

    .featured-products-section {
        padding: 2rem 0;
    }

    .featured-products-section::before {
        width: 200px;
        height: 200px;
        top: -30%;
    }
}

/* ==================== SHOP BY CATEGORY SECTION ====================*/

.shop-by-category-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.shop-by-category-section::before {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 100%;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 136, 0, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.shop-by-category-section .container {
    position: relative;
    z-index: 1;
    max-width: 100%;
}

.shop-by-category-section .section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1.5rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.shop-by-category-section .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #FFD7A3);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(255, 136, 0, 0.3);
}

.row.g-4 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.col-md-4 {
    animation: fadeInUp 0.6s ease-out;
}

.category-card {
    position: relative;
    border-radius: 1.4rem;
    overflow: hidden;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    padding: 0 !important;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), #FFD7A3, transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 5;
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-card:hover {
    box-shadow: 0 15px 45px rgba(255, 136, 0, 0.2);
    transform: translateY(-10px);
}

.category-image {
    width: 100%;
    height: 250px;
    object-fit: contain;
    object-position: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.category-card:hover .category-image {
    transform: scale(1.12) rotate(2deg);
    filter: brightness(1.15);
}

.category-card .p-4 {
    padding: 1.5rem !important;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.category-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1.2rem;
    transition: all 0.3s ease;
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.4;
}

.category-card:hover .category-name {
    color: var(--primary-color);
}

.category-card .btn {
    padding: 0.95rem 2rem;
    font-size: 0.95rem;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--primary-color), #FF9D1F);
    color: white;
    border: none;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(255, 136, 0, 0.25);
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.category-card .btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.category-card .btn:hover::before {
    opacity: 1;
}

.category-card .btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 35px rgba(255, 136, 0, 0.4);
    background: linear-gradient(135deg, #FF9D1F, var(--primary-color));
}

.category-card .btn:active {
    transform: translateY(-1px) scale(0.98);
}

.category-card .mt-2 {
    margin-top: 1rem !important;
}

/* Responsive Design for Categories */
@media (max-width: 1200px) {
    .row.g-4 {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.8rem;
    }

    .col-md-4 {
        max-width: 100%;
    }

    .shop-by-category-section {
        padding: 4rem 0;
    }

    .shop-by-category-section .section-title {
        font-size: 2.3rem;
        margin-bottom: 2.5rem;
    }

    .category-image {
        height: 220px;
    }

    .category-name {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 992px) {
    .row.g-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .shop-by-category-section {
        padding: 3.5rem 0;
    }

    .shop-by-category-section .section-title {
        font-size: 2rem;
        margin-bottom: 2.2rem;
    }

    .category-image {
        height: 200px;
    }

    .category-card {
        border-radius: 1.2rem;
    }

    .category-card .p-4 {
        padding: 1.2rem !important;
    }

    .category-name {
        font-size: 1.15rem;
        margin-bottom: 0.9rem;
    }

    .category-card .btn {
        padding: 0.85rem 1.8rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .row.g-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }

    .shop-by-category-section {
        padding: 3rem 0;
    }

    .shop-by-category-section .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .shop-by-category-section .section-title::after {
        width: 60px;
        height: 3px;
    }

    .category-image {
        height: 180px;
    }

    .category-card {
        border-radius: 1rem;
    }

    .category-card .p-4 {
        padding: 1rem !important;
    }

    .category-name {
        font-size: 1.05rem;
        margin-bottom: 0.8rem;
    }

    .category-card .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.85rem;
        width: 100%;
    }

    .shop-by-category-section::before {
        width: 350px;
        height: 350px;
        bottom: -15%;
    }
}

@media (max-width: 576px) {
    .row.g-4 {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .shop-by-category-section {
        padding: 2.5rem 0;
    }

    .shop-by-category-section .section-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .shop-by-category-section .section-title::after {
        width: 50px;
    }

    .category-image {
        height: 160px;
    }

    .category-card {
        border-radius: 0.9rem;
    }

    .category-card .p-4 {
        padding: 0.9rem !important;
    }

    .category-name {
        font-size: 1rem;
        margin-bottom: 0.7rem;
    }

    .category-card .btn {
        padding: 0.7rem 1.3rem;
        font-size: 0.8rem;
        width: 100%;
    }

    .shop-by-category-section::before {
        width: 250px;
        height: 250px;
        bottom: -10%;
    }
}

/* ==================== BRANDS CAROUSEL SECTION ====================*/

.shop-by-brand-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
    position: relative;
    overflow: hidden;
}

.shop-by-brand-section::before {
    content: '';
    position: absolute;
    top: -15%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 136, 0, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.shop-by-brand-section .container {
    position: relative;
    z-index: 1;
}

.shop-by-brand-section .section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1.5rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.shop-by-brand-section .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #FFD7A3);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(255, 136, 0, 0.3);
}

.brands-carousel {
    position: relative;
    padding: 2rem 0;
}

.brand-slide {
    padding: 0 1rem;
    animation: fadeInUp 0.6s ease-out;
    width: 100%;
}

.brand-logo-link {
    text-decoration: none;
    display: block;
    height: 100%;
}

.brand-card {
    background: white;
    border-radius: 1.2rem;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.brand-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), #FFD7A3, transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 5;
}

.brand-card:hover::before {
    transform: scaleX(1);
}

.brand-card:hover {
    box-shadow: 0 15px 45px rgba(255, 136, 0, 0.2);
    transform: translateY(-10px) scale(1.02);
}

.brand-logo {
    width: 100%;
    max-width: 140px;
    height: auto;
    object-fit: contain;
    transition: all 0.4s ease;
    margin-bottom: 1rem;
    filter: grayscale(0%);
}

.brand-card:hover .brand-logo {
    transform: scale(1.15);
    filter: drop-shadow(0 8px 15px rgba(255, 136, 0, 0.3));
}

.brand-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    text-align: center;
    transition: color 0.3s ease;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.brand-card:hover .brand-text {
    color: var(--primary-color);
}

/* Slick Carousel Custom Styles */
.slick-track {
    display: flex !important;
}

.slick-slide {
    display: flex !important;
    align-items: stretch;
    height: auto;
}

.slick-dots {
    position: relative;
    bottom: auto;
    margin-top: 2rem;
    padding: 0;
    list-style: none;
    text-align: center;
}

.slick-dots li {
    display: inline-block;
    margin: 0 0.5rem;
}

.slick-dots li button {
    display: block;
    width: 12px;
    height: 12px;
    padding: 0;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    background: transparent;
    color: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0;
}

.slick-dots li.slick-active button {
    background: var(--primary-color);
    box-shadow: 0 0 10px rgba(255, 136, 0, 0.4);
}

.slick-dots li button:hover {
    background: var(--primary-color);
    box-shadow: 0 0 15px rgba(255, 136, 0, 0.5);
}

/* Arrow buttons */
.slick-prev,
.slick-next {
    position: absolute;
    top: 50%;
    width: 45px;
    height: 45px;
    padding: 0;
    margin: 0;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--primary-color), #FF9D1F);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(255, 136, 0, 0.25);
}

.slick-prev:hover,
.slick-next:hover {
    background: linear-gradient(135deg, #FF9D1F, var(--primary-color));
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 10px 30px rgba(255, 136, 0, 0.4);
}

.slick-prev:active,
.slick-next:active {
    transform: translateY(-50%) scale(0.95);
}

.slick-prev {
    left: -60px;
}

.slick-next {
    right: -60px;
}

/* Responsive Brands Carousel */
@media (max-width: 1200px) {
    .shop-by-brand-section {
        padding: 4rem 0;
    }

    .shop-by-brand-section .section-title {
        font-size: 2.3rem;
        margin-bottom: 2.5rem;
    }

    .brand-card {
        min-height: 180px;
        padding: 1.5rem;
    }

    .brand-logo {
        max-width: 120px;
        margin-bottom: 0.8rem;
    }

    .brand-text {
        font-size: 1rem;
    }

    .slick-prev {
        left: -50px;
    }

    .slick-next {
        right: -50px;
    }
}

@media (max-width: 992px) {
    .shop-by-brand-section {
        padding: 3.5rem 0;
    }

    .shop-by-brand-section .section-title {
        font-size: 2rem;
        margin-bottom: 2.2rem;
    }

    .brand-card {
        min-height: 160px;
        padding: 1.2rem;
    }

    .brand-logo {
        max-width: 100px;
        margin-bottom: 0.6rem;
    }

    .brand-text {
        font-size: 0.95rem;
    }

    .slick-prev,
    .slick-next {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .slick-prev {
        left: -45px;
    }

    .slick-next {
        right: -45px;
    }
}

@media (max-width: 768px) {
    .shop-by-brand-section {
        padding: 3rem 0;
    }

    .shop-by-brand-section .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .shop-by-brand-section .section-title::after {
        width: 60px;
        height: 3px;
    }

    .brand-slide {
        padding: 0 0.5rem;
    }

    .brand-card {
        min-height: 180px;
        padding: 1.3rem;
        border-radius: 1.1rem;
    }

    .brand-logo {
        max-width: 100px;
        margin-bottom: 0.6rem;
    }

    .brand-text {
        font-size: 0.95rem;
        font-weight: 700;
    }

    .slick-prev,
    .slick-next {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    .slick-prev {
        left: -40px;
    }

    .slick-next {
        right: -40px;
    }

    .slick-dots li button {
        width: 10px;
        height: 10px;
    }

    .shop-by-brand-section::before {
        width: 350px;
        height: 350px;
    }
}

@media (max-width: 576px) {
    .shop-by-brand-section {
        padding: 2.5rem 0;
    }

    .shop-by-brand-section .section-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .shop-by-brand-section .section-title::after {
        width: 50px;
    }

    .brands-carousel {
        padding: 1rem 0;
        margin: 0 -15px;
    }

    .brand-slide {
        padding: 0 0.5rem;
    }

    .brand-card {
        min-height: 200px;
        padding: 1.5rem;
        border-radius: 1.1rem;
    }

    .brand-logo {
        max-width: 100px;
        margin-bottom: 0.8rem;
    }

    .brand-text {
        font-size: 0.95rem;
        font-weight: 700;
    }

    .slick-prev,
    .slick-next {
        display: none;
    }

    .slick-dots li {
        margin: 0 0.4rem;
    }

    .slick-dots li button {
        width: 10px;
        height: 10px;
    }

    .brands-carousel {
        padding: 0 0 2rem 0;
    }

    .shop-by-brand-section::before {
        width: 250px;
        height: 250px;
    }
}

/* ==================== OFFERS SECTION ====================*/

.offers-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f8f8 100%);
    position: relative;
    overflow: hidden;
}

.offers-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 136, 0, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.offers-section .container {
    position: relative;
    z-index: 1;
}

.section-header {
    margin-bottom: 3.5rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1rem;
    color: #777;
    font-weight: 400;
    letter-spacing: 0.3px;
    line-height: 1.6;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.offer-card {
    background: white;
    border-radius: 1.2rem;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    animation: fadeInUp 0.6s ease-out;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 5;
}

.offer-card:hover::before {
    transform: scaleX(1);
}

.offer-card:hover {
    box-shadow: 0 8px 28px rgba(255, 136, 0, 0.12);
    transform: translateY(-6px);
}

.offer-card.featured-offer {
    grid-column: 1;
    grid-row: 1 / 3;
    box-shadow: 0 4px 16px rgba(255, 136, 0, 0.1);
}

.offer-card.featured-offer:hover {
    box-shadow: 0 12px 40px rgba(255, 136, 0, 0.15);
}

.offer-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: white;
    padding: 0.6rem 1.1rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(255, 136, 0, 0.25);
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.offer-image-wrapper {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: white;
}

.offer-card.featured-offer .offer-image-wrapper {
    height: 320px;
}

.offer-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.offer-card:hover .offer-image {
    transform: scale(1.08);
}

.offer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 3;
}

.offer-card:hover .offer-overlay {
    opacity: 1;
}

.btn-shop-offer {
    background: white;
    color: var(--primary-color);
    padding: 0.9rem 2.2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    letter-spacing: 0.4px;
    font-size: 0.95rem;
}

.btn-shop-offer:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

.offer-content {
    padding: 1.6rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.offer-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.7rem;
    transition: color 0.3s ease;
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.4;
}

.offer-card:hover .offer-title {
    color: var(--primary-color);
}

.offer-description {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 1rem;
    flex-grow: 1;
    line-height: 1.5;
    font-weight: 400;
}

.offer-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
}

.offer-price {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-color);
}

.offer-link {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: white;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.offer-link:hover {
    background: #FF9D1F;
    transform: translateX(3px);
    box-shadow: 0 4px 15px rgba(255, 136, 0, 0.25);
}

/* Offers CTA Section */
.offers-cta-section {
    padding: 3rem 2.5rem;
    background: linear-gradient(135deg, rgba(255, 136, 0, 0.05) 0%, rgba(255, 136, 0, 0.02) 100%);
    border-radius: 1.2rem;
    border: 1px solid rgba(255, 136, 0, 0.1);
}

.cta-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.cta-subtitle {
    font-size: 0.95rem;
    color: #777;
    font-weight: 400;
}

.btn-cta {
    padding: 1rem 3rem !important;
    font-size: 1rem !important;
    border-radius: 8px !important;
    background: var(--primary-color) !important;
    color: white !important;
    border: none !important;
    box-shadow: 0 6px 20px rgba(255, 136, 0, 0.25) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    font-weight: 700 !important;
    letter-spacing: 0.4px !important;
}

.btn-cta:hover {
    background: #FF9D1F !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 28px rgba(255, 136, 0, 0.35) !important;
}

/* Responsive Design for Offers */
@media (max-width: 1200px) {
    .offers-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.8rem;
    }

    .offer-card.featured-offer {
        grid-column: 1;
        grid-row: 1;
    }

    .offer-image-wrapper {
        height: 210px;
    }

    .offer-card.featured-offer .offer-image-wrapper {
        height: 210px;
    }

    .offers-section {
        padding: 4rem 0;
    }

    .section-header {
        margin-bottom: 2.8rem;
    }
}

@media (max-width: 992px) {
    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .offer-card.featured-offer {
        grid-column: 1 / 3;
        grid-row: 1;
    }

    .offer-image-wrapper {
        height: 200px;
    }

    .offer-card.featured-offer .offer-image-wrapper {
        height: 240px;
    }

    .offer-content {
        padding: 1.4rem;
    }

    .offer-title {
        font-size: 1.1rem;
    }

    .offers-section {
        padding: 3.5rem 0;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }
}

@media (max-width: 768px) {
    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }

    .offer-card.featured-offer {
        grid-column: 1 / 3;
        grid-row: 1;
    }

    .offer-image-wrapper {
        height: 170px;
    }

    .offer-card.featured-offer .offer-image-wrapper {
        height: 210px;
    }

    .offer-badge {
        padding: 0.5rem 0.9rem;
        font-size: 0.75rem;
        top: 0.8rem;
        right: 0.8rem;
    }

    .offer-content {
        padding: 1.2rem;
    }

    .offer-title {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .offer-description {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
    }

    .offer-footer {
        padding-top: 0.8rem;
    }

    .offer-price {
        font-size: 1.05rem;
    }

    .offer-link {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }

    .btn-shop-offer {
        padding: 0.8rem 1.8rem;
        font-size: 0.9rem;
    }

    .offers-section {
        padding: 3rem 0;
    }

    .section-header {
        margin-bottom: 2.2rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .offers-cta-section {
        padding: 2rem 1.8rem;
    }

    .cta-title {
        font-size: 1.4rem;
    }

    .cta-subtitle {
        font-size: 0.9rem;
    }

    .btn-cta {
        padding: 0.9rem 2.5rem !important;
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .offers-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .offer-card.featured-offer {
        grid-column: 1;
        grid-row: 1;
    }

    .offer-image-wrapper {
        height: 150px;
    }

    .offer-card.featured-offer .offer-image-wrapper {
        height: 170px;
    }

    .offer-badge {
        padding: 0.5rem 0.8rem;
        font-size: 0.7rem;
        top: 0.6rem;
        right: 0.6rem;
    }

    .offer-content {
        padding: 1rem;
    }

    .offer-title {
        font-size: 0.95rem;
        margin-bottom: 0.4rem;
    }

    .offer-description {
        font-size: 0.8rem;
        margin-bottom: 0.6rem;
    }

    .offer-footer {
        padding-top: 0.7rem;
    }

    .offer-price {
        font-size: 1rem;
    }

    .offer-link {
        width: 34px;
        height: 34px;
        font-size: 0.8rem;
    }

    .btn-shop-offer {
        padding: 0.7rem 1.5rem;
        font-size: 0.85rem;
    }

    .offers-section {
        padding: 2.5rem 0;
    }

    .section-header {
        margin-bottom: 1.8rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    .offers-cta-section {
        padding: 1.8rem 1.2rem;
        border-radius: 1rem;
    }

    .cta-title {
        font-size: 1.3rem;
        margin-bottom: 0.6rem;
    }

    .cta-subtitle {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .btn-cta {
        padding: 0.8rem 1.8rem !important;
        font-size: 0.9rem;
    }

    .offers-section::before {
        width: 250px;
        height: 250px;
    }
}

.offer-card.featured-offer:hover {
    box-shadow: 0 20px 60px rgba(255, 136, 0, 0.3);
}

.offer-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--primary-color), #FF9D1F);
    color: white;
    padding: 0.7rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 800;
    z-index: 10;
    box-shadow: 0 6px 20px rgba(255, 136, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@media (max-width: 576px) {
    .offers-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .offer-card.featured-offer {
        grid-column: 1;
        grid-row: 1;
    }

    .offer-image-wrapper {
        height: 160px;
    }

    .offer-card.featured-offer .offer-image-wrapper {
        height: 180px;
    }

    .offer-badge {
        padding: 0.5rem 0.9rem;
        font-size: 0.75rem;
        top: 0.6rem;
        right: 0.6rem;
    }

    .offer-content {
        padding: 1rem;
    }

    .offer-title {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }

    .offer-description {
        font-size: 0.8rem;
        margin-bottom: 0.6rem;
    }

    .offer-footer {
        padding-top: 0.8rem;
    }

    .offer-price {
        font-size: 1rem;
    }

    .offer-link {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }

    .offers-section {
        padding: 2.5rem 0;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    .offers-cta-section {
        padding: 1.8rem 1.2rem;
        border-radius: 1.2rem;
    }

    .cta-title {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }

    .cta-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }

    .btn-cta {
        padding: 0.85rem 2rem !important;
        font-size: 0.95rem;
    }

    .offers-section::before {
        width: 300px;
        height: 300px;
        top: -50%;
        left: -30%;
    }

    .offers-section::after {
        width: 250px;
        height: 250px;
        bottom: -30%;
        right: -30%;
    }
}

/* ==========================================
   WHY CHOOSE US SECTION
   ========================================== */

.why-choose-us-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-us-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 136, 0, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.wcu-header {
    position: relative;
    z-index: 2;
}

.wcu-header .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.wcu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.wcu-feature {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #E8E8E8;
    position: relative;
    overflow: hidden;
}

.wcu-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), #FFD7A3);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.wcu-feature:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 12px 32px rgba(255, 136, 0, 0.12);
}

.wcu-feature:hover::before {
    transform: scaleX(1);
}

.wcu-icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #FF8800, #FFB366);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 136, 0, 0.2);
}

.wcu-feature:hover .wcu-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(255, 136, 0, 0.3);
}

.wcu-icon-wrapper i {
    font-size: 1.8rem;
    color: #FFFFFF;
}

.wcu-feature-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.wcu-feature-text {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* =====================================
   Why Choose Us - Tablet (≤992px)
   ===================================== */

@media (max-width: 992px) {
    .why-choose-us-section {
        padding: 60px 0;
    }

    .wcu-header .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .wcu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .wcu-feature {
        padding: 30px 24px;
    }

    .wcu-icon-wrapper {
        width: 60px;
        height: 60px;
    }

    .wcu-icon-wrapper i {
        font-size: 1.5rem;
    }

    .wcu-feature-title {
        font-size: 1.1rem;
    }

    .wcu-feature-text {
        font-size: 0.9rem;
    }
}

/* =====================================
   Why Choose Us - Mobile (≤768px)
   ===================================== */

@media (max-width: 768px) {
    .why-choose-us-section {
        padding: 50px 0;
    }

    .wcu-header .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .wcu-grid {
        grid-template-columns: 1fr fr;
        gap: 20px;
    }

    .wcu-feature {
        padding: 28px 20px;
    }

    .wcu-icon-wrapper {
        width: 55px;
        height: 55px;
    }

    .wcu-icon-wrapper i {
        font-size: 1.3rem;
    }

    .wcu-feature-title {
        font-size: 1rem;
    }

    .wcu-feature-text {
        font-size: 0.85rem;
    }
}

/* =====================================
   Why Choose Us - Small Mobile (≤576px)
   ===================================== */

@media (max-width: 576px) {
    .why-choose-us-section {
        padding: 40px 0;
    }

    .why-choose-us-section::before {
        width: 300px;
        height: 300px;
        right: -100px;
    }

    .wcu-header .section-title {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    .wcu-grid {
        gap: 16px;
    }

    .wcu-feature {
        padding: 24px 16px;
        border-radius: 10px;
    }

    .wcu-icon-wrapper {
        width: 50px;
        height: 50px;
        margin: 0 auto 16px;
    }

    .wcu-icon-wrapper i {
        font-size: 1.1rem;
    }

    .wcu-feature-title {
        font-size: 0.95rem;
    }

    .wcu-feature-text {
        font-size: 0.8rem;
    }
}

/* ==========================================
   GIFT CARDS SECTION
   ========================================== */

.gift-cards-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #E67600 100%);
    position: relative;
    overflow: hidden;
}

.gift-cards-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    pointer-events: none;
}

.gift-cards-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    pointer-events: none;
}

.gc-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.gc-text {
    color: #FFFFFF;
}

.gc-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -1px;
    line-height: 1.2;
}

.gc-description {
    font-size: 1.15rem;
    margin-bottom: 32px;
    line-height: 1.7;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
}

.gc-cta-btn {
    display: inline-block;
    padding: 16px 48px;
    background: #FFFFFF;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #FFFFFF;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.gc-cta-btn:hover {
    background: transparent;
    color: #FFFFFF;
    text-decoration: none;
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.gc-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.gc-visual i {
    font-size: 280px;
    color: rgba(255, 255, 255, 0.15);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* =====================================
   Gift Cards - Tablet (≤992px)
   ===================================== */

@media (max-width: 992px) {
    .gift-cards-section {
        padding: 60px 0;
    }

    .gc-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .gc-title {
        font-size: 2.2rem;
    }

    .gc-description {
        font-size: 1rem;
    }

    .gc-visual i {
        font-size: 200px;
    }
}

/* =====================================
   Gift Cards - Mobile (≤768px)
   ===================================== */

@media (max-width: 768px) {
    .gift-cards-section {
        padding: 50px 0;
    }

    .gift-cards-section::before {
        width: 350px;
        height: 350px;
        top: -100px;
        right: -120px;
    }

    .gift-cards-section::after {
        width: 300px;
        height: 300px;
        bottom: -100px;
        left: -100px;
    }

    .gc-title {
        font-size: 1.8rem;
        margin-bottom: 16px;
    }

    .gc-description {
        font-size: 0.95rem;
        margin-bottom: 24px;
    }

    .gc-visual i {
        font-size: 150px;
    }
}

/* =====================================
   Gift Cards - Small Mobile (≤576px)
   ===================================== */

@media (max-width: 576px) {
    .gift-cards-section {
        padding: 40px 0;
    }

    .gc-title {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }

    .gc-description {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .gc-cta-btn {
        padding: 14px 36px;
        font-size: 0.95rem;
    }

    .gc-visual i {
        font-size: 120px;
    }
}

/* ==========================================
   FOOTER SECTION
   ========================================== */

.footer-section {
    background: linear-gradient(180deg, #1A1A1A 0%, #0F0F0F 100%);
    color: #E0E0E0;
    position: relative;
    overflow: hidden;
}

.footer-section .container {
    max-width: 100%;
    padding: 0 2rem;
}
.footer-column-group {
    display: flex;
    gap: 25%;
    flex-direction: row;
}
.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 136, 0, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.footer-top {
    padding: 80px 0 40px;
    position: relative;
    z-index: 1;
    border-bottom: 1px solid rgba(255, 136, 0, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
}

.footer-column {
    position: relative;
}

.footer-about {
    grid-column: 1 / 2;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 48px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.footer-logo:hover img {
    transform: scale(1.08);
}

.footer-brand {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #B0B0B0;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 136, 0, 0.1);
    border: 1px solid rgba(255, 136, 0, 0.2);
    border-radius: 50%;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
}

.social-icon:hover {
    background: var(--primary-color);
    color: #FFFFFF;
    border-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(255, 136, 0, 0.3);
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 24px;
    letter-spacing: -0.3px;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 0.8px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: #B0B0B0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: '';
    display: inline-block;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-links a:hover::before {
    width: 8px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.contact-item i {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-top: 2px;
    flex-shrink: 0;
    width: 24px;
    text-align: center;
}

.contact-label {
    font-size: 0.85rem;
    color: #888;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.contact-value {
    font-size: 0.95rem;
    color: #E0E0E0;
    margin: 0;
    line-height: 1.5;
}

.footer-newsletter-text {
    font-size: 0.95rem;
    color: #B0B0B0;
    margin-bottom: 18px;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.newsletter-input {
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 136, 0, 0.3);
    border-radius: 6px;
    color: #E0E0E0;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    outline: none;
}

.newsletter-input::placeholder {
    color: #888;
}

.newsletter-input:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--primary-color);
    box-shadow: 0 0 12px rgba(255, 136, 0, 0.2);
}

.newsletter-btn {
    padding: 12px 16px;
    background: linear-gradient(135deg, var(--primary-color), #FF9D1F);
    color: #FFFFFF;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(255, 136, 0, 0.2);
}

.newsletter-btn:hover {
    background: linear-gradient(135deg, #FF9D1F, var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 136, 0, 0.35);
}

.footer-badges {
    display: flex;
    gap: 12px;
    align-items: center;
}

.badge-img {
    max-width: 80px;
    height: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.badge-img:hover {
    opacity: 1;
}

/* Footer Bottom */
.footer-bottom {
    padding: 30px 0;
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(255, 136, 0, 0.08);
    position: relative;
    z-index: 1;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-copyright {
    font-size: 0.9rem;
    color: #888;
    margin: 0;
    flex: 1;
}

.footer-copyright i {
    color: #FF4757;
    margin: 0 4px;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-bottom-links a {
    color: #888;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

.divider {
    color: #666;
}

/* =====================================
   Footer - Tablet (≤992px)
   ===================================== */

@media (max-width: 992px) {
    .footer-top {
        padding: 60px 0 30px;
    }

    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
    }

    .footer-about {
        grid-column: 1 / 3;
    }

    .footer-logo img {
        height: 44px;
    }

    .footer-brand {
        font-size: 1.2rem;
    }

    .footer-title {
        font-size: 0.95rem;
    }

    .footer-links a {
        font-size: 0.9rem;
    }

    .contact-value {
        font-size: 0.9rem;
    }

    .footer-newsletter-text {
        font-size: 0.9rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 16px;
    }

    .footer-copyright {
        flex: auto;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }
}

/* =====================================
   Footer - Mobile (≤768px)
   ===================================== */

@media (max-width: 768px) {
    .footer-top {
        padding: 50px 0 25px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer-about {
        grid-column: 1 / 3;
    }

    .footer-logo img {
        height: 40px;
    }

    .footer-brand {
        font-size: 1.1rem;
    }

    .footer-desc {
        font-size: 0.9rem;
        margin-bottom: 18px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .footer-title {
        font-size: 0.9rem;
        margin-bottom: 16px;
    }

    .footer-links li {
        margin-bottom: 12px;
    }

    .footer-links a {
        font-size: 0.88rem;
    }

    .contact-item {
        gap: 12px;
        margin-bottom: 16px;
    }

    .contact-item i {
        font-size: 1rem;
    }

    .contact-label {
        font-size: 0.8rem;
    }

    .contact-value {
        font-size: 0.88rem;
    }

    .footer-newsletter-text {
        font-size: 0.88rem;
        margin-bottom: 14px;
    }

    .newsletter-input {
        padding: 10px 14px;
        font-size: 0.9rem;
    }

    .newsletter-btn {
        padding: 10px 14px;
        font-size: 0.9rem;
    }

    .footer-bottom {
        padding: 24px 0;
    }

    .footer-copyright {
        font-size: 0.85rem;
    }

    .footer-bottom-links a {
        font-size: 0.85rem;
    }

    .footer-section::before {
        width: 400px;
        height: 400px;
        top: -100px;
        right: -150px;
    }
}

/* =====================================
   Footer - Small Mobile (≤576px)
   ===================================== */

@media (max-width: 576px) {
    .footer-top {
        padding: 40px 0 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-about {
        grid-column: 1;
    }

    .footer-logo {
        margin-bottom: 16px;
    }

    .footer-logo img {
        height: 36px;
    }

    .footer-brand {
        font-size: 1rem;
    }

    .footer-desc {
        font-size: 0.85rem;
        margin-bottom: 14px;
        line-height: 1.6;
    }

    .footer-social {
        gap: 10px;
    }

    .social-icon {
        width: 38px;
        height: 38px;
        font-size: 0.85rem;
    }

    .footer-title {
        font-size: 0.85rem;
        margin-bottom: 12px;
        font-weight: 700;
    }

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-links a {
        font-size: 0.85rem;
    }

    .footer-contact {
        gap: 16px;
    }

    .contact-item {
        gap: 10px;
    }

    .contact-item i {
        font-size: 1rem;
        width: 20px;
    }

    .contact-label {
        font-size: 0.75rem;
        margin-bottom: 2px;
    }

    .contact-value {
        font-size: 0.85rem;
    }

    .footer-newsletter-text {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }

    .newsletter-form {
        gap: 8px;
        margin-bottom: 16px;
    }

    .newsletter-input {
        padding: 9px 12px;
        font-size: 0.85rem;
        border-radius: 5px;
    }

    .newsletter-btn {
        padding: 9px 12px;
        font-size: 0.85rem;
        border-radius: 5px;
    }

    .badge-img {
        max-width: 70px;
    }

    .footer-bottom {
        padding: 20px 0;
    }

    .footer-bottom-content {
        gap: 12px;
    }

    .footer-copyright {
        font-size: 0.8rem;
        text-align: center;
    }

    .footer-bottom-links {
        gap: 8px;
        font-size: 0.8rem;
    }

    .footer-bottom-links a {
        font-size: 0.8rem;
    }

    .divider {
        margin: 0 4px;
    }

    .footer-section::before {
        width: 300px;
        height: 300px;
        top: -50px;
        right: -100px;
    }
}

/* ==========================================
   LOGIN PAGE SECTION
   ========================================== */

.login-page-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    overflow: hidden;
}

.login-page-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 136, 0, 0.05) 25%, transparent 25%, transparent 75%, rgba(255, 136, 0, 0.05) 75%, rgba(255, 136, 0, 0.05)),
                linear-gradient(45deg, rgba(255, 136, 0, 0.05) 25%, transparent 25%, transparent 75%, rgba(255, 136, 0, 0.05) 75%, rgba(255, 136, 0, 0.05));
    background-size: 60px 60px;
    background-position: 0 0, 30px 30px;
    pointer-events: none;
}

.login-page-container {
    position: relative;
    z-index: 2;
    max-width: 450px;
    width: 100%;
}

.login-wrapper {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 50px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.login-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), #FFD7A3, var(--primary-color));
}

.login-header {
    text-align: center;
    margin-bottom: 40px;
}

.login-logo {
    margin-bottom: 24px;
}

.login-logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(255, 136, 0, 0.2));
}

.login-logo:hover img {
    transform: scale(1.08);
}

.login-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.login-subtitle {
    font-size: 0.95rem;
    color: #888;
    margin: 0;
    line-height: 1.5;
    font-weight: 400;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.login-form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    letter-spacing: -0.3px;
}

.form-label i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.form-input {
    width: 100%;
    padding: 14px 16px 14px 14px;
    border: 2px solid #E8E8E8;
    border-radius: 10px;
    font-size: 0.95rem;
    color: var(--text);
    background: #F9F9F9;
    outline: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.form-input::placeholder {
    color: #CCC;
}

.form-input:focus {
    background: #FFFFFF;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(255, 136, 0, 0.1);
}

.input-icon-right {
    position: absolute;
    right: 14px;
    color: #999;
    font-size: 0.95rem;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
}

.toggle-password {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    pointer-events: auto;
    color: var(--text);
    transition: all 0.3s ease;
}

.toggle-password:hover {
    color: var(--primary-color);
}

.form-text {
    font-size: 0.8rem;
    color: #999;
    margin-top: 4px;
    display: block;
}

.password-label-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.forgot-password-link {
    font-size: 0.85rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.forgot-password-link:hover {
    color: #FF9D1F;
    text-decoration: underline;
}

.remember-me-group {
    margin-top: 8px;
}

.remember-me-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
    font-size: 0.9rem;
    color: #666;
    gap: 10px;
}

.remember-me-label input {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #E8E8E8;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

.remember-me-label input:checked ~ .checkmark {
    background: linear-gradient(135deg, var(--primary-color), #FF9D1F);
    border-color: var(--primary-color);
}

.remember-me-label input:checked ~ .checkmark::after {
    content: '✓';
    color: white;
    font-size: 0.75rem;
    font-weight: 800;
}

.label-text {
    color: var(--text);
    font-weight: 500;
}

.login-btn {
    padding: 14px 20px;
    background: linear-gradient(135deg, var(--primary-color), #FF9D1F);
    color: #FFFFFF;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 8px 20px rgba(255, 136, 0, 0.25);
    letter-spacing: 0.5px;
}

.login-btn:hover {
    background: linear-gradient(135deg, #FF9D1F, var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 136, 0, 0.35);
}

.login-btn:active {
    transform: translateY(0);
    box-shadow: 0 6px 16px rgba(255, 136, 0, 0.25);
}

.login-btn i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.login-btn:hover i {
    transform: translateX(2px);
}

/* Alert Messages */
.alert {
    margin-bottom: 20px;
    padding: 14px 16px;
    border-radius: 8px;
    border: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert-danger {
    background: rgba(239, 68, 68, 0.1);
    color: #DC2626;
    border-left: 4px solid #DC2626;
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    border-left: 4px solid #059669;
}

.alert-warning {
    background: rgba(245, 158, 11, 0.1);
    color: #B45309;
    border-left: 4px solid #F59E0B;
}

.alert i {
    font-size: 1rem;
}

.close {
    opacity: 0.7;
    transition: opacity 0.3s ease;
    color: inherit !important;
    font-size: 1.2rem;
}

.close:hover {
    opacity: 1;
}

.form-divider {
    position: relative;
    margin: 30px 0 20px;
    text-align: center;
    font-size: 0.85rem;
    color: #999;
    font-weight: 500;
}

.form-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #E8E8E8;
    z-index: 0;
}

.form-divider span {
    background: #FFFFFF;
    padding: 0 10px;
    position: relative;
    z-index: 1;
}

.register-link {
    padding: 14px 20px;
    background: #F5F5F5;
    color: var(--text);
    border: 2px solid #E8E8E8;
    border-radius: 10px;
    text-decoration: none;
    text-align: center;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.register-link:hover {
    background: #E8E8E8;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.register-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.register-link:hover i {
    transform: translateX(2px);
}

.login-footer-info {
    text-align: center;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #E8E8E8;
    font-size: 0.8rem;
    color: #888;
    line-height: 1.6;
}

.login-footer-info a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.login-footer-info a:hover {
    text-decoration: underline;
    color: #FF9D1F;
}

/* Decorative Background Elements */
.login-background-decoration {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 200px;
    height: 200px;
    pointer-events: none;
    z-index: 0;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
}

.decoration-1 {
    width: 300px;
    height: 300px;
    background: var(--primary-color);
    top: -50px;
    right: -100px;
    animation: float 6s ease-in-out infinite;
}

.decoration-2 {
    width: 200px;
    height: 200px;
    background: #FF9D1F;
    bottom: -80px;
    left: -80px;
    animation: float 8s ease-in-out infinite reverse;
}

/* =====================================
   Login Page - Mobile (≤768px)
   ===================================== */

@media (max-width: 768px) {
    .login-page-section {
        padding: 20px 15px;
        min-height: auto;
    }

    .login-page-container {
        max-width: 100%;
    }

    .login-wrapper {
        padding: 40px 24px;
        border-radius: 14px;
    }

    .login-header {
        margin-bottom: 30px;
    }

    .login-logo img {
        height: 50px;
    }

    .login-title {
        font-size: 1.7rem;
        margin-bottom: 10px;
    }

    .login-subtitle {
        font-size: 0.9rem;
    }

    .login-form {
        gap: 20px;
    }

    .form-label {
        font-size: 0.9rem;
    }

    .form-input {
        padding: 12px 14px;
        font-size: 0.9rem;
    }

    .input-icon-right {
        right: 12px;
        width: 18px;
        height: 18px;
    }

    .form-divider {
        margin: 24px 0 16px;
        font-size: 0.8rem;
    }

    .register-link {
        padding: 12px 18px;
        font-size: 0.9rem;
    }

    .login-btn {
        padding: 12px 18px;
        font-size: 0.95rem;
    }
}

/* =====================================
   Login Page - Small Mobile (≤576px)
   ===================================== */

@media (max-width: 576px) {
    .login-page-section {
        padding: 20px 12px;
    }

    .login-wrapper {
        padding: 32px 18px;
        border-radius: 12px;
    }

    .login-header {
        margin-bottom: 28px;
    }

    .login-logo img {
        height: 45px;
    }

    .login-title {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }

    .login-subtitle {
        font-size: 0.85rem;
    }

    .login-form {
        gap: 18px;
    }

    .form-label {
        font-size: 0.85rem;
    }

    .form-input {
        padding: 11px 12px;
        font-size: 0.85rem;
        border-radius: 8px;
    }

    .input-icon-right {
        right: 11px;
        font-size: 0.85rem;
    }

    .remember-me-label {
        font-size: 0.85rem;
        gap: 8px;
    }

    .checkmark {
        width: 18px;
        height: 18px;
        border-radius: 5px;
    }

    .form-text {
        font-size: 0.75rem;
    }

    .form-divider {
        margin: 22px 0 14px;
        font-size: 0.75rem;
    }

    .form-divider span {
        padding: 0 6px;
    }

    .login-btn {
        padding: 11px 16px;
        font-size: 0.9rem;
        gap: 6px;
    }

    .register-link {
        padding: 11px 16px;
        font-size: 0.85rem;
        gap: 6px;
    }

    .login-footer-info {
        margin-top: 20px;
        padding-top: 16px;
        font-size: 0.75rem;
    }

    .alert {
        padding: 12px 14px;
        font-size: 0.85rem;
        gap: 8px;
    }
}

/* ==================== USER PROFILE DROPDOWN STYLES ==================== */

.user-profile-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.user-profile-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
}

.user-profile-btn:hover {
    background-color: var(--light-accent);
}

.user-avatar {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 136, 0, 0.1), rgba(255, 215, 163, 0.1));
    border: 2px solid var(--primary-color);
}

.user-indicator {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 10px;
    height: 10px;
    background-color: #27ae60;
    border: 2px solid white;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.user-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    min-width: 320px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    margin-top: 0.5rem;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.user-dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.dropdown-header {
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: white;
}

.user-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.user-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    color: white;
}

.user-email {
    font-size: 0.85rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
    word-break: break-word;
}

.dropdown-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
    margin: 0;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    color: var(--text);
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    font-size: 0.95rem;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    border-left-color: var(--primary-color);
    padding-left: 1.35rem;
}

.dropdown-item i:first-child {
    width: 20px;
    text-align: center;
    color: var(--primary-color);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.item-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
}

.item-label {
    display: block;
    font-weight: 600;
    color: var(--text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.item-desc {
    display: block;
    font-size: 0.8rem;
    color: var(--secondary-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dropdown-item i:last-child {
    width: 18px;
    text-align: center;
    color: var(--secondary-text);
    font-size: 0.9rem;
    flex-shrink: 0;
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
}

.dropdown-item:hover i:last-child {
    opacity: 1;
    transform: translateX(0);
    color: var(--primary-color);
}

.logout-item {
    border-left: 3px solid #e74c3c;
    background-color: rgba(231, 76, 60, 0.05);
}

.logout-item i:first-child {
    color: #e74c3c;
}

.logout-item:hover {
    background-color: rgba(231, 76, 60, 0.1);
    border-left-color: #e74c3c;
}

.logout-item:hover i:last-child {
    color: #e74c3c;
}

/* Responsive Design for User Dropdown */
@media (max-width: 768px) {
    .user-dropdown-menu {
        min-width: 280px;
        right: -10px;
    }

    .dropdown-header {
        padding: 1.25rem;
    }

    .user-name {
        font-size: 1rem;
    }

    .user-email {
        font-size: 0.8rem;
    }

    .dropdown-item {
        padding: 0.9rem 1.25rem;
        font-size: 0.9rem;
    }

    .item-label {
        font-size: 0.95rem;
    }

    .item-desc {
        font-size: 0.75rem;
    }
}

@media (max-width: 576px) {
    .user-avatar {
        width: 36px;
        height: 36px;
        font-size: 1.3rem;
    }

    .user-dropdown-menu {
        min-width: 250px;
        right: -20px;
    }

    .dropdown-header {
        padding: 1rem;
    }

    .user-name {
        font-size: 0.95rem;
    }

    .user-email {
        font-size: 0.75rem;
    }

    .dropdown-item {
        padding: 0.8rem 1rem;
        gap: 0.8rem;
    }

    .item-label {
        font-size: 0.9rem;
    }

    .item-desc {
        font-size: 0.7rem;
    }

    .dropdown-item i:first-child {
        width: 18px;
        font-size: 1rem;
    }

    .dropdown-item i:last-child {
        width: 16px;
        font-size: 0.85rem;
    }
}

/* ==================== REGISTER PAGE STYLES ==================== */

.register-page-section {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-color) 0%, #FF9E1B 50%, #FFB347 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.register-page-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    z-index: 10;
}

.register-wrapper {
    background: var(--background);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    padding: 2.5rem;
    position: relative;
    z-index: 15;
    animation: slideInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.register-header {
    text-align: center;
    margin-bottom: 2rem;
}

.register-logo {
    margin-bottom: 1.5rem;
}

.register-logo img {
    max-width: 80px;
    height: auto;
    margin: 0 auto;
    display: block;
}

.register-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.register-subtitle {
    font-size: 0.95rem;
    color: var(--secondary-text);
    margin: 0;
}

.register-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.register-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-weight: 600;
    color: var(--text);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-label i {
    color: var(--primary-color);
    width: 18px;
    text-align: center;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--text);
    transition: all 0.3s ease;
    background-color: var(--background);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: #fffbf5;
    box-shadow: 0 0 0 3px rgba(255, 136, 0, 0.1);
}

.form-input.valid {
    border-color: #27ae60;
    background-color: #f0fdf4;
}

.form-input.invalid {
    border-color: #e74c3c;
    background-color: #fef5f5;
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
    max-height: 200px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.form-textarea:focus {
    outline: none;
}

.form-text {
    font-size: 0.8rem;
    color: var(--secondary-text);
    margin-top: 0.25rem;
}

.validation-icon {
    position: absolute;
    right: 1rem;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.validation-icon.show {
    opacity: 1;
}

.validation-icon.valid {
    color: #27ae60;
}

.validation-icon.invalid {
    color: #e74c3c;
}

.toggle-password {
    background: none;
    border: none;
    color: var(--secondary-text);
    cursor: pointer;
    font-size: 1rem;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.toggle-password:hover {
    color: var(--primary-color);
}

.password-strength-indicator {
    margin-top: 0.75rem;
}

.strength-bar {
    width: 100%;
    height: 4px;
    background-color: var(--border-color);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.strength-bar div {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #e74c3c, #f39c12, #27ae60);
    transition: width 0.3s ease;
}

.strength-text {
    font-size: 0.75rem;
    color: var(--secondary-text);
}

.terms-group {
    margin: 1.5rem 0;
    gap: 0;
}

.terms-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--secondary-text);
    user-select: none;
}

.terms-label input {
    margin-top: 2px;
    cursor: pointer;
}

.terms-label a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.terms-label a:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

.register-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 136, 0, 0.3);
}

.register-btn:active {
    transform: translateY(0);
}

.register-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.form-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0 1.5rem;
    color: var(--secondary-text);
    font-size: 0.9rem;
}

.form-divider::before,
.form-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background-color: var(--border-color);
}

.login-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.login-link:hover {
    border-color: var(--primary-color);
    background-color: #fffbf5;
}

.register-footer-info {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.8rem;
    color: var(--secondary-text);
}

.register-footer-info a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.register-footer-info a:hover {
    text-decoration: underline;
}

/* Background Decoration */
.register-background-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 5;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0.5;
}

.decoration-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
}

.decoration-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
}

/* Alert Messages */
.alert {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert i {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.alert strong {
    font-weight: 600;
}

.alert .close {
    padding: 0;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.7;
    margin-left: auto;
}

.alert .close:hover {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .register-page-section {
        padding: 1.5rem;
        min-height: auto;
    }

    .register-wrapper {
        padding: 2rem;
        border-radius: 12px;
    }

    .register-logo img {
        max-width: 60px;
    }

    .register-title {
        font-size: 1.5rem;
    }

    .register-subtitle {
        font-size: 0.85rem;
    }

    .register-form {
        gap: 1.25rem;
    }

    .form-label {
        font-size: 0.9rem;
    }

    .form-input {
        padding: 0.75rem 0.9rem;
        font-size: 0.9rem;
    }

    .form-textarea {
        min-height: 80px;
    }

    .register-btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }

    .decoration-1 {
        width: 200px;
        height: 200px;
        top: -80px;
        right: -80px;
    }

    .decoration-2 {
        width: 150px;
        height: 150px;
        bottom: -40px;
        left: -40px;
    }
}

@media (max-width: 576px) {
    .register-page-section {
        padding: 1rem;
    }

    .register-wrapper {
        padding: 1.5rem;
    }

    .register-logo img {
        max-width: 50px;
    }

    .register-title {
        font-size: 1.3rem;
    }

    .register-subtitle {
        font-size: 0.8rem;
    }

    .register-form {
        gap: 1rem;
    }

    .register-form-group {
        gap: 0.4rem;
    }

    .form-label {
        font-size: 0.85rem;
    }

    .form-input {
        padding: 0.7rem 0.8rem;
        font-size: 0.85rem;
        border-radius: 8px;
    }

    .form-text {
        font-size: 0.75rem;
    }

    .form-textarea {
        min-height: 70px;
    }

    .register-btn {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        gap: 0.4rem;
    }

    .login-link {
        padding: 0.8rem;
        font-size: 0.9rem;
        gap: 0.4rem;
    }

    .form-divider {
        margin: 1.5rem 0 1rem;
        font-size: 0.8rem;
    }

    .register-footer-info {
        margin-top: 1rem;
        font-size: 0.7rem;
    }

    .alert {
        padding: 0.9rem 1rem;
        font-size: 0.8rem;
        gap: 0.8rem;
    }

    .alert i {
        font-size: 1rem;
    }
}

/* ==================== BACK TO TOP BUTTON ==================== */

.back-to-top-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(255, 136, 0, 0.3);
    z-index: 999;
    outline: none;
}

.back-to-top-btn.show {
    display: flex;
}

.back-to-top-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 136, 0, 0.4);
}

.back-to-top-btn:active {
    transform: translateY(-2px);
}

/* Responsive Back to Top Button */
@media (max-width: 768px) {
    .back-to-top-btn {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .back-to-top-btn {
        bottom: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
        font-size: 1rem;
        box-shadow: 0 2px 8px rgba(255, 136, 0, 0.3);
    }

    .back-to-top-btn:hover {
        transform: translateY(-4px);
        box-shadow: 0 4px 12px rgba(255, 136, 0, 0.4);
    }
}

/* ==================== FORGOT PASSWORD PAGE STYLES ==================== */

.forgot-password-section {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-color) 0%, #FF9E1B 50%, #FFB347 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.forgot-password-card {
    background: var(--background);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    padding: 2.5rem;
    max-width: 100%;
    width: 100%;
    position: relative;
    z-index: 15;
    animation: slideInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.forgot-password-header {
    text-align: center;
    margin-bottom: 2rem;
}

.forgot-password-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 136, 0, 0.1), rgba(255, 215, 163, 0.2));
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    margin: 0 auto 1rem;
    font-size: 1.8rem;
    color: var(--primary-color);
}

.forgot-password-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.75rem;
}

.forgot-password-desc {
    font-size: 0.95rem;
    color: var(--secondary-text);
    margin: 0;
    line-height: 1.5;
}

.forgot-password-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.forgot-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.forgot-password-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.forgot-password-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 136, 0, 0.3);
}

.forgot-password-btn:active {
    transform: translateY(0);
}

.forgot-password-footer-info {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.8rem;
    color: var(--secondary-text);
}

.forgot-password-footer-info a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.forgot-password-footer-info a:hover {
    text-decoration: underline;
}

.forgot-password-background-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 5;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0.5;
}

.decoration-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
}

.decoration-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
}

/* Responsive Design for Forgot Password */
@media (max-width: 768px) {
    .forgot-password-section {
        padding: 1.5rem;
    }

    .forgot-password-card {
        padding: 2rem;
        border-radius: 12px;
    }

    .forgot-password-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .forgot-password-title {
        font-size: 1.5rem;
    }

    .forgot-password-desc {
        font-size: 0.9rem;
    }

    .decoration-1 {
        width: 200px;
        height: 200px;
        top: -80px;
        right: -80px;
    }

    .decoration-2 {
        width: 150px;
        height: 150px;
        bottom: -40px;
        left: -40px;
    }

    .alert-content {
        text-align: left;
    }

    .alert-message {
        margin: 0.5rem 0;
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .forgot-password-section {
        padding: 1rem;
    }

    .forgot-password-card {
        padding: 1.5rem;
    }

    .forgot-password-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
    }

    .forgot-password-title {
        font-size: 1.3rem;
    }

    .forgot-password-desc {
        font-size: 0.85rem;
    }

    .forgot-form-group {
        gap: 0.4rem;
    }

    .form-label {
        font-size: 0.9rem;
    }

    .form-input {
        padding: 0.75rem 0.9rem;
        font-size: 0.9rem;
    }

    .form-text {
        font-size: 0.75rem;
    }

    .forgot-password-btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }

    .form-divider {
        margin: 1.5rem 0 1rem;
        font-size: 0.8rem;
    }

    .login-link {
        padding: 0.8rem;
        font-size: 0.9rem;
    }

    .forgot-password-footer-info {
        margin-top: 1rem;
        font-size: 0.7rem;
    }

    .alert {
        padding: 0.9rem 1rem;
        font-size: 0.85rem;
    }

    .alert-message {
        margin: 0.4rem 0;
        font-size: 0.9rem;
    }

    .btn-success {
        padding: 0.5rem 0.75rem !important;
        font-size: 0.85rem !important;
    }
}

/* ==================== NOTIFICATION STYLES ==================== */

.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: white;
    border-left: 4px solid #22C55E;
    padding: 16px 24px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 5000;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s ease;
    font-weight: 600;
    color: #22C55E;
    min-width: 280px;
}

.notification.show {
    opacity: 1;
    transform: translateX(0);
}

.notification-success {
    border-left-color: #22C55E;
    color: #22C55E;
}

.notification-success i {
    font-size: 20px;
}

.notification-info {
    border-left-color: #3B82F6;
    color: #3B82F6;
}

.notification-info i {
    font-size: 20px;
}

/* ==================== WISHLIST BUTTON STYLES ==================== */

.wishlist-btn {
    background: linear-gradient(135deg, #F3F4F6 0%, #E5E7EB 100%);
    color: #EF4444;
    border: 2px solid #FCA5A5;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.wishlist-btn:hover {
    background: linear-gradient(135deg, #E5E7EB 0%, #D1D5DB 100%);
    border-color: #EF4444;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.2);
}

.wishlist-btn.active {
    background: linear-gradient(135deg, #FEE2E2 0%, #FECACA 100%);
    color: #DC2626;
    border-color: #DC2626;
}

.wishlist-btn.active:hover {
    background: linear-gradient(135deg, #FECACA 0%, #FCA5A5 100%);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.2);
}

.wishlist-btn i {
    font-size: 18px;
}

/* Mobile notification positioning */
@media (max-width: 768px) {
    .notification {
        top: 80px;
        right: 10px;
        left: 10px;
        min-width: auto;
    }
}
