@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --primary-color: #1a237e;
    --secondary-color: #3f51b5;
    --accent-color: #ff4444;
    --success-color: #4caf50;
    --warning-color: #ff9800;
    /* --dark-color: #212529; */
    --dark-color: #1f2937;
    --white-color: #f1f1f1;
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --success-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Performance optimizations */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img, video {
    will-change: transform;
}

body {
    font-family: "Roboto", sans-serif;
    /* background-color: #f8f9fa; */
    background-color: #080326;
    /* background-image: linear-gradient(to right top, #d16ba5, #c777b9, #ba83ca, #aa8fd8, #9a9ae1, #8aa7ec, #79b3f4, #69bff8, #52cffe, #41dfff, #46eefa, #5ffbf1); */
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
}

@media screen and (max-width: 767px) {
    body {
        padding-bottom: 60px;
    }
}

a {
    text-decoration: none;
}

.xlass {
    /* Glassmorphism effect */
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    
    /* Rounded borders */
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

/* Top Header Start */
#top-header {
    /* background: var(--primary-color); */
    color: white;
    padding: 8px 0;
    font-size: 15px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    margin-bottom: 10px;
    z-index: 1090;
}
/* Top Header End */

/* Navbar Start */
nav {
    margin-top: 15px;
}

nav .navbar-brand {
    font-size: 36px;
    font-weight: bold;
    color: white;
}

@media screen and (max-width: 767px) {
    nav {
        padding: 16px !important;
    }
    nav .logo {
        margin-left: 16px !important;
    }

    nav .navbar-brand {
        font-size: 28px;
    }

    nav .navbar-brand img {
        height: 40px;
    }

    nav .nav_links {
        margin-right: 10px !important;
    }
}

@media screen and (max-width: 494px) {
    nav .logo {
        margin-left: 0px !important;
    }

    nav .nav_links {
        margin-right: 0 !important;
    }

    nav .navbar-brand {
        font-size: 22px;
    }

    nav .navbar-brand img {
        height: 30px;
    }
}

nav .navbar-brand:hover, nav .navbar-brand:focus {
    color: rgba(255, 255, 255, 0.8);
}

@media screen and (max-width: 394px) {
    nav .navbar-brand {
        font-size: 26px;
    }
}

nav .navbar-nav .nav-link {
    color: white !important;
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s ease;
}

nav .navbar-nav .nav-link:hover {
    color: rgba(255, 255, 255, 0.7) !important;
}

.auth-btn {
    font-weight: 600;
    padding: 10px 24px;
    margin: 0 5px;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    
    /* Glassmorphism effect */
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    color: white !important;
    position: relative;
    overflow: hidden;
}

.auth-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
    -webkit-transition: left 0.5s ease;
    -moz-transition: left 0.5s ease;
    -ms-transition: left 0.5s ease;
    -o-transition: left 0.5s ease;
}

.auth-btn:hover::before {
    left: 100%;
}

.auth-btn.loginbtn:hover,
.auth-btn.registerbtn:hover {
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    -webkit-transform: translateY(-2px);
    -moz-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    -o-transform: translateY(-2px);
    box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.5);
}

@media screen and (max-width: 539px) {
    .auth-btn {
        padding: 10px 14px;
    }

    .auth-btn.registerbtn {
        margin-right: 0;
    }
}

@media screen and (max-width: 431px) {
    .auth-btn {
        padding: 5px 10px;
    }
}

@media screen and (max-width: 415px) {
    nav {
        justify-content: center !important;
        padding-top: 5px !important;
        padding-bottom: 22px !important;
    }

    nav .navbar-brand {
        font-size: 28px;
    }

    nav .navbar-brand img {
        height: 35px;
    }

    nav .nav_links {
        margin-top: 5px;
    }

    .auth-btn {
        padding: 10px 14px;
    }
}
/* Navbar End */

/* User Balance & Dropdown Styles */
.user-balance {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-size: 15px;
    white-space: nowrap;
}

/* Desktop Dropdown - Show only on larger screens */
.user-dropdown-desktop {
    display: block;
}

/* Mobile Hamburger - Hide by default */
.user-dropdown-mobile {
    display: none;
}

.user-dropdown-btn {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white !important;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.user-dropdown-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(31, 38, 135, 0.4);
}

.user-dropdown-btn::after {
    margin-left: 8px;
}

/* Hamburger Menu Button */
.user-hamburger-btn {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white !important;
    font-weight: 600;
    padding: 2px 16px;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-size: 20px;
}

.user-hamburger-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(31, 38, 135, 0.4);
}

