/* General Body Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Variables for easy color management - Unified Palette */
:root {
    --primary-color-dark: #4682B4; /* Steel Blue - Main buttons, headers */
    --primary-color-light: #87CEEB; /* Sky Blue - Gradients, lighter accents */
    --primary-color-lighter: #B0E0E6; /* Powder Blue */
    --primary-color-lightest: #E0F6FF; /* Very light blue */
    --accent-color: #FF6B6B; /* Red/Pink - Sale badges, remove buttons */
    --success-color: #2E7D32; /* Dark Green - Prices, success messages */
    --text-dark: #2c3e50; /* Dark text */
    --text-medium: #666; /* Medium gray text */
    --text-light: #B0E0E6; /* Light blue text for placeholders */
    --background-light-gray: #f8f9fa; /* General light background */
    --background-white: #ffffff; /* Pure white background */
    --border-light: #E0F6FF; /* Very light blue border */

    /* RGB values for rgba usage */
    --primary-color-dark-rgb: 70, 130, 180;
    --primary-color-light-rgb: 135, 206, 235;
    --primary-color-lighter-rgb: 176, 224, 230;
    --primary-color-lightest-rgb: 224, 246, 255; /* Added RGB for lightest blue */
    --background-white-rgb: 255, 255, 255;
    --accent-color-rgb: 255, 107, 107;
    --success-color-rgb: 46, 125, 50; /* Added RGB for success color */
    --text-dark-rgb: 44, 62, 80; /* Added RGB for dark text */
    --background-light-gray-rgb: 248, 249, 250;
}

body {
    font-family: 'Inter', sans-serif; /* Changed to Inter as per previous instruction */
    line-height: 1.6;
    background: linear-gradient(135deg, var(--primary-color-light) 0%, var(--primary-color-lighter) 25%, var(--primary-color-lightest) 50%, var(--primary-color-light) 75%, var(--primary-color-dark) 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    color: var(--text-dark); /* Default text color */
}

/* Animations */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(90deg); }
    50% { transform: translateY(0px) rotate(180deg); }
    75% { transform: translateY(-10px) rotate(270deg); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes expandLine {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatWater {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-20px) scale(1.2);
        opacity: 1;
    }
}

