/* Common CSS - Extracted from Blade Templates */
/* This file contains all CSS that was previously inline in blade files */

/* Christmas Theme Styles */
.christmas-theme {
    position: relative;
}

/* Santa Hat on Logo */
.christmas-theme .header-logo-wrapper {
    position: relative;
}

.christmas-theme .header-logo-wrapper::after {
    content: '';
    position: absolute;
    top: -5px;
    right: 0px;
    width: 30px;
    height: 30px;
    background: #dc143c;
    border-radius: 0 50% 50% 50%;
    transform: rotate(-45deg);
    border: 2px solid white;
    z-index: 10;
}

.christmas-theme .header-logo-wrapper::before {
    content: '';
    position: absolute;
    top: -3px;
    right: 8px;
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
    z-index: 11;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Christmas Ornaments on Product Cards */
.christmas-theme .trending-card,
.christmas-theme .category-grid-card {
    position: relative;
}

.christmas-theme .trending-card::before,
.christmas-theme .category-grid-card::before {
    content: '';
    position: absolute;
    top: 8px;
    right: 12px;
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, #dc143c 0%, #ff6b6b 100%);
    border-radius: 50%;
    box-shadow:
        0 2px 4px rgba(0,0,0,0.3),
        inset -2px -2px 4px rgba(0,0,0,0.2),
        inset 2px 2px 4px rgba(255,255,255,0.3);
    z-index: 5;
}

.christmas-theme .trending-card::before {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
}

.christmas-theme .trending-card::after,
.christmas-theme .category-grid-card::after {
    content: '';
    position: absolute;
    top: 4px;
    right: 19px;
    width: 4px;
    height: 6px;
    background: #2d5016;
    border-radius: 2px 2px 0 0;
    z-index: 4;
}

/* Christmas Theme - Clean Version */

/* Remove all decorations from Shop By Category */
.christmas-theme .shop-by-category {
    position: relative;
}

.christmas-theme .category-heading {
    position: relative;
}

.christmas-theme .category-card {
    position: relative;
}

.christmas-theme .category-container-fluid {
    position: relative;
}

/* Christmas Badge on Banners */
.christmas-theme .banner-card {
    position: relative;
}

.christmas-theme .banner-card::after {
    content: '';
    position: absolute;
    top: 15px;
    right: 15px;
    width: 60px;
    height: 60px;
    background: #dc143c;
    border-radius: 50%;
    border: 4px solid #ffd700;
    z-index: 5;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.christmas-theme .banner-card::before {
    content: 'SALE';
    position: absolute;
    top: 37px;
    right: 27px;
    color: white;
    font-weight: 900;
    font-size: 13px;
    z-index: 6;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.shop-by-category,
.trending-products-section,
.categories-grid-section {
    position: relative;
}

/* Footer Component Styles */
.footer-logo-img {
    max-width: 180px;
    filter: brightness(0) invert(1);
}

.footer-text-padded {
    padding-right: 20px;
}

.footer-list-item {
    margin-bottom: 10px;
}

.copyright-nowrap {
    white-space: nowrap;
}

.footer-link-inherit {
    color: inherit;
    text-decoration: none;
}

/* Home Page Styles */
.category-card-link {
    text-decoration: none;
    color: inherit;
}

.banner-bg-image {
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

/* Topbar Styles */
.topbar-right-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: flex-end;
}

.topbar-user-menu-container {
    position: relative;
}

.topbar-user-menu-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 4px;
    transition: background 0.2s;
    color: white;
}

.topbar-user-menu-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.topbar-user-name {
    font-size: 13px;
    font-weight: 500;
    color: white;
}

.topbar-menu-arrow {
    transition: transform 0.3s;
}

.topbar-user-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    z-index: 1000;
}

.topbar-user-dropdown.show {
    display: block;
}

.topbar-user-info {
    padding: 12px 16px;
    border-bottom: 1px solid #f0f0f0;
}

.topbar-user-info-name {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 14px;
}

.topbar-user-info-email {
    font-size: 12px;
    color: #666;
    margin-top: 2px;
}

.topbar-dropdown-link {
    display: block;
    padding: 12px 16px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.2s;
}

.topbar-dropdown-link:hover {
    background: #f8f8f8;
}

.topbar-dropdown-link-logout {
    display: block;
    padding: 12px 16px;
    color: #fc5186;
    text-decoration: none;
    font-size: 14px;
    border-top: 1px solid #f0f0f0;
    transition: background 0.2s;
}

.topbar-dropdown-link-logout:hover {
    background: #f8f8f8;
}

.topbar-dropdown-icon {
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
}

.topbar-login-container {
    position: relative;
}

@media (min-width: 769px) {
    .topbar-login-container {
        display: none;
    }

    .topbar-user-menu-container {
        display: none;
    }
}

.topbar-signin-btn {
    background: #fc5186;
    color: white;
    border: none;
    padding: 6px 20px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

.topbar-login-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    width: 280px;
    z-index: 1000;
}

.topbar-login-dropdown.show {
    display: block;
}

.topbar-login-content {
    padding: 30px 20px;
}

.topbar-login-title {
    text-align: center;
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
}

.topbar-login-subtitle {
    text-align: center;
    color: #666;
    font-size: 13px;
    margin: 0 0 20px 0;
}

.topbar-login-btn {
    width: 100%;
    background: #fc5186;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 10px;
    transition: background 0.2s;
}

.topbar-login-btn:hover {
    background: #e8467a;
}

.topbar-register-btn {
    width: 100%;
    background: white;
    color: #fc5186;
    border: 1px solid #fc5186;
    padding: 12px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.topbar-register-btn:hover {
    background: #fff5f8;
}

.topbar-mobile-hamburger {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: none;
}

.topbar-hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    margin: 5px 0;
}

/* Policy Pages Styles */
.policy-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.policy-header {
    text-align: left;
    font-weight: bold;
    margin-bottom: 30px;
}

.policy-header h1 {
    font-size: 2.5rem;
    color: #333;
    /* margin-bottom: 15px; */
    font-weight: 700;
}

.policy-header p {
    font-size: 1.1rem;
    color: #666;
}

.policy-content {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.policy-content h2 {
    font-size: 1.8rem;
    color: #d81b60;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.policy-content h3 {
    font-size: 1.4rem;
    color: #333;
    margin-top: 25px;
    margin-bottom: 12px;
    font-weight: 600;
}

.policy-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    /* margin-bottom: 15px; */
}

.policy-content ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.policy-content ul li {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
}

.policy-content strong {
    color: #333;
    font-weight: 600;
}

.highlight-box {
    background: #fff3f8;
    border-left: 4px solid #d81b60;
    padding: 20px;
    margin: 20px 0;
    border-radius: 5px;
}

.contact-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
    margin-top: 30px;
}