.user-dropdown-menu {
    background: rgba(31, 41, 55, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 8px 0;
    margin-top: 10px;
    min-width: 220px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.user-dropdown-menu .dropdown-header {
    padding: 10px 20px;
    font-weight: 600;
    word-break: break-all;
}

.user-dropdown-menu .dropdown-item {
    color: white;
    padding: 10px 20px;
    transition: all 0.3s ease;
    font-size: 15px;
}

.notification .user-dropdown-menu .dropdown-item {
    padding: 6px 14px;
    font-size: 14px;
    text-wrap: auto;
}

.notification .user-dropdown-menu li.dropdown-item {
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.notification .user-dropdown-menu li.dropdown-item:last-child {
    border-bottom: none;
}

.user-dropdown-menu .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding-left: 25px;
}

.user-dropdown-menu .dropdown-item.text-danger:hover {
    background: rgba(220, 38, 38, 0.2);
    color: #ff4444 !important;
}

.user-dropdown-menu .dropdown-divider {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 8px 0;
}

.user-dropdown-menu .dropdown-item i {
    width: 20px;
    text-align: center;
}

/* User Offcanvas Menu Styling */
.user-offcanvas {
    background: rgba(31, 41, 55, 0.98) !important;
    backdrop-filter: blur(20px);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.user-offcanvas .offcanvas-header {
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
}

.user-offcanvas .offcanvas-title {
    font-size: 16px;
    font-weight: 600;
    word-break: break-all;
}

.user-offcanvas-menu {
    display: flex;
    flex-direction: column;
}

.offcanvas-menu-item {
    color: white;
    padding: 16px 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
}

.offcanvas-menu-item:hover {
    background: rgba(255, 255, 255, 0.1);
    padding-left: 30px;
}

.offcanvas-menu-item.text-danger:hover {
    background: rgba(220, 38, 38, 0.2);
    color: #ff4444 !important;
}

.offcanvas-menu-item i {
    width: 24px;
    text-align: center;
    font-size: 18px;
}

.offcanvas-divider {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 0;
}

/* Responsive: Switch to hamburger menu on mobile */
@media screen and (max-width: 767px) {
    /* Hide desktop dropdown, show hamburger menu */
    .user-dropdown-desktop {
        display: none;
    }

    .user-dropdown-mobile {
        display: block;
    }

    .user-balance {
        font-size: 13px;
        padding: 8px 12px !important;
    }

    .user-dropdown-menu {
        min-width: 200px;
    }

    nav.navbar {
        padding: 15px !important;
    }
}

@media screen and (max-width: 576px) {
    .user-balance span {
        font-size: 12px;
    }

    .user-hamburger-btn {
        padding: 2px 12px;
        font-size: 18px;
    }

    .user-dropdown-menu {
        min-width: 180px;
    }
}

@media screen and (max-width: 480px) {
    nav .nav_links {
        gap: 8px !important;
    }

    .user-balance {
        padding: 6px 10px !important;
    }

    .user-balance i {
        font-size: 12px;
    }

    .user-hamburger-btn {
        padding: 2px 10px;
    }

    .user-dropdown-btn {
        padding: 6px 10px;
    }
}
/* User Balance & Dropdown Styles End */

/* Language Selector Styles */
.language-dropdown, .qtydd {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 8px;
    min-width: 70px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.language-dropdown:hover, .qtydd:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

.language-dropdown:focus, .qtydd:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
    color: white;
}

.language-dropdown option, .qtydd option {
    background: #1f2937;
    color: white;
}

@media screen and (max-width: 767px) {
    .language-dropdown {
        min-width: 60px;
        padding: 5px 8px;
        font-size: 14px;
    }
}

@media screen and (max-width: 494px) {
    .language-dropdown {
        min-width: 55px;
        padding: 4px 6px;
        font-size: 13px;
    }
}

@media screen and (max-width: 300px) {
    #top-header .row .col-9 {
        flex: 0 0 auto !important;
        width: 70% !important;
    }

    #top-header .row .col-3 {
        flex: 0 0 auto !important;
        width: 30% !important;
        padding-left: 0 !important;
    }
}

/* Notice Banner Start */
#notice-banner {
    /* Center positioning */
    margin: 20px auto;
    max-width: 90%;
    width: fit-content;

    color: white;
    padding: 12px 30px;
    overflow: hidden;
    position: relative;
    padding-top: 10px;
}

#notice-banner .notice-text {
    white-space: nowrap;
    animation: scroll-notice 25s linear infinite;
    -webkit-animation: scroll-notice 25s linear infinite;
    font-weight: 500;
    font-size: 16px;
}