@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes titleGlow {
    from { text-shadow: 0 4px 8px rgba(0,0,0,0.3); }
    to { text-shadow: 0 4px 20px rgba(255,255,255,0.5); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes floatBg {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Floating Elements (General - for background decoration) */
.floating-element {
    position: fixed;
    border-radius: 50%;
    background: rgba(var(--background-white-rgb), 0.1);
    backdrop-filter: blur(10px);
    animation: float 20s infinite linear;
    z-index: 0;
}

.floating-element:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

/* Main Top Section (Header top bar) */
.main-top {
    background: linear-gradient(135deg, var(--primary-color-dark) 0%, var(--primary-color-light) 100%);
    padding: 15px 0;
    position: relative;
    overflow: hidden;
}

.main-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.login-box {
    margin-top: 10px;
    position: relative;
    z-index: 2;
}

.login-box select {
    background: rgba(var(--background-white-rgb), 0.95) !important;
    color: var(--text-dark) !important;
    border: 2px solid rgba(var(--background-white-rgb), 0.3);
    border-radius: 25px;
    padding: 12px 20px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.login-box select:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border-color: rgba(var(--background-white-rgb), 0.8);
}

.login-box select:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(var(--background-white-rgb), 0.3);
}

/* Main Header (Navigation bar) */
.main-header {
    background: rgba(var(--background-white-rgb), 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 3px solid var(--primary-color-light);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 15px 0;
}

.navbar-brand {
    transition: transform 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.logo {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.navbar-nav .nav-link {
    color: var(--text-dark) !important;
    font-weight: 600;
    padding: 12px 20px !important;
    margin: 0 5px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(var(--primary-color-light-rgb), 0.3), transparent);
    transition: left 0.5s ease;
}

.navbar-nav .nav-link:hover::before {
    left: 100%;
}

.navbar-nav .nav-link:hover {
    background: linear-gradient(135deg, var(--primary-color-light), var(--primary-color-dark));
    color: var(--background-white) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(var(--primary-color-light-rgb), 0.4);
}

.navbar-nav .nav-item.active .nav-link {
    background: linear-gradient(135deg, var(--primary-color-dark), var(--primary-color-light));
    color: var(--background-white) !important;
    box-shadow: 0 3px 10px rgba(var(--primary-color-dark-rgb), 0.3);
}

/* Dropdown Menu */
.dropdown-menu {
    background: rgba(var(--background-white-rgb), 0.95);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(var(--primary-color-light-rgb), 0.3);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    margin-top: 10px;
}

.dropdown-menu li a {
    color: var(--text-dark) !important;
    padding: 10px 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.dropdown-menu li a:hover {
    background: linear-gradient(135deg, var(--primary-color-light), var(--primary-color-dark));
    color: var(--background-white) !important;
    transform: translateX(5px);
}

/* Hamburger Menu */
.navbar-toggler {
    border: none;
    padding: 8px 12px;
    background: linear-gradient(135deg, var(--primary-color-light), var(--primary-color-dark));
    border-radius: 10px;
    transition: all 0.3s ease;
}

.navbar-toggler:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(var(--primary-color-light-rgb), 0.4);
}

.navbar-toggler i {
    color: var(--background-white);
    font-size: 18px;
}

/* Side Cart */
.side {
    position: fixed;
    top: 0;
    right: -350px;
    width: 350px;
    height: 100vh;
    background: rgba(var(--background-white-rgb), 0.95);
    backdrop-filter: blur(15px);
    border-left: 3px solid var(--primary-color-light);
    transition: right 0.3s ease;
    z-index: 9999;
    overflow-y: auto;
    padding: 20px;
}

.side.active {
    right: 0;
}

.close-side {
    position: absolute;
    top: 20px;
    right: 20px;
    color: var(--primary-color-dark);
    font-size: 24px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.close-side:hover {
    color: var(--primary-color-light);
    transform: rotate(90deg);
}

.cart-box {
    margin-top: 60px;
}

.cart-list li {
    padding: 15px;
    border-bottom: 1px solid rgba(var(--primary-color-light-rgb), 0.3);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.cart-list li:hover {
    background: rgba(var(--primary-color-light-rgb), 0.1);
    transform: translateX(5px);
}

.cart-thumb {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    object-fit: cover;
}

.cart-list h6 a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
}

.cart-list .price {
    color: var(--primary-color-dark);
    font-weight: bold;
}

.btn-cart {
    background: linear-gradient(135deg, var(--primary-color-light), var(--primary-color-dark));
    color: var(--background-white);
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(var(--primary-color-light-rgb), 0.4);
    color: var(--background-white);
}

/* General Buttons */
.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 15px;
    background: linear-gradient(45deg, var(--primary-color-dark), var(--primary-color-light));
    color: var(--background-white);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(var(--primary-color-dark-rgb), 0.3);
    position: relative;
    text-align: center;
    width: 100%;
    margin-top: 20px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(var(--background-white-rgb), 0.2), transparent);
    transition: all 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(var(--primary-color-dark-rgb), 0.4);
    background: linear-gradient(45deg, #5a9bd4, #a2d5f2);
}

.btn:active {
    transform: translateY(-1px);
}

.btn-info {
    background: linear-gradient(45deg, #17a2b8, #20c997);
    padding: 8px 15px;
    font-size: 0.9rem;
    border-radius: 10px;
}

.btn-sm {
    padding: 8px 15px;
    font-size: 0.9rem;
}

/* General Tables */
.table {
    width: 100%;
    background: rgba(var(--background-white-rgb), 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.table th {
    background: linear-gradient(45deg, var(--primary-color-dark), var(--primary-color-light));
    color: var(--background-white);
    padding: 15px 10px;
    text-align: center;
    font-weight: 600;
    border: none;
}

.table td {
    padding: 12px 10px;
    text-align: center;
    color: var(--text-dark);
    border-bottom: 1px solid rgba(var(--background-white-rgb), 0.2);
    background: rgba(var(--background-white-rgb), 0.05);
}

.table tbody tr:hover {
    background: rgba(var(--background-white-rgb), 0.1);
    transform: scale(1.02);
    transition: all 0.3s ease;
}

/* General Modals */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-dialog {
    max-width: 800px;
    width: 90%;
    margin: 20px;
}

.modal-content {
    background: rgba(var(--background-white-rgb), 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(var(--background-white-rgb), 0.3);
}

.modal-header {
    background: linear-gradient(45deg, var(--primary-color-dark), var(--primary-color-light));
    color: var(--background-white);
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 600;
}

.close {
    background: none;
    border: none;
    color: var(--background-white);
    font-size: 1.5rem;
    cursor: pointer;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close:hover {
    background: rgba(var(--background-white-rgb), 0.2);
}

.modal-body {
    padding: 30px;
    color: var(--text-dark);
}

.modal-body p {
    margin-bottom: 10px;
    font-size: 1rem;
}

.modal-body h6 {
    color: var(--primary-color-dark);
    font-size: 1.2rem;
    margin: 20px 0 15px 0;
    font-weight: 600;
}

.modal-body hr {
    border: none;
    height: 1px;
    background: linear-gradient(45deg, var(--primary-color-dark), var(--primary-color-light));
    margin: 20px 0;
}

.modal-footer {
    padding: 20px 30px;
    background: rgba(var(--background-light-gray-rgb), 0.5);
    display: flex;
    justify-content: flex-end;
}

.btn-secondary {
    background: linear-gradient(45deg, #6c757d, #8e9ba7);
}

.text-danger {
    color: #dc3545;
    font-size: 0.9rem;
    margin-top: 5px;
    font-weight: 500;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(var(--background-white-rgb), 0.1);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, var(--primary-color-dark), var(--primary-color-light));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #5a9bd4, #a2d5f2);
}

/* Responsive (General) */
@media (max-width: 768px) {
    .row {
        flex-direction: column;
    }

    .col-lg-6 {
        width: 100%;
    }

    .noo-sh-title-top {
        font-size: 1.8rem;
    }

    .profile-info,
    .order-history {
        padding: 20px;
    }

    .table {
        font-size: 0.9rem;
    }

    .modal-dialog {
        width: 95%;
        margin: 10px;
    }
}

/* Register Page Specific Styles */
body.register-page-body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    position: relative;
    overflow-x: hidden;
    background: linear-gradient(135deg, var(--primary-color-light) 0%, var(--primary-color-lightest) 50%, var(--primary-color-lighter) 100%);
}

body.register-page-body::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(var(--primary-color-lighter-rgb), 0.1) 0%, transparent 70%);
    animation: float 15s ease-in-out infinite;
    z-index: 1;
}

body.register-page-body::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(var(--primary-color-light-rgb), 0.1) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite reverse;
    z-index: 1;
}

.container.register-container {
    background: rgba(var(--background-white-rgb), 0.95);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    box-shadow:
        0 25px 50px rgba(var(--primary-color-light-rgb), 0.3),
        0 15px 35px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(var(--background-white-rgb), 0.6);
    text-align: center;
    width: 420px;
    max-width: 90%;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(var(--background-white-rgb), 0.3);
    transform: translateY(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.container.register-container:hover {
    transform: translateY(-5px);
    box-shadow:
        0 35px 60px rgba(var(--primary-color-light-rgb), 0.4),
        0 20px 40px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(var(--background-white-rgb), 0.6);
}

.header h2 {
    color: var(--primary-color-dark);
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(var(--primary-color-dark-rgb), 0.1);
}

.subtitle {
    color: var(--primary-color-light);
    font-size: 14px;
    margin-bottom: 20px;
    font-weight: 300;
}

.underline {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color-light), var(--primary-color-dark));
    margin: 0 auto;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.underline::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(var(--background-white-rgb), 0.8), transparent);
    animation: shimmer 2s infinite;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
    position: relative;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary-color-dark);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.input-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.form-group input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--border-light);
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: linear-gradient(145deg, #F8FDFF, var(--background-white));
    color: var(--primary-color-dark);
    position: relative;
    z-index: 1;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color-light);
    box-shadow:
        0 0 0 3px rgba(var(--primary-color-light-rgb), 0.1),
        0 5px 15px rgba(var(--primary-color-light-rgb), 0.2);
    transform: translateY(-2px);
}

.form-group input::placeholder {
    color: var(--text-light);
    font-style: italic;
}

.register-container .form-helper-text {
    font-size: 0.85rem;
    color: #6a82a0;
    margin-top: 4px;
    margin-bottom: 8px;
    text-align: left;
    padding-left: 5px;
}

.login-link {
    margin-top: 20px;
    font-size: 14px;
    color: var(--primary-color-light);
}

.login-link a {
    color: var(--primary-color-dark);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.login-link a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color-light), var(--primary-color-dark));
    transition: width 0.3s ease;
}