.contact-info p {
    margin-bottom: 8px;
}

/* Footer Privacy Box */
.footer-privacy-box {
    background: #fff;
    padding: 15px;
    border-radius: 5px;
    margin-top: 10px;
}

.footer-privacy-box .footer-text {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}

/* Toast Notification Styles */
.toast-container {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 9999;
}

.custom-toast {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 16px 20px;
    margin-bottom: 10px;
    min-width: 300px;
    max-width: 400px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideIn 0.3s ease-out;
    border-left: 4px solid #fc5186;
}

.custom-toast.success {
    border-left-color: #4caf50;
}

.custom-toast.error {
    border-left-color: #f44336;
}

.custom-toast.info {
    border-left-color: #fc5186;
}

.toast-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.toast-icon.success { color: #4caf50; }
.toast-icon.error { color: #f44336; }
.toast-icon.info { color: #fc5186; }

.toast-content {
    flex: 1;
}

.toast-title {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 2px;
    color: #1a1a1a;
}

.toast-message {
    font-size: 13px;
    color: #666;
    margin: 0;
}

.toast-close {
    background: none;
    border: none;
    font-size: 20px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.toast-close:hover {
    color: #333;
}

@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(400px);
        opacity: 0;
    }
}

.custom-toast.hiding {
    animation: slideOut 0.3s ease-out forwards;
}

@media (max-width: 768px) {
    .toast-container {
        top: 60px;
        right: 10px;
        left: 10px;
    }

    .custom-toast {
        min-width: unset;
        width: 100%;
    }
}

/* Topbar User Menu Styles */
.topbar-user-menu-container {
    position: relative;
}

.topbar-user-menu-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    padding: 6px 12px;
    border-radius: 4px;
    transition: background 0.2s;
}

.topbar-user-menu-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.topbar-user-name {
    font-size: 13px;
    font-weight: 500;
}

.topbar-menu-arrow {
    transition: transform 0.3s;
}

.topbar-user-dropdown {
    display: none;
    position: fixed;
    top: 42px;
    right: 10px;
    background: white;
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    width: 240px;
    z-index: 99999;
    overflow: hidden;
}

.topbar-user-info {
    padding: 10px 12px;
    background: linear-gradient(135deg, #e2ae96 0%, #d69f9a 100%);
    color: #000000;
}

.topbar-user-info-name {
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 1px;
    color: #000000;
    line-height: 1.2;
}

.topbar-user-info-email {
    font-size: 10px;
    color: rgb(0 0 0 / 95%);
    word-break: break-all;
    line-height: 1.2;
}

.topbar-dropdown-link {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    color: #333;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s;
    border-bottom: 1px solid #f5f5f5;
}

.topbar-dropdown-link:hover {
    background: #fff5f8;
    color: #fc5186;
}

.topbar-dropdown-link-logout {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    color: #fc5186;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s;
    background: #fff;
}

.topbar-dropdown-link-logout:hover {
    background: #fff5f8;
}

.topbar-dropdown-icon {
    margin-right: 8px;
    flex-shrink: 0;
    width: 15px;
    height: 15px;
}

@media (max-width: 991px) {
    .topbar-user-name {
        font-size: 12px;
    }

    .topbar-user-dropdown {
        top: 40px;
        right: 10px;
        width: 240px;
    }
}

@media (max-width: 576px) {
    .topbar-user-dropdown {
        top: 38px;
        right: 8px;
        max-width: 185px;
    }

    .topbar-user-info {
        padding: 8px 10px;
    }

    .topbar-user-info-name {
        font-size: 12px;
    }

    .topbar-user-info-email {
        font-size: 9px;
    }

    .topbar-dropdown-link,
    .topbar-dropdown-link-logout {
        font-size: 12px;
        padding: 7px 10px;
    }

    .topbar-dropdown-icon {
        width: 14px;
        height: 14px;
        margin-right: 7px;
    }
}

/* Header Component Styles */
.header-wrapper {
    position: relative;
    width: 100%;
}

.header-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 30px;
    padding: 12px 0;
    width: 1227px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.header-logo-wrapper {
    flex-shrink: 0;
    justify-self: start;
    display: flex;
    align-items: center;
}

.header-logo {
    height: 100px;
    max-width: none !important;
    display: block;
}

.desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-shrink: 0;
    grid-column: 2;
    white-space: nowrap;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    padding: 8px 0;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.header-right-group {
    display: flex;
    align-items: center;
    gap: 20px;
    grid-column: 3;
    justify-self: end;
}

.search-bar-wrapper {
    position: relative;
    width: 340px;
    flex-shrink: 0;
}

.search-container {
    position: relative;
    display: flex;
    align-items: center;
    background: white;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    padding: 0 14px;
    height: 44px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.search-icon {
    flex-shrink: 0;
    margin-right: 12px;
}

.search-input {
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
    font-size: 14px;
    color: #333;
    padding: 0;
    font-weight: 400;
}

.search-spinner {
    display: none;
    margin: 0 8px;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.search-clear-btn {
    display: none;
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    color: #999;
    transition: color 0.2s;
    line-height: 0;
}

.search-clear-btn:hover {
    color: #fc5186;
}

.search-shortcut {
    display: flex;
    align-items: center;
    gap: 2px;
    padding: 2px 6px;
    background: #f5f5f5;
    border-radius: 4px;
    font-size: 11px;
    color: #999;
    font-weight: 500;
    margin-left: 8px;
}

.search-results {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: white;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    max-height: 450px;
    overflow-y: auto;
    z-index: 99999;
}

.mobile-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.desktop-user-menu {
    position: relative;
}

.user-menu-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 4px;
    transition: background 0.2s;
}

.user-menu-btn:hover {
    background: #f5f5f5;
}

.user-name-text {
    font-size: 14px;
    font-weight: 500;
}

.user-menu-arrow {
    transition: transform 0.3s;
}

.user-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    min-width: 200px;
    z-index: 1000;
}

.user-dropdown-header {
    padding: 12px 16px;
    border-bottom: 1px solid #f0f0f0;
}

.user-dropdown-name {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 14px;
}

.user-dropdown-email {
    font-size: 12px;
    color: #666;
    margin-top: 2px;
}

.user-dropdown-link {
    display: block;
    padding: 12px 16px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.2s;
}

.user-dropdown-link:hover {
    background: #f8f8f8;
}

.user-dropdown-icon {
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
}

.user-dropdown-link-signout {
    display: block;
    padding: 12px 16px;
    color: #fc5186;
    text-decoration: none;
    font-size: 14px;
    border-top: 1px solid #f0f0f0;
    transition: background 0.2s;
}

.user-dropdown-link-signout:hover {
    background: #f8f8f8;
}

.desktop-signin {
    position: relative;
}

.sign-in-btn {
    background: #fc5186;
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.login-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    width: 280px;
    z-index: 1000;
}

.login-dropdown-content {
    padding: 30px 20px;
}

.login-dropdown-title {
    text-align: center;
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
}

.login-dropdown-subtitle {
    text-align: center;
    color: #666;
    font-size: 13px;
    margin: 0 0 20px 0;
}

.login-dropdown-btn {
    width: 100%;
    background: #fc5186;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 10px;
    transition: background 0.2s;
}

.login-dropdown-btn:hover {
    background: #e8467a;
}

.register-dropdown-btn {
    width: 100%;
    background: white;
    color: #fc5186;
    border: 1px solid #fc5186;
    padding: 12px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.register-dropdown-btn:hover {
    background: #fff5f8;
}

.desktop-wishlist, .desktop-cart {
    position: relative;
    text-decoration: none;
}

.desktop-wishlist {
    margin-right: 20px;
}

.wishlist-badge, .cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #fc5186;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
}

.wishlist-badge.hidden, .cart-badge.hidden {
    display: none;
}

.mobile-hamburger {
    display: none;
    order: 5;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #333;
    margin: 5px 0;
}

/* Mobile Menu */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 99999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-sidebar {
    position: absolute;
    top: 0;
    left: 0;
    width: 280px;
    height: 100%;
    background: white;
    box-shadow: 2px 0 8px rgba(0,0,0,0.1);
    overflow-y: auto;
    z-index: 100000;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mobile-menu-header {
    padding: 20px;
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-menu-logo {
    height: 70px;
    margin-left: -18px;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    line-height: 1;
    padding: 0;
}

.mobile-search-wrapper {
    padding: 15px;
    border-bottom: 1px solid #e5e5e5;
}

.mobile-search-container {
    position: relative;
    display: flex;
    align-items: center;
    background: #f0f0f0;
    border-radius: 4px;
    padding: 0 12px;
    height: 38px;
}

.mobile-search-icon {
    flex-shrink: 0;
    margin-right: 10px;
}

.mobile-search-input {
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
    font-size: 13px;
    color: #333;
    padding: 0;
}

.mobile-search-results {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    max-height: 400px;
    overflow-y: auto;
    z-index: 1000;
}

.mobile-nav-links {
    padding: 10px 0;
}

.mobile-nav-link {
    display: block;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    border-bottom: 1px solid #f5f5f5;
    text-transform: none;
}

.mobile-nav-link-with-badge {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    border-bottom: 1px solid #f5f5f5;
    text-transform: none;
}

.mobile-badge {
    background: #fc5186;
    color: white;
    border-radius: 12px;
    padding: 2px 8px;
    font-size: 12px;
    font-weight: 600;
}

/* Logout Modal */
.logout-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.logout-modal-content {
    background: white;
    border-radius: 12px;
    padding: 0;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    animation: modalFadeIn 0.3s ease;
}

.logout-modal-header {
    padding: 24px 24px 16px 24px;
    text-align: center;
}

.logout-modal-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    background: #fff3f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logout-modal-title {
    margin: 0 0 8px 0;
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
}

.logout-modal-text {
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

.logout-modal-actions {
    display: flex;
    gap: 12px;
    padding: 16px 24px 24px 24px;
}

.logout-modal-cancel {
    flex: 1;
    background: #f5f5f5;
    color: #333;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.logout-modal-cancel:hover {
    background: #e8e8e8;
}

.logout-modal-confirm {
    flex: 1;
    background: #fc5186;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.logout-modal-confirm:hover {
    background: #e8467a;
}

/* Mobile Search Overlay */
.mobile-search-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 100000;
    flex-direction: column;
}

.mobile-search-overlay-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-bottom: 1px solid #e5e5e5;
    background: white;
}

.mobile-search-overlay-back {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: #333;
    line-height: 0;
}

.mobile-search-overlay-input-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    background: #f5f5f5;
    border-radius: 8px;
    padding: 0 12px;
    height: 44px;
}

.mobile-search-overlay-input {
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
    font-size: 15px;
    color: #333;
    padding: 0;
}

.mobile-search-overlay-results {
    flex: 1;
    overflow-y: auto;
    background: white;
}

/* Hide user dropdown on mobile */
@media (max-width: 991px) {
    .desktop-user-menu {
        display: none !important;
    }
}

/* About Page Styles */
.hero-banner {
    width: 100%;
    height: 60vh;
    min-height: 450px;
    max-height: 650px;
    position: relative;
    overflow: hidden;
}

.hero-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* About Content Section - Sticky Stacking Effect */
.about-content {
    position: relative;
    width: 100%;
}

.content-section {
    position: relative;
}

.content-row {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    background: white;
    margin: 0 auto;
    padding: 30px 40px;
    margin-top: 30px;
    border-radius: 20px;
}

.content-row.reverse {
    flex-direction: row-reverse;
}

.content-image {
    width: 50%;
    flex: 0 0 calc(50% - 30px);
    border-radius: 16px;
    overflow: hidden;
}

.content-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.content-text {
    width: 50%;
    flex: 0 0 calc(50% - 30px);
    padding: 0 30px;
}

.content-text h2 {
    font-size: 35px;
    font-weight: 800;
    color: #333333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.content-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin: 0;
}

/* Values Section */
.values-section {
    background: #f8f9fa;
    padding: 80px 20px;
}

.values-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 4px;
    background: #fc5186;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: left;
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.value-card:hover {
    border-color: #fc5186;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(252,81,134,0.15);
}

.value-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #fc5186 0%, #ff8db4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.value-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

/* CTA Banner */
.cta-banner {
    position: relative;
    height: 50vh;
    min-height: 400px;
    max-height: 550px;
    overflow: hidden;
}

.cta-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(252,81,134,0.85) 0%, rgba(255,141,180,0.85) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
}