@keyframes scroll-notice {
    0% {
        transform: translateX(100%);
        -webkit-transform: translateX(100%);
        -moz-transform: translateX(100%);
        -ms-transform: translateX(100%);
        -o-transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
        -webkit-transform: translateX(-100%);
        -moz-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        -o-transform: translateX(-100%);
    }
}
/* Notice Banner End */

/* Hero Section Start */
#hero-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 80px 0;
    text-align: center;
}

#hero-section .hero-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
}

#hero-section .hero-subtitle {
    font-size: 21px;
    margin-bottom: 30px;
    opacity: 0.9;
}

#hero-section .hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

#hero-section .hero-features .hero-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
}
/* Hero Section End */

/* Account Cards Section Start */
#accounts-section {
    padding: 30px 0;
}

#accounts-section .section-title, #features-section .section-title {
    font-size: 40px;
    font-weight: bold;
    color: var(--white-color);
    margin-bottom: 40px;
    text-align: center;
}

#accounts-section .section-subtitle {
    font-size: 20px;
    color: #666;
    margin-bottom: 60px;
    text-align: center;
}

#accounts-section .account-card {
    /* margin: 0 auto; */
    padding: 2em;
    /* width: 300px; */
    height: 100%;
    background: #1c1f2b;
    text-align: center;
    border-radius: 10px;
    position: relative;
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

/* #accounts-section .account-card:hover::before {
    opacity: inherit;
}

@property --angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

#accounts-section .account-card::after, #accounts-section .account-card::before {
    content: '';
    position: absolute;
    height: 102%;
    width: 102%;
    background-image: conic-gradient(from var(--angle), #ff4545, #00ff99, #006aff, #ff0095, #ff4545);
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    z-index: -1;
    padding: 3px;
    border-radius: 10px;
    animation: 3s spin linear infinite;
    -webkit-animation: 3s spin linear infinite;
}
#accounts-section .account-card::before {
    filter: blur(1.5rem);
    opacity: 0.5;
    -webkit-filter: blur(1.5rem);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}
@keyframes spin {
    from {
        --angle: 0deg;
    }
    to {
        --angle: 360deg;
    }
} */

#accounts-section .account-card .account-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

#accounts-section .account-card .account-header .account-icon {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 29px;
    color: white;
    margin-right: 15px;
}

#accounts-section .account-card .account-header .account-icon img {
    width: 60px;
    height: 60px;
}

#accounts-section .account-card .account-header .account-title {
    font-size: 22px;
    font-weight: bold;
    color: white;
    margin: 0;
}

#accounts-section .account-card .account-header .account-subtitle {
    font-size: 14px;
    color: #ffffffcc;
    margin-top: 8px;
    word-break: break-all;
    white-space: normal;
}

#accounts-section .account-card .category-preview {
    background: rgba(0, 0, 0, 0.3);
    /* color: var(--white-color); */
    color: #ffffffcc;
    padding: 15px;
    /* margin: 20px 0; */
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

#accounts-section .account-card .category-preview .preview-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
}

#accounts-section .account-card .category-preview .preview-item:last-child {
    border-bottom: none;
}

#accounts-section .account-card .category-preview .preview-item .preview-label {
    font-weight: 500;
    color: var(--dark-color);
}

#accounts-section .account-card .category-preview .preview-item .preview-count {
    font-weight: 500;
    font-size: 13px;
    background: var(--primary-color);
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
}

#accounts-section .account-card .product-preview {
    backdrop-filter: blur(10px);
    color: rgba(255, 255, 255, 0.8);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-image: initial;
    padding: 10px 15px;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
}

#accounts-section .account-card .product-preview .preview-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}

#accounts-section .account-card .product-preview .preview-item:last-child {
    border-bottom: none;
}

#accounts-section .account-card .product-preview .preview-item:hover {
    padding-left: 5px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
}

#accounts-section .account-card .product-preview .preview-item .preview-label {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

#accounts-section .account-card .product-preview .preview-item .preview-price {
    font-weight: 700;
    font-size: 18px;
    color: white;
    box-shadow: rgba(102, 126, 234, 0.4) 0px 3px 8px;
    background: linear-gradient(135deg, rgb(102, 126, 234) 0%, rgb(118, 75, 162) 100%);
    padding: 4px 14px;
    border-radius: 20px;
}

#accounts-section .account-card .product-preview .preview-item .preview-label i {
    font-size: 16px;
    color: rgb(76, 175, 80);
}

#accounts-section .account-card .product-preview .preview-item .preview-badge {
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 5px;
    padding: 4px 12px;
    border-radius: 15px;
}

#accounts-section .account-card .product-preview .preview-item .preview-badge.stock-out {
    color: white;
    background: linear-gradient(135deg, rgb(245 113 113) 0%, rgb(245, 87, 108) 100%);
}