.login-link a:hover::after {
    width: 100%;
}

.errorlist {
    color: var(--accent-color);
    list-style-type: none;
    padding: 0;
    margin-top: 5px;
    font-size: 12px;
    text-align: left;
}

.errorlist li {
    background: rgba(var(--accent-color-rgb), 0.1);
    padding: 5px 8px;
    border-radius: 6px;
    margin-bottom: 2px;
    border-left: 3px solid var(--accent-color);
}

.messages {
    list-style-type: none;
    padding: 0;
    margin-bottom: 12px;
    text-align: center;
}

.messages li {
    padding: 8px 12px;
    border-radius: 10px;
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.messages .error {
    background: linear-gradient(135deg, rgba(var(--accent-color-rgb), 0.1), rgba(var(--accent-color-rgb), 0.05));
    color: var(--accent-color);
    border: 1px solid rgba(var(--accent-color-rgb), 0.3);
}

.messages .success {
    background: linear-gradient(135deg, rgba(var(--success-color-rgb), 0.1), rgba(var(--success-color-rgb), 0.05));
    color: var(--success-color);
    border: 1px solid rgba(var(--success-color-rgb), 0.3);
}

.messages .info {
    background: linear-gradient(135deg, rgba(var(--primary-color-light-rgb), 0.1), rgba(var(--primary-color-light-rgb), 0.05));
    color: var(--primary-color-dark);
    border: 1px solid rgba(var(--primary-color-light-rgb), 0.3);
}

/* My Account Page Styles */
.my-account-box-main {
    position: relative;
    z-index: 1;
    padding: 40px 20px;
    min-height: 100vh;
}

.my-account-box-main .container {
    max-width: 1200px;
    margin: 0 auto;
}

.my-account-box-main .row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.my-account-box-main .col-lg-6 {
    flex: 1;
    min-width: 300px;
}

/* Profile Info Card */
.profile-info {
    background: rgba(var(--background-white-rgb), 0.15);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(var(--background-white-rgb), 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.profile-info::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(var(--background-white-rgb), 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.5s ease;
    opacity: 0;
}

.profile-info:hover::before {
    opacity: 1;
    transform: rotate(45deg) translate(50%, 50%);
}

.profile-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Order History Card */
.order-history {
    background: rgba(var(--background-white-rgb), 0.15);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(var(--background-white-rgb), 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.order-history::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(var(--background-white-rgb), 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.5s ease;
    opacity: 0;
}

.order-history:hover::before {
    opacity: 1;
    transform: rotate(45deg) translate(50%, 50%);
}

.order-history:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Title Styling (My Account Specific) */
.my-account-box-main .noo-sh-title-top {
    color: var(--text-dark);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.my-account-box-main .noo-sh-title-top span {
    background: linear-gradient(45deg, var(--primary-color-dark), var(--primary-color-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.my-account-box-main .noo-sh-title-top::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(45deg, var(--primary-color-dark), var(--primary-color-light));
    border-radius: 2px;
    animation: shimmer 2s infinite;
}

/* Profile Info Text */
.profile-info p {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 1.1rem;
    padding: 10px 0;
    border-bottom: 1px solid rgba(var(--background-white-rgb), 0.2);
}

.profile-info p strong {
    color: #1e3a8a;
    font-weight: 600;
}

.profile-info h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
}

/* Form Styling (My Account Specific) */
.profile-info .form-group {
    margin-bottom: 25px;
}

.profile-info .form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1rem;
}

.profile-info .form-group input {
    width: 100%;
    padding: 15px 20px;
    border: none;
    border-radius: 15px;
    background: rgba(var(--background-white-rgb), 0.2);
    backdrop-filter: blur(10px);
    color: var(--text-dark);
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.profile-info .form-group input:focus {
    outline: none;
    background: rgba(var(--background-white-rgb), 0.3);
    border-color: var(--primary-color-dark);
    box-shadow: 0 0 20px rgba(var(--primary-color-dark-rgb), 0.3);
    transform: translateY(-2px);
}

.profile-info .form-group input::placeholder {
    color: rgba(var(--text-dark-rgb), 0.6);
}

/* Button Styling (My Account Specific) */
.profile-info .btn {
    padding: 15px 30px;
    border: none;
    border-radius: 15px;
    background: linear-gradient(45deg, var(--primary-color-dark), var(--primary-color-light));
    color: var(--background-white);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    box-shadow: 0 5px 15px rgba(var(--primary-color-dark-rgb), 0.3);
}

.profile-info .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(var(--background-white-rgb), 0.2), transparent);
    transition: all 0.5s ease;
}

.profile-info .btn:hover::before {
    left: 100%;
}

.profile-info .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(var(--primary-color-dark-rgb), 0.4);
    background: linear-gradient(45deg, #5a9bd4, #a2d5f2);
}

.profile-info .btn:active {
    transform: translateY(-1px);
}

.profile-info .hvr-hover {
    width: 100%;
    justify-content: center;
}

/* Table Styling (My Account Specific) */
.order-history .table {
    width: 100%;
    background: rgba(var(--background-white-rgb), 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.order-history .table th {
    background: linear-gradient(45deg, var(--primary-color-dark), var(--primary-color-light));
    color: var(--background-white);
    padding: 15px 10px;
    text-align: center;
    font-weight: 600;
    border: none;
}

.order-history .table td {
    padding: 12px 10px;
    text-align: center;
    color: var(--text-dark);
    border-bottom: 1px solid rgba(var(--background-white-rgb), 0.2);
    background: rgba(var(--background-white-rgb), 0.05);
}

.order-history .table tbody tr:hover {
    background: rgba(var(--background-white-rgb), 0.1);
    transform: scale(1.02);
    transition: all 0.3s ease;
}

/* Modal Styling (My Account Specific) */
.my-account-box-main .modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.my-account-box-main .modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.my-account-box-main .modal-dialog {
    max-width: 800px;
    width: 90%;
    margin: 20px;
}

.my-account-box-main .modal-content {
    background: rgba(var(--background-white-rgb), 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(var(--background-white-rgb), 0.3);
}

.my-account-box-main .modal-header {
    background: linear-gradient(45deg, var(--primary-color-dark), var(--primary-color-light));
    color: var(--background-white);
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.my-account-box-main .modal-title {
    font-size: 1.5rem;
    font-weight: 600;
}

/* Re-using general .close for modals */
.my-account-box-main .modal-body {
    padding: 30px;
    color: var(--text-dark);
}

.my-account-box-main .modal-body p {
    margin-bottom: 10px;
    font-size: 1rem;
}

.my-account-box-main .modal-body h6 {
    color: var(--primary-color-dark);
    font-size: 1.2rem;
    margin: 20px 0 15px 0;
    font-weight: 600;
}

.my-account-box-main .modal-body hr {
    border: none;
    height: 1px;
    background: linear-gradient(45deg, var(--primary-color-dark), var(--primary-color-light));
    margin: 20px 0;
}

.my-account-box-main .modal-footer {
    padding: 20px 30px;
    background: rgba(var(--background-light-gray-rgb), 0.5);
    display: flex;
    justify-content: flex-end;
}

/* Error Messages */
.my-account-box-main .text-danger {
    color: #dc3545;
    font-size: 0.9rem;
    margin-top: 5px;
    font-weight: 500;
}

/* About page styles */
.about-box-main {
    background: linear-gradient(135deg, #F0F8FF 0%, var(--primary-color-lightest) 50%, #F8FDFF 100%);
    min-height: 100vh;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.about-box-main::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(var(--primary-color-light-rgb), 0.05) 0%, transparent 70%);
    animation: floatBg 20s ease-in-out infinite;
    z-index: 1;
}

.about-box-main::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(var(--primary-color-lighter-rgb), 0.05) 0%, transparent 70%);
    animation: floatBg 25s ease-in-out infinite reverse;
    z-index: 1;
}

/* Container inside about-box-main */
.about-box-main .container {
    position: relative;
    z-index: 2;
}

.banner-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 20px 40px rgba(var(--primary-color-light-rgb), 0.2),
        0 10px 25px rgba(0, 0, 0, 0.1);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.5s ease;
    background: linear-gradient(145deg, var(--background-white), #f0f8ff);
    padding: 10px;
}

.banner-frame:hover {
    transform: perspective(1000px) rotateY(0deg) translateY(-10px);
    box-shadow:
        0 30px 60px rgba(var(--primary-color-light-rgb), 0.3),
        0 15px 35px rgba(0, 0, 0, 0.15);
}

.banner-frame img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.banner-frame:hover img {
    transform: scale(1.05);
}

.banner-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(var(--primary-color-light-rgb), 0.1), transparent);
    border-radius: 20px;
    pointer-events: none;
}

.noo-sh-title-top {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color-dark);
    margin-bottom: 30px;
    position: relative;
    text-shadow: 0 4px 8px rgba(var(--primary-color-dark-rgb), 0.1);
    animation: slideInRight 1s ease-out;
}

.noo-sh-title-top span {
    background: linear-gradient(135deg, var(--primary-color-light), var(--primary-color-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.noo-sh-title-top span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color-light), var(--primary-color-dark));
    border-radius: 2px;
    animation: expandLine 1s ease-out 0.5s both;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--primary-color-dark);
    margin-bottom: 20px;
    text-align: justify;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.about-content p:nth-child(2) { animation-delay: 0.4s; }
.about-content p:nth-child(3) { animation-delay: 0.5s; }
.about-content p:nth-child(4) { animation-delay: 0.6s; }
.about-content p:nth-child(5) { animation-delay: 0.7s; }

.about-content p:first-of-type {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color-light);
    margin-bottom: 25px;
}

.service-block-inner {
    background: rgba(var(--background-white-rgb), 0.9);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 15px 35px rgba(var(--primary-color-light-rgb), 0.15),
        0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.5s ease;
    border: 1px solid rgba(var(--background-white-rgb), 0.3);
    transform: translateY(50px);
    opacity: 0;
    animation: slideInUp 0.8s ease-out both;
}

.service-block-inner:nth-child(1) { animation-delay: 0.8s; }
.service-block-inner:nth-child(2) { animation-delay: 1s; }
.service-block-inner:nth-child(3) { animation-delay: 1.2s; }

.service-block-inner:hover {
    transform: translateY(-10px);
    box-shadow:
        0 25px 50px rgba(var(--primary-color-light-rgb), 0.25),
        0 10px 25px rgba(0, 0, 0, 0.12);
}

.service-block-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color-light), var(--primary-color-dark));
    border-radius: 20px 20px 0 0;
}

