* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-white: #ffffff;
    --bg-white: #fafafa;
    --bg-secondary: #f5f5f5;
    --bg-tertiary: #efefef;
    --card-bg: #ffffff;
    --text-primary: #000000;
    --text-secondary: #525252;
    --text-muted: #737373;
    --border-color: #e5e5e5;
    --accent-gray: #d4d4d4;
    --border-radius: 16px;
}

body {
    font-family: "Inter", sans-serif;
    background-color: var(--primary-white);
    color: var(--text-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Navbar Styling */
.navbar {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.35rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -0.5px;
}

.navbar-brand .logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #000000 0%, #404040 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}

.navbar-nav .nav-link {
    color: var(--text-secondary);
    font-weight: 500;
    margin: 0 1rem;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.navbar-nav .nav-link:hover {
    color: var(--text-primary);
}

.btn-primary-custom {
    background: var(--text-primary);
    border: none;
    color: var(--primary-white);
    padding: 11px 26px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    letter-spacing: -0.3px;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    background: #1a1a1a;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-outline-custom {
    border: 1.5px solid var(--border-color);
    color: var(--text-primary);
    padding: 11px 26px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    background: transparent;
    transition: all 0.3s ease;
    letter-spacing: -0.3px;
}

.btn-outline-custom:hover {
    background: var(--bg-tertiary);
    border-color: var(--accent-gray);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(
        180deg,
        var(--primary-white) 0%,
        var(--bg-white) 100%
    );
    padding: 120px 0 140px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1200px;
    height: 1200px;
    background: radial-gradient(
        circle,
        rgba(0, 0, 0, 0.03) 0%,
        transparent 70%
    );
    pointer-events: none;
}

.hero-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--border-color) 50%,
        transparent
    );
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    padding: 9px 22px;
    border-radius: 50px;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease;
    letter-spacing: -0.2px;
}

.hero-badge i {
    font-size: 0.9rem;
    color: var(--text-primary);
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.75rem;
    color: var(--text-primary);
    animation: fadeInUp 0.8s ease 0.2s both;
    letter-spacing: -3px;
}

.hero-title .gradient-text {
    background: linear-gradient(135deg, #000000 0%, #525252 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto 3rem;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease 0.4s both;
    font-weight: 400;
    letter-spacing: -0.3px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.btn-hero-primary {
    background: var(--text-primary);
    border: none;
    color: var(--primary-white);
    padding: 16px 36px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -0.3px;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    background: #1a1a1a;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.btn-hero-secondary {
    border: 1.5px solid var(--border-color);
    color: var(--text-primary);
    padding: 16px 36px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    background: transparent;
    transition: all 0.3s ease;
    letter-spacing: -0.3px;
}

.btn-hero-secondary:hover {
    background: var(--bg-tertiary);
    border-color: var(--accent-gray);
    transform: translateY(-3px);
}

/* Features Section */
.features-section {
    background-color: var(--bg-white);
    padding: 120px 0;
    position: relative;
}

.features-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--border-color) 50%,
        transparent
    );
}

.section-title {
    text-align: center;
    margin-bottom: 1.25rem;
    font-size: 3.25rem;
    font-weight: 900;
    color: var(--text-primary);
    letter-spacing: -2px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.15rem;
    margin-bottom: 5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    letter-spacing: -0.3px;
}

.feature-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2.75rem 2.25rem;
    height: 100%;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.02) 0%,
        rgba(0, 0, 0, 0.01) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gray);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
      width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #000000 0%, #525252 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-white);
    font-size: 26px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.feature-card .feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #000000 0%, #525252 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.75rem;
    color: var(--primary-white);
    font-size: 26px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.feature-card:hover .feature-icon {
    transform: scale(1.08) rotate(-3deg);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.feature-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.85rem;
    position: relative;
    z-index: 1;
    letter-spacing: -0.5px;
}

.feature-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
    font-weight: 400;
    letter-spacing: -0.2px;
}

/* CTA Section */
.cta-section {
    background: var(--bg-secondary);
    padding: 100px 0;
    margin: 120px 0;
    border-radius: 28px;
    text-align: center;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(
        circle,
        rgba(0, 0, 0, 0.02) 0%,
        transparent 70%
    );
    pointer-events: none;
}

.cta-title {
    font-size: 3.25rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
    letter-spacing: -2px;
}

.cta-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    font-weight: 400;
    letter-spacing: -0.3px;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    position: relative;
    z-index: 1;
}

/* Footer */
.footer {
    background-color: var(--primary-white);
    padding: 80px 0 40px;
    border-top: 1px solid var(--border-color);
}

.footer-brand {
    font-weight: 700;
    font-size: 1.35rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.25rem;
    letter-spacing: -0.5px;
}

.footer-brand .logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #000000 0%, #525252 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-white);
    font-size: 18px;
    font-weight: 700;
}

.footer-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    max-width: 320px;
    line-height: 1.6;
    font-weight: 400;
}

.footer-title {
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    letter-spacing: -0.3px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.85rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    font-weight: 400;
}

.footer-links a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    margin-top: 4rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 400;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-title {
        font-size: 3.5rem;
        letter-spacing: -2px;
    }

    .section-title,
    .cta-title {
        font-size: 2.5rem;
        letter-spacing: -1.5px;
    }

    .navbar-nav .nav-link {
        margin: 0.5rem 0;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2.75rem;
        letter-spacing: -1.5px;
    }

    .section-title,
    .cta-title {
        font-size: 2rem;
        letter-spacing: -1px;
    }

    .hero-subtitle,
    .section-subtitle,
    .cta-subtitle {
        font-size: 1rem;
    }

    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        max-width: 300px;
    }

    .feature-card {
        margin-bottom: 1.5rem;
    }

    .hero-section {
        padding: 80px 0 100px;
    }

    .features-section {
        padding: 80px 0;
    }

    .cta-section {
        padding: 60px 20px;
        margin: 80px 0;
    }
}