#accounts-section .account-card .product-preview .preview-item .preview-badge.stock {
    color: rgb(28, 31, 43);
    background: linear-gradient(135deg, rgb(67, 233, 123) 0%, rgb(56, 249, 215) 100%);
}

#accounts-section .account-card button, .main-btn {
    font-weight: 500;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color)) !important;
    color: white !important;
    width: 100%;
    padding: 12px;
    border: none !important;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

#accounts-section .account-card button:hover, .main-btn:hover {
    transform: translateY(-2px);
    -webkit-transform: translateY(-2px);
    -moz-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    -o-transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 35, 126, 0.3);
}
/* Account Cards Section End */

/* Features Section Start */
#features-section {
    padding: 80px 0;
    /* background: #f8f9fa; */
    background: linear-gradient(135deg, rgba(168, 237, 234, 0.3) 0%, rgba(254, 214, 227, 0.3) 100%);
}

#features-section .feature-card {
    height: 100%;
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

#features-section .feature-card .feature-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    font-size: 32px;
    margin: 0 auto 20px;
}
/* Features Section End */

/* Footer Section Start */
.footer {
    /* background: var(--dark-color); */
    color: white;
    /* padding: 60px 0 30px; */
    padding-top: 30px;
    padding-bottom: 30px;
}

.footer .footer-wraper {
    padding: 40px;
    padding-bottom: 10px;
}

@media screen and (max-width: 767px) {
    .footer {
        padding-top: 20px;
    }

    .footer .footer-wraper {
        padding: 30px;
        padding-bottom: 5px;
    }
}

.footer h5 {
    color: white;
    margin-bottom: 20px;
}

.footer a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    -webkit-transition: color 0.3s ease;
    -moz-transition: color 0.3s ease;
    -ms-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
}

.footer a:hover {
    color: white;
}
/* Footer Section End */

/* Auth System Start */
#auth-sys {
    padding: 40px 16px;
}
#auth-sys .form-container {
    max-width: 448px;
    overflow: hidden;
    background: rgba(20, 20, 40, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

#auth-sys .form-container .form-head {
    background: rgba(255, 255, 255, 0.05);
    padding: 16px 24px;
}

#auth-sys .form-container .form-head h2 {
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    text-align: center;
    color: white;
    margin: 0;
}

#auth-sys input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    color: white;
}

#auth-sys input:checked {
    background: var(--secondary-color);
    border-color: var(--primary-color);
}

input:-webkit-autofill {
    -webkit-box-shadow:0 0 0 50px #1b1b1b inset; /* Change the color to your own background color */
    -webkit-text-fill-color: white;
}

input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 50px #1b1b1b inset;/*your box-shadow*/
    -webkit-text-fill-color: white;
} 

#auth-sys label {
    color: rgba(255, 255, 255, 0.6);
}

#auth-sys .form-container .auth-form {
    padding: 24px;
}

#auth-sys .form-container .auth-form .form-check {
    padding-top: 20px;
}

#auth-sys .form-container .auth-form .main-btn {
    margin-top: 20px;
}

#auth-sys .form-container .auth-form .auth-bottom {
    margin-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

#auth-sys .form-container .auth-form a {
    text-decoration: none;
    color: #4facfe;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

#auth-sys .form-container .auth-form a:hover {
    color: #00f2fe;
}

.form-control {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 15px;
    color: white !important;
}

label {
    color: rgba(255, 255, 255, 0.6) !important;
}

.form-control:focus {
    /* box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1); */
    box-shadow: 0 0 0 .25rem rgba(26, 35, 126, 0.25);
    border-color: var(--primary-color);
}

.glass-input {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 15px;
    color: white !important;
    padding: 12px 20px;
    width: 100%;
    font-size: 14px;
    transition: all 0.3s ease;
}

.glass-input::placeholder {
    color: #ffffff;
}

.glass-input:focus {
    outline: none;
    border-color: rgba(102, 126, 234, 0.5) !important;
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.3);
    background: rgba(255, 255, 255, 0.08) !important;
}

.form-check-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 .25rem rgba(26, 35, 126, 0.25);
}

.form-check-input:checked {
    background-color: var(--secondary-color);
    border-color: var(--primary-color);
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

/* Firefox */
input[type=number] {
    appearance: textfield;
    -moz-appearance: textfield;
}

.form-text {
    color: rgba(255, 255, 255, 0.6);
}
/* Auth System End */

/* Desktop Navigation Start */
.nav-section {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-bottom: 2px solid #edf2f7;
    margin-top: 5px;
}

.nav-items {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: start;
}

.navlink {
    background: white;
    color: #4a5568;
    padding: 12px 20px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    /* min-width: 140px; */
    justify-content: center;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.navlink:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.navlink.active {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 8px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
/* Desktop Navigation End */

/* Mobile Menu Start */
#mobileMenu {
    background-color: var(--primary-color);
    padding: 10px 16px;
    margin-top: 2px;
}

#mobileMenu a {
    background-color: #1e40af;
    color: white;
    padding: 10px 12px;
}

#mobileMenu a:hover {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
}