.service-block-inner::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(var(--primary-color-light-rgb), 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.service-block-inner:hover::after {
    opacity: 1;
}

.service-block-inner h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color-dark);
    margin-bottom: 20px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-block-inner h3::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color-light), var(--primary-color-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--background-white);
    box-shadow: 0 8px 20px rgba(var(--primary-color-light-rgb), 0.3);
}

.service-block-inner:nth-child(1) h3::before { content: '🛡️'; }
.service-block-inner:nth-child(2) h3::before { content: '👔'; }
.service-block-inner:nth-child(3) h3::before { content: '🚚'; }

.service-block-inner p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-medium);
    margin-top: 25px;
    text-align: justify;
}

/* Floating elements (About Page Specific) */
.floating-water {
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgba(var(--primary-color-light-rgb), 0.2);
    border-radius: 50%;
    animation: floatWater 6s infinite ease-in-out;
    z-index: 1;
}

.floating-water:nth-child(1) {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.floating-water:nth-child(2) {
    top: 20%;
    right: 10%;
    animation-delay: 2s;
}

.floating-water:nth-child(3) {
    bottom: 30%;
    left: 8%;
    animation-delay: 4s;
}

.floating-water:nth-child(4) {
    bottom: 15%;
    right: 5%;
    animation-delay: 1s;
}

/* Water ripple effect (About Page Specific) */
.water-ripple {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 2px solid rgba(var(--primary-color-light-rgb), 0.3);
    border-radius: 50%;
    animation: ripple 4s infinite;
    z-index: 1;
}

.water-ripple:nth-child(1) {
    top: 25%;
    left: 15%;
    animation-delay: 0s;
}

.water-ripple:nth-child(2) {
    bottom: 35%;
    right: 20%;
    animation-delay: 2s;
}

/* Cart Page Styles */
.cart-container {
    background: linear-gradient(135deg, var(--primary-color-light) 0%, var(--primary-color-lightest) 50%, var(--background-white) 100%);
    min-height: 100vh;
    padding: 20px 0;
}

.cart-title-box {
    background: linear-gradient(135deg, var(--primary-color-dark), var(--primary-color-light));
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cart-title-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(var(--background-white-rgb), 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.cart-title-box h2 {
    color: var(--background-white);
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    position: relative;
    z-index: 2;
}

.cart-content {
    background: rgba(var(--background-white-rgb), 0.95);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 40px;
    margin: 40px 0;
    box-shadow: 0 20px 60px rgba(var(--primary-color-light-rgb), 0.3);
}

.cart-table {
    background: var(--background-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(var(--primary-color-light-rgb), 0.2);
    margin-bottom: 30px;
}

.cart-table thead {
    background: linear-gradient(135deg, var(--primary-color-dark), var(--primary-color-light));
    color: var(--background-white);
}

.cart-table th {
    padding: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
}

.cart-table td {
    padding: 20px;
    vertical-align: middle;
    border: none;
    border-bottom: 1px solid rgba(var(--primary-color-light-rgb), 0.2);
}

.cart-table tbody tr:hover {
    background: rgba(var(--primary-color-light-rgb), 0.1);
    transform: translateX(5px);
    transition: all 0.3s ease;
}

/* Product image in cart table */
.product-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(var(--primary-color-light-rgb), 0.3);
}

.product-name {
    font-weight: 600;
    color: var(--primary-color-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-name:hover {
    color: var(--primary-color-light);
    text-decoration: none;
}

.price-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--success-color);
    margin: 0;
}

.quantity-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--primary-color-light-rgb), 0.1);
    border-radius: 25px;
    padding: 5px;
    max-width: 150px;
    margin: 0 auto;
}