.cta-overlay h2 {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.cta-overlay p {
    font-size: 20px;
    color: #fff;
    margin-bottom: 30px;
    max-width: 600px;
}

.cta-btn {
    display: inline-block;
    background: #fff;
    color: #fc5186;
    padding: 16px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    color: #fc5186;
}

/* About Page Responsive - Tablet */
@media (max-width: 1024px) {
    .content-row {
        padding: 25px 30px;
        gap: 30px;
        margin-top: 20px;
    }

    .content-text h2 {
        font-size: 28px;
    }

    .content-text p {
        font-size: 16px;
    }

    .section-title {
        font-size: 40px;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

/* About Page Responsive - Mobile */
@media (max-width: 768px) {
    .hero-banner {
        height: 40vh;
        min-height: 300px;
    }

    .content-row {
        flex-direction: column;
        gap: 20px;
        width: 95%;
        padding: 25px 20px;
        margin-top: 20px;
        border-radius: 16px;
    }

    .content-row.reverse {
        flex-direction: column;
    }

    .content-image {
        width: 100%;
        flex: 0 0 100%;
    }

    .content-text {
        width: 100%;
        flex: 0 0 100%;
        padding: 0;
    }

    .content-image img {
        border-radius: 12px;
    }

    .content-text h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .content-text p {
        font-size: 15px;
        line-height: 1.6;
    }

    .values-section {
        padding: 60px 15px;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .value-card {
        padding: 30px 20px;
    }

    .value-icon {
        width: 60px;
        height: 60px;
    }

    .value-card h4 {
        font-size: 20px;
    }

    .value-card p {
        font-size: 14px;
    }

    .cta-banner {
        height: 40vh;
        min-height: 350px;
    }

    .cta-overlay h2 {
        font-size: 28px;
    }

    .cta-overlay p {
        font-size: 15px;
    }

    .cta-btn {
        padding: 14px 40px;
        font-size: 16px;
    }
}

/* About Page Responsive - Small Mobile */
@media (max-width: 480px) {
    .content-row {
        width: 98%;
        padding: 20px 15px;
        margin-top: 15px;
    }

    .content-text h2 {
        font-size: 22px;
    }

    .content-text p {
        font-size: 14px;
    }

    .section-title {
        font-size: 24px;
    }

    .value-card {
        padding: 25px 15px;
    }

    .cta-overlay h2 {
        font-size: 24px;
    }

    .cta-overlay p {
        font-size: 14px;
    }
}

/* Navbar Alignment */
.MegaDropdownHeading {
    max-width: 1400px !important;
    padding-left: 0 !important;
    padding-right: 50px !important;
    box-sizing: border-box !important;
    text-align: left !important;
    margin-left: 50px !important;
}

.MegaDropdownHeading .MegaDropdownHeadingbox:first-child {
    margin-left: 0 !important;
    padding-left: 0 !important;
}

.MegaDropdownHeading .MegaDropdownHeadingbox:first-child > a {
    padding-left: 0 !important;
    margin-left: 0 !important;
}

/* Override header.css padding for first navbar item */
.subMegaMenu_main .MegaDropdownHeading .MegaDropdownHeadingbox:first-child {
    padding-left: 0 !important;
}

/* Align mega menu dropdown with navbar items */
.megaMenu_main > ul > li > ul {
    left: 50% !important;
    transform: translateX(-50%) !important;
    margin-left: 0 !important;
}