#mobileMenu a i {
    margin-right: 8px;
}
/* Mobile Menu End */

/* Mobile Navigation Start */
.mobile-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    /* background: linear-gradient(45deg, #121a5a, #2c3a93); */
    padding: 5px 4px !important;
    margin: 5px;
    /* box-shadow: 0 -2px 8px rgba(0,0,0,0.1); */
    border-top: 1px solid #edf2f7;
    z-index: 1000;
}

/* .mobile-nav ul {
    background: linear-gradient(45deg, #121a5a, #2c3a93);
    margin-bottom: 9px !important;
} */

.mobile-nav-items {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 8px;
    border-radius: 8px;
    min-width: 60px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.mobile-nav ul a {
    flex-direction: row;
    align-items: start;
    margin-bottom: 5px;
}

.mobile-nav ul a i {
    margin-right: 5px;
    margin-bottom: 0px;
}

.mobile-nav-item:hover, .mobile-nav-item.active {
    /*background: #303f9f;*/
    background: rgba(255, 255, 255, 0.25);
    text-decoration: none;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
}

.mobile-nav-item i {
    font-size: 16px;
    margin-bottom: 4px;
}

@media screen and (max-width: 325px) {
    .mobile-nav-items span {
        display: none;
    }

    .mobile-nav-item {
        min-width: auto;
    }
}
/* Mobile Navigation End */

/* Profile Start */
#profile {
    padding: 40px 0;
    max-width: 600px;
    flex: 1 0 auto;
}

@media screen and (min-width: 767px) {
    #profile {
        width: 50%;
        margin: auto;
    }
}

#profile .card {
    background: rgba(20, 20, 40, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

#profile .card-header {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 700;
}

#profile .info-item {
    margin-bottom: 15px;
}

#profile .info-item .info-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

#profile .info-item .info-value {
    font-size: 15px;
    font-weight: 600;
    color: white;
}
/* Profile End */

/* Main Card Start */
#maincard {
    padding: 40px 0;
    flex: 1 0 auto;
}

#maincard .card {
    background: rgba(20, 20, 40, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

#maincard .card-header {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 700;
}

#maincard .info-item {
    padding: 30px;
}

#maincard .info-item .info-label {
    font-size: 14px;
    color: #666;
}

#maincard .info-item .info-value {
    font-size: 15px;
    font-weight: 600;
}

.mem_label {
    color: rgba(255, 255, 255, 0.6);
}
/* Main Card End */

/* DataTable Custom Styling Start */
.dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_filter,
.dataTables_wrapper .dataTables_info,
.dataTables_wrapper .dataTables_processing,
.dataTables_wrapper .dataTables_paginate {
    color: var(--dark-color);
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    padding: 0.25rem 0.5rem;
    margin: 0 0.2rem;
    border-radius: 4px;
    border: none;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background: var(--primary-color);
    color: white !important;
    border: none;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current {
    background: var(--primary-color);
    color: white !important;
    border: none;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover {
    background: transparent;
    color: #6c757d !important;
}

.table > :not(caption) > * > * {
    padding: 0.75rem;
}

.dataTables_wrapper .form-select,
.dataTables_wrapper .form-control {
    border-color: #dee2e6;
}

.dataTables_wrapper .form-select:focus,
.dataTables_wrapper .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(26, 35, 126, 0.25);
}

table.dataTable th.dt-type-numeric, table.dataTable th.dt-type-date, table.dataTable td.dt-type-numeric, table.dataTable td.dt-type-date {
    text-align: left;
}

table.dataTable th.dt-type-numeric div.dt-column-header {
    flex-direction: row;
    text-align: left;
}

/* Date Filter Styling */
#dayFilter,
#monthFilter,
#yearFilter {
    min-width: 100px;
    background-color: white;
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
}

#dayFilter:focus,
#monthFilter:focus,
#yearFilter:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(26, 35, 126, 0.25);
}
/* DataTable Custom Styling End */

/* Sub Card Start */
.subcard li {
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    color: white;
}

.subcard li:hover {
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.1) 0%, rgba(0, 242, 254, 0.1) 100%);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.subcard li p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.subcard li small, .subcard li small .mstatus {
    font-size: 12px;
}

.subcard .subcard-wrapper {
    padding: 5px 0;
}

