/* ===== RESET & VARIABLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Colors */
    --primary: #2ecc71;
    --primary-dark: #27ae60;
    --primary-light: #a3e4b9;

    /* Secondary Colors */
    --secondary: #e74c3c;
    --secondary-dark: #c0392b;

    /* Neutral Colors */
    --dark: #2c3e50;
    --dark-light: #34495e;
    --light: #ecf0f1;
    --gray: #95a5a6;
    --gray-light: #bdc3c7;
    --white: #ffffff;

    /* Effects */
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.1);
    --radius: 10px;
    --transition: all 0.3s ease;
}

/* ===== BASE STYLES ===== */
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: #f9f9f9;
    overflow-x: hidden;
}

@media only screen and (min-width: 1360px) {
    .container {
        width: 100%;
        max-width: 1360px !important;
        margin: 0 auto;
        padding: 0 20px;
    }

    .categories-scroll-container {
        max-width: 1360px !important;
        margin: 0 auto;
    }
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.center {
    text-align: center;
}

/* ===== HEADER STYLES ===== */
header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 50px;
    margin-right: 10px;
}

.logo h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: var(--primary);
}

.logo span {
    color: var(--secondary);
}

/* Navigation */
nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: var(--transition);
    padding: 8px 0;
    position: relative;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--primary);
}

nav ul li a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
}

/* Auth Buttons */
.auth-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn {
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-large {
    padding: 15px 30px;
    font-size: 18px;
}

/* Cart Icon */
.cart-icon {
    position: relative;
    color: var(--dark);
    font-size: 20px;
    text-decoration: none;
    transition: var(--transition);
}

.cart-icon:hover {
    color: var(--primary);
}

.cart-count {
    position: absolute;
    top: -15px;
    right: -14px;
    padding: 10px !important;
    background-color: var(--secondary);
    color: var(--white);
    border-radius: 50% !important;
    width: 20px;
    height: 20px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--dark);
}

/* User Dropdown */
.user-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--white);
    min-width: 200px;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius);
    padding: 10px 0;
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 1000;
}

.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    color: var(--dark);
    text-decoration: none;
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
    background-color: var(--light);
    color: var(--primary);
    border-left-color: var(--primary);
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.1) 0%, rgba(52, 152, 219, 0.1) 100%);
    padding: 100px 0;
    overflow: hidden;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content h1 span {
    color: var(--primary);
}

.hero-content p {
    font-size: 18px;
    color: var(--dark-light);
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    gap: 30px;
}

.stat h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat p {
    font-size: 14px;
    color: var(--gray);
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* ===== SECTION STYLES ===== */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    color: var(--dark);
    margin-bottom: 15px;
}

.section-title p {
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
    font-size: 16px;
}

/* ===== FEATURES SECTION ===== */
.features {
    padding: 80px 0;
    background-color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--white);
    border-radius: var(--radius);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--light);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 50px;
    color: var(--primary);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark);
}

.feature-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* ===== FOOTER STYLES ===== */
footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 70px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    color: var(--white);
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: var(--gray-light);
    text-decoration: none;
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--gray-light);
}

.contact-info i {
    color: var(--primary);
    width: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
    text-decoration: none;
}

.social-links a:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.newsletter h4 {
    margin-bottom: 10px;
    color: var(--white);
}

.newsletter p {
    color: var(--gray-light);
    margin-bottom: 15px;
    font-size: 14px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    outline: none;
}

.newsletter-form input::placeholder {
    color: var(--gray-light);
}

.newsletter-form button {
    background: var(--primary);
    color: var(--white);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: var(--gray-light);
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--gray-light);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        order: 2;
    }

    .hero-image {
        order: 1;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-wrap: wrap;
    }

    nav {
        width: 100%;
        order: 3;
        margin-top: 15px;
        display: none;
    }

    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        gap: 10px;
    }

    nav ul li {
        margin: 0;
    }

    .mobile-menu {
        display: block;
    }

    .btn {
        padding: 5px 10px;
        font-size: 12px;
    }

    .auth-buttons {
        margin-left: auto;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-large {
        width: 100%;
        max-width: 300px;
        padding: 13px 0;
        font-size: 16px;
    }

    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 60px 0;
    }

    .features {
        padding: 60px 0;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form button {
        align-self: flex-start;
    }
}

/* ===== POLICY PAGES STYLES ===== */
.policy-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.policy-header h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 10px;
}

.policy-header p {
    font-size: 16px;
    opacity: 0.9;
}

.policy-content {
    padding: 80px 0;
    background: var(--white);
}

.policy-section {
    margin-bottom: 60px;
}

.policy-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    color: var(--dark);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light);
}

.policy-points {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.policy-point {
    background: var(--light);
    padding: 25px;
    border-radius: var(--radius);
    border-left: 4px solid var(--primary);
}

.policy-point h3 {
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 10px;
    font-weight: 600;
}

.policy-point p {
    color: var(--dark-light);
    line-height: 1.6;
    margin: 0;
}

.policy-contact {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px;
    border-radius: var(--radius);
    text-align: center;
    margin-top: 50px;
}

.policy-contact h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    color: var(--dark);
    margin-bottom: 15px;
}

.policy-contact p {
    color: var(--dark-light);
    margin-bottom: 20px;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-methods p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    font-weight: 500;
}

.contact-methods i {
    color: var(--primary);
    font-size: 18px;
}

/* Responsive Policy Pages */
@media (max-width: 768px) {
    .policy-header h1 {
        font-size: 32px;
    }

    .policy-section h2 {
        font-size: 24px;
    }

    .policy-point {
        padding: 20px;
    }

    .contact-methods {
        flex-direction: column;
        gap: 15px;
    }

    .policy-contact {
        padding: 30px 20px;
    }
}

/* Founder Page Specific Styles */
.tdb-founder-hero {
    background: linear-gradient(135deg, rgba(74, 85, 162, 0.9) 0%, rgba(102, 126, 234, 0.9) 100%);
    color: white;
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.tdb-founder-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/team/page-banner.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 1;
}

.tdb-founder-hero-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.tdb-founder-image {
    position: relative;
    flex-shrink: 0;
}

.tdb-founder-image img {
    width: 300px;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
    border: 5px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.tdb-founder-badge {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
}

.tdb-founder-intro {
    flex: 1;
}

.tdb-founder-name {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.1;
}

.tdb-founder-tagline {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    font-weight: 300;
}

.tdb-founder-roles {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tdb-role-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 12px 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    font-weight: 500;
}

/* Section Styles */
.tdb-about-section,
.tdb-brands-section,
.tdb-philosophy-section {
    padding: 80px 0;
}

.tdb-vision-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.tdb-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.tdb-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.tdb-section-desc {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

.tdb-section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    margin: 1rem auto;
    border-radius: 2px;
}

/* About Section */
.tdb-about-content {
    max-width: 900px;
    margin: 0 auto;
}

.tdb-about-lead {
    font-size: 1.3rem;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 2rem;
    font-weight: 500;
}

.tdb-about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #6c757d;
    margin-bottom: 2rem;
}

.tdb-education-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tdb-edu-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #667eea;
    transition: transform 0.3s ease;
}

.tdb-edu-card:hover {
    transform: translateY(-5px);
}

.tdb-edu-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.tdb-edu-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.tdb-edu-card p {
    color: #6c757d;
    margin: 0;
    font-size: 0.95rem;
}

/* Brands Section */
.tdb-brand-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.tdb-imt-card {
    border-top: 5px solid #e74c3c;
}

.tdb-dietbull-card {
    border-top: 5px solid #27ae60;
}

.tdb-brand-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.tdb-brand-logo {
    font-size: 4rem;
    flex-shrink: 0;
}

.tdb-brand-info {
    flex: 1;
}