.quantity-btn {
    background: linear-gradient(135deg, var(--primary-color-dark), var(--primary-color-light));
    color: var(--background-white);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(var(--primary-color-dark-rgb), 0.3);
}

.quantity-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(var(--primary-color-dark-rgb), 0.5);
}

.quantity-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    box-shadow: none;
}

.quantity-input {
    background: var(--background-white);
    border: 2px solid var(--primary-color-light);
    border-radius: 10px;
    width: 60px;
    height: 35px;
    text-align: center;
    font-weight: 600;
    color: var(--primary-color-dark);
    margin: 0 10px;
}

.total-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--success-color);
    margin: 0;
}

.remove-btn {
    background: linear-gradient(135deg, var(--accent-color), #FF8E8E);
    color: var(--background-white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(var(--accent-color-rgb), 0.3);
}

.remove-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(var(--accent-color-rgb), 0.5);
}

.order-summary {
    background: linear-gradient(135deg, rgba(var(--primary-color-light-rgb), 0.1), rgba(var(--background-white-rgb), 0.9));
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(var(--primary-color-light-rgb), 0.2);
    border: 2px solid rgba(var(--primary-color-light-rgb), 0.3);
}

.order-summary h3 {
    color: var(--primary-color-dark);
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
    font-size: 1.5rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(var(--primary-color-light-rgb), 0.2);
}

.summary-row:last-child {
    border-bottom: none;
    padding-top: 20px;
    border-top: 2px solid var(--primary-color-dark);
}

.summary-label {
    font-weight: 600;
    color: var(--primary-color-dark);
}

.summary-value {
    font-weight: 700;
    color: var(--success-color);
    font-size: 1.1rem;
}

.grand-total {
    font-size: 1.4rem;
    color: var(--primary-color-dark);
}

.action-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.action-btn {
    background: linear-gradient(135deg, var(--primary-color-dark), var(--primary-color-light));
    color: var(--background-white);
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(var(--primary-color-dark-rgb), 0.3);
    text-decoration: none;
}

.action-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(var(--primary-color-dark-rgb), 0.5);
    color: var(--background-white);
    text-decoration: none;
}

.action-btn.secondary {
    background: linear-gradient(135deg, var(--primary-color-light), var(--primary-color-lighter));
    color: var(--primary-color-dark);
}

.action-btn.secondary:hover {
    color: var(--primary-color-dark);
}

.empty-cart {
    text-align: center;
    padding: 60px 20px;
    color: var(--primary-color-dark);
}

.empty-cart h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.empty-cart p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-medium);
}