.subcard span {
    font-weight: 600;
    font-size: 18px;
    color: var(--success-color);
}

.subcard span.minus {
    color: var(--accent-color);
}

.subcard .no-history {
    color: #4b5563;
    margin-bottom: 0;
    padding: 24px;
    font-size: 18px;
    font-weight: 500;
}
/* Sub Card End */

/* Payment Options Start */
.payment-options {
    display: flex;
    /* flex-direction: column; */
    flex-wrap: wrap;
    gap: 10px;
}

.payment-option {
    display: flex;
    align-items: center;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.payment-option input[type="radio"] {
    margin-top: 0;
    margin-right: 10px;
    width: 14px;
    height: 14px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-option input[type="radio"]:checked {
    --bs-form-check-bg-image: none;
    background-color: var(--secondary-color);
    border-color: var(--primary-color);
}

.payment-option label {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: white;
}

.payment-logo {
    width: 40px;
    height: auto;
    margin-right: 10px;
}
/* Payment Options End */

/* Product Details Section */
#product-details-section {
    min-height: 60vh;
}

/* Product Image Container */
.product-image-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.main-product-image {
    overflow: hidden;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 40px;
}

.main-product-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    will-change: transform;
}

.main-product-image:hover img {
    transform: scale(1.05);
}

/* Product Information */
.product-info-container {
    height: 100%;
}

.product-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
}

.product-meta .meta-item {
    font-size: 16px;
}

.product-meta .meta-item i {
    font-size: 20px;
}

.price-tag {
    font-size: 32px;
    font-weight: 800;
}

/* Tutorial Section */
.tutorial-link-container {
    background: rgba(255, 255, 255, 0.05);
}

