
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600&display=swap');
@import './logReg.css';

:root {
    --main-color: #f1a642;
    --black-color: #000;
    --border: 0.1rem solid rgba(255, 255, 255, 0.4);    
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
    text-transform: none;
    transition: 0.2s ease;
    font-family: "Poppins", sans-serif;
}

/*! base html codes */
html{
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-padding-top: 9rem;
    scroll-behavior: smooth;
}

body{
    background-color: var(--main-color);
}

body.home-page {
    background: url(../images/home.png) no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

section{
    padding: 3.5rem 7%;
}

.btn{
    margin-top: 1rem;
    display: inline-block;
    padding: 2rem 3.75rem;
    border-radius: 30rem;
    font-size: 1.7rem;
    color: beige;
    background-color: brown;
    cursor: pointer;
}

.btnoptie{
    margin-top: 0.3rem;
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 4rem;
    font-size: 2rem;
    color: beige;
    background-color: brown;
    cursor: pointer;
}

/*! header start */
.header .logo img {
    height: 7rem;
}

.header {
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 7%;
    margin: 2rem 7%;
    border-radius: 30rem;
    box-shadow: 0px 0px 17px -2px rgba(0, 0, 0, 0.75);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .navbar a{
    margin: 0 1rem;
    font-size: 1.6rem;
    color: var(--black-color);
    border-bottom: 0.1rem solid transparent;
}

.header .navbar .active,
.header .navbar a:hover{
    border-color: var(--main-color);
    padding-bottom: 0.5rem;
}

.header .buttons button {
    cursor: pointer;
    font-size: 2.5rem;
    margin-left: 2rem;
    background-color: transparent;
}

/*! header end */

/*! home start */
.home{
    min-height: 100vh;  
    display: flex;
    align-items: center;    
}
.home .content {
    max-width: 60rem;

}
.home .content h3 {
    font-size: 6rem;
    color: rgb(255, 255, 255);

}
.home .content p{
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.8;
    padding: 1rem 0;
    color: #352318;
}
/*! home end */

/* Track begin */
.track-container {
    background: white;
    margin: 2rem 7%;
    padding: 4rem;
    border-radius: 3rem;
    box-shadow: 0px 10px 30px rgba(0,0,0,0.1);
    text-align: center;
}

.track-container h2 {
    font-size: 4rem;
    color: var(--brown-color);
    margin-bottom: 1rem;
}

.track-container p.subtitle {
    font-size: 1.8rem;
    color: #666;
    margin-bottom: 3rem;
}

.status-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(28rem, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.status-card {
    background-color: #fff9f0; 
    padding: 3rem;
    border-radius: 2rem;
    border: 0.2rem solid var(--main-color);
}

.status-card h3 {
    font-size: 2.2rem;
    color: var(--black-color);
}

.status-card .level-value {
    font-size: 4.5rem;
    font-weight: 600;
    color: var(--brown-color);
    margin: 1.5rem 0;
}

.status-card small {
    font-size: 1.3rem;
    color: #777;
}

.track-controls {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.system-status {
    background: #f4f4f4;
    padding: 2rem;
    border-radius: 1.5rem;
    font-size: 1.4rem;
    max-height: 20rem;
    overflow-y: auto;
    text-align: left;
}
/* track end */

        /* Blog begin */
        .blog-section {
            max-width: 1200px;
            margin: 4rem auto;
            padding: 0 7%;
        }

        .blog-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .blog-header h1 {
            font-size: 4rem;
            color: #333;
            margin-bottom: 1rem;
        }

        .blog-header p {
            font-size: 1.8rem;
            color: #666;
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 3rem;
            margin-top: 3rem;
        }

        .blog-category {
            display: inline-block;
            background: var(--main-color);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 20px;
            font-size: 1.2rem;
            text-transform: uppercase;
            font-weight: 600;
        }

        .loading {
            text-align: center;
            padding: 5rem;
            font-size: 2rem;
            color: #999;
        }

        .loading i {
            font-size: 4rem;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .no-blogs {
            text-align: center;
            padding: 5rem;
            font-size: 2rem;
            color: #999;
        }

        .error-message {
            background: #f8d7da;
            color: #721c24;
            padding: 2rem;
            border-radius: 10px;
            border-left: 5px solid #f5c6cb;
            margin: 2rem 0;
            font-size: 1.6rem;
        }

        /* Add Blog Area */
        .add-blog-area {
            display: flex;
            justify-content: center;
            margin-bottom: 2rem;
        }

        .add-blog-btn {
            padding: 1.2rem 3rem;
            font-size: 1.6rem;
            background: var(--main-color);
            color: white;
            border: none;
            border-radius: 1rem;
            cursor: pointer;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            transition: all 0.3s;
        }

        .add-blog-btn:hover {
            background: #d4912e;
            transform: translateY(-2px);
        }

        /* Login Notice */
        .login-notice {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1.5rem;
            background: #fff3cd;
            padding: 1.5rem 2rem;
            border-radius: 1rem;
            margin-bottom: 2rem;
            border-left: 4px solid var(--main-color);
        }

        .login-notice i {
            font-size: 2rem;
            color: var(--main-color);
        }

        .login-notice p {
            font-size: 1.4rem;
            color: #856404;
            margin: 0;
        }

        .login-link-btn {
            padding: 0.8rem 2rem;
            background: var(--main-color);
            color: white;
            border-radius: 0.8rem;
            font-size: 1.3rem;
            font-weight: 600;
            transition: all 0.3s;
        }

        .login-link-btn:hover {
            background: #d4912e;
        }

        /* Blog Form */
        .blog-form {
            background: white;
            padding: 3rem;
            border-radius: 1.5rem;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            margin-bottom: 3rem;
        }

        .blog-form h3 {
            font-size: 2.2rem;
            color: #333;
            margin-bottom: 2rem;
        }

        .blog-form h3 i {
            color: var(--main-color);
            margin-right: 0.8rem;
        }

        .form-field {
            margin-bottom: 2rem;
        }

        .form-field label {
            display: block;
            font-size: 1.4rem;
            color: #555;
            margin-bottom: 0.8rem;
            font-weight: 600;
        }

        .form-field input,
        .form-field select,
        .form-field textarea {
            width: 100%;
            padding: 1.2rem 1.5rem;
            font-size: 1.5rem;
            border: 2px solid #ddd;
            border-radius: 1rem;
            font-family: 'Poppins', sans-serif;
            transition: border-color 0.3s;
            resize: vertical;
        }

        .form-field input:focus,
        .form-field select:focus,
        .form-field textarea:focus {
            border-color: var(--main-color);
            outline: none;
        }

        .form-actions {
            display: flex;
            gap: 1.5rem;
        }

        .form-submit-btn {
            padding: 1rem 2.5rem;
            font-size: 1.5rem;
            background: var(--main-color);
            color: white;
            border: none;
            border-radius: 1rem;
            cursor: pointer;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            transition: all 0.3s;
        }

        .form-submit-btn:hover {
            background: #d4912e;
        }

        .form-cancel-btn {
            padding: 1rem 2.5rem;
            font-size: 1.5rem;
            background: #ccc;
            color: #333;
            border: none;
            border-radius: 1rem;
            cursor: pointer;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            transition: all 0.3s;
        }

        .form-cancel-btn:hover {
            background: #bbb;
        }

        /* Blog Card updated */
        .blog-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            padding: 2.5rem;
        }

        .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }

        .blog-card-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .blog-card .blog-date {
            font-size: 1.2rem;
            color: #999;
        }

        .blog-card .blog-date i {
            margin-right: 0.5rem;
        }

        .blog-card .blog-title {
            font-size: 2rem;
            color: #333;
            margin-bottom: 1.2rem;
            line-height: 1.4;
        }

        .blog-card .blog-excerpt {
            font-size: 1.4rem;
            color: #666;
            line-height: 1.8;
            margin-bottom: 1rem;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .blog-read-more {
            font-size: 1.3rem;
            color: var(--main-color);
            font-weight: 600;
            cursor: pointer;
            display: inline-block;
            margin-bottom: 1.5rem;
            transition: color 0.3s;
        }

        .blog-card:hover .blog-read-more {
            color: brown;
        }

        .blog-card {
            cursor: pointer;
        }

        .blog-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 1.5rem;
            border-top: 1px solid #eee;
        }

        .blog-author {
            font-size: 1.3rem;
            color: #888;
        }

        .blog-author i {
            margin-right: 0.5rem;
        }

        .like-btn {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.6rem 1.5rem;
            border: 2px solid #ddd;
            border-radius: 2rem;
            background: white;
            cursor: pointer;
            font-size: 1.4rem;
            color: #888;
            transition: all 0.3s;
            font-family: 'Poppins', sans-serif;
        }

        .like-btn:hover {
            border-color: #e74c3c;
            color: #e74c3c;
        }

        .like-btn.liked {
            background: #fde8e8;
            border-color: #e74c3c;
            color: #e74c3c;
        }

        .like-btn.disabled-like {
            opacity: 0.5;
            cursor: not-allowed;
        }

        /* Blog Modal */
        .blog-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 3000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            padding: 2rem;
        }

        .blog-modal-overlay.open {
            opacity: 1;
            visibility: visible;
        }

        .blog-modal {
            background: white;
            border-radius: 2rem;
            max-width: 70rem;
            width: 100%;
            max-height: 85vh;
            overflow-y: auto;
            padding: 3.5rem;
            position: relative;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            animation: modalSlideUp 0.35s ease;
        }

        @keyframes modalSlideUp {
            from {
                transform: translateY(30px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .blog-modal-close {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            background: none;
            font-size: 2.2rem;
            cursor: pointer;
            color: #999;
            transition: color 0.3s;
            z-index: 1;
        }

        .blog-modal-close:hover {
            color: #e74c3c;
        }

        .blog-modal .blog-modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .blog-modal-title {
            font-size: 2.8rem;
            color: #333;
            line-height: 1.4;
            margin-bottom: 2rem;
        }

        .blog-modal-content {
            font-size: 1.5rem;
            color: #555;
            line-height: 2;
        }

        .blog-modal-content p {
            margin-bottom: 1.2rem;
        }

        .blog-modal-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid #eee;
        }

        .blog-modal-likes {
            font-size: 1.4rem;
            color: #e74c3c;
        }

        .blog-modal-likes i {
            margin-right: 0.4rem;
        }
        /* blog eind */

        /* ===== FOOTER START ===== */
        .footer {
            background: #2c2c2c;
            color: #ccc;
            padding: 5rem 7% 2rem;
            margin-top: 4rem;
        }

        .footer .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer .footer-col h3 {
            font-size: 2rem;
            color: var(--main-color);
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 1rem;
        }

        .footer .footer-col h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 5rem;
            height: 0.2rem;
            background: var(--main-color);
        }

        .footer .footer-col p {
            font-size: 1.4rem;
            line-height: 1.8;
            margin-bottom: 1rem;
        }

        .footer .footer-col .footer-links {
            list-style: none;
        }

        .footer .footer-col .footer-links li {
            margin-bottom: 1rem;
        }

        .footer .footer-col .footer-links li a {
            font-size: 1.4rem;
            color: #ccc;
            transition: color 0.3s;
        }

        .footer .footer-col .footer-links li a:hover {
            color: var(--main-color);
            padding-left: 0.5rem;
        }

        .footer .footer-col .footer-links li a i {
            margin-right: 0.8rem;
            color: var(--main-color);
        }

        .footer .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            margin-top: 3rem;
            border-top: 1px solid #444;
            font-size: 1.3rem;
            color: #888;
        }

        .footer .footer-bottom span {
            color: var(--main-color);
        }
        /* ===== FOOTER END ===== */

        /* ===== ABOUT PAGE START ===== */
        .about-hero {
            text-align: center;
            padding: 6rem 7% 4rem;
        }

        .about-hero h1 {
            font-size: 4.5rem;
            color: #333;
            margin-bottom: 1rem;
        }

        .about-hero h1 span {
            color: var(--main-color);
        }

        .about-hero p.tagline {
            font-size: 1.8rem;
            color: #666;
            max-width: 60rem;
            margin: 0 auto;
            line-height: 1.8;
        }

        .about-mission {
            background: white;
            margin: 0 7%;
            padding: 5rem;
            border-radius: 3rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            display: flex;
            align-items: center;
            gap: 5rem;
            flex-wrap: wrap;
            margin-bottom: 4rem;
        }

        .about-mission .mission-image {
            flex: 1 1 35rem;
        }

        .about-mission .mission-image img {
            width: 100%;
            border-radius: 2rem;
        }

        .about-mission .mission-text {
            flex: 1 1 40rem;
        }

        .about-mission .mission-text h2 {
            font-size: 3rem;
            color: #333;
            margin-bottom: 1.5rem;
        }

        .about-mission .mission-text h2 i {
            color: var(--main-color);
            margin-right: 1rem;
        }

        .about-mission .mission-text p {
            font-size: 1.5rem;
            color: #555;
            line-height: 1.9;
            margin-bottom: 1.5rem;
        }

        .about-how-it-works {
            padding: 5rem 7%;
            text-align: center;
        }

        .about-how-it-works h2 {
            font-size: 3.5rem;
            color: #333;
            margin-bottom: 1rem;
        }

        .about-how-it-works h2 span {
            color: var(--main-color);
        }

        .about-how-it-works > p {
            font-size: 1.6rem;
            color: #666;
            margin-bottom: 4rem;
        }

        .steps-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
            gap: 3rem;
        }

        .step-card {
            background: white;
            padding: 4rem 3rem;
            border-radius: 2rem;
            box-shadow: 0 8px 25px rgba(0,0,0,0.08);
            transition: transform 0.3s;
        }

        .step-card:hover {
            transform: translateY(-8px);
        }

        .step-card .step-icon {
            font-size: 4rem;
            margin-bottom: 2rem;
        }

        .step-card h3 {
            font-size: 2rem;
            color: #333;
            margin-bottom: 1rem;
        }

        .step-card p {
            font-size: 1.4rem;
            color: #666;
            line-height: 1.8;
        }

        .about-team {
            padding: 5rem 7%;
            text-align: center;
        }

        .about-team h2 {
            font-size: 3.5rem;
            color: #333;
            margin-bottom: 1rem;
        }

        .about-team h2 span {
            color: var(--main-color);
        }

        .about-team > p {
            font-size: 1.6rem;
            color: #666;
            margin-bottom: 4rem;
        }

        .team-cards {
            display: flex;
            justify-content: center;
            gap: 4rem;
            flex-wrap: wrap;
        }

        .team-card {
            background: white;
            padding: 4rem 3rem;
            border-radius: 2rem;
            box-shadow: 0 8px 25px rgba(0,0,0,0.08);
            width: 30rem;
            transition: transform 0.3s;
        }

        .team-card:hover {
            transform: translateY(-8px);
        }

        .team-card .team-avatar {
            width: 10rem;
            height: 10rem;
            border-radius: 50%;
            background: var(--main-color);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2rem;
            font-size: 4rem;
        }

        .team-card h3 {
            font-size: 2.2rem;
            color: #333;
            margin-bottom: 0.5rem;
        }

        .team-card .team-role {
            font-size: 1.4rem;
            color: var(--main-color);
            margin-bottom: 1.5rem;
            font-weight: 600;
        }

        .team-card p {
            font-size: 1.4rem;
            color: #666;
            line-height: 1.8;
        }

        .about-values {
            margin: 0 7% 4rem;
            background: white;
            padding: 5rem;
            border-radius: 3rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            text-align: center;
        }

        .about-values h2 {
            font-size: 3rem;
            color: #333;
            margin-bottom: 3rem;
        }

        .about-values h2 span {
            color: var(--main-color);
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(22rem, 1fr));
            gap: 3rem;
        }

        .value-item {
            padding: 2rem;
        }

        .value-item .value-icon {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
        }

        .value-item h4 {
            font-size: 1.8rem;
            color: #333;
            margin-bottom: 1rem;
        }

        .value-item p {
            font-size: 1.3rem;
            color: #666;
            line-height: 1.8;
        }
        /* ===== ABOUT PAGE END ===== */

        /* ===== TRACK PAGE ENHANCEMENTS START ===== */
        .device-connect {
            background: white;
            margin: 2rem 7% 0;
            padding: 4rem;
            border-radius: 3rem;
            box-shadow: 0px 10px 30px rgba(0,0,0,0.1);
            text-align: center;
        }

        .device-connect h2 {
            font-size: 3rem;
            color: #333;
            margin-bottom: 1rem;
        }

        .device-connect p {
            font-size: 1.5rem;
            color: #666;
            margin-bottom: 2rem;
        }

        .device-connect .connect-form {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1.5rem;
            flex-wrap: wrap;
            margin-bottom: 2rem;
        }

        .device-connect .connect-form input {
            padding: 1.2rem 2rem;
            font-size: 1.6rem;
            border: 2px solid #ddd;
            border-radius: 1rem;
            width: 30rem;
            font-family: 'Poppins', sans-serif;
            text-align: center;
            letter-spacing: 0.3rem;
            transition: border-color 0.3s;
        }

        .device-connect .connect-form input:focus {
            border-color: var(--main-color);
            outline: none;
        }

        .device-connect .connect-form button {
            padding: 1.2rem 3rem;
            font-size: 1.6rem;
            background: var(--main-color);
            color: white;
            border: none;
            border-radius: 1rem;
            cursor: pointer;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            transition: all 0.3s;
        }

        .device-connect .connect-form button:hover {
            background: #d4912e;
            transform: translateY(-2px);
        }

        .device-connect .connection-status {
            font-size: 1.4rem;
            padding: 1rem 2rem;
            border-radius: 1rem;
            display: inline-block;
        }

        .device-connect .connection-status.connected {
            background: #d4edda;
            color: #155724;
        }

        .device-connect .connection-status.disconnected {
            background: #f8d7da;
            color: #721c24;
        }

        .device-connect .connection-status.connecting {
            background: #fff3cd;
            color: #856404;
        }

        /* Scheduler Section */
        .scheduler-section {
            background: white;
            margin: 2rem 7%;
            padding: 4rem;
            border-radius: 3rem;
            box-shadow: 0px 10px 30px rgba(0,0,0,0.1);
        }

        .scheduler-section h2 {
            font-size: 3rem;
            text-align: center;
            color: #333;
            margin-bottom: 0.5rem;
        }

        .scheduler-section > p {
            text-align: center;
            font-size: 1.5rem;
            color: #666;
            margin-bottom: 3rem;
        }

        .schedule-form {
            display: flex;
            justify-content: center;
            align-items: flex-end;
            gap: 2rem;
            flex-wrap: wrap;
            margin-bottom: 3rem;
            padding: 3rem;
            background: #fff9f0;
            border-radius: 2rem;
            border: 2px solid var(--main-color);
        }

        .schedule-form .form-group {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .schedule-form .form-group label {
            font-size: 1.4rem;
            color: #555;
            margin-bottom: 0.8rem;
            font-weight: 600;
        }

        .schedule-form .form-group input[type="time"] {
            padding: 1rem 1.5rem;
            font-size: 1.6rem;
            border: 2px solid #ddd;
            border-radius: 1rem;
            font-family: 'Poppins', sans-serif;
            transition: border-color 0.3s;
        }

        .schedule-form .form-group input[type="time"]:focus {
            border-color: var(--main-color);
            outline: none;
        }

        .schedule-form .form-group select {
            padding: 1rem 1.5rem;
            font-size: 1.6rem;
            border: 2px solid #ddd;
            border-radius: 1rem;
            font-family: 'Poppins', sans-serif;
            background: white;
            cursor: pointer;
        }

        .schedule-form .form-group select:focus {
            border-color: var(--main-color);
            outline: none;
        }

        .schedule-form button {
            padding: 1rem 3rem;
            font-size: 1.6rem;
            background: brown;
            color: white;
            border: none;
            border-radius: 1rem;
            cursor: pointer;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            transition: all 0.3s;
        }

        .schedule-form button:hover {
            background: #6b2020;
            transform: translateY(-2px);
        }

        .schedule-list {
            max-width: 60rem;
            margin: 0 auto;
        }

        .schedule-list h3 {
            font-size: 2rem;
            color: #333;
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .schedule-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: #fff9f0;
            padding: 1.5rem 2rem;
            border-radius: 1.5rem;
            margin-bottom: 1rem;
            border-left: 4px solid var(--main-color);
        }

        .schedule-item .schedule-info {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .schedule-item .schedule-info i {
            font-size: 2rem;
            color: var(--main-color);
        }

        .schedule-item .schedule-time {
            font-size: 1.8rem;
            font-weight: 600;
            color: #333;
        }

        .schedule-item .schedule-type {
            font-size: 1.3rem;
            color: #666;
        }

        .schedule-item .schedule-delete {
            background: #dc3545;
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 0.8rem;
            cursor: pointer;
            font-size: 1.3rem;
            transition: all 0.3s;
        }

        .schedule-item .schedule-delete:hover {
            background: #c82333;
        }

        .no-schedules {
            text-align: center;
            font-size: 1.5rem;
            color: #999;
            padding: 3rem;
            font-style: italic;
        }

        /* ===== EXTRA BEHEER SECTION ===== */
        .extra-beheer-section {
            background: white;
            margin: 2rem 7%;
            padding: 4rem;
            border-radius: 3rem;
            box-shadow: 0px 10px 30px rgba(0,0,0,0.1);
        }

        .extra-beheer-section h2 {
            font-size: 2.4rem;
            text-align: center;
            color: #333;
            margin-bottom: 0.3rem;
        }

        .extra-beheer-section > p {
            text-align: center;
            font-size: 1.2rem;
            color: #999;
            margin-bottom: 2.5rem;
        }

        /* Beheer Grid */
        .beheer-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.8rem;
        }

        /* Beheer Card */
        .beheer-card {
            background: #fdf8f2;
            border-radius: 1.5rem;
            padding: 2rem;
            border: 1px solid #f0e8de;
            display: flex;
            flex-direction: column;
            transition: transform .2s ease, box-shadow .2s ease;
        }

        .beheer-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0,0,0,.06);
        }

        .beheer-card-header {
            display: flex;
            align-items: center;
            gap: .8rem;
            margin-bottom: 1.2rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid #ede5da;
        }

        .beheer-icon {
            font-size: 1.6rem;
        }

        .beheer-card-header h3 {
            font-size: 1.4rem;
            color: #333;
            font-weight: 600;
            margin: 0;
        }

        /* Beheer Stats */
        .beheer-card-body {
            display: flex;
            flex-direction: column;
            gap: .8rem;
            margin-bottom: 1.2rem;
        }

        .beheer-stat {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .beheer-stat-label {
            font-size: 1rem;
            color: #999;
        }

        .beheer-stat-value {
            font-size: 1.15rem;
            font-weight: 600;
            color: #333;
        }

        .beheer-stat-sub {
            font-size: .95rem;
            color: #777;
        }

        /* Beheer Actions */
        .beheer-card-actions {
            display: flex;
            align-items: center;
            gap: .8rem;
            flex-wrap: wrap;
            margin-top: auto;
            padding-top: 1rem;
            border-top: 1px solid #ede5da;
        }

        .btn-beheer {
            padding: .7rem 1.3rem;
            font-size: 1rem;
            background: var(--main-color);
            color: white;
            border: none;
            border-radius: .8rem;
            cursor: pointer;
            font-family: 'Poppins', sans-serif;
            font-weight: 500;
            transition: all .2s;
            white-space: nowrap;
        }

        .btn-beheer:hover:not(:disabled) {
            background: #d4912e;
            transform: translateY(-1px);
        }

        .btn-beheer:disabled {
            opacity: .45;
            cursor: not-allowed;
        }

        .btn-beheer i {
            margin-right: .35rem;
        }

        /* Modus Toggle */
        .modus-toggle {
            display: flex;
            gap: .5rem;
            margin-left: auto;
        }

        .btn-modus-sm {
            padding: .55rem 1rem;
            font-size: .9rem;
            border-radius: .6rem;
            border: 1.5px solid #ddd;
            background: white;
            color: #777;
            cursor: pointer;
            font-family: 'Poppins', sans-serif;
            font-weight: 500;
            transition: all .2s;
            white-space: nowrap;
        }

        .btn-modus-sm:hover:not(:disabled) {
            border-color: var(--main-color);
            color: var(--main-color);
        }

        .btn-modus-sm:disabled {
            opacity: .45;
            cursor: not-allowed;
        }

        .btn-modus-sm.active {
            background: brown;
            color: white;
            border-color: brown;
        }

        .btn-modus-sm i {
            margin-right: .3rem;
            font-size: .82rem;
        }

        /* Responsive */
        @media (max-width: 900px) {
            .beheer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 640px) {
            .beheer-grid {
                grid-template-columns: 1fr;
            }

            .extra-beheer-section {
                padding: 2rem;
                margin: 2rem 4%;
                border-radius: 2rem;
            }

            .beheer-card-actions {
                flex-direction: column;
                align-items: stretch;
            }

            .modus-toggle {
                margin-left: 0;
                justify-content: center;
            }
        }

        /* ===== TRACK PAGE ENHANCEMENTS END ===== */

        /* ===== TOAST NOTIFICATION ===== */
        .toast-notification {
            position: fixed;
            top: 2rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            align-items: center;
            gap: 1.2rem;
            padding: 1.5rem 3rem;
            border-radius: 1.2rem;
            font-size: 1.5rem;
            font-family: 'Poppins', sans-serif;
            font-weight: 500;
            z-index: 10000;
            box-shadow: 0 8px 30px rgba(0,0,0,0.2);
            animation: toastSlideIn 0.4s ease;
            min-width: 300px;
            max-width: 90vw;
        }

        .toast-notification i {
            font-size: 2rem;
        }

        .toast-success {
            background: #d4edda;
            color: #155724;
            border-left: 5px solid #28a745;
        }

        .toast-success i {
            color: #28a745;
        }

        .toast-error {
            background: #f8d7da;
            color: #721c24;
            border-left: 5px solid #dc3545;
        }

        .toast-error i {
            color: #dc3545;
        }

        @keyframes toastSlideIn {
            from {
                top: -5rem;
                opacity: 0;
            }
            to {
                top: 2rem;
                opacity: 1;
            }
        }
        /* ===== TOAST END ===== */

        /* ===== AUTH LOCK OVERLAY (Track Page) ===== */
        .auth-lock-banner {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 2rem;
            background: linear-gradient(135deg, #fff3cd, #ffeeba);
            padding: 2rem 3rem;
            border-radius: 1.5rem;
            margin: 2rem 7%;
            border: 2px solid var(--main-color);
            box-shadow: 0 4px 15px rgba(241,166,66,0.2);
        }

        .auth-lock-banner i.fa-lock {
            font-size: 2.5rem;
            color: var(--main-color);
        }

        .auth-lock-banner .lock-text h3 {
            font-size: 1.8rem;
            color: #333;
            margin-bottom: 0.3rem;
        }

        .auth-lock-banner .lock-text p {
            font-size: 1.4rem;
            color: #666;
        }

        .auth-lock-banner .login-link-btn {
            padding: 1rem 2.5rem;
            background: var(--main-color);
            color: white;
            border-radius: 1rem;
            font-size: 1.4rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
        }

        .auth-lock-banner .login-link-btn:hover {
            background: #d4912e;
            transform: translateY(-2px);
        }

        /* Disabled state for locked sections */
        .auth-locked {
            opacity: 0.5;
            pointer-events: none;
            user-select: none;
        }
        /* ===== AUTH LOCK END ===== */

        /* ===== SIDE MENU ===== */
        .side-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 9998;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .side-overlay.open {
            opacity: 1;
            visibility: visible;
        }

        .side-menu {
            position: fixed;
            top: 0;
            right: -350px;
            width: 320px;
            height: 100%;
            background: white;
            z-index: 9999;
            box-shadow: -5px 0 30px rgba(0,0,0,0.2);
            transition: right 0.35s ease;
            overflow-y: auto;
            padding: 2rem;
        }

        .side-menu.open {
            right: 0;
        }

        .side-menu-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
            padding-bottom: 1.5rem;
            border-bottom: 2px solid var(--main-color);
        }

        .side-menu-header h3 {
            font-size: 2rem;
            color: #333;
        }

        .side-close {
            background: none;
            font-size: 2.2rem;
            cursor: pointer;
            color: #666;
            transition: color 0.3s;
        }

        .side-close:hover {
            color: var(--main-color);
        }

        .side-menu-links {
            display: flex;
            flex-direction: column;
            gap: 0.3rem;
        }

        .side-menu-links a {
            display: flex;
            align-items: center;
            gap: 1.2rem;
            padding: 1.2rem 1.5rem;
            font-size: 1.5rem;
            color: #444;
            border-radius: 1rem;
            transition: all 0.2s;
        }

        .side-menu-links a:hover {
            background: #fff3e0;
            color: var(--main-color);
        }

        .side-menu-links a i {
            width: 2rem;
            text-align: center;
            font-size: 1.6rem;
        }

        .side-divider {
            border: none;
            border-top: 1px solid #eee;
            margin: 1rem 0;
        }

        .side-support a {
            font-size: 1.3rem !important;
            color: #888 !important;
            padding: 0.8rem 1.5rem !important;
        }
        /* ===== SIDE MENU END ===== */

        /* ===== ACCOUNT PAGE ===== */
        .account-not-logged {
            min-height: 60vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .account-login-prompt {
            text-align: center;
            background: white;
            padding: 5rem 4rem;
            border-radius: 2rem;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            max-width: 500px;
        }

        .account-login-prompt h2 {
            font-size: 2.5rem;
            color: #333;
            margin: 2rem 0 1rem;
        }

        .account-login-prompt p {
            font-size: 1.5rem;
            color: #666;
            margin-bottom: 2.5rem;
        }

        .account-login-btns {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
        }

        .acc-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            padding: 1.2rem 2.5rem;
            border-radius: 1rem;
            font-size: 1.5rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            border: none;
            font-family: 'Poppins', sans-serif;
        }

        .acc-btn.primary {
            background: var(--main-color);
            color: white;
        }

        .acc-btn.primary:hover {
            background: #d4912e;
            transform: translateY(-2px);
        }

        .acc-btn.secondary {
            background: #f5f5f5;
            color: #333;
        }

        .acc-btn.secondary:hover {
            background: #eee;
        }

        .acc-btn.small {
            padding: 0.8rem 1.5rem;
            font-size: 1.3rem;
            border-radius: 0.8rem;
            background: var(--main-color);
            color: white;
        }

        .acc-btn.small:hover {
            background: #d4912e;
        }

        /* Account Page Layout */
        .account-page {
            max-width: 1200px;
            margin: 3rem auto;
            padding: 0 7%;
        }

        .account-header {
            display: flex;
            align-items: center;
            gap: 3rem;
            background: white;
            padding: 3rem 4rem;
            border-radius: 2rem;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            margin-bottom: 3rem;
        }

        .profile-photo-area {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }

        .profile-photo {
            width: 12rem;
            height: 12rem;
            border-radius: 50%;
            background: linear-gradient(135deg, #fde8c8, #f1a642);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            border: 4px solid var(--main-color);
        }

        .profile-photo i {
            font-size: 5rem;
            color: white;
        }

        .profile-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .photo-upload-btn {
            font-size: 1.2rem;
            color: var(--main-color);
            cursor: pointer;
            font-weight: 600;
            transition: color 0.3s;
        }

        .photo-upload-btn:hover {
            color: #d4912e;
        }

        .profile-info h1 {
            font-size: 2.8rem;
            color: #333;
        }

        .profile-info #profileEmail {
            font-size: 1.5rem;
            color: #888;
            margin-top: 0.3rem;
        }

        .member-since {
            font-size: 1.3rem;
            color: #aaa;
            margin-top: 0.8rem;
        }

        .member-since i {
            margin-right: 0.5rem;
        }

        /* Account Grid */
        .account-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 2.5rem;
        }

        .account-card {
            background: white;
            border-radius: 1.5rem;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            overflow: hidden;
        }

        .account-card-header {
            padding: 2rem 2.5rem;
            border-bottom: 2px solid #f5f5f5;
        }

        .account-card-header h3 {
            font-size: 1.8rem;
            color: #333;
        }

        .account-card-header h3 i {
            color: var(--main-color);
            margin-right: 0.8rem;
        }

        .account-card-body {
            padding: 2rem 2.5rem;
        }

        .card-desc {
            font-size: 1.3rem;
            color: #888;
            margin-bottom: 1.5rem;
        }

        /* Info rows */
        .info-row {
            margin-bottom: 1.5rem;
        }

        .info-row label {
            display: block;
            font-size: 1.2rem;
            color: #888;
            margin-bottom: 0.4rem;
            font-weight: 600;
        }

        .info-row input {
            width: 100%;
            padding: 1rem 1.2rem;
            font-size: 1.4rem;
            border: 2px solid #eee;
            border-radius: 0.8rem;
            font-family: 'Poppins', sans-serif;
            transition: border-color 0.3s;
        }

        .info-row input:focus {
            border-color: var(--main-color);
        }

        .info-row input:disabled {
            background: #f9f9f9;
            color: #999;
        }

        .save-btn {
            width: 100%;
            padding: 1.2rem;
            background: var(--main-color);
            color: white;
            border: none;
            border-radius: 1rem;
            font-size: 1.5rem;
            font-weight: 600;
            cursor: pointer;
            font-family: 'Poppins', sans-serif;
            transition: all 0.3s;
            margin-top: 0.5rem;
        }

        .save-btn:hover {
            background: #d4912e;
        }

        /* Bakken list */
        .add-device-row {
            display: flex;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .add-device-row input {
            flex: 1;
            padding: 1rem 1.2rem;
            font-size: 1.4rem;
            border: 2px solid #eee;
            border-radius: 0.8rem;
            font-family: 'Poppins', sans-serif;
        }

        .add-device-row input:focus {
            border-color: var(--main-color);
        }

        .add-device-row button {
            padding: 0 1.5rem;
            background: var(--main-color);
            color: white;
            border-radius: 0.8rem;
            font-size: 1.6rem;
            cursor: pointer;
            transition: all 0.3s;
        }

        .add-device-row button:hover {
            background: #d4912e;
        }

        .bak-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.2rem 1.5rem;
            background: #fef9f2;
            border-radius: 1rem;
            margin-bottom: 0.8rem;
            border-left: 4px solid var(--main-color);
        }

        .bak-info {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .bak-info i {
            font-size: 2rem;
            color: var(--main-color);
        }

        .bak-info strong {
            font-size: 1.4rem;
            color: #333;
            display: block;
        }

        .bak-info small {
            font-size: 1.1rem;
            color: #999;
        }

        .bak-actions {
            display: flex;
            gap: 0.8rem;
        }

        .remove-bak {
            background: none;
            color: #dc3545;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0.5rem;
            border-radius: 0.5rem;
            transition: all 0.3s;
        }

        .remove-bak:hover {
            background: #fde8e8;
        }

        .no-items {
            font-size: 1.3rem;
            color: #999;
            text-align: center;
            padding: 2rem;
            font-style: italic;
        }

        /* Empty state */
        .empty-state {
            text-align: center;
            padding: 2rem;
        }

        .empty-state i {
            font-size: 3rem;
            color: #ddd;
            margin-bottom: 1rem;
        }

        .empty-state p {
            font-size: 1.3rem;
            color: #999;
            margin-bottom: 1.5rem;
        }

        /* Return steps */
        .return-info {
            margin-bottom: 2rem;
        }

        .return-step {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            padding: 1rem 0;
        }

        .step-num {
            width: 3rem;
            height: 3rem;
            background: var(--main-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.4rem;
            flex-shrink: 0;
        }

        .return-step p {
            font-size: 1.4rem;
            color: #555;
        }

        /* Settings */
        .setting-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.2rem 0;
        }

        .setting-row span {
            font-size: 1.4rem;
            color: #555;
        }

        .setting-row span i {
            margin-right: 0.8rem;
            color: var(--main-color);
        }

        /* Toggle switch */
        .toggle-switch {
            position: relative;
            width: 5rem;
            height: 2.6rem;
        }

        .toggle-switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }

        .toggle-switch .slider {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: #ccc;
            border-radius: 2.6rem;
            cursor: pointer;
            transition: 0.3s;
        }

        .toggle-switch .slider::before {
            content: '';
            position: absolute;
            height: 2rem;
            width: 2rem;
            left: 0.3rem;
            bottom: 0.3rem;
            background: white;
            border-radius: 50%;
            transition: 0.3s;
        }

        .toggle-switch input:checked + .slider {
            background: var(--main-color);
        }

        .toggle-switch input:checked + .slider::before {
            transform: translateX(2.4rem);
        }

        .logout-btn {
            width: 100%;
            padding: 1.2rem;
            background: #f5f5f5;
            color: #333;
            border: none;
            border-radius: 1rem;
            font-size: 1.4rem;
            font-weight: 600;
            cursor: pointer;
            font-family: 'Poppins', sans-serif;
            transition: all 0.3s;
            margin-top: 1.5rem;
        }

        .logout-btn:hover {
            background: #eee;
        }

        .delete-btn {
            width: 100%;
            padding: 1rem;
            background: transparent;
            color: #dc3545;
            border: 2px solid #dc3545;
            border-radius: 1rem;
            font-size: 1.3rem;
            font-weight: 600;
            cursor: pointer;
            font-family: 'Poppins', sans-serif;
            transition: all 0.3s;
            margin-top: 1rem;
        }

        .delete-btn:hover {
            background: #dc3545;
            color: white;
        }
        /* ===== ACCOUNT PAGE END ===== */

        /* ===== SHOP PAGE ===== */
        .shop-header {
            text-align: center;
            padding: 4rem 7% 1rem;
        }

        .shop-header h2 {
            font-size: 4rem;
            color: #333;
        }

        .shop-header p {
            font-size: 1.6rem;
            color: #666;
            margin-top: 0.5rem;
        }

        .shop-products {
            padding: 2rem 7% 4rem;
        }

        .category-title {
            font-size: 2.4rem;
            color: var(--brown-color, brown);
            margin: 3rem 0 1.5rem;
            padding-bottom: 0.8rem;
            border-bottom: 3px solid var(--main-color);
            display: inline-block;
        }

        .category-title i {
            margin-right: 0.5rem;
            color: var(--main-color);
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(28rem, 1fr));
            gap: 2.5rem;
            margin-bottom: 2rem;
        }

        .product-card {
            background: white;
            border-radius: 2rem;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: transform 0.3s, box-shadow 0.3s;
            display: flex;
            flex-direction: column;
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 35px rgba(0,0,0,0.15);
        }

        .product-image {
            width: 100%;
            aspect-ratio: 4 / 3;
            overflow: hidden;
            background: #f9f3eb;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            padding: 1rem;
            transition: transform 0.4s;
        }

        .product-card:hover .product-image img {
            transform: scale(1.05);
        }

        .product-info {
            padding: 2rem;
        }

        .product-info h4 {
            font-size: 1.8rem;
            color: #333;
            margin-bottom: 0.8rem;
        }

        .product-desc {
            font-size: 1.3rem;
            color: #777;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            min-height: 4rem;
        }

        .product-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .product-price {
            font-size: 2rem;
            font-weight: 700;
            color: var(--brown-color, brown);
        }

        .btn-cart {
            padding: 0.8rem 1.8rem;
            font-size: 1.3rem;
            background: brown;
            color: white;
            border: none;
            border-radius: 1rem;
            cursor: pointer;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            transition: all 0.3s;
        }

        .btn-cart:hover {
            background: #6b2020;
            transform: translateY(-2px);
        }

        /* Cart count badge */
        .cart-count {
            position: absolute;
            top: -6px;
            right: -6px;
            background: #dc3545;
            color: white;
            font-size: 1rem;
            font-weight: 700;
            width: 1.8rem;
            height: 1.8rem;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            line-height: 1;
        }

        .header .buttons button {
            position: relative;
        }

        /* Cart Overlay */
        .cart-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.4);
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
        }

        .cart-overlay.open {
            opacity: 1;
            visibility: visible;
        }

        /* Cart Sidebar */
        .cart-sidebar {
            position: fixed;
            top: 0;
            right: -40rem;
            width: 38rem;
            max-width: 90vw;
            height: 100%;
            background: white;
            z-index: 2001;
            display: flex;
            flex-direction: column;
            box-shadow: -5px 0 25px rgba(0,0,0,0.15);
            transition: right 0.35s ease;
        }

        .cart-sidebar.open {
            right: 0;
        }

        .cart-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 2rem;
            border-bottom: 2px solid #f0f0f0;
        }

        .cart-header h3 {
            font-size: 2rem;
            color: #333;
        }

        .cart-header h3 i {
            color: var(--main-color);
            margin-right: 0.8rem;
        }

        .cart-close {
            background: none;
            font-size: 2rem;
            cursor: pointer;
            color: #999;
            transition: color 0.3s;
        }

        .cart-close:hover {
            color: #dc3545;
        }

        .cart-items {
            flex: 1;
            overflow-y: auto;
            padding: 1.5rem;
        }

        .cart-empty {
            text-align: center;
            font-size: 1.5rem;
            color: #999;
            padding: 4rem 0;
            font-style: italic;
        }

        .cart-item {
            display: flex;
            align-items: center;
            gap: 1.2rem;
            padding: 1.2rem;
            border-radius: 1.2rem;
            background: #fff9f0;
            border: 1px solid #f0e0c8;
            margin-bottom: 1rem;
        }

        .cart-item img {
            width: 6rem;
            height: 6rem;
            object-fit: cover;
            border-radius: 1rem;
        }

        .cart-item-info {
            flex: 1;
        }

        .cart-item-info h4 {
            font-size: 1.3rem;
            color: #333;
            margin-bottom: 0.3rem;
        }

        .cart-item-price {
            font-size: 1.4rem;
            font-weight: 600;
            color: brown;
        }

        .cart-item-qty {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            margin-top: 0.5rem;
        }

        .cart-item-qty button {
            width: 2.4rem;
            height: 2.4rem;
            border-radius: 0.5rem;
            background: var(--main-color);
            color: white;
            font-size: 1.4rem;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .cart-item-qty span {
            font-size: 1.4rem;
            font-weight: 600;
            min-width: 2rem;
            text-align: center;
        }

        .cart-item-remove {
            background: none;
            color: #dc3545;
            font-size: 1.4rem;
            cursor: pointer;
            transition: transform 0.2s;
        }

        .cart-item-remove:hover {
            transform: scale(1.2);
        }

        .cart-footer {
            padding: 2rem;
            border-top: 2px solid #f0f0f0;
        }

        .cart-total {
            display: flex;
            justify-content: space-between;
            font-size: 1.8rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 1.5rem;
        }

        .btn-checkout {
            width: 100%;
            padding: 1.2rem;
            font-size: 1.6rem;
            background: brown;
            color: white;
            border: none;
            border-radius: 1.2rem;
            cursor: pointer;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            transition: all 0.3s;
        }

        .btn-checkout:hover {
            background: #6b2020;
            transform: translateY(-2px);
        }
        /* ===== SHOP PAGE END ===== */


        /* ===== REVIEW PAGE ===== */

        .review-section {
            min-height: 100vh;
            padding: 120px 5% 60px;
            background: #fdf6ee;
        }

        .review-header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .review-header h1 {
            font-size: 2.2rem;
            color: #333;
        }

        .review-header p {
            color: #777;
            margin-top: .4rem;
            font-size: 1rem;
        }

        /* Average Rating Box */
        .review-average {
            background: white;
            border-radius: 18px;
            box-shadow: 0 4px 20px rgba(0,0,0,.06);
            max-width: 400px;
            margin: 0 auto 2.5rem;
            padding: 2rem;
            text-align: center;
        }

        .average-score {
            display: flex;
            align-items: baseline;
            justify-content: center;
            gap: .4rem;
        }

        .average-score #avg-number {
            font-size: 3rem;
            font-weight: 700;
            color: #333;
        }

        .average-score .avg-out-of {
            font-size: 1.2rem;
            color: #aaa;
        }

        .average-stars {
            margin: .6rem 0;
            font-size: 1.5rem;
            color: var(--main-color);
        }

        .average-stars i {
            margin: 0 2px;
        }

        .average-count {
            font-size: .9rem;
            color: #999;
        }

        /* Add Review Area */
        .add-review-area {
            display: flex;
            justify-content: center;
            margin-bottom: 1.5rem;
        }

        /* Star Input (interactive) */
        .star-input {
            display: flex;
            gap: .35rem;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--main-color);
            margin-top: .3rem;
        }

        .star-input i {
            transition: transform .15s ease;
        }

        .star-input i:hover {
            transform: scale(1.25);
        }

        /* Review Form */
        .review-form {
            background: white;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0,0,0,.06);
            max-width: 600px;
            margin: 0 auto 2rem;
            padding: 2rem;
            animation: slideDown .3s ease;
        }

        @keyframes slideDown {
            from { opacity: 0; transform: translateY(-12px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .review-form h3 {
            font-size: 1.2rem;
            color: #333;
            margin-bottom: 1.2rem;
        }

        .review-form h3 i {
            color: var(--main-color);
            margin-right: .4rem;
        }

        /* Reviews Grid */
        .review-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1.5rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Review Card */
        .review-card {
            background: white;
            border-radius: 16px;
            padding: 1.6rem;
            box-shadow: 0 4px 18px rgba(0,0,0,.05);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: transform .25s ease, box-shadow .25s ease;
        }

        .review-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 30px rgba(0,0,0,.1);
        }

        .review-card-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: .8rem;
        }

        .review-stars {
            color: var(--main-color);
            font-size: 1.1rem;
        }

        .review-stars i {
            margin-right: 2px;
        }

        .review-date {
            font-size: .78rem;
            color: #aaa;
        }

        .review-date i {
            margin-right: 4px;
        }

        .review-text {
            color: #555;
            font-size: .95rem;
            line-height: 1.6;
            flex: 1;
            margin-bottom: 1rem;
        }

        .review-card-bottom {
            border-top: 1px solid #f0e8de;
            padding-top: .8rem;
        }

        .review-author {
            font-size: .85rem;
            color: #888;
            font-weight: 500;
        }

        .review-author i {
            margin-right: 4px;
            color: var(--main-color);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .review-grid {
                grid-template-columns: 1fr;
            }

            .review-header h1 {
                font-size: 1.6rem;
            }

            .average-score #avg-number {
                font-size: 2.4rem;
            }

            .star-input {
                font-size: 1.5rem;
            }
        }

        /* ===== REVIEW PAGE END ===== */