.tdb-brand-name {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.tdb-brand-tagline {
    font-size: 1.2rem;
    color: #667eea;
    font-weight: 500;
    margin: 0;
}

.tdb-brand-desc {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 2.5rem;
}

.tdb-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.tdb-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.tdb-feature-item:hover {
    background: #667eea;
    color: white;
    transform: translateX(5px);
}

.tdb-feature-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.tdb-feature-text {
    font-weight: 500;
}

.tdb-dietbull-motto {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    border-radius: 15px;
    font-size: 1.2rem;
    margin-top: 2rem;
}

/* Vision & Message Section */
.tdb-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.tdb-vision-card,
.tdb-message-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.tdb-vision-icon,
.tdb-message-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.tdb-vision-title,
.tdb-message-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.tdb-vision-quote,
.tdb-message-quote {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #495057;
    font-style: italic;
    margin-bottom: 2rem;
    position: relative;
}

.tdb-vision-quote::before,
.tdb-message-quote::before {
    content: '"';
    font-size: 4rem;
    color: #667eea;
    position: absolute;
    top: -20px;
    left: -10px;
    opacity: 0.3;
}

.tdb-signature {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid #e9ecef;
}

.tdb-signature strong {
    font-size: 1.1rem;
    color: #2c3e50;
}

.tdb-signature span {
    color: #6c757d;
}

/* Philosophy Section */
.tdb-philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.tdb-philosophy-item {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.tdb-philosophy-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.tdb-philosophy-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.tdb-philosophy-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.tdb-philosophy-item p {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .tdb-founder-hero-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .tdb-founder-name {
        font-size: 2.5rem;
    }

    .tdb-founder-image img {
        width: 250px;
        height: 300px;
    }

    .tdb-brand-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .tdb-vision-grid {
        grid-template-columns: 1fr;
    }

    .tdb-brand-card {
        padding: 2rem 1.5rem;
    }
}

/* ===== CONTACT PAGE STYLES ===== */
.contact-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.contact-header h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
}

.contact-header p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-main {
    padding: 80px 0;
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    color: var(--dark);
    margin-bottom: 15px;
}

.contact-info>p {
    color: var(--gray);
    margin-bottom: 40px;
    font-size: 16px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: var(--light);
    border-radius: var(--radius);
    border-left: 4px solid var(--primary);
    transition: var(--transition);
}

.contact-method:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-details a {
    display: block;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 5px;
    transition: var(--transition);
}

.contact-details a:hover {
    color: var(--primary-dark);
}

.contact-details p {
    color: var(--gray);
    font-size: 14px;
    margin: 5px 0 0 0;
}

.social-contact h3 {
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--dark);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

/* Contact Form Styles */
.contact-form-section {
    background: var(--light);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.form-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    color: var(--dark);
    margin-bottom: 10px;
}

.form-header p {
    color: var(--gray);
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid var(--gray-light);
    border-radius: var(--radius);
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
}

.checkbox-group label {
    margin: 0;
    font-weight: normal;
    cursor: pointer;
}

.error-message {
    color: var(--secondary);
    font-size: 14px;
    margin-top: 5px;
    display: none;
}

.form-success {
    display: none;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--primary-light);
    border: 2px solid var(--primary);
    border-radius: var(--radius);
    color: var(--primary-dark);
    margin-top: 20px;
}

.form-success i {
    font-size: 24px;
    flex-shrink: 0;
}

.form-success p {
    margin: 0;
    font-weight: 500;
}

.submit-btn {
    margin-top: 10px;
}