/* Checkout Page Styles */
.all-title-box {
    background: linear-gradient(135deg, var(--primary-color-dark) 0%, var(--primary-color-light) 50%, var(--primary-color-lighter) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.all-title-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="rgba(255,255,255,0.1)"><polygon points="0,0 1000,0 1000,100 0,80"/></svg>');
    background-size: cover;
}

.all-title-box h2 {
    color: var(--background-white);
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin: 0;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
    animation: titleGlow 2s ease-in-out infinite alternate;
}

/* Main checkout container */
.checkout-box-main {
    padding: 60px 0;
    position: relative;
}

/* Login section for returning customers */
.new-account-login {
    margin-bottom: 40px;
}

.new-account-login .title-left h3 {
    color: var(--primary-color-dark);
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.new-account-login .title-left h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color-dark), var(--primary-color-light));
    border-radius: 2px;
}

.new-account-login p {
    font-size: 1.1rem;
    color: #333;
}

.new-account-login a {
    color: var(--primary-color-dark);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.new-account-login a:hover {
    color: var(--primary-color-light);
    text-shadow: 0 2px 4px rgba(var(--primary-color-light-rgb), 0.3);
}

/* Card styling */
.odr-box, .order-box {
    background: rgba(var(--background-white-rgb), 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(var(--primary-color-light-rgb), 0.2);
    border: 1px solid rgba(var(--background-white-rgb), 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.odr-box::before, .order-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(var(--primary-color-light-rgb), 0.1), transparent);
    transition: left 0.5s ease;
}

.odr-box:hover::before, .order-box:hover::before {
    left: 100%;
}

.odr-box:hover, .order-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(var(--primary-color-light-rgb), 0.3);
}

.title-left h3 {
    color: var(--primary-color-dark);
    font-weight: 600;
    margin-bottom: 25px;
    font-size: 1.8rem;
    position: relative;
}

.title-left h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color-dark), var(--primary-color-light));
    border-radius: 2px;
    animation: shimmer 2s infinite;
}

/* Cart items styling */
.bg-light {
    background: linear-gradient(135deg, var(--background-light-gray) 0%, #e9ecef 100%) !important;
    border-radius: 15px;
    border: 1px solid rgba(var(--primary-color-light-rgb), 0.2);
}

.media {
    padding: 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.media:hover {
    background: rgba(var(--primary-color-light-rgb), 0.1);
    transform: translateX(5px);
}

.media-body a {
    color: var(--primary-color-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.media-body a:hover {
    color: var(--primary-color-light);
    text-shadow: 0 2px 4px rgba(var(--primary-color-light-rgb), 0.3);
}

.small.text-muted {
    color: #6c757d !important;
    font-size: 0.9rem;
}

/* Order summary styling */
.order-box .d-flex {
    margin-bottom: 15px;
    padding: 10px 0;
    align-items: center;
}

.order-box h4, .order-box h5 {
    color: #333;
    margin: 0;
    font-weight: 500;
}

.font-weight-bold {
    color: var(--primary-color-dark) !important;
    font-weight: 600 !important;
}

.gr-total {
    background: linear-gradient(135deg, rgba(var(--primary-color-light-rgb), 0.1) 0%, rgba(var(--primary-color-lighter-rgb), 0.1) 100%);
    border-radius: 10px;
    padding: 20px 15px;
    margin: 20px 0;
}

.gr-total h5 {
    color: var(--primary-color-dark);
    font-weight: 700;
    font-size: 1.4rem;
}

.gr-total .h5 {
    color: var(--primary-color-dark);
    font-weight: 700;
    font-size: 1.4rem;
}

/* Button styling (Checkout Page) */
.btn.hvr-hover {
    background: linear-gradient(135deg, var(--primary-color-dark) 0%, var(--primary-color-light) 50%, var(--primary-color-lighter) 100%);
    color: var(--background-white);
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(var(--primary-color-light-rgb), 0.3);
    position: relative;
    overflow: hidden;
}

.btn.hvr-hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(var(--background-white-rgb), 0.2), transparent);
    transition: left 0.5s ease;
}

.btn.hvr-hover:hover::before {
    left: 100%;
}

.btn.hvr-hover:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(var(--primary-color-light-rgb), 0.4);
    background: linear-gradient(135deg, #5a9bd4 0%, var(--primary-color-light) 50%, var(--primary-color-lighter) 100%);
}

.btn.hvr-hover:active {
    transform: translateY(-1px);
}

/* Loading animation */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(var(--primary-color-light-rgb), 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.loading-overlay.active {
    opacity: 1;
    visibility: visible;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(var(--background-white-rgb), 0.3);
    border-top: 3px solid var(--background-white);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Pulse animation for important elements */
.pulse {
    animation: pulse 2s infinite;
}

/* Shop Page Styles */
.shop-container {
    background: linear-gradient(135deg, var(--primary-color-light) 0%, var(--primary-color-lightest) 50%, var(--background-white) 100%);
    min-height: 100vh;
    padding: 20px 0;
}

.shop-title-box {
    background: linear-gradient(135deg, var(--primary-color-dark), var(--primary-color-light));
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.shop-title-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(var(--background-white-rgb), 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.shop-title-box h2 {
    color: var(--background-white);
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    position: relative;
    z-index: 2;
}

.notification-card {
    background: linear-gradient(135deg, #4CAF50, #81C784);
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.3);
    backdrop-filter: blur(10px);
    color: var(--background-white);
    margin: 20px 0;
}

.filter-section {
    background: rgba(var(--background-white-rgb), 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 20px;
    margin: 30px 0;
    box-shadow: 0 15px 35px rgba(var(--primary-color-light-rgb), 0.2);
}

.custom-select {
    border: 2px solid var(--primary-color-light);
    border-radius: 10px;
    padding: 10px;
    background: var(--background-white);
    color: var(--primary-color-dark);
    font-weight: 500;
    transition: all 0.3s ease;
}

.custom-select:focus {
    outline: none;
    border-color: var(--primary-color-dark);
    box-shadow: 0 0 15px rgba(var(--primary-color-light-rgb), 0.3);
}

/* Product Box Styles */
.products-box {
    padding: 50px 0;
}

.title-all {
    margin-bottom: 50px;
}

.title-all h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color-dark);
    margin-bottom: 20px;
    text-shadow: 0 4px 8px rgba(var(--primary-color-dark-rgb), 0.1);
}

.title-all p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-medium);
    max-width: 800px;
    margin: 0 auto;
}

.special-menu .button-group {
    margin-bottom: 40px;
}

.special-menu .button-group button {
    background: rgba(var(--primary-color-light-rgb), 0.2);
    border: 2px solid var(--primary-color-light);
    color: var(--primary-color-dark);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    margin: 0 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.special-menu .button-group button:hover,
.special-menu .button-group button.active {
    background: linear-gradient(135deg, var(--primary-color-dark), var(--primary-color-light));
    color: var(--background-white);
    box-shadow: 0 8px 20px rgba(var(--primary-color-dark-rgb), 0.3);
    transform: translateY(-3px);
}

.products-single {
    background: rgba(var(--background-white-rgb), 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(var(--primary-color-light-rgb), 0.2);
    overflow: hidden;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.products-single:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(var(--primary-color-light-rgb), 0.3);
}

.box-img-hover {
    position: relative;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.box-img-hover img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.products-single:hover .box-img-hover img {
    transform: scale(1.1);
}

.type-lb {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, var(--accent-color), #FF8E8E);
    color: var(--background-white);
    padding: 5px 15px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 10;
}

.mask-icon {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.products-single:hover .mask-icon {
    transform: translateY(0);
}

.mask-icon ul {
    list-style: none;
    display: flex;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.mask-icon ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(var(--background-white-rgb), 0.2);
    border-radius: 50%;
    color: var(--background-white);
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.mask-icon ul li a:hover {
    background: var(--background-white);
    color: var(--primary-color-dark);
    transform: scale(1.1);
}

.mask-icon .cart {
    background: linear-gradient(135deg, var(--primary-color-dark), var(--primary-color-light));
    color: var(--background-white);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(var(--primary-color-dark-rgb), 0.3);
}

.mask-icon .cart:hover {
    background: linear-gradient(135deg, var(--primary-color-light), var(--primary-color-dark));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(var(--primary-color-dark-rgb), 0.4);
}

.why-text {
    padding: 20px;
    text-align: center;
}

.why-text h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color-dark);
    margin-bottom: 10px;
}

.why-text h5 {
    font-size: 1.1rem;
    color: var(--success-color);
    font-weight: 700;
}

/* Login Page Specific Styles */
body.login-page-body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color-light) 0%, var(--primary-color-lightest) 50%, var(--primary-color-lighter) 100%);
}

body.login-page-body::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(var(--primary-color-lighter-rgb), 0.1) 0%, transparent 70%);
    animation: float 15s ease-in-out infinite;
    z-index: 1;
}

body.login-page-body::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(var(--primary-color-light-rgb), 0.1) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite reverse;
    z-index: 1;
}