.tutorial-link {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.tutorial-link:hover {
    color: #ff4444 !important;
    transform: translateX(5px);
}

/* Quantity Selector */
.quantity-selector {
    display: flex;
    align-items: center;
}

.quantity-btn {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    border: none;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quantity-btn:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
}

.quantity-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.quantity-display {
    padding: 8px 20px;
    min-width: 100px;
    text-align: center;
}

.quantity-input {
    width: 100%;
    background: transparent;
    border: none;
    color: white;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    outline: none;
}

.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.quantity-input:disabled {
    opacity: 0.5;
}

.total-price-section {
    background: rgba(255, 255, 255, 0.05);
}

/* Action Buttons */
.btn-buy-now {
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background: rgba(255, 152, 0, 0.3);
    backdrop-filter: blur(10px);
    color: white;
}

.btn-buy-now:hover:not(:disabled) {
    background: rgba(255, 152, 0, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 152, 0, 0.4);
}

.btn-buy-now:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-code-receive {
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    border: 1px solid rgba(99, 102, 241, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background: rgba(99, 102, 241, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    text-decoration: none;
    display: inline-block;
}

.btn-code-receive:hover {
    background: rgba(99, 102, 241, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.5);
    color: white;
}

/* Product Description */
.product-description-container {
    background: rgba(255, 255, 255, 0.1);
}

.product-description-container .section-title {
    font-size: 24px;
    font-weight: 700;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 10px;
}

.product-description-container .description-content {
    font-size: 16px;
    line-height: 1.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-title {
        font-size: 22px;
    }

    .price-tag {
        font-size: 26px;
    }

    .quantity-btn {
        width: 40px;
        height: 40px;
    }

    .quantity-input {
        font-size: 18px;
    }
    
    .glass-modal-header,
    .glass-modal-body,
    .glass-modal-footer {
        padding: 1.5rem;
    }
    
    .success-icon-animation {
        width: 60px;
        height: 60px;
    }
    
    .success-icon-animation i {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .product-title {
        font-size: 20px;
    }

    .price-tag {
        font-size: 24px;
    }

    .product-description-container .section-title {
        font-size: 20px;
    }

    .product-description-container .description-content {
        font-size: 14px;
    }
    
    .glass-modal-header,
    .glass-modal-body,
    .glass-modal-footer {
        padding: 1rem;
    }
    
    .glass-btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.9rem;
    }
}

/* Modal Styles */
.glass-modal-content {
    background: rgba(20, 20, 40, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.glass-modal-header {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    position: relative;
}

.glass-modal-body {
    padding: 2rem;
}

.glass-modal-footer {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem 2rem;
}

/* Success Modal Specific Styles */
.success-icon-animation {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scaleIn 0.5s ease;
    box-shadow: 0 8px 25px rgba(79, 172, 254, 0.4);
}

.success-icon-animation i {
    font-size: 2.5rem;
    color: white;
}

@keyframes scaleIn {
    from {
        transform: scale(0) rotate(-180deg);
        opacity: 0;
    }
    to {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

.success-message-box {
    background: rgba(79, 172, 254, 0.1);
    border: 1px solid rgba(79, 172, 254, 0.3);
    border-radius: 12px;
    padding: 1rem;
}

.success-message-box p {
    font-size: 1.1rem;
    font-weight: 500;
}

.order-summary-glass {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.summary-row:last-child {
    border-bottom: none;
}

.summary-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    font-weight: 500;
}

.summary-value {
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

.summary-total {
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.summary-total .summary-value {
    color: #4facfe;
    font-size: 1.3rem;
    font-weight: 700;
}

.account-details-glass {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
}

.glass-textarea {
    background: rgba(0, 0, 0, 0.3) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 10px !important;
    color: white !important;
    padding: 1rem !important;
    resize: none;
}

.glass-textarea:focus {
    background: rgba(0, 0, 0, 0.4) !important;
    border-color: rgba(102, 126, 234, 0.5) !important;
    outline: none;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* Confirm Modal Specific Styles */
.confirm-details-glass {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
}

.confirm-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.confirm-row:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
}

.confirm-row:last-child {
    margin-bottom: 0;
}

.confirm-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.confirm-icon i {
    font-size: 1.2rem;
    color: white;
}

.confirm-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.confirm-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.confirm-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
}

.confirm-row-total {
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.1) 0%, rgba(0, 242, 254, 0.1) 100%);
    border: 1px solid rgba(79, 172, 254, 0.2);
}

.confirm-row-total .confirm-icon {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.confirm-row-total .confirm-value {
    color: #4facfe;
    font-size: 1.3rem;
}

/* Glass Buttons */
.glass-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.glass-btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.glass-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
    color: white;
}

.glass-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.glass-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    color: white;
}

/* SweetAlert2 Custom Styles */
.glass-swal-popup {
    background: rgba(20, 20, 40, 0.95) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 20px !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4) !important;
}

.glass-swal-title {
    color: #fff !important;
    font-weight: 700 !important;
    font-size: 1.75rem !important;
}

.glass-swal-text {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1.1rem !important;
}

.glass-swal-button {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color)) !important;
    border: none !important;
    border-radius: 10px !important;
    padding: 0.75rem 2rem !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

.glass-swal-button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(26, 35, 126, 0.3) !important;
}

.swal2-icon.swal2-error {
    border-color: #f5576c !important;
    color: #f5576c !important;
}

.swal2-icon.swal2-error [class^='swal2-x-mark-line'] {
    background-color: #f5576c !important;
}

/* Disabled Div */
.div-disabled {
    position: relative;
    pointer-events: none;
    opacity: 0.5;
}

.website-tutorial {
    display: inline-flex;
    padding: 10px;
    border-radius: 15px;
    margin-bottom: 20px;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.website-tutorial span {
    color: #fff;
    margin-left: 2px;
}

.website-tutorial:hover,
.website-tutorial:focus {
    transform: translateX(5px);
    -webkit-transform: translateX(5px);
    -moz-transform: translateX(5px);
    -ms-transform: translateX(5px);
    -o-transform: translateX(5px);
}

.website-tutorial:hover span,
.website-tutorial:focus span {
    color: #ff4444;
}

/* ============================================================================
   REFUND CHECKER - GLASS THEME STYLES
   ============================================================================ */

/* Refund Input Placeholder */
#refundInput::placeholder {
    color: rgba(255, 255, 255, 0.6) !important;
    opacity: 1;
}

/* Refund Results Container */
.refund-results-container {
    margin-top: 2rem;
    border-radius: 12px;
    overflow: hidden;
}

.refund-results-header {
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

/* Glass Table Wrapper */
.glass-table-wrapper {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Glass Refund Table */
.glass-refund-table {
    margin-bottom: 0;
    color: #fff;
    /* background: rgba(11, 57, 126, 0.8); */
}

.glass-refund-table thead {
    background: rgba(255, 255, 255, 0.05) !important;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.glass-refund-table thead th {
    background: rgba(255, 255, 255, 0.05) !important;
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    white-space: nowrap;
    text-align: center;
}

.glass-refund-table tbody tr {
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.glass-refund-table tbody tr:hover {
    background: rgba(102, 126, 234, 0.1);
}

.glass-refund-table tbody tr:last-child {
    border-bottom: none;
}

.glass-refund-table tbody td {
    background: rgba(20, 20, 40, 0.95) !important;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    vertical-align: middle;
}

/* Refund Table Column Widths */
.glass-refund-table th:nth-child(1),
.glass-refund-table td:nth-child(1) {
    width: 50px;
    min-width: 50px;
}

.glass-refund-table th:nth-child(2),
.glass-refund-table td:nth-child(2) {
    min-width: 200px;
}

.glass-refund-table th:nth-child(3),
.glass-refund-table td:nth-child(3) {
    min-width: 150px;
}

.glass-refund-table th:nth-child(4),
.glass-refund-table td:nth-child(4) {
    width: 130px;
    min-width: 130px;
}

.glass-refund-table th:nth-child(5),
.glass-refund-table td:nth-child(5) {
    width: 120px;
    min-width: 120px;
}

.glass-refund-table th:nth-child(6),
.glass-refund-table td:nth-child(6) {
    min-width: 180px;
}

/* Refund Row Animation */
@keyframes fadeInRow {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-row {
    animation: fadeInRow 0.3s ease-out;
}

/* Pulse Animation for Total Refund Badge */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.pulse-animation {
    animation: pulse 0.6s ease-in-out;
}

/* Total Refund Badge */
#totalRefundBadge {
    font-size: 1.1rem;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
    transition: all 0.3s ease;
}

#totalRefundBadge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 110, 253, 0.4);
}

/* Progress Badge */
#progressBadge {
    font-size: 1rem !important;
    padding: 0.6rem 1rem !important;
    border-radius: 50px;
}

/* Refund Row Hover Effect */
.refund-row:hover {
    background-color: rgba(102, 126, 234, 0.08);
    transition: background-color 0.2s ease;
}

/* Glass Button Disabled State */
.glass-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Enhanced SweetAlert2 Styles for Refund Checker */
.swal2-popup.glass-swal-popup {
    backdrop-filter: blur(25px) !important;
    -webkit-backdrop-filter: blur(25px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 20px !important;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.6) !important;
    padding: 2rem !important;
}

.swal2-icon.swal2-success {
    border-color: #4caf50 !important;
    color: #4caf50 !important;
}

.swal2-icon.swal2-success .swal2-success-ring {
    border-color: rgba(76, 175, 80, 0.3) !important;
}

.swal2-icon.swal2-success [class^='swal2-success-line'] {
    background-color: #4caf50 !important;
}

.swal2-icon.swal2-warning {
    border-color: #ff9800 !important;
    color: #ff9800 !important;
}

.swal2-icon.swal2-info {
    border-color: #2196f3 !important;
    color: #2196f3 !important;
}

/* SweetAlert2 Animation */
@keyframes swal2-show {
    0% {
        transform: scale(0.7);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes swal2-hide {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(0.7);
        opacity: 0;
    }
}

/* Mobile Responsive Styles for Refund Checker */
@media (max-width: 767px) {
    /* Header Badges */
    #totalRefundBadge {
        font-size: 0.85rem !important;
        padding: 0.5rem 0.75rem !important;
    }
    
    .card-header {
        flex-direction: column !important;
        gap: 0.75rem;
        text-align: center;
    }
    
    .card-header > div:first-child {
        font-size: 1.1rem;
    }
    
    /* Input Section */
    .account-details-glass {
        padding: 1rem !important;
    }
    
    #refundInput {
        font-size: 12px !important;
        height: 250px !important;
    }
    
    .alert {
        font-size: 0.9rem;
    }
    
    /* Table Responsive */
    .glass-table-wrapper {
        padding: 0.5rem;
        border-radius: 8px;
    }
    
    .glass-refund-table {
        font-size: 0.85rem;
    }
    
    .glass-refund-table thead th {
        font-size: 0.8rem;
        padding: 0.75rem 0.5rem;
    }
    
    .glass-refund-table tbody td {
        font-size: 0.8rem;
        padding: 0.75rem 0.5rem !important;
    }
    
    .badge {
        font-size: 0.7rem !important;
        padding: 0.25rem 0.5rem !important;
    }
    
    /* Progress Badge */
    #progressBadge {
        font-size: 0.9rem !important;
        padding: 0.5rem 0.75rem !important;
    }
    
    /* Refund Results Header */
    .refund-results-header h5 {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    /* Extra small screens */
    .glass-refund-table thead th,
    .glass-refund-table tbody td {
        font-size: 0.75rem;
        padding: 0.5rem 0.35rem !important;
    }
    
    .glass-refund-table thead th {
        letter-spacing: 0;
    }
    
    #totalRefundBadge {
        font-size: 0.75rem !important;
        padding: 0.4rem 0.6rem !important;
    }
    
    .refund-results-header h5 {
        font-size: 1rem;
    }
}

.btn-glass {
    display: inline-block;
    padding: 12px 30px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    transition: all 0.3s ease;
}
.btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.45);
    color: #fff;
}
.btn-glass i {
    margin-right: 8px;
}