/* Scroll animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Navbar toggler light theme */
.navbar-toggler {
    border-color: var(--border-color);
    padding: 0.5rem;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-toggler:focus {
    box-shadow: none;
    border-color: var(--accent-gray);
}

/* modal related */
/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

/* Modal Container */
.modal-container {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 40px;
    max-width: 480px;
    width: 100%;
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 6px;
    transition: background-color 0.2s;
}

.modal-close:hover {
    background-color: #f5f5f5;
}

.modal-close svg {
    stroke: #666;
}

.modal-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
    text-align: center;
}

/* Modal Tabs */
.modal-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 30px;
    background-color: #f5f5f5;
    padding: 4px;
    border-radius: 8px;
}

.modal-tab {
    flex: 1;
    background: transparent;
    border: none;
    padding: 10px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    transition: all 0.2s;
}

.modal-tab.active {
    background-color: #ffffff;
    color: #1a1a1a;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* later added designs for popup and other things */

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
}

.form-control {
    padding: 12px 16px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.2s;
}

.form-control:focus {
    outline: none;
    border-color: #a855f7;
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.1);
}

.btn-submit {
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-submit:hover {
    background-color: #333;
}

.user-profile-dropdown {
    position: relative;
}

.user-profile-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid #e5e5e5;
    padding: 4px 8px 4px 4px;
    border-radius: 24px;
    cursor: pointer;
    transition: all 0.2s;
}

.user-profile-trigger:hover {
    background-color: #f5f5f5;
}

.user-profile-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.dropdown-menu-custom {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    min-width: 260px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s;
    z-index: 1000;
}

.dropdown-menu-custom.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
}

.dropdown-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.dropdown-user-info {
    flex: 1;
}

.dropdown-user-name {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 2px;
}

.dropdown-user-email {
    font-size: 13px;
    color: #666;
}

.dropdown-divider {
    height: 1px;
    background-color: #e5e5e5;
    margin: 0;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
}

.dropdown-item:hover {
    background-color: #f5f5f5;
    color: #1a1a1a;
}

.dropdown-item svg {
    stroke: #666;
}

.dropdown-item:hover svg {
    stroke: #1a1a1a;
}

/* Premium Modal */
.premium-modal {
    max-width: 520px;
}

.premium-title {
    background: linear-gradient(135deg, #000000 0%, #525252 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.premium-icon {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.premium-subtitle {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-bottom: 32px;
}

.premium-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}

.premium-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}

 .feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #000000 0%, #525252 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.premium-feature strong {
    font-size: 15px;
    color: #1a1a1a;
    font-weight: 500;
    line-height: 1.5;
}

.premium-price {
    text-align: center;
    margin-bottom: 24px;
}

.price-amount {
    font-size: 56px;
    font-weight: 700;
    background: linear-gradient(135deg, #000000 0%, #525252 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.price-subtitle {
    font-size: 14px;
    color: #666;
    margin-top: 8px;
}

.btn-premium {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #000000 0%, #525252 100%);
    color: #ffffff;
    border: none;
    padding: 16px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: 16px;
}

.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(168, 85, 247, 0.4);
}

.btn-premium svg {
    stroke: #ffffff;
}

.premium-guarantee {
    text-align: center;
    font-size: 13px;
    color: #999;
}

/* Checkout Modal */
.checkout-modal {
    max-width: 640px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 48px 40px;
}

.checkout-header {
    text-align: center;
    margin-bottom: 36px;
}

.checkout-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.checkout-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.checkout-subtitle {
    font-size: 16px;
    color: #666;
}

.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.checkout-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.section-heading {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.input-with-icon {
    position: relative;
}

.input-with-icon svg {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.order-summary {
    background-color: #f9f9f9;
    border-radius: 12px;
    padding: 20px;
    margin-top: 8px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 15px;
    color: #333;
}

.summary-row:last-child {
    margin-bottom: 0;
}

.summary-price {
    font-weight: 500;
    color: #1a1a1a;
}

.summary-divider {
    height: 1px;
    background-color: #e5e5e5;
    margin: 16px 0;
}

.summary-total {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-top: 8px;
}

.summary-price-total {
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(135deg, #000000 0%, #525252 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-checkout {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #000000 0%, #525252 100%);
    color: #ffffff;
    border: none;
    padding: 16px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-checkout:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(168, 85, 247, 0.4);
}

.btn-checkout svg {
    stroke: #ffffff;
}

.checkout-security {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    color: #666;
    margin-top: 16px;
}

/* Responsive */
@media (max-width: 768px) {
    .post-title {
        font-size: 28px;
    }

    .post-stats {
        gap: 16px;
    }

    .resource-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .btn-visit,
    .btn-access {
        width: 100%;
        justify-content: center;
    }

    .engagement-section {
        flex-direction: column;
    }

    .btn-like,
    .btn-comment {
        width: 100%;
        justify-content: center;
    }

    .modal-container {
        padding: 30px 20px;
    }

    .price-amount {
        font-size: 48px;
    }
}

   .dropdown-menu.custom-dropdown-menu {
        min-width: 230px; /* Adjust width as per design */
    }
    /* Ensure dropdown menu appears on mobile */
    @media (max-width: 992px) {
        .user-profile-trigger {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .user-profile-avatar {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            object-fit: cover;
        }
    }