.login-container {
    background: rgba(var(--background-white-rgb), 0.95);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    box-shadow:
        0 25px 50px rgba(var(--primary-color-light-rgb), 0.3),
        0 15px 35px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(var(--background-white-rgb), 0.6);
    text-align: center;
    width: 420px;
    max-width: 90%;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(var(--background-white-rgb), 0.3);
    transform: translateY(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.login-container:hover {
    transform: translateY(-5px);
    box-shadow:
        0 35px 60px rgba(var(--primary-color-light-rgb), 0.4),
        0 20px 40px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(var(--background-white-rgb), 0.6);
}

/* Gaya untuk SVG tetesan air */
.water-drop-logo-svg {
    display: block;
    margin: 0 auto 20px auto;
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.1));
}

.water-drop-logo-svg svg {
    width: 100%;
    height: 100%;
}


.login-container .header h2 {
    color: var(--primary-color-dark);
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(var(--primary-color-dark-rgb), 0.1);
}

.login-container .subtitle {
    color: var(--primary-color-light);
    font-size: 14px;
    margin-bottom: 20px;
    font-weight: 300;
}

.login-container .underline {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color-light), var(--primary-color-dark));
    margin: 0 auto;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.login-container .underline::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(var(--background-white-rgb), 0.8), transparent);
    animation: shimmer 2s infinite;
}

.login-container form {
    width: 100%;
    margin-top: 20px;
}

.login-container .input-group {
    margin-bottom: 25px;
    text-align: left;
    position: relative;
}

.login-container .input-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary-color-dark);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.login-container .input-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.login-container .input-group input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--border-light);
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: linear-gradient(145deg, #F8FDFF, var(--background-white));
    color: var(--primary-color-dark);
    position: relative;
    z-index: 1;
}

.login-container .input-group input:focus {
    outline: none;
    border-color: var(--primary-color-light);
    box-shadow:
        0 0 0 3px rgba(var(--primary-color-light-rgb), 0.1),
        0 5px 15px rgba(var(--primary-color-light-rgb), 0.2);
    transform: translateY(-2px);
}

.login-container .input-group input::placeholder {
    color: var(--text-light);
    font-style: italic;
}

.login-container .btn-login {
    padding: 15px 30px;
    border: none;
    border-radius: 15px;
    background: linear-gradient(45deg, var(--primary-color-dark), var(--primary-color-light));
    color: var(--background-white);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(var(--primary-color-dark-rgb), 0.3);
    position: relative;
    text-align: center;
    width: 100%;
    margin-top: 20px;
}

.login-container .btn-login::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(var(--background-white-rgb), 0.2), transparent);
    transition: all 0.5s ease;
}

.login-container .btn-login:hover::before {
    left: 100%;
}

.login-container .btn-login:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(var(--primary-color-dark-rgb), 0.4);
    background: linear-gradient(45deg, #5a9bd4, #a2d5f2);
}

.login-container .btn-login:active {
    transform: translateY(-1px);
}

.login-container .forgot-password {
    margin-top: 15px;
    font-size: 14px;
    text-align: center;
}