/* FAQ Section */
.contact-faq {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-faq h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    text-align: center;
    color: var(--dark);
    margin-bottom: 50px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.faq-item {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.faq-item h3 {
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.faq-item p {
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

/* Responsive Contact Page */
@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form-section {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .contact-header h1 {
        font-size: 32px;
    }

    .contact-method {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .contact-icon {
        align-self: center;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-section {
        padding: 25px 20px;
    }

    .checkbox-group {
        align-items: flex-start;
    }
}

@media (max-width: 576px) {
    .contact-hero {
        padding: 60px 0;
    }

    .contact-main {
        padding: 60px 0;
    }

    .contact-faq {
        padding: 60px 0;
    }

    .contact-faq h2 {
        font-size: 28px;
    }

    .social-links {
        justify-content: center;
    }

    .form-success {
        flex-direction: column;
        text-align: center;
    }
}

/* ===== ABOUT PAGE STYLES ===== */
.about-hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    color: var(--white);
    padding: 100px 0;
    text-align: center;
}

.about-header h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-header p {
    font-size: 20px;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Our Story Section */
.our-story {
    padding: 80px 0;
    background: var(--white);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    color: var(--dark);
    margin-bottom: 25px;
}

.story-text p {
    color: var(--dark-light);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 16px;
}

.story-image {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.story-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.story-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    padding: 30px;
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.story-stats .stat h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--primary);
}

.story-stats .stat p {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
}

/* Mission & Vision Section */
.mission-vision {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.mv-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid var(--primary);
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.mv-icon {
    font-size: 50px;
    color: var(--primary);
    margin-bottom: 20px;
}

.mv-card h3 {
    font-size: 22px;
    color: var(--dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.mv-card p {
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background: var(--white);
}

.why-choose-us h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    text-align: center;
    color: var(--dark);
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--light);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.feature-icon {
    font-size: 50px;
    color: var(--primary);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

/* Our Process Section */
.our-process {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(52, 152, 219, 0.1) 100%);
}

.our-process h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    text-align: center;
    color: var(--dark);
    margin-bottom: 50px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.process-step {
    background: var(--white);
    padding: 80px 30px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    position: relative;
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    box-shadow: var(--shadow);
}

.process-step h3 {
    font-size: 20px;
    color: var(--dark);
    margin: 20px 0 15px;
    font-weight: 600;
}

.process-step p {
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

/* Our Team Section */
.our-team {
    padding: 80px 0;
    background: var(--white);
}

.our-team h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    text-align: center;
    color: var(--dark);
    margin-bottom: 50px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.team-member {
    text-align: center;
}

.member-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 25px;
    border: 4px solid var(--primary);
    box-shadow: var(--shadow);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 10px;
    font-weight: 600;
}

.team-member p {
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

/* About CTA Section */
.about-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
}

.about-cta h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    margin-bottom: 15px;
}

.about-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive About Page */
@media (max-width: 992px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .story-stats {
        position: static;
        background: var(--dark);
        margin-top: 20px;
        border-radius: 0 0 var(--radius) var(--radius);
    }
}

@media (max-width: 768px) {
    .about-header h1 {
        font-size: 36px;
    }

    .story-text h2 {
        font-size: 28px;
    }

    .why-choose-us h2,
    .our-process h2,
    .our-team h2 {
        font-size: 28px;
    }

    .story-stats {
        flex-direction: column;
        gap: 20px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .about-hero {
        padding: 60px 0;
    }

    .our-story,
    .mission-vision,
    .why-choose-us,
    .our-process,
    .our-team {
        padding: 60px 0;
    }

    .mv-grid,
    .features-grid,
    .process-steps,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .feature-card,
    .process-step,
    .mv-card {
        padding: 30px 20px;
    }
}

/* ===== HOW IT WORKS PAGE STYLES ===== */
.how-it-works-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.how-it-works-hero::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="%23ffffff" opacity="0.1"><polygon points="0,0 1000,50 1000,100 0,100"/></svg>');
    background-size: cover;
}

.hero-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.highlight {
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 22px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 40px;
}

.hero-stats .stat {
    text-align: center;
}

.hero-stats .stat h3 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 5px;
    color: #ffd700;
}

.hero-stats .stat p {
    font-size: 16px;
    opacity: 0.9;
    margin: 0;
}

/* Process Overview */
.process-overview {
    padding: 100px 0;
    background: var(--white);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    color: var(--dark);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Process Timeline */
.process-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 100px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary), var(--primary-dark));
    border-radius: 2px;
}

.process-step {
    display: flex;
    margin-bottom: 80px;
    position: relative;
    opacity: 1;
    transform: translateY(30px);
}

.process-step.featured {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px;
    border-radius: var(--radius);
    margin: 60px 0;
    border-left: 6px solid var(--primary);
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 800;
    box-shadow: var(--shadow-lg);
    z-index: 2;
    flex-shrink: 0;
    margin-right: 50px;
}

.step-content {
    flex: 1;
    padding-top: 10px;
}

.step-icon {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 20px;
}

.step-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    color: var(--dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.step-description {
    font-size: 18px;
    color: var(--dark-light);
    line-height: 1.6;
    margin-bottom: 30px;
}

.step-details {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 25px;
}

.detail-card {
    margin-bottom: 25px;
}

.detail-card:last-child {
    margin-bottom: 0;
}

.detail-card h4 {
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.detail-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.detail-card li {
    padding: 8px 0;
    color: var(--dark-light);
    border-bottom: 1px solid var(--light);
}

.detail-card li:last-child {
    border-bottom: none;
}

.detail-card li strong {
    color: var(--primary);
}

/* Customization Grid */
.customization-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.customization-item {
    text-align: center;
    padding: 20px;
    background: var(--light);
    border-radius: var(--radius);
    transition: var(--transition);
}

.customization-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.customization-item i {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 15px;
}

.customization-item h5 {
    font-size: 16px;
    color: var(--dark);
    margin-bottom: 10px;
    font-weight: 600;
}

.customization-item p {
    font-size: 14px;
    color: var(--gray);
    margin: 0;
    line-height: 1.4;
}

/* Personalization Demo */
.personalization-demo {
    margin-top: 25px;
}

.demo-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    padding: 25px;
    border-radius: var(--radius);
}

.demo-card h4 {
    margin-bottom: 20px;
    font-weight: 600;
}

.profile-stats {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.stat-bar {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-bar label {
    width: 80px;
    font-weight: 500;
    font-size: 14px;
}

.stat-bar .bar {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    overflow: hidden;
}

.stat-bar .fill {
    height: 100%;
    background: #ffd700;
    border-radius: 4px;
    transition: width 1s ease;
}

.stat-bar span {
    width: 40px;
    text-align: right;
    font-weight: 600;
    font-size: 14px;
}

/* Step Features */
.step-features {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: var(--primary-light);
    color: var(--primary-dark);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

/* Delivery Process */
.delivery-process {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.process-phase {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px;
    background: var(--light);
    border-radius: var(--radius);
    transition: var(--transition);
}

.process-phase:hover {
    background: var(--primary-light);
    transform: translateX(5px);
}

.phase-number {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.phase-content h5 {
    font-size: 16px;
    color: var(--dark);
    margin-bottom: 5px;
    font-weight: 600;
}

.phase-content p {
    font-size: 14px;
    color: var(--gray);
    margin: 0;
}

/* Quality Badges */
.quality-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 25px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background: var(--white);
    border: 2px solid var(--primary);
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-dark);
}

/* Tracking Features */
.tracking-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.tracking-card {
    background: var(--light);
    padding: 25px;
    border-radius: var(--radius);
}

.tracking-card h4 {
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.tracking-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tracking-card li {
    padding: 8px 0;
    color: var(--dark-light);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.tracking-card li:last-child {
    border-bottom: none;
}

/* Results Preview */
.results-preview {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
    padding: 30px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius);
    color: var(--white);
}

.result-metric {
    text-align: center;
}

.metric-value {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 5px;
}

.metric-label {
    font-size: 14px;
    opacity: 0.9;
}

/* Benefits Section */
.how-it-works-benefits {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: var(--transition);
    border-top: 6px solid var(--primary);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 60px;
    color: var(--primary);
    margin-bottom: 25px;
}

.benefit-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    color: var(--dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.benefit-card p {
    color: var(--dark-light);
    line-height: 1.6;
    margin-bottom: 25px;
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.benefit-list li {
    padding: 10px 0;
    color: var(--dark-light);
    border-bottom: 1px solid var(--light);
    position: relative;
    padding-left: 25px;
}

.benefit-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.benefit-list li:last-child {
    border-bottom: none;
}

/* CTA Section */
.how-it-works-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 40px 0;
}

.cta-stat {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-text {
    font-size: 16px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 40px 0;
    flex-wrap: wrap;
}

.guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    font-weight: 500;
    margin-top: 20px;
}

.guarantee-badge i {
    color: #ffd700;
}

/* Responsive Design */
@media (max-width: 992px) {
    .process-step {
        flex-direction: column;
        text-align: center;
        padding: 50px 0px;
    }

    .step-number {
        margin-right: 0;
        margin-bottom: 20px;
        align-self: center;
    }

    .timeline-line {
        left: 50%;
        transform: translateX(-50%);
    }

    .tracking-features {
        grid-template-columns: 1fr;
    }

    .customization-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-stats {
        gap: 30px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .process-step.featured {
        padding: 30px 20px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .cta-stats {
        flex-direction: column;
        gap: 30px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .how-it-works-hero {
        padding: 60px 0;
    }

    .process-overview {
        padding: 60px 0;
    }

    .how-it-works-benefits {
        padding: 60px 0;
    }

    .how-it-works-cta {
        padding: 60px 0;
    }

    .customization-grid {
        grid-template-columns: 1fr;
    }

    .results-preview {
        flex-direction: column;
        gap: 20px;
    }

    .delivery-process {
        gap: 15px;
    }

    .process-phase {
        flex-direction: column;
        text-align: center;
    }
}

/* ===== SUBSCRIPTION PAGE STYLES ===== */
.subscription-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    padding: 0;
    position: relative;
    overflow: hidden;
}

.hero-banner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 100px 0;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.banner-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.highlight {
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.banner-subtitle {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.6;
}

.banner-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.banner-stat {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.banner-stat i {
    color: #ffd700;
    font-size: 18px;
}

.banner-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Floating Meals Animation */
.banner-visual {
    position: relative;
    height: 400px;
}

.floating-meals {
    position: relative;
    height: 100%;
}

.meal-card {
    position: absolute;
    width: 324px;
    height: 338px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.meal-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.meal-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.floating {
    animation: float 3s ease-in-out infinite;
}

.floating.delay-1 {
    animation-delay: 0.5s;
}

.floating.delay-2 {
    animation-delay: 1s;
}

.meal-card:nth-child(1) {
    top: 20px;
    left: 0;
}

.meal-card:nth-child(2) {
    top: 100px;
    left: 150px;
    transform: rotate(3deg);
}

.meal-card:nth-child(3) {
    top: 200px;
    left: 50px;
    transform: rotate(-2deg);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(var(--rotation, 0deg));
    }

    50% {
        transform: translateY(-20px) rotate(var(--rotation, 0deg));
    }
}

/* Quick Plan Selector */
.plan-quick-selector {
    padding: 80px 0;
    background: var(--white);
}

.plan-quick-selector h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    text-align: center;
    color: var(--dark);
    margin-bottom: 50px;
}

.selector-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.selector-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.selector-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.selector-card:hover::before {
    left: 100%;
}

.selector-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary);
}

.selector-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 20px;
}

.selector-card h3 {
    font-size: 22px;
    color: var(--dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.selector-card p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.5;
}

.selector-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.selector-features span {
    padding: 5px 12px;
    background: var(--light);
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
    color: var(--dark-light);
}

/* Plans Section */
.plans-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    color: var(--dark);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Plan Categories */
.plan-category {
    margin-bottom: 80px;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    padding: 30px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    flex-shrink: 0;
}

.category-info h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    color: var(--dark);
    margin-bottom: 10px;
}

.category-info p {
    color: var(--gray);
    margin: 0;
    font-size: 16px;
}

/* Plans Grid */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.plan-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.plan-card.premium {
    border-color: #ffd700;
    background: linear-gradient(135deg, #fff9e6 0%, #fff 100%);
}

.plan-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-badge.popular {
    background: var(--primary);
    color: var(--white);
}

.plan-badge.premium-badge {
    background: #ffd700;
    color: #000;
}

.plan-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--light);
}

.plan-header h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    color: var(--dark);
    margin-bottom: 10px;
    font-weight: 700;
}

.plan-price {
    margin-bottom: 15px;
}

.plan-price .amount {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary);
}

.plan-price .period {
    font-size: 16px;
    color: var(--gray);
}

.plan-description {
    color: var(--gray);
    font-size: 14px;
    margin: 0;
}

/* Plan Features */
.plan-features {
    margin-bottom: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--light);
}

.feature:last-child {
    border-bottom: none;
}

.feature i {
    color: var(--primary);
    font-size: 14px;
    width: 20px;
}

.feature span {
    color: var(--dark-light);
    font-size: 14px;
}

/* Plan Stats */
.plan-stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 25px;
    padding: 20px;
    background: var(--light);
    border-radius: var(--radius);
}

.stat {
    text-align: center;
}

.stat .value {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat .label {
    font-size: 12px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Plan Buttons */
.btn-block {
    width: 100%;
    margin-bottom: 15px;
}

.plan-saving {
    text-align: center;
    font-size: 12px;
    color: var(--primary);
    font-weight: 600;
}

.plan-saving i {
    margin-right: 5px;
}

/* Plan Comparison */
.plan-comparison {
    padding: 80px 0;
    background: var(--white);
}

.comparison-table {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    border-bottom: 1px solid var(--light);
}

.feature-column {
    padding: 20px;
    font-weight: 600;
    color: var(--dark);
    background: var(--light);
}

.plan-column {
    padding: 20px;
    text-align: center;
    color: var(--dark-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.plan-column i {
    color: var(--primary);
}

.comparison-row:nth-child(even) .feature-column {
    background: var(--white);
}

/* FAQ Section */
.subscription-faq {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.subscription-faq h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    text-align: center;
    color: var(--dark);
    margin-bottom: 50px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.faq-item h3 {
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.faq-item p {
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

/* Final CTA */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    color: var(--white);
    text-align: center;
}

.final-cta h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    margin-bottom: 15px;
}

.final-cta p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.guarantee {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    font-weight: 500;
}

.guarantee i {
    color: #ffd700;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-banner {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 80px 20px;
    }

    .banner-visual {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .banner-content h1 {
        font-size: 36px;
    }

    .banner-stats {
        flex-direction: column;
        gap: 15px;
    }

    .banner-cta {
        flex-direction: column;
        align-items: center;
    }

    .banner-cta .btn {
        width: 100%;
        max-width: 300px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .category-header {
        flex-direction: column;
        text-align: center;
    }

    .plans-grid {
        grid-template-columns: 1fr;
    }

    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .feature-column {
        background: var(--light);
        font-weight: 700;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .subscription-hero {
        padding: 0;
    }

    .hero-banner {
        padding: 60px 15px;
    }

    .plan-quick-selector,
    .plans-section,
    .plan-comparison,
    .subscription-faq {
        padding: 60px 0;
    }

    .final-cta {
        padding: 60px 0;
    }

    .final-cta h2 {
        font-size: 32px;
    }

    .selector-cards {
        grid-template-columns: 1fr;
    }
}

/* ===== MEALS PAGE STYLES ===== */
.meals-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.meals-banner {
    text-align: center;
}

.meals-banner .banner-image {
    width: 100%;
    height: 300px;
}

.meals-header h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
}

.meals-header p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== CATEGORIES SCROLLER SECTION ===== */
.categories-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.categories-title {
    text-align: center;
    margin-bottom: 40px;
}

.categories-title h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.categories-title p {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

.categories-scroll-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.categories-wrapper {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 10px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.categories-wrapper::-webkit-scrollbar {
    display: none;
}

.category-box {
    min-width: 180px;
    background: white;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
}

.category-box:hover,
.category-box.active {
    transform: translateY(-5px);
    border-color: #3498db;
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
}

.category-box.active::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 2px solid #3498db;
    border-radius: 14px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(52, 152, 219, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(52, 152, 219, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(52, 152, 219, 0);
    }
}

.category-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 15px;
    border: 3px solid #e9ecef;
    transition: all 0.3s ease;
}

.category-box:hover .category-image {
    border-color: #3498db;
    transform: scale(1.05);
}

.category-box.active .category-image {
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

.category-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.category-box:hover .category-name {
    color: #3498db;
}

.category-count {
    font-size: 0.8rem;
    color: #7f8c8d;
    background: #f8f9fa;
    padding: 4px 8px;
    border-radius: 12px;
    display: inline-block;
    transition: all 0.3s ease;
}

.category-box:hover .category-count {
    background: #3498db;
    color: white;
}

.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.3s ease;
    color: #6c757d;
}

.scroll-btn:hover {
    background: #3498db;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.scroll-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.scroll-btn.prev {
    left: -40px;
}

.scroll-btn.next {
    right: -40px;
}

.scroll-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: translateY(-50%);
}

.scroll-btn:disabled:hover {
    background: white;
    color: #6c757d;
    transform: translateY(-50%);
}

/* Loading state for categories */
.category-box.loading {
    position: relative;
    overflow: hidden;
}

.category-box.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: loading 1.5s infinite;
}

/* Empty state for categories */
.categories-empty {
    text-align: center;
    padding: 60px 20px;
    color: #6c757d;
}

.categories-empty i {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #bdc3c7;
}

.categories-empty h3 {
    color: #495057;
    margin-bottom: 10px;
}

.categories-empty p {
    margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .categories-section {
        padding: 40px 0;
    }

    .categories-title h2 {
        font-size: 2rem;
    }

    .categories-wrapper {
        gap: 15px;
        padding: 15px 10px;
    }

    .category-box {
        min-width: 140px;
        padding: 15px;
    }

    .category-image {
        width: 60px;
        height: 60px;
    }

    .category-name {
        font-size: 1rem;
    }

    .scroll-btn {
        display: none;
    }

    .categories-scroll-container {
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .categories-title h2 {
        font-size: 1.8rem;
    }

    .categories-title p {
        font-size: 1rem;
    }

    .category-box {
        min-width: 120px;
        padding: 12px;
    }

    .category-image {
        width: 50px;
        height: 50px;
    }

    .category-name {
        font-size: 0.9rem;
    }

    .category-count {
        font-size: 0.7rem;
        padding: 3px 6px;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .categories-section {
        background: #1a1d23;
    }

    .categories-title h2 {
        color: #e9ecef;
    }

    .categories-title p {
        color: #adb5bd;
    }

    .category-box {
        background: #2d3036;
        color: #e9ecef;
    }

    .category-name {
        color: #e9ecef;
    }

    .category-count {
        background: #3a3e45;
        color: #adb5bd;
    }

    .category-image {
        border-color: #3a3e45;
    }

    .scroll-btn {
        background: #2d3036;
        color: #adb5bd;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    .scroll-btn:hover {
        background: #3498db;
        color: white;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .category-box {
        border: 2px solid #000;
    }

    .category-box.active {
        border: 3px solid #0066cc;
    }

    .scroll-btn {
        border: 1px solid #000;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .categories-wrapper {
        scroll-behavior: auto;
    }

    .category-box {
        transition: none;
    }

    .category-box:hover {
        transform: none;
    }

    .scroll-btn:hover {
        transform: translateY(-50%);
    }

    .category-box.active::before {
        animation: none;
    }
}

/* JavaScript interaction styles */
.category-box.focus-visible {
    outline: 2px solid #3498db;
    outline-offset: 2px;
}

.categories-wrapper.smooth-scroll {
    scroll-behavior: smooth;
}

/* Custom scrollbar for webkit browsers (optional) */
.categories-wrapper::-webkit-scrollbar {
    height: 6px;
    display: block;
}

.categories-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.categories-wrapper::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.categories-wrapper::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* ===== MEALS GRID SECTION ===== */
.meals-grid-section {
    padding: 80px 0;
    background: #ffffff;
}

.meals-grid-section .categories-title {
    text-align: center;
    margin-bottom: 60px;
}

.meals-grid-section .categories-title h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.meals-grid-section .categories-title p {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

/* Meals Container */
#mealsContainer {
    margin-bottom: 40px;
}

/*----Meals Grid-----*/

/* Meal Card Styles */
.meal-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    position: relative;
}

.meal-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #3498db;
}

.meal-image-container {
    position: relative;
    background: #f8f9fa;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
}

.meal-image-container img {
    transition: transform 0.3s ease;
    object-fit: cover;
}

.meal-card:hover .meal-image-container img {
    transform: scale(1.05);
}

/* Featured Badge */
.meal-image-container .badge {
    background: linear-gradient(135deg, #e74c3c, #c0392b) !important;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
    z-index: 2;
}

.meal-image-container .badge i {
    font-size: 0.7rem;
}

/* Fallback for no image */
.meal-image-container .bg-light {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef) !important;
}

.meal-image-container .fa-utensils {
    color: #bdc3c7 !important;
}

/* Card Body */
.meal-card .card-body {
    padding: 5px 0px 0 10px;
    display: flex;
    flex-direction: column;
    height: calc(100% - 200px);
}

/* Meal Title */
.meal-card .card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.4;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.8rem;
}

/* Meal Description */
.meal-card .card-text {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

/* Price and Cart Section */
.price-cart-section {
    background: linear-gradient(135deg, #3498db, #2980b9) !important;
    border-radius: 12px !important;
    padding: 16px !important;
    margin-top: auto;
    border: none;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
    transition: all 0.3s ease;
}

.meal-card:hover .price-cart-section {
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
    transform: translateY(-2px);
}

.price-cart-section .text-white {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem !important;
    font-weight: 800;
    color: #ffffff !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Add to Cart Button */
.price-cart-section .btn-light {
    background: #ffffff !important;
    border: 2px solid #ffffff;
    border-radius: 8px;
    padding: 8px 16px;
    font-weight: 700;
    font-size: 0.85rem;
    color: #3498db !important;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.3);
}

.price-cart-section .btn-light:hover {
    background: rgba(255, 255, 255, 0.9) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.4);
    color: #2980b9 !important;
}

.price-cart-section .btn-light:active {
    transform: translateY(0);
}

.price-cart-section .btn-light i {
    font-size: 0.8rem;
}

/* Empty State */
.meals-grid-section .text-center .py-5 {
    padding: 80px 0 !important;
}

.meals-grid-section .fa-utensils {
    color: #dee2e6 !important;
    margin-bottom: 20px;
}

.meals-grid-section .text-muted h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-bottom: 15px;
}

.meals-grid-section .text-muted p {
    font-size: 1.1rem;
    max-width: 400px;
    margin: 0 auto;
}

/* Pagination Styles */
.meals-grid-section .pagination {
    margin-top: 60px;
}

.meals-grid-section .pagination .page-link {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    margin: 0 5px;
    color: #6c757d;
    font-weight: 600;
    padding: 10px 18px;
    transition: all 0.3s ease;
}

.meals-grid-section .pagination .page-link:hover {
    background: #3498db;
    color: #ffffff;
    border-color: #3498db;
    transform: translateY(-2px);
}

.meals-grid-section .pagination .page-item.active .page-link {
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-color: #3498db;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.meals-grid-section .pagination .page-item.disabled .page-link {
    background: #f8f9fa;
    color: #adb5bd;
    border-color: #e9ecef;
}

/* Animation for meal cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.meal-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Stagger animation for multiple cards */
.meal-card:nth-child(1) {
    animation-delay: 0.1s;
}

.meal-card:nth-child(2) {
    animation-delay: 0.2s;
}

.meal-card:nth-child(3) {
    animation-delay: 0.3s;
}

.meal-card:nth-child(4) {
    animation-delay: 0.4s;
}

.meal-card:nth-child(5) {
    animation-delay: 0.5s;
}

.meal-card:nth-child(6) {
    animation-delay: 0.6s;
}

.meal-card:nth-child(7) {
    animation-delay: 0.7s;
}

.meal-card:nth-child(8) {
    animation-delay: 0.8s;
}

/* Loading State */
.meal-card.loading {
    position: relative;
    overflow: hidden;
}

.meal-card.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .meals-grid-section .categories-title h2 {
        font-size: 2.4rem;
    }

    .meal-card .card-title {
        font-size: 1rem;
    }

    .price-cart-section .text-white {
        font-size: 1.3rem !important;
    }
}

@media (max-width: 992px) {
    .meals-grid-section {
        padding: 60px 0;
    }

    .meals-grid-section .categories-title h2 {
        font-size: 2.2rem;
    }

    .meals-grid-section .categories-title p {
        font-size: 1.1rem;
    }

    .meal-card .card-body {
        padding: 20px;
    }

    /* 3 cards per row on tablets */
    .col-lg-4 {
        flex: 0 0 auto;
        width: 33.333333%;
    }
}

@media (max-width: 768px) {
    .meals-grid-section {
        padding: 50px 0;
    }

    .meals-grid-section .categories-title {
        margin-bottom: 40px;
    }

    .meals-grid-section .categories-title h2 {
        font-size: 2rem;
    }

    .meals-grid-section .categories-title p {
        font-size: 1rem;
    }

    .meal-image-container {
        height: 180px;
    }

    .meal-card .card-body {
        padding: 18px;
    }

    .meal-card .card-title {
        font-size: 1rem;
        min-height: 2.6rem;
    }

    .price-cart-section {
        padding: 14px !important;
    }

    .price-cart-section .text-white {
        font-size: 1.2rem !important;
    }

    .price-cart-section .btn-light {
        padding: 7px 14px;
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .meals-grid-section {
        padding: 40px 0;
    }

    .meals-grid-section .categories-title h2 {
        font-size: 1.8rem;
    }

    .meals-grid-section .categories-title p {
        font-size: 0.95rem;
    }

    .meal-image-container {
        height: 160px;
    }

    .meal-card .card-body {
        padding: 16px;
    }

    .meal-card .card-title {
        font-size: 0.95rem;
        min-height: 2.4rem;
    }

    .meal-card .card-text {
        font-size: 0.85rem;
    }

    .price-cart-section {
        padding: 12px !important;
    }

    .price-cart-section .text-white {
        font-size: 1.1rem !important;
    }

    .price-cart-section .btn-light {
        padding: 6px 12px;
        font-size: 0.75rem;
    }

    /* 2 cards per row on mobile */
    .col-sm-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .pagination .page-link {
        padding: 8px 14px;
        font-size: 0.9rem;
    }
}

@media (max-width: 400px) {
    .meal-image-container {
        height: 140px;
    }

    .meal-card .card-title {
        font-size: 0.9rem;
    }

    .price-cart-section .text-white {
        font-size: 1rem !important;
    }

    .price-cart-section .btn-light {
        padding: 5px 10px;
        font-size: 0.7rem;
    }

    .price-cart-section .btn-light i {
        margin-right: 2px;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .meals-grid-section {
        background: #1a1d23;
    }

    .meals-grid-section .categories-title h2 {
        color: #e9ecef;
    }

    .meals-grid-section .categories-title p {
        color: #adb5bd;
    }

    .meal-card {
        background: #2d3036;
        border-color: #3a3e45;
    }

    .meal-card .card-title {
        color: #e9ecef;
    }

    .meal-card .card-text {
        color: #adb5bd;
    }

    .meal-image-container .bg-light {
        background: #3a3e45 !important;
    }

    .meal-image-container .fa-utensils {
        color: #6c757d !important;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .meal-card {
        border: 2px solid #000;
    }

    .price-cart-section {
        border: 2px solid #0066cc;
    }

    .price-cart-section .btn-light {
        border: 2px solid #000;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .meal-card {
        transition: none;
        animation: none;
    }

    .meal-card:hover {
        transform: none;
    }

    .meal-card:hover .meal-image-container img {
        transform: none;
    }

    .price-cart-section .btn-light:hover {
        transform: none;
    }
}


/* Coming Soon Section */
.meals-coming-soon {
    padding: 100px 0;
    background: var(--white);
}

.coming-soon-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.coming-soon-icon {
    font-size: 80px;
    color: var(--primary);
    margin-bottom: 30px;
}

.coming-soon-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    color: var(--dark);
    margin-bottom: 20px;
}

.coming-soon-content>p {
    font-size: 18px;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 50px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

.feature-item {
    padding: 40px 30px;
    background: var(--light);
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.feature-item i {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 20px;
}

.feature-item h4 {
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-item p {
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

/* Countdown Info */
.countdown-info {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px;
    border-radius: var(--radius);
    margin: 50px 0;
    text-align: left;
}

.countdown-info h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    color: var(--dark);
    margin-bottom: 15px;
    text-align: center;
}

.countdown-info>p {
    text-align: center;
    color: var(--gray);
    margin-bottom: 20px;
}

.countdown-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}

.countdown-info li {
    padding: 12px 20px;
    background: var(--white);
    border-radius: var(--radius);
    color: var(--dark-light);
    font-weight: 500;
    position: relative;
    padding-left: 40px;
}

.countdown-info li:before {
    content: '✓';
    position: absolute;
    left: 20px;
    color: var(--primary);
    font-weight: bold;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 50px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .meals-header h1 {
        font-size: 32px;
    }

    .coming-soon-content h2 {
        font-size: 28px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .countdown-info ul {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .meals-hero {
        padding: 60px 0;
    }

    .meals-coming-soon {
        padding: 60px 0;
    }

    .coming-soon-icon {
        font-size: 60px;
    }

    .feature-item {
        padding: 30px 20px;
    }

    .countdown-info {
        padding: 30px 20px;
    }
}

/* ===== UPDATED BLOG PAGE STYLES ===== */

/* Simple Blog Hero */
.blog-simple-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.simple-hero-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
}

.simple-hero-content>p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-search {
    display: flex;
    max-width: 400px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 5px;
    backdrop-filter: blur(10px);
}

.hero-search input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 20px;
    color: var(--white);
    font-size: 16px;
    outline: none;
}

.hero-search input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.hero-search button {
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.hero-search button:hover {
    background: var(--primary-dark);
}

/* Blog Categories */
.blog-categories {
    padding: 25px 0;
    background: var(--white);
    border-bottom: 1px solid var(--light);
    position: sticky;
    top: 80px;
    z-index: 100;
}

.categories-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.category-btn {
    padding: 10px 20px;
    background: var(--light);
    border: 2px solid transparent;
    border-radius: 20px;
    font-weight: 500;
    color: var(--dark-light);
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
}

.category-btn:hover {
    background: var(--primary-light);
    color: var(--primary-dark);
}

.category-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* Blogs Grid - 4 Columns */
.blogs-grid-four {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Blog Sections */
.featured-blogs {
    padding: 60px 0;
    background: var(--white);
}

.recent-blogs {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.more-blogs {
    padding: 60px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    color: var(--dark);
    margin-bottom: 10px;
}

.section-header p {
    font-size: 16px;
    color: var(--gray);
    max-width: 500px;
    margin: 0 auto;
}

/* Blog Card - Compact Design */
.blog-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.blog-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-content h3 {
    font-size: 16px;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.4;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.blog-excerpt {
    color: var(--gray);
    line-height: 1.5;
    margin-bottom: 15px;
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 12px;
    color: var(--gray);
}

.author {
    font-weight: 500;
    color: var(--dark-light);
}

.date {
    color: var(--gray);
}

.read-more {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
    border-top: 1px solid var(--light);
    padding-top: 15px;
    margin-top: auto;
}

.read-more:hover {
    color: var(--primary-dark);
}

/* Newsletter Section */
.blog-newsletter {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
}

.newsletter-simple h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    margin-bottom: 10px;
}

.newsletter-simple>p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 25px;
}

.newsletter-form {
    display: flex;
    max-width: 400px;
    margin: 0 auto;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
}

.newsletter-form .btn {
    white-space: nowrap;
    padding: 12px 25px;
}

/* Responsive Design for 4 Columns */
@media (max-width: 1200px) {
    .blogs-grid-four {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .blogs-grid-four {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .simple-hero-content h1 {
        font-size: 32px;
    }

    .section-header h2 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .blog-simple-hero {
        padding: 50px 0;
    }

    .blogs-grid-four {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .categories-container {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .category-btn {
        flex-shrink: 0;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .featured-blogs,
    .recent-blogs,
    .more-blogs {
        padding: 50px 0;
    }
}

@media (max-width: 576px) {
    .simple-hero-content h1 {
        font-size: 28px;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .blog-newsletter {
        padding: 50px 0;
    }

    .newsletter-simple h3 {
        font-size: 24px;
    }

    .blog-image {
        height: 160px;
    }

    .blog-content {
        padding: 15px;
    }
}

.newsletter-simple button {
    width: auto !important;
    border-radius: 6px;
    padding: 0px 30px;
    font-size: 16px;
}

/* Leadership Page Specific Styles */
.tdb-leadership-hero {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%),
        url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
}

.tdb-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.tdb-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.tdb-hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.tdb-hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.tdb-stat-item {
    text-align: center;
}

.tdb-stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.tdb-stat-text {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Leadership Section */
.tdb-leadership-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.tdb-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.tdb-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.tdb-section-desc {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

/* Leadership Grid */
.tdb-leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.tdb-leader-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.tdb-leader-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.tdb-founder-card {
    border: 3px solid #667eea;
    position: relative;
}

.tdb-leader-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.tdb-leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tdb-leader-card:hover .tdb-leader-image img {
    transform: scale(1.05);
}

.tdb-leader-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #667eea;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.tdb-leader-info {
    padding: 2rem;
}

.tdb-leader-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.tdb-leader-role {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.tdb-leader-desc {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.tdb-leader-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.tdb-leader-stat {
    background: #f8f9fa;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    color: #495057;
}

.tdb-leader-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tdb-leader-link:hover {
    color: #5a67d8;
    gap: 0.7rem;
}

/* Values Section */
.tdb-values-section {
    padding: 80px 0;
    background: white;
}

.tdb-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.tdb-value-card {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: 15px;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.tdb-value-card:hover {
    background: #667eea;
    color: white;
    transform: translateY(-5px);
}

.tdb-value-card:hover h4,
.tdb-value-card:hover p {
    color: white;
}

.tdb-value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.tdb-value-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.tdb-value-card p {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .tdb-hero-title {
        font-size: 2.5rem;
    }

    .tdb-hero-stats {
        gap: 2rem;
    }

    .tdb-stat-number {
        font-size: 2rem;
    }

    .tdb-leadership-grid {
        grid-template-columns: 1fr;
    }

    .tdb-section-title {
        font-size: 2rem;
    }
}

/* App Download Section */
.tdb-app-download-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    color: white;
}

.tdb-app-download-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
}

/* Top Center Header */
.tdb-app-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem auto;
    position: relative;
    z-index: 2;
}

.tdb-app-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-family: 'Montserrat', sans-serif;
}

.tdb-app-highlight {
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.tdb-app-subtitle {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 0;
    opacity: 0.9;
    font-weight: 300;
}

/* Main Content Layout */
.tdb-app-download-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Left Side - Features & Buttons */
.tdb-app-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* App Features */
.tdb-app-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.tdb-app-feature {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.tdb-app-feature:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
}

.tdb-feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
}

.tdb-feature-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 2px;
    color: white;
}

.tdb-feature-content p {
    margin: 0;
    opacity: 0.8;
    font-size: 1rem;
    line-height: 1.5;
}

/* Download Buttons */
.tdb-download-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.tdb-download-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2rem;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-width: 220px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.tdb-apple-btn {
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.tdb-google-btn {
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.tdb-download-btn:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.tdb-btn-icon {
    font-size: 2.2rem;
    flex-shrink: 0;
}

.tdb-btn-content {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    text-align: left;
}

.tdb-btn-small {
    font-size: 0.8rem;
    opacity: 0.8;
    font-weight: 400;
}

.tdb-btn-large {
    font-size: 1.3rem;
    font-weight: 700;
}

/* Right Side - Mockup Images */
.tdb-app-mockups {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.tdb-mockup-image {
    max-width: 100%;
    height: auto;
    max-height: 574px;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

.tdb-mockup-image:hover {
    transform: translateY(-10px);
    filter: drop-shadow(0 35px 60px rgba(0, 0, 0, 0.4));
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .tdb-app-download-content {
        gap: 3rem;
    }

    .tdb-app-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .tdb-app-download-section {
        padding: 80px 0;
    }

    .tdb-app-download-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .tdb-app-header {
        margin-bottom: 3rem;
    }

    .tdb-app-title {
        font-size: 2.5rem;
    }

    .tdb-app-subtitle {
        font-size: 1.2rem;
    }

    .tdb-app-feature {
        text-align: left;
    }

    .tdb-download-actions {
        justify-content: center;
    }

    .tdb-mockup-image {
        max-height: 400px;
    }

    .tdb-app-content {
        order: 2;
    }

    .tdb-app-mockups {
        order: 1;
    }
}

@media (max-width: 480px) {
    .tdb-app-download-section {
        padding: 60px 0;
    }

    .tdb-app-title {
        font-size: 2rem;
    }

    .tdb-app-subtitle {
        font-size: 1.1rem;
    }

    .tdb-download-actions {
        flex-direction: column;
        align-items: center;
    }

    .tdb-download-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .tdb-mockup-image {
        max-height: 300px;
    }

    .tdb-app-feature {
        padding: 1.2rem;
        gap: 1rem;
    }

    .tdb-feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
    }

    .tdb-feature-content h4 {
        font-size: 1.1rem;
    }

    .tdb-feature-content p {
        font-size: 0.9rem;
    }
}

/*--------------------------------------user profile---------------------------*/
/* User Profile Styles */
.tdb-profile-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 2rem 0;
}

.tdb-profile-header {
    text-align: center;
    margin-bottom: 3rem;
}

.tdb-profile-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tdb-profile-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    font-weight: 300;
}

.tdb-profile-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Sidebar Styles */
.tdb-profile-sidebar {
    position: sticky;
    top: 2rem;
    height: fit-content;
}

.tdb-user-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.tdb-user-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.tdb-user-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    border: 4px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.tdb-user-name {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.tdb-user-email {
    color: #6c757d;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.tdb-user-member {
    color: #667eea;
    font-size: 0.9rem;
    font-weight: 600;
    background: #f8f9ff;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    display: inline-block;
}

.tdb-profile-nav {
    background: white;
    border-radius: 20px;
    padding: 1.5rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.tdb-nav-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2rem;
    text-decoration: none;
    color: #495057;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    font-weight: 500;
}

.tdb-nav-item:hover {
    background: linear-gradient(135deg, #f8f9ff 0%, #e9ecef 100%);
    color: #667eea;
    border-left-color: #667eea;
}

.tdb-nav-item.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-left-color: #5a67d8;
}

.tdb-nav-item i {
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
}

/* Main Content Styles */
.tdb-profile-content {
    min-height: 500px;
}

.tdb-alert {
    padding: 1.2rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.tdb-alert-success {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    color: #065f46;
    border: 1px solid #10b981;
}

.tdb-alert i {
    font-size: 1.2rem;
}

.tdb-profile-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid #e9ecef;
}

.tdb-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2.5rem;
    border-bottom: 1px solid #e9ecef;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
}

.tdb-card-header h2 {
    margin: 0;
    color: #2c3e50;
    font-size: 1.6rem;
    font-weight: 700;
}

.tdb-edit-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.tdb-edit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.tdb-card-body {
    padding: 2.5rem;
}

.tdb-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.tdb-info-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #667eea;
    transition: all 0.3s ease;
}

.tdb-info-item:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.tdb-info-item label {
    display: block;
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tdb-info-item p {
    margin: 0;
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Fitness Section */
.tdb-fitness-section {
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 2px solid #e9ecef;
}

.tdb-fitness-section h3 {
    color: #2c3e50;
    margin-bottom: 2rem;
    font-size: 1.4rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.tdb-fitness-section h3::before {
    content: '💪';
    font-size: 1.2rem;
}

/* Empty State */
.tdb-empty-state {
    text-align: center;
    padding: 3rem 2rem;
    color: #6c757d;
}

.tdb-empty-state i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #dee2e6;
}

.tdb-empty-state h3 {
    color: #495057;
    margin-bottom: 0.5rem;
}

/* Stats Cards */
.tdb-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.tdb-stat-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.tdb-stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.tdb-stat-label {
    color: #6c757d;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .tdb-profile-layout {
        grid-template-columns: 280px 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .tdb-profile-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .tdb-profile-sidebar {
        position: static;
    }

    .tdb-profile-title {
        font-size: 2.2rem;
    }

    .tdb-card-header {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }

    .tdb-info-grid {
        grid-template-columns: 1fr;
    }

    .tdb-user-avatar {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .tdb-profile-container {
        padding: 1.5rem 0;
    }

    .tdb-profile-title {
        font-size: 1.8rem;
    }

    .tdb-card-body {
        padding: 1.5rem;
    }

    .tdb-info-item {
        padding: 1.2rem;
    }

    .tdb-user-card {
        padding: 2rem 1.5rem;
    }

    .tdb-nav-item {
        padding: 1rem 1.5rem;
    }

    .tdb-edit-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Animation Classes */
.tdb-fade-in {
    animation: fadeIn 0.6s ease-in-out;
}

.tdb-slide-up {
    animation: slideUp 0.5s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading States */
.tdb-loading {
    position: relative;
    overflow: hidden;
}

.tdb-loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* Custom Scrollbar */
.tdb-profile-content::-webkit-scrollbar {
    width: 6px;
}

.tdb-profile-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.tdb-profile-content::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
}

.tdb-profile-content::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
}

/* ==========================================================================
   EDIT PROFILE STYLES
   ========================================================================== */

.tdb-alert-danger {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    color: #7f1d1d;
    border: 1px solid #f87171;
}

.tdb-form-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.tdb-form-section {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

.tdb-form-section-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.tdb-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.tdb-form-group {
    margin-bottom: 1.5rem;
}

.tdb-form-label {
    display: block;
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.tdb-form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.tdb-form-control:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.tdb-form-control:invalid {
    border-color: #e53e3e;
}

.tdb-form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e9ecef;
}

.tdb-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.tdb-btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.tdb-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.tdb-btn-secondary {
    background: #6c757d;
    color: white;
}

.tdb-btn-secondary:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

/* Responsive Design for Forms */
@media (max-width: 768px) {
    .tdb-form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .tdb-form-section {
        padding: 1.5rem;
    }

    .tdb-form-actions {
        flex-direction: column;
    }

    .tdb-btn {
        width: 100%;
        justify-content: center;
    }
}


/* ==========================================================================
   CHANGE PASSWORD STYLES
   ========================================================================== */

.tdb-password-form {
    max-width: 500px;
}

.tdb-password-strength {
    margin-top: 0.5rem;
    color: #6c757d;
    font-size: 0.85rem;
}

.tdb-password-requirements {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    border-left: 4px solid #667eea;
}

.tdb-password-requirements h4 {
    margin-bottom: 1rem;
    color: #2c3e50;
    font-size: 1.1rem;
}

.tdb-password-requirements ul {
    margin: 0;
    padding-left: 1.2rem;
    color: #495057;
}

.tdb-password-requirements li {
    margin-bottom: 0.3rem;
}

.tdb-error-text {
    color: #e53e3e;
    font-size: 0.85rem;
    margin-top: 0.3rem;
    display: block;
}

/* Security Tips */
.tdb-security-tips {
    margin-top: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.tdb-security-tips h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: center;
}

.tdb-tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.tdb-tip-item {
    text-align: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.tdb-tip-item:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.tdb-tip-item i {
    font-size: 2rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.tdb-tip-item h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.tdb-tip-item p {
    color: #6c757d;
    margin: 0;
    font-size: 0.9rem;
}

/* ==========================================================================
   ADDRESSES STYLES
   ========================================================================== */

.tdb-addresses-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.tdb-addresses-header h2 {
    margin: 0;
    color: #2c3e50;
}

.tdb-addresses-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tdb-address-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.tdb-address-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.tdb-default-address {
    border-color: #667eea;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
}

.tdb-address-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.tdb-address-type {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.tdb-default-badge {
    background: #667eea;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.tdb-address-body h4 {
    margin: 0 0 0.5rem 0;
    color: #2c3e50;
    font-size: 1.2rem;
}

.tdb-address-body p {
    margin: 0.3rem 0;
    color: #495057;
}

.tdb-address-phone {
    color: #667eea !important;
    font-weight: 500;
}

.tdb-address-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
}

.tdb-action-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    color: #495057;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.tdb-action-btn:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

.tdb-set-default {
    background: #fff3cd;
    border-color: #ffeaa7;
    color: #856404;
}

.tdb-set-default:hover {
    background: #667eea;
    color: white;
}

.tdb-empty-address {
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.tdb-empty-icon {
    font-size: 4rem;
    color: #dee2e6;
    margin-bottom: 1.5rem;
}

.tdb-empty-address h3 {
    color: #495057;
    margin-bottom: 1rem;
}

.tdb-empty-address p {
    color: #6c757d;
    margin-bottom: 2rem;
}

.tdb-checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: #495057;
    cursor: pointer;
}

.tdb-checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

.tdb-alert-info {
    background: linear-gradient(135deg, #dbeafe 0%, #93c5fd 100%);
    color: #1e40af;
    border: 1px solid #3b82f6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .tdb-addresses-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .tdb-address-actions {
        flex-wrap: wrap;
    }

    .tdb-tips-grid {
        grid-template-columns: 1fr;
    }

    .tdb-address-card {
        padding: 1.5rem;
    }
}

/* ==========================================================================
   ORDERS PAGE STYLES
   ========================================================================== */
.tdb-orders-stats {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    /* 10px ka gap */
}

.tdb-orders-stats>div {
    flex: 1;
    /* sab boxes equal width me */
}

.tdb-empty-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.tdb-orders-guide {
    margin-top: 3rem;
    padding: 2.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.tdb-orders-guide h3 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.tdb-guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.tdb-guide-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.tdb-guide-step:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.tdb-step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.tdb-step-content h4 {
    margin: 0 0 0.5rem 0;
    color: #2c3e50;
    font-size: 1.1rem;
}

.tdb-step-content p {
    margin: 0;
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Order Template Styles */
.tdb-order-template {
    display: none;
    /* Hidden by default */
}

.tdb-order-id,
.tdb-order-date-value,
.tdb-status-text,
.tdb-items-total,
.tdb-delivery-fee,
.tdb-order-total,
.tdb-delivery-time {
    /* These will be populated dynamically */
}

/* Download Button Styles */
.tdb-download-btn {
    background: #28a745;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.tdb-download-btn:hover {
    background: #218838;
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
}

/* Action buttons layout */
.tdb-order-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.tdb-action-btn {
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.tdb-track-btn {
    background: #17a2b8;
    color: white;
}

.tdb-track-btn:hover {
    background: #138496;
    color: white;
}

.tdb-cancel-btn {
    background: #dc3545;
    color: white;
}

.tdb-cancel-btn:hover {
    background: #c82333;
    color: white;
}

.tdb-invoice-btn {
    background: #6f42c1;
    color: white;
}

.tdb-invoice-btn:hover {
    background: #5a359c;
    color: white;
}

/* Responsive Design for Guide */
@media (max-width: 768px) {
    .tdb-guide-steps {
        grid-template-columns: 1fr;
    }

    .tdb-guide-step {
        flex-direction: column;
        text-align: center;
    }

    .tdb-empty-actions {
        flex-direction: column;
        align-items: center;
    }

    .tdb-empty-actions .tdb-btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

/* ==========================================================================
   ORDERS FILTER SECTION - TAB BUTTONS STYLE
   ========================================================================== */

.tdb-orders-filter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    gap: 1.5rem;
}

.tdb-filter-buttons {
    display: flex;
    gap: 0;
    background: #f8f9fa;
    border-radius: 5px;
    padding: 4px;
    border: 1px solid #e9ecef;
}

.tdb-filter-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    background: transparent;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: #6c757d;
    font-size: 0.9rem;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    white-space: nowrap;
}

.tdb-filter-btn:hover {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
}

.tdb-filter-btn.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.tdb-filter-btn:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.3);
}

/* Search Box - Same Height as Buttons */
.tdb-search-box {
    position: relative;
    min-width: 280px;
    height: 44px;
}

.tdb-search-input {
    width: 100%;
    height: 100%;
    padding: 0 1rem 0 2.5rem;
    border: 1px solid #e9ecef;
    border-radius: 5px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background: white;
}

.tdb-search-input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.1);
}

.tdb-search-input::placeholder {
    color: #6c757d;
}

.tdb-search-box i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .tdb-orders-filter {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .tdb-filter-buttons {
        order: 2;
    }

    .tdb-search-box {
        order: 1;
        min-width: 100%;
    }

    .tdb-filter-btn {
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
        min-height: 40px;
    }
}

@media (max-width: 480px) {
    .tdb-filter-buttons {
        flex-wrap: wrap;
    }

    .tdb-filter-btn {
        flex: 1 0 calc(50% - 2px);
        min-width: calc(50% - 2px);
    }

    .tdb-orders-filter {
        padding: 1rem;
    }
}

/* Active State Animation */
.tdb-filter-btn.active {
    position: relative;
    z-index: 1;
}

/* Hover effect for non-active buttons */
.tdb-filter-btn:not(.active):hover {
    transform: translateY(-1px);
}

/* Ensure consistent height across all elements */
.tdb-orders-filter>* {
    height: 44px;
}

.tdb-filter-buttons {
    height: 44px;
}

.tdb-search-box {
    height: 44px;
}

/* Focus states for accessibility */
.tdb-filter-btn:focus-visible {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

.tdb-search-input:focus-visible {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

/* Loading state for buttons */
.tdb-filter-btn.loading {
    position: relative;
    color: transparent;
}

.tdb-filter-btn.loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*---------------------- Invoice Page-------------------    */
.tdb-invoices-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.tdb-invoices-stats {
    display: flex;
    gap: 1rem;
}

.tdb-stat-card {
    background: #f8f9fa;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid #007bff;
}

.tdb-stat-card h3 {
    margin: 0;
    font-size: 1.5rem;
    color: #007bff;
}

.tdb-stat-card p {
    margin: 0.25rem 0 0 0;
    color: #6c757d;
    font-size: 0.875rem;
}

.tdb-invoice-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.tdb-invoice-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.tdb-invoice-info h4 {
    margin: 0 0 0.25rem 0;
    color: #333;
}

.tdb-invoice-date {
    color: #6c757d;
    font-size: 0.875rem;
}

.tdb-invoice-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.tdb-status {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.tdb-status-completed {
    background: #d4edda;
    color: #155724;
}

.tdb-status-pending {
    background: #fff3cd;
    color: #856404;
}

.tdb-status-cancelled {
    background: #f8d7da;
    color: #721c24;
}

.tdb-invoice-body {
    padding: 1.5rem;
}

.tdb-invoice-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.tdb-detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.tdb-detail-item span:first-child {
    color: #6c757d;
}

.tdb-detail-item strong {
    color: #333;
    font-size: 1.1rem;
}

.tdb-empty-state {
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: 8px;
    border: 2px dashed #dee2e6;
}

.tdb-empty-state .tdb-empty-icon {
    font-size: 3rem;
    color: #6c757d;
    margin-bottom: 1rem;
}

.tdb-empty-state h3 {
    color: #495057;
    margin-bottom: 0.5rem;
}

.tdb-empty-state p {
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.tdb-pagination {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .tdb-invoices-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .tdb-invoice-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .tdb-invoice-actions {
        width: 100%;
        justify-content: space-between;
    }
}


/* ===== Category Scroll Section ===== */
.cat-scroll-section {
    padding: 50px 0;
    background-color: #f8f9fa;
}

.cat-section-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 25px;
}

/* Scroll container */
.cat-scroll {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 20px;
    padding: 10px;
}

.cat-scroll::-webkit-scrollbar {
    height: 8px;
}

.cat-scroll::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

/* Category box */
.cat-box {
    flex: 0 0 calc(16.66% - 20px);
    /* 6 items per row (on desktop) */
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 15px;
    min-width: 180px;
    /* ensures scroll works nicely */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* Category image */
.cat-image img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
}

/* Category name */
.cat-name {
    margin-top: 10px;
    font-size: 1rem;
    color: #333;
    font-weight: 600;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .cat-box {
        flex: 0 0 calc(25% - 20px);
        /* 4 per row on tablet */
    }
}

@media (max-width: 600px) {
    .cat-box {
        flex: 0 0 calc(50% - 20px);
        /* 2 per row on mobile */
    }
}

.meals-section {
    background: #f9f9f9;
}

.meals-section .meals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    padding-bottom: 80px;
}

.meals-section .meal-box {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.2s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.meals-section .meal-box:hover {
    transform: translateY(-5px);
}

.meals-section .meal-image img {
    width: 100%;
    height: 238px;
    object-fit: cover;
}

.meals-section .meal-content {
    padding: 15px;
    flex-grow: 1;
}

.meals-section .meal-name {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    color: #333;
    margin-bottom: 8px;
}

.meals-section .meal-description {
    font-size: 14px;
    color: #666;
    text-align: center;
    margin-bottom: 12px;
}

.meals-section .meal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.meals-section .meal-price {
    font-weight: 500;
    color: #fff;
    font-size: 15px;
    background: #2d7a46;
    padding: 4px 10px 4px 10px;
    border-radius: 8px;
}

.meals-section .add-cart-btn {
    background: #2d7a46;
    color: #fff;
    border: none;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s;
}

.meals-section .add-cart-btn:hover {
    background: #256a3c;
}

/* ================== Popular Meals Grid ================== */
.hGrid_meal .product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 60px;
}

/* ----- Meal Card ----- */
.hGrid_meal .prodMeal-card {
    border-radius: 10px;
    transition: all 0.3s ease;
    background: #e9ebed;
    padding: 10px;
}

.hGrid_meal .prodMeal-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* ----- Image ----- */
.hGrid_meal .prodMeal-image {
    width: 100%;
    height: 238px;
    overflow: hidden;
    border-bottom: 1px solid #eee;
}

.hGrid_meal .prodMeal-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* ✅ image puri clear dikhegi, cut nahi hogi */
    transition: transform 0.3s ease;
    border-radius: 15px;
}

.hGrid_meal .prodMeal-card:hover .prodMeal-image img {
    transform: scale(1.05);
}

/* ----- Content ----- */
.hGrid_meal .prodMeal-content {
    min-height: 118px;
    padding: 10px 0;
}

.hGrid_meal .prodMeal-name {
    font-size: 1.05rem;
    font-weight: 600;
    text-align: center;
}

.hGrid_meal .prodMeal-desc {
    font-size: 15px;
    line-height: 48px;
    color: #6c757d;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: center;
}

/* ----- Price and Button ----- */
.hGrid_meal .prodMeal-price {
    font-size: 0.95rem;
    font-weight: 600;
    background-color: #198754;
    color: #fff;
    border-radius: 10px;
}

.rt_addBtn {
    float: right;
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 16px;
    font-weight: 550;
}

/* ----- View More Button ----- */
.view-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    border: 2px solid #2ecc71;
    border-radius: 30px;
    color: #2ecc71;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 60px;
}

.view-more-btn i {
    transition: transform 0.3s ease;
}

.view-more-btn:hover {
    background-color: #2ecc71;
    color: #fff;
}

.view-more-btn:hover i {
    transform: translateX(20px);
    /* ➡️ arrow moves right 20px */
}

/* ----- Responsive Layout ----- */
@media (max-width: 992px) {
    .hGrid_meal .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .hGrid_meal .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hGrid_meal .prodMeal-image {
        width: 100%;
        height: auto;
        overflow: hidden;
        border-bottom: 1px solid #eee;
    }
}

@media (max-width: 576px) {
    .hGrid_meal .product-grid {
        grid-template-columns: 1fr;
    }
}

/* ---------- Category Tabs Design ---------- */
.category-tabs-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 38px;
}

.category-tabs {
    background: #f5f7fa;
    border-radius: 50px;
    padding: 8px 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    overflow-x: auto;
    white-space: nowrap;
}

.category-tabs::-webkit-scrollbar {
    display: none;
}

.category-tab {
    display: inline-block;
    margin: 4px 6px;
    padding: 8px 20px;
    font-weight: 600;
    font-size: 15px;
    color: #333;
    border-radius: 25px;
    background: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #ddd;
}

.category-tab:hover {
    background: #007bff;
    color: #fff;
    transform: translateY(-2px);
}

.category-tab.active {
    background: #007bff;
    color: #fff;
    border-color: #007bff;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.3);
}

/*--------------------------Customise Banner-----------------------*/
.customize-banner {
    background: linear-gradient(135deg, #ff6600, #ff9900);
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: #fff;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 20px 0;
}

.customize-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: rgba(255, 255, 255, 0.08);
    transform: skewX(-25deg);
    animation: move-shine 5s linear infinite;
}

@keyframes move-shine {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.customize-banner .banner-heading {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.customize-banner .banner-subtext {
    font-size: 1rem;
    font-style: italic;
    opacity: 0.9;
}

.customize-banner .banner-tagline {
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.customize-banner .banner-tagline .highlight {
    color: #000;
    background: #fff;
    padding: 0 8px;
    border-radius: 6px;
}