.login-container .forgot-password a {
    color: var(--primary-color-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.login-container .forgot-password a:hover {
    color: var(--primary-color-dark);
}

.login-container .register-link {
    margin-top: 20px;
    font-size: 14px;
    color: var(--primary-color-light);
}

.login-container .register-link a {
    color: var(--primary-color-dark);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.login-container .register-link a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color-light), var(--primary-color-dark));
    transition: width 0.3s ease;
}

.login-container .register-link a:hover::after {
    width: 100%;
}

.login-container .messages {
    list-style-type: none;
    padding: 0;
    margin-bottom: 20px;
    text-align: center;
}

.login-container .messages li {
    padding: 12px 16px;
    border-radius: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.login-container .messages .error {
    background: linear-gradient(135deg, rgba(var(--accent-color-rgb), 0.1), rgba(var(--accent-color-rgb), 0.05));
    color: var(--accent-color);
    border: 1px solid rgba(var(--accent-color-rgb), 0.3);
}

.login-container .messages .success {
    background: linear-gradient(135deg, rgba(var(--success-color-rgb), 0.1), rgba(var(--success-color-rgb), 0.05));
    color: var(--success-color);
    border: 1px solid rgba(var(--success-color-rgb), 0.3);
}

.login-container .messages .info {
    background: linear-gradient(135deg, rgba(var(--primary-color-light-rgb), 0.1), rgba(var(--primary-color-light-rgb), 0.05));
    color: var(--primary-color-dark);
    border: 1px solid rgba(var(--primary-color-light-rgb), 0.3);
}

/* Water Drop Effects for Login/Register */
.water-drop {
    position: absolute;
    background: rgba(var(--background-white-rgb), 0.15);
    border-radius: 50%;
    animation: dropFall 10s infinite ease-in-out;
    filter: blur(5px);
    z-index: 1;
}

.water-drop:nth-child(1) {
    width: 40px;
    height: 40px;
    top: 5%;
    left: 15%;
    animation-delay: 0s;
}

/* --- Responsive (General) --- */
@media (max-width: 992px) {
    .hero-slider h1 {
        font-size: 2.8rem;
    }

    .hero-slider p {
        font-size: 1.1rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .section-title p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 50vh;
        min-height: 300px;
    }
    .slide-content h1 {
        font-size: 2.5rem;
    }
    
    .slide-content p {
        font-size: 1.1rem;
    }
    
    .slider-nav {
        padding: 10px 15px;
    }
    
    .slider-nav.prev {
        left: 15px;
    }
    
    .slider-nav.next {
        right: 15px;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .section-title p {
        font-size: 1rem;
    }

    .category-card {
        margin-bottom: 20px;
    }

    .filter-btn {
        margin: 5px;
        padding: 8px 15px;
        font-size: 0.9rem;
    }

    /* Header & Footer Responsive */
    .top-bar .contact-info,
    .top-bar .social-icons {
        justify-content: center;
        margin-bottom: 10px;
    }

    .navbar-brand {
        margin-right: 0 !important;
    }

    .navbar-collapse {
        text-align: center;
    }

    .navbar-nav .nav-item {
        margin: 10px 0;
    }

    .navbar-nav .nav-link {
        padding: 8px 0;
    }

    .user-actions {
        margin-top: 15px;
        justify-content: center;
    }

    .footer-col {
        margin-bottom: 30px;
    }

    /* My Account Responsive */
    .my-account-box-main .row {
        flex-direction: column;
    }

    .my-account-box-main .col-lg-6 {
        width: 100%;
    }

    .my-account-box-main .noo-sh-title-top {
        font-size: 1.8rem;
    }

    .profile-info, .order-history {
        padding: 20px;
    }

    .order-history .table {
        font-size: 0.9rem;
    }

    .my-account-box-main .modal-dialog {
        width: 95%;
        margin: 10px;
    }

    /* Cart Page Responsive */
    .cart-title-box h2 {
        font-size: 2rem;
    }

    .cart-content {
        padding: 20px;
        margin: 20px 0;
    }

    .cart-table {
        font-size: 0.9rem;
    }

    .cart-table th,
    .cart-table td {
        padding: 15px 10px;
    }

    .action-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .action-btn {
        width: 100%;
    }

    /* Checkout Page Responsive */
    .all-title-box h2 {
        font-size: 2rem;
    }

    .all-title-box {
        padding: 60px 0;
    }

    .odr-box, .order-box {
        padding: 20px;
        margin-bottom: 20px;
    }

    .title-left h3 {
        font-size: 1.5rem;
    }

    .btn.hvr-hover {
        padding: 12px 30px;
        font-size: 1rem;
    }

    /* Shop Page Responsive */
    .shop-title-box h2 {
        font-size: 2.2rem;
    }
    .title-all h1 {
        font-size: 2.2rem;
    }
    .special-menu .button-group button {
        margin: 5px;
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    .products-single {
        margin-bottom: 20px;
    }

    /* Login/Register Page Responsive */
    @media (max-width: 480px) {
        .container.register-container {
            padding: 20px;
        }
        .register-container .header h2 {
            font-size: 22px;
        }
        .register-container .subtitle {
            font-size: 12px;
        }
        .register-container .input-group input {
            padding: 10px 14px;
            font-size: 14px;
        }
        .register-container .btn {
            padding: 12px 24px;
            font-size: 13px;
        }
        .form-group {
            margin-bottom: 15px;
        }
        .register-container .form-helper-text {
            font-size: 0.8rem;
            margin-bottom: 5px;
        }
        .errorlist {
            font-size: 11px;
            margin-top: 3px;
        }
        .errorlist li {
            padding: 4px 6px;
            margin-bottom: 1px;
        }
        .messages {
            margin-bottom: 10px;
        }
        .messages li {
            padding: 6px 10px;
            font-size: 12px;
            margin-bottom: 4px;
        }
        .login-link {
            margin-top: 15px;
            font-size: 13px;
        }
    }
}
