/* Zoomies Membership - Frontend Styles (clean rebuild) */

/* ==================== Accessibility ==================== */

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Focus visible for keyboard navigation */
*:focus-visible {
    outline: 3px solid #E2A422;
    outline-offset: 2px;
}

/* Remove focus outline for mouse users */
*:focus:not(:focus-visible) {
    outline: none;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .quick-action-card,
    .dashboard-section {
        border-width: 2px;
    }
}

/* ==================== Performance Optimizations ==================== */

/* Prevent layout shift on load */
.zoomies-membership-dashboard-wrapper {
    /* Removed 'contain: layout style' to allow fixed positioning for mobile bottom nav */
}

/* GPU acceleration for sticky elements */
.dashboard-sidebar-nav,
.dashboard-right-panel-sticky {
    will-change: transform;
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Optimize animations */
.quick-action-card,
.sidebar-nav-item,
.btn {
    will-change: transform;
    backface-visibility: hidden;
}

/* Remove will-change after animations complete */
.quick-action-card:not(:hover),
.sidebar-nav-item:not(:hover),
.btn:not(:hover) {
    will-change: auto;
}

/* Contain paint for sections */
.dashboard-section {
    contain: layout paint;
}

/* ==================== Global Mobile Optimizations ==================== */
* {
    -webkit-tap-highlight-color: rgba(226, 164, 34, 0.2);
    -webkit-touch-callout: none;
}

/* Smooth scrolling for better mobile experience */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 30px; /* Offset for anchor links to account for sticky positioning */
}

/* Better touch targets for mobile */
button,
a,
input[type="button"],
input[type="submit"],
.btn {
    min-height: 44px; /* iOS recommended touch target */
    min-width: 44px;
}

/* Prevent text selection on interactive elements */
button,
.btn,
.quick-action-card,
.transaction-item {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Optimize image rendering */
img {
    content-visibility: auto;
}

/* ==================== NEW 3-COLUMN LAYOUT (Fixed Sidebar) ==================== */

/* Main dashboard wrapper container */
.zoomies-membership-dashboard-wrapper {
    display: flex;
    flex-direction: row;
    min-height: 100vh;
    overflow: visible;
    background: #ffffff;
}

/* Fixed left sidebar navigation */
.dashboard-sidebar-nav {
    position: sticky;
    top: 0;
    width: 250px;
    height: auto;
    max-height:100vh;
    background: #fff;
    border-right: 1px solid #e0dcc8;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 30px 0;
    z-index: 10;
    flex-shrink: 0;
    contain: layout style paint;
}

/* Navigation list */
.sidebar-nav-list {
    list-style: none;
    padding: 20px;
    margin: 0;
}

/* Navigation items */
.sidebar-nav-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 24px;
    margin: 0;
    color: #241E1E;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s ease;
    border-left: 4px solid transparent;
    font-size: 15px;
    font-weight: 500;
    font-family: "Outfit", Sans-serif;
    border-radius:100px;
    margin-bottom:10px;
}

.sidebar-nav-item:hover {
    background: rgb(198, 198, 198, .2);
  color: #241E1E;
}

.sidebar-nav-item:focus-visible {
    background: rgba(226, 164, 34, 0.15);

}

.sidebar-nav-item.active {
    background: #241E1E;
    
    color: #FFFBEA;

}

/* Disabled navigation item */
.sidebar-nav-item.disabled-tab {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
    position: relative;
}

.sidebar-nav-item.disabled-tab:hover {
    background: transparent;
    color: inherit;
}

.coming-soon-badge {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10px;
    font-weight: 600;
    color: #E2A422;
    background: #FFFBEA;
    padding: 2px 8px;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: all;
}

.sidebar-nav-item.disabled-tab:hover .coming-soon-badge {
    opacity: 1;
}

/* Navigation item icons */
.sidebar-nav-item svg {
    width: 20px;
    height: 20px;
    stroke-width: 2;
    flex-shrink: 0;
}

/* Main content area (takes remaining width, fixed sidebar accounts for 250px) */
.dashboard-main-content-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: visible;
}

/* Page section containers (one per page) */
.dashboard-page-section {
    display: none;
    flex-direction: column;
    flex: 1;
}

.dashboard-page-section.active {
    display: flex;
}

/* Page header banner (top of each page) */
.page-header-banner {
    position: relative;
    background: #57725A;
    color: #ffffff;
    padding: 40px 30px;
    flex-shrink: 0;
    border-bottom: 1px solid #E2A422;
    overflow: hidden;
}

.page-header-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/wp-content/uploads/2025/12/bg-overlay-4.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    mix-blend-mode: soft-light;
    opacity: 1;
    z-index: 1;
    pointer-events: none;
}

.header-banner-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 100%;
}

.page-header-emoji {
    font-size: 48px;
    line-height: 1;
    flex-shrink: 0;
}

.header-banner-text h2 {
    margin: 0;
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    font-family: "Poiret One", Sans-serif;
}

.header-banner-text p {
    margin: 8px 0 0 0;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    font-family: "Outfit", Sans-serif;
}

/* Page content wrapper (scrollable content area) */
.page-content-wrapper {
    flex: 1;
    overflow-y: visible;
    padding: 30px;
    background: #FFFBEA;
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
    align-items: start;
}

/* Main content column */
.dashboard-content-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Right sticky panel within page */
.dashboard-right-panel-sticky {
    position: sticky;
    top: 30px;
    height: max-content;
    max-height: calc(100vh - 60px);
    overflow-y: hidden;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    gap: 25px;
    /* Performance */
    contain: layout style;
    background-color: #fff;


}

/* Dashboard sections within pages */
.dashboard-section {
    background: #ffffff;
    border-radius: 12px;
    padding: 28px;
    border: 1px solid #e0dcc8;
}

.dashboard-section .section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 0;
    border-bottom: 1px solid #e0dcc8;
}

.dashboard-section .section-title-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.dashboard-section .section-icon {
    color: #E2A422;
    flex-shrink: 0;
}

.dashboard-section h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #1A1A1A;
    padding-bottom: 0;
    font-family: "Outfit", Sans-serif;
}

.dashboard-section .section-count {
    font-size: 13px;
    color: #6B7280;
    font-family: "Outfit", Sans-serif;
}

/* ==================== Page Content Styles ==================== */

/* Quick Actions Cards */
.quick-action-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f9f7f2;
    border: 1px solid #e0dcc8;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1),
                background 0.2s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: #241E1E;
    margin-bottom: 0;
}

.quick-action-card:hover {
    background: #f1f1f1;
}

.quick-action-card:focus-visible {

    outline: none;
}

.quick-action-card.is-primary {
    background: #FFFBEA;

}

.action-icon {
    width: 32px;
    height: 32px;
    color: #E2A422;
    flex-shrink: 0;
}

.action-content {
    flex: 1;
}

.action-title {
    font-size: 14px;
    font-weight: 600;
    color: #241E1E;
    margin-bottom: 3px;
    font-family: "Outfit", Sans-serif;
}

.action-description {
    font-size: 12px;
    color: #7a7a7a;
    font-family: "Outfit", Sans-serif;
}

.action-arrow {
    width: 20px;
    height: 20px;
    color: #E2A422;
    flex-shrink: 0;
}

/* Plan Info */
.plan-info {
    padding: 20px;
    background: #f9f7f2;
    border-radius: 8px;
}

.plan-name {
    font-size: 20px;
    font-weight: 700;
    color: #241E1E;
    margin-bottom: 8px;
    font-family: "Poiret One", Sans-serif;
}

.plan-status {
    display: inline-block;
    padding: 6px 12px;
    background: #e7f3e0;
    color: #1f7a54;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: "Outfit", Sans-serif;
}

/* Pending Launch Membership Styling */
.plan-info.pending-launch {
    text-align: left;
    padding: 0;
    background: transparent;
}

.plan-info.pending-launch .plan-name {
    font-size: 22px;
    margin-bottom: 12px;
}

.status-pending-launch {
    background: #FEF3C7;
    color: #92400E;
    border: 2px solid #F59E0B;
    font-size: 13px;
    padding: 8px 16px;
}

.plan-info.pending-launch .launch-message {
    margin-top: 32px;
    text-align: left;
}

.plan-info.pending-launch .message-intro {
    font-size: 15px;
    color: #4B5563;
    line-height: 1.6;
    margin-bottom: 24px;
}

.plan-info.pending-launch .purchase-details {
    background: transparent;
    border-radius: 0;
    padding: 0;
    margin-bottom: 24px;
}

.plan-info.pending-launch .detail-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid #E5E7EB;
}

.plan-info.pending-launch .detail-item:last-child {
    border-bottom: none;
}

.plan-info.pending-launch .check-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: #57725a;
    border-radius: 50%;
    color: #fff;
    flex-shrink: 0;
}

.plan-info.pending-launch .check-icon svg {
    stroke: currentColor;
}

.plan-info.pending-launch .detail-content {
    flex: 1;
}

.plan-info.pending-launch .detail-title {
    font-size: 15px;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 4px;
    font-family: "Outfit", Sans-serif;
}

.plan-info.pending-launch .detail-description {
    font-size: 13px;
    color: #6B7280;
    line-height: 1.5;
}

.plan-info.pending-launch .launch-info {
    background: #f1f1f1;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.plan-info.pending-launch .launch-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1F2937;
    margin: 0 0 12px 0;
    font-family: "Outfit", Sans-serif;
}

.plan-info.pending-launch .launch-info p {
    font-size: 14px;
    color: #4B5563;
    line-height: 1.6;
    margin: 0;
}

/* Plan Management - Upgrade Suggestion */
.upgrade-suggestion {
    position: relative;
    background: #57725A;
    border-radius: 10px;
    padding: 0;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
    color: #efe9d3;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    border: 1px solid #3B4E3D;
}

.upgrade-suggestion:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
}

.upgrade-suggestion .plan-name-top {
    padding: 12px 32px 0px !important;
    font-family: "Outfit", Sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    text-align: center;
    margin: 0;
    background: #3B4E3D;
}

.upgrade-suggestion .plan-badge-upgrade {
    width: 100%;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: 0.65px;
    text-transform: uppercase;
    color: #1f1f1f;
    background: #C5B68D;
    text-align: center;
}

.upgrade-suggestion .plan-content-wrapper {
    padding: 24px 32px 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.upgrade-suggestion .plan-description {
    font-size: 14px;
    color: #d8d3c2;
    margin: 0 0 14px 0;
}

.upgrade-suggestion .plan-header {
    text-align: left;
    margin-bottom: 16px;
}

.upgrade-suggestion .plan-price {
    margin: 0 0 8px 0;
    text-align: left;
    color: #FFFBEA;
    display: flex;
    align-items: center;
    gap: 4px;
}

.upgrade-suggestion .plan-price-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 14px;
}

.upgrade-suggestion .price-compare {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    text-decoration: line-through;
    color: #FFFBEA;
    opacity: 0.6;
    font-family: "Outfit", Sans-serif;
}

.upgrade-suggestion .price-discount-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 8px;
    background: #D74715;
    border: 2px solid #FFFBEA;
    color: #FFFBEA;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.upgrade-suggestion .price-amount {
    font-family: "Poiret One", Sans-serif;
    display: block;
    font-size: 48px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%;
    letter-spacing: 0.96px;
    text-transform: capitalize;
    color: #FFFBEA;
}

.upgrade-suggestion .price-period {
    font-size: 14px;
    color: #b8b1a1;
    font-weight: 400;
}

/* Upgrade Plan Features Styling */
.upgrade-suggestion .upgrade-plan-features {
    margin: 0 0 20px 0;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 251, 234, 0.15);
}

.upgrade-suggestion .plan-features-heading {
    display: block;
    margin-bottom: 12px;
    font-weight: 700;
    color: #f0ebd6;
    letter-spacing: 0.01em;
    font-size: 14px;
}

.upgrade-suggestion .plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: grid;
    gap: 10px;
    text-align: left;
}

.upgrade-suggestion .plan-features li {
    font-family: "Outfit", Sans-serif;
    position: relative;
    padding-left: 24px;
    color: #FFFBEA;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    text-align: left;
}

.upgrade-suggestion .plan-features li::before {
    content: '•';
    position: absolute;
    left: 8px;
    color: #e8e2cf;
    font-weight: 700;
}

.upgrade-suggestion .plan-features-footer {
    font-family: "Outfit", Sans-serif;
    font-size: 12px;
    color: rgba(255, 251, 234, 0.6);
    margin: 0;
    line-height: 1.6;
}

.upgrade-suggestion .btn {
    width: auto;
    align-self: flex-start;
    margin-top: auto;
    padding: 12px 32px;
}

/* Cancel membership section */
.danger-action {
    display: flex;
    flex-direction: column;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    width: 100%;
}

/* Features & Services Included Section */
.features-included {
    margin-bottom: 32px;
}

.features-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border-radius: 0 !important;
    grid-template-columns: none !important;
}

.feature-item {
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
    padding: 20px 0 !important;
    background: transparent !important;
    border: none !important;
    border-bottom: 1px solid #E5E7EB !important;
    border-radius: 0 !important;
}

.feature-item:last-child {
    border-bottom: none !important;
}

.feature-check {
    flex-shrink: 0 !important;
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    background: #57725A !important;
    border-radius: 50% !important;
    color: #FFFBEA !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.feature-text {
    font-family: "Outfit", Sans-serif !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #1F2937 !important;
    line-height: 1.5 !important;
}

.no-features {
    text-align: center;
    padding: 24px;
    color: #6B7280;
    font-style: italic;
}

@media (max-width: 768px) {
    .feature-item {
        padding: 16px 0 !important;
    }
}

.cancel-membership-warning {
    padding: 20px 24px;
    background: #F3F4F6;
    border-radius: 8px;
    width: 100%;
    text-align: left;
}

.cancel-membership-warning h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1F2937;
    margin: 0 0 8px 0;
    font-family: "Outfit", Sans-serif;
}

.cancel-membership-warning p {
    font-size: 14px;
    color: #4B5563;
    line-height: 1.6;
    margin: 0 0 16px 0;
}

.cancel-membership-link {
    display: inline-block;
    font-size: 13px;
    color: #6B7280;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.cancel-membership-link:hover {
    color: #E85D3C;
    text-decoration: underline;
}

.no-upgrade-available {
    text-align: center;
    padding: 20px;
    color: #6B7280;
}

.no-upgrade-available p {
    margin: 0;
    font-size: 15px;
}

.plan-actions .danger-action {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e0dcc8;
}

.plan-actions .danger-action .btn {
    width: 100%;
}

.plan-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #e0dcc8;
}

.detail-label {
    font-size: 13px;
    color: #7a7a7a;
    font-weight: 500;
    font-family: "Outfit", Sans-serif;
}

.detail-value {
    font-size: 14px;
    color: #241E1E;
    font-weight: 600;
    font-family: "Outfit", Sans-serif;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.action-buttons .btn {
    width: 100%;
    justify-content: center;
}

/* Payment & Address Info */
.payment-info,
.address-info {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: #f9f7f2;
    border-radius: 8px;
}

.payment-card-icon {
    color: #E2A422;
    flex-shrink: 0;
}

.payment-card-details,
.address-details {
    flex: 1;
}

.card-info,
.address-details {
    font-size: 14px;
    color: #241E1E;
    line-height: 1.6;
}

.card-actions {
    margin-top: 10px;
}

.btn-link {
    background: none;
    border: none;
    color: #E2A422;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    padding: 0;
    text-decoration: none;
}

.btn-link:hover {
    text-decoration: underline;
}

/* Transaction Table */
.transactions-table table {
    width: 100%;
    border-collapse: collapse;
}

.transactions-table th {
    background: #f9f7f2;
    padding: 12px;
    text-align: left;
    font-size: 12px;
    font-weight: 700;
    color: #7a7a7a;
    border-bottom: 2px solid #e0dcc8;
}

.transactions-table td {
    padding: 12px;
    border-bottom: 1px solid #e0dcc8;
    font-size: 14px;
    color: #241E1E;
}

.status-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.status-badge.status-active {
    background: #e7f3e0;
    color: #1f7a54;
}

.status-badge.status-pending {
    background: #fff3cd;
    color: #856404;
}

.status-badge.status-completed {
    background: #d4edda;
    color: #155724;
}

.status-badge.status-failed {
    background: #f8d7da;
    color: #721c24;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.service-card {
    padding: 20px;
    background: #f9f7f2;
    border: 1px solid #e0dcc8;
    border-radius: 8px;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.service-header h4 {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    color: #241E1E;
}

.service-description {
    font-size: 13px;
    color: #7a7a7a;
    line-height: 1.5;
    margin: 0;
}

/* Usage Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
}

.stats-grid .stat-item {
    text-align: center;
    padding: 15px;
    background: #f9f7f2;
    border-radius: 8px;
}

.stats-grid .stat-number {
    font-size: 24px;
    font-weight: 700;
    color: #E2A422;
    margin-bottom: 8px;
}

.stats-grid .stat-label {
    font-size: 12px;
    color: #7a7a7a;
}

/* Activity List */
.activity-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.activity-item {
    display: flex;
    gap: 15px;
    padding: 12px;
    background: #f9f7f2;
    border-radius: 6px;
}

.activity-time {
    font-size: 12px;
    font-weight: 600;
    color: #E2A422;
    min-width: 60px;
}

.activity-description {
    font-size: 13px;
    color: #241E1E;
}

/* Usage Services List */
.usage-services-card .membership-card-body {
    padding: 32px 24px;
}

.usage-services-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.usage-service-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 14px 18px;
    background: #f9f7f2;
    border: 1px solid #e0dcc8;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.usage-service-item:hover {
    background: #fff;
    border-color: #E2A422;
    transform: translateX(2px);
}

.service-item-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.service-item-left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.service-item-left svg {
    color: #1f7a54;
    flex-shrink: 0;
}

.service-name {
    font-size: 14px;
    font-weight: 500;
    color: #241E1E;
    line-height: 1.4;
}

/* Service Usage Info */
.service-usage-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.service-counter {
    font-size: 13px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.service-counter.available {
    background: #d1fae5;
    color: #065f46;
}

.service-counter.low {
    background: #fef3c7;
    color: #92400e;
}

.service-counter.depleted {
    background: #fee2e2;
    color: #991b1b;
}

.service-counter.unlimited {
    background: #dbeafe;
    color: #1e40af;
}

.service-reset-info {
    font-size: 11px;
    color: #999;
    font-style: italic;
    white-space: nowrap;
}

.service-status {
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.service-status.status-active {
    background: #d1fae5;
    color: #065f46;
}

.service-status.status-pending {
    background: #fef3c7;
    color: #92400e;
}

/* Profile Fields */
.profile-fields {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.field-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #FFFBEA;
}

.field-row:last-child {
    border-bottom: none;
}

.field-label {
    font-size: 13px;
    font-weight: 600;
    color: #7a7a7a;
}

.field-value {
    font-size: 14px;
    color: #241E1E;
    font-weight: 500;
}

/* Security Settings */
.security-options {
    display: flex;
    flex-direction: column;
}

.security-item {
    padding: 20px 0;
}

.security-item:first-child {
    padding-top: 0;
}

.security-label {
    font-size: 15px;
    font-weight: 700;
    color: #241E1E;
    margin-bottom: 5px;
}

.security-description {
    font-size: 13px;
    color: #7a7a7a;
    margin-bottom: 12px;
}

.security-divider {
    height: 1px;
    background: #FFFBEA;
    margin: 15px 0;
}

/* Danger Zone */
.danger-zone {
    border: 2px solid #E85D3C;
    background: rgba(232, 93, 60, 0.05);
}

/* Danger Zone - Collapsed State */
.danger-zone-collapsed {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.danger-zone-description {
    font-size: 14px;
    color: #6B7280;
    margin: 0;
    flex: 1;
}

.btn-danger-expand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: transparent;
    color: #E85D3C;
    border: 1px solid #E85D3C;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-danger-expand:hover {
    background: #E85D3C;
    color: white;
}

.btn-danger-expand svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* Danger Zone - Expanded State */
.danger-zone-expanded {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.danger-warning-box {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: #FEF2F2;
    border: 1px solid #FCA5A5;
    border-radius: 8px;
}

.danger-warning-box > svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.danger-warning-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: #991B1B;
    margin: 0 0 8px 0;
}

.danger-warning-content p {
    font-size: 14px;
    color: #7F1D1D;
    margin: 0 0 12px 0;
    line-height: 1.6;
}

.danger-warning-content strong {
    font-weight: 700;
    color: #991B1B;
}

.danger-warning-content ul {
    margin: 0;
    padding-left: 20px;
    list-style: disc;
}

.danger-warning-content ul li {
    font-size: 13px;
    color: #7F1D1D;
    margin-bottom: 6px;
    line-height: 1.5;
}

.danger-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

.btn-cancel-danger {
    padding: 10px 20px;
    background: transparent;
    color: #6B7280;
    border: 1px solid #D1D5DB;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-cancel-danger:hover {
    background: #F9FAFB;
    border-color: #9CA3AF;
    color: #374151;
}

.danger-actions .zoomies-btn-danger {
    padding: 10px 20px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.danger-actions .zoomies-btn-danger svg {
    width: 16px;
    height: 16px;
}

@media (max-width: 768px) {
    .danger-zone-collapsed {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .btn-danger-expand {
        width: 100%;
        justify-content: center;
    }
    
    .danger-warning-box {
        flex-direction: column;
    }
    
    .danger-actions {
        flex-direction: column-reverse;
        width: 100%;
    }
    
    .danger-actions .btn-cancel-danger,
    .danger-actions .zoomies-btn-danger {
        width: 100%;
        justify-content: center;
    }
}

.danger-warning {
    font-size: 12px;
    color: #E85D3C;
    margin: 0;
}

/* Help Center */
.help-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.help-category h4 {
    margin: 0 0 15px 0;
    font-size: 15px;
    font-weight: 700;
    color: #241E1E;
}

.help-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.help-link {
    color: #E2A422;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    padding: 8px 0;
    border-bottom: 1px solid #f0e5d5;
}

.help-link:hover {
    text-decoration: underline;
}

/* Support Methods */
.support-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.support-method {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: #f9f7f2;
    border-radius: 8px;
}

.support-method svg {
    color: #E2A422;
    flex-shrink: 0;
    margin-top: 3px;
}

.method-title {
    font-size: 14px;
    font-weight: 700;
    color: #241E1E;
    margin-bottom: 5px;
}

.support-method a {
    font-size: 13px;
    color: #E2A422;
    text-decoration: none;
}

.support-method a:hover {
    text-decoration: underline;
}

/* FAQs */
.faq-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    border: 1px solid #e0dcc8;
    border-radius: 6px;
    overflow: hidden;
}

.faq-item summary {
    padding: 15px;
    background: #f9f7f2;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #241E1E;
    user-select: none;
}

.faq-item summary:hover {
    background: #FFFBEA;
}

.faq-item p {
    padding: 15px;
    margin: 0;
    font-size: 13px;
    color: #7a7a7a;
    line-height: 1.6;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 40px 20px;
    color: #7a7a7a;
}

.empty-state p {
    margin: 0 0 15px 0;
    font-size: 14px;
}

/* ==================== End Page Content Styles ==================== */

/* ==================== End 3-Column Layout ==================== */

/* ==================== Fix body max-width constraint ==================== */
body.error-page .zoomies-membership-dashboard,
body.error-page .zoomies-registration-container {
    max-width: none;
}

body.error-page {
    max-width: none !important;
}

/* ==================== General Notices ==================== */
.zoomies-membership-notice,
.zoomies-membership-error {
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 8px;
    border-left: 4px solid;
}

.zoomies-membership-notice {
    background: #e7f3ff;
    border-color: #2196f3;
    color: #0d47a1;
}

.zoomies-membership-error {
    background: #ffebee;
    border-color: #f44336;
    color: #c62828;
}

/* ==================== Buttons ==================== */
.zoomies-btn-primary,
.zoomies-btn-secondary,
.zoomies-btn-disabled {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), 
                box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1), 
                background 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    font-family: "Outfit", Sans-serif;
}

.zoomies-btn-primary {
    background: #1f7a54;
    color: #ffffff;

}

.zoomies-btn-primary:hover {
    background: #216c4c;
    transform: translateY(-2px);
}

.zoomies-btn-primary:focus-visible {
    outline: 3px solid #E2A422;
    outline-offset: 2px;
    box-shadow: 0 4px 12px rgba(31, 122, 84, 0.3);
}

.zoomies-btn-secondary {
    background: #ffffff;
    color: #1f7a54;
    border: 2px solid #1f7a54;
}

.zoomies-btn-secondary:hover {
    background: #1f7a54;
    color: #ffffff;
}

.zoomies-btn-secondary:focus-visible {
    outline: 3px solid #E2A422;
    outline-offset: 2px;
    box-shadow: 0 2px 8px rgba(31, 122, 84, 0.2);
}

.zoomies-btn-disabled {
    background: #d4d4d4;
    color: #7a7a7a;
    cursor: not-allowed;
}

.zoomies-btn-danger {
    background: #E85D3C !important;
}

.zoomies-btn-danger:hover {
    background: #D74715 !important;
}

.zoomies-btn-danger:focus-visible {
    outline: 3px solid #E2A422;
    outline-offset: 2px;
    box-shadow: 0 4px 12px rgba(232, 93, 60, 0.3);
}

/* ==================== Membership Plans Grid ==================== */

/* Wrapper that holds the top badge + card together */
.membership-plan-item-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Floating pill badge above the card */
.plan-top-badge {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px 5px 14px;
    background: #E2A422;
    color: #171717;
    font-family: "Outfit", Sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.65px;
    text-transform: uppercase;
    border-radius: 100px;
    border: 3px solid #D74715;
    white-space: nowrap;
    pointer-events: none;
}

.zoomies-membership-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin: 0;
    padding-top: 0;
}

.zoomies-membership-plans .membership-plan-item-wrapper {
    display: contents;
}

.zoomies-membership-plans .membership-plan-item-wrapper:has(.plan-top-badge) {
    display: flex;
    flex-direction: column;
}

.membership-plan-item {
    position: relative;
    background: #3d5b4b;

    border-radius: 10px;
    padding: 0;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
    color: #efe9d3;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
}

.membership-plan-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
}

/* Plan name at top (displays above badge) */
.plan-name-top {
    padding: 12px 32px 0px;
    font-family: "Outfit", Sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    text-align: center;
    margin: 0;
}

/* Plan badges (full-width, not absolute) */
.plan-badge {
    width: 100%;
    padding: 3px 16px 10px;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 19.5px */
    letter-spacing: 0.65px;
    text-transform: uppercase;
    color: #1f1f1f;
 /*   background: #c5b88d; */
    text-align: center;
}

/* Content wrapper with padding */
.plan-content-wrapper {
    padding: 24px 32px 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}


.plan-badge-limited {
    background: #e89f3c;
    color: #000;
}

/* Card color themes per position */
.membership-plan-item-wrapper:nth-child(1) .membership-plan-item,
.membership-plan-item-wrapper:nth-child(2) .membership-plan-item {
    background: #57725A;
    border: 1px solid #3B4E3D;
}

/* Header group background for 1st and 2nd items */
.plan-header-group{
    padding: 10px 0;
}
.membership-plan-item-wrapper:nth-child(1) .plan-header-group,
.membership-plan-item-wrapper:nth-child(2) .plan-header-group {
    background: #3B4E3D;
}

.membership-plan-item-wrapper:nth-child(3) .plan-header-group {
    background: #FFFBEA;
}

.membership-plan-item-wrapper:nth-child(4) .plan-header-group {
    background: #FFF;
}

/* Badge styles for 1st and 2nd items */
.membership-plan-item-wrapper:nth-child(1) .plan-badge {
    color: rgb(255, 251, 234, 0.4);
}

.membership-plan-item-wrapper:nth-child(2) .plan-badge {
    color: #E2A422;
}


.membership-plan-item-wrapper:nth-child(3) .membership-plan-item {
    background: #3d5b4b;
    border: 2px solid #fff;
}

.membership-plan-item-wrapper:nth-child(3) .plan-name-top {
    background: #FFFBEA;
    color: #3B4E3D;
}

.membership-plan-item-wrapper:nth-child(3) .plan-badge {
    background: #FFFBEA;
    color: rgba(59, 78, 61, 0.6);
    border-bottom: 1px solid #FFFBEA;
}

/* Decorative SVG divider for 3rd card */
.plan-decorative-divider {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 16px 0;
}

.plan-decorative-divider svg {
    width: 100%;
    max-width: 100%;
    height: auto;
}

.membership-plan-item-wrapper:nth-child(4) .membership-plan-item {
    background: #252A25;
    color: #f2e6c8;
    border: 1px solid #FFF;
}

.membership-plan-item-wrapper:nth-child(4) .plan-name-top {
    background: #FFF;
    color: #171717;
}

.membership-plan-item-wrapper:nth-child(4) .plan-badge {
    background: #FFF;
    color: rgba(23, 23, 23, 0.6);
    border-bottom: 1px solid #FFFBEA;
}

.membership-plan-item-wrapper:nth-child(4) .plan-price,
.membership-plan-item-wrapper:nth-child(4) .plan-features li,
.membership-plan-item-wrapper:nth-child(4) .plan-availability,
.membership-plan-item-wrapper:nth-child(4) .plan-description {
    color: #FFFBEA;
}

.membership-plan-item-wrapper:nth-child(4) .plan-header {
    border-bottom-color: rgba(255, 199, 102, 0.2);
}


.plan-header {
    text-align: left;
    margin-bottom: 16px;
}

.plan-description {
    font-size: 14px;
    color: #d8d3c2;
    margin: 0 0 14px 0;
}

.plan-price {
    margin: 0 0 8px 0;
    text-align: left;
    color: #FFFBEA;
    display: flex;
    align-items: center;
    gap: 4px;
}

.plan-price-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 14px;
}

.price-separator {
    color: #FFFBEA;
    opacity: 0.6;
}

.price-discount-badge,
.price-spots-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 8px;
    background: #D74715;
    border: 2px solid  #FFFBEA;
    color: #FFFBEA;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-compare {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    text-decoration-line: line-through;
    text-decoration: line-through;
    color: #FFFBEA;
    opacity: 0.6;
    font-family: "Outfit", Sans-serif;
}

.price-amount {
    font-family: "Poiret One", Sans-serif;
    display: block;
font-size: 48px;
font-style: normal;
font-weight: 500;
line-height: 110%; /* 52.8px */
letter-spacing: 0.96px;
text-transform: capitalize;
color: #FFFBEA;
}

.price-period {
    font-size: 14px;
    color: #b8b1a1;
    font-weight: 400;
}

/* Capacity/Progress Bar */
.plan-capacity {
    margin: 0 0 16px 0;
}

.plan-capacity-bar {
    width: 100%;
    height: 2px;
    background: #3B4E3D;
    border-radius: 10px;
    overflow: hidden;
}

.plan-capacity-fill {
    height: 100%;
    background: #C5B88D;
    transition: width 0.3s ease;
    border-radius: 10px;
    width:100% !important;
}

.plan-availability {
    text-align: center;
    color: #cfc8b4;
    font-size: 13px;
    margin: 8px 0 0;
    display: none;
}

.plan-features-heading {
    display: block;
    margin-bottom: 12px;
    font-weight: 700;
    color: #f0ebd6;
    letter-spacing: 0.01em;
    font-size: 14px;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: grid;
    gap: 10px;
    text-align: left;
}

.plan-features li {
    font-family: "Outfit", Sans-serif;
    position: relative;
    padding-left: 24px;
    color: #FFFBEA;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
    text-align: left;
}

.plan-features li::before {
    content: '•';
    position: absolute;
    left: 8px;
    color: #e8e2cf;
    font-weight: 700;
}

.plan-features-footer {
    font-family: "Outfit", Sans-serif;
    margin-top: 12px;
    padding-top: 12px;
    color: #FFFBEA;
font-size: 13px;
font-style: normal;
font-weight: 500;
line-height: 150%; /* 19.5px */
letter-spacing: 0.65px;
text-transform: uppercase;
    text-align: left;
	margin-bottom:15px;
}

.plan-action {
    text-align: center;
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* ==================== Multi-Dog Discount ==================== */
.plan-multi-dog-breakdown {
    font-family: "Outfit", Sans-serif;
    margin: 0 0 12px;
    color: #FFFBEA;
}

.plan-multi-dog-breakdown .breakdown-rows {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.plan-multi-dog-breakdown .breakdown-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #FFFBEA;
    line-height: 1.4;
}

.plan-multi-dog-breakdown .breakdown-label {
    font-weight: 500;
}

.plan-multi-dog-breakdown .breakdown-row.is-discounted .breakdown-label {
    color: #ffd6c9;
}

.plan-multi-dog-breakdown .breakdown-value {
    font-weight: 600;
}

.plan-multi-dog-breakdown .breakdown-divider {
    height: 1px;
    background: rgba(255, 251, 234, 0.3);
    margin: 12px 0;
}

.plan-multi-dog-breakdown .breakdown-savings {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    color: #ffd6c9;
}

/* ==================== Quantity Selector ==================== */
.plan-quantity-selector {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.quantity-label {
    font-family: "Outfit", Sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #FFFBEA;
    text-align: left;
    letter-spacing: 0.3px;
    flex-shrink: 0;
}

.quantity-controls {
    display: inline-flex;
    align-items: center;
    gap: 0;
    justify-content: center;
    border: 1px solid #FFFBEA;
    border-radius: 100px;
    overflow: hidden;
}

.qty-decrease,
.qty-increase {
    width: 40px;
    height: 36px;
    border: none;
    background: transparent;
    color: #FFFBEA;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: "Outfit", Sans-serif;
    line-height: 1;
    padding: 0;
}

.qty-decrease:hover,
.qty-increase:hover {
    background: #FFFBEA;
    color: #241E1E;
}

.qty-decrease:active,
.qty-increase:active {
    transform: scale(0.95);
}

.qty-input {
    width: 44px;
    height: 36px;
    text-align: center;
    font-family: "Outfit", Sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #FFFBEA;
    background: transparent;
    border: none;
    border-left: 1px solid rgba(255, 251, 234, 0.3);
    border-right: 1px solid rgba(255, 251, 234, 0.3);
    pointer-events: none;
    appearance: textfield;
    -moz-appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.plan-quantity-note {
    font-family: "Outfit", Sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #f6e0b1;
    text-align: left;
    letter-spacing: 0.3px;
}

/* Quantity selector theme for 1st and 2nd items */
.membership-plan-item-wrapper:nth-child(1) .quantity-label,
.membership-plan-item-wrapper:nth-child(2) .quantity-label {
    color: #fff;
}

.membership-plan-item-wrapper:nth-child(1) .quantity-controls,
.membership-plan-item-wrapper:nth-child(2) .quantity-controls {
    border-color: #fff;
}

.membership-plan-item-wrapper:nth-child(1) .qty-decrease,
.membership-plan-item-wrapper:nth-child(1) .qty-increase,
.membership-plan-item-wrapper:nth-child(2) .qty-decrease,
.membership-plan-item-wrapper:nth-child(2) .qty-increase {
    color: #fff;
}

.membership-plan-item-wrapper:nth-child(1) .qty-decrease:hover,
.membership-plan-item-wrapper:nth-child(1) .qty-increase:hover,
.membership-plan-item-wrapper:nth-child(2) .qty-decrease:hover,
.membership-plan-item-wrapper:nth-child(2) .qty-increase:hover {
    background: #E2A422;
    color: #241E1E;
}

.membership-plan-item-wrapper:nth-child(1) .qty-input,
.membership-plan-item-wrapper:nth-child(2) .qty-input {
    color: #fff;
    border-left-color: rgba(255, 255, 255, 0.3);
    border-right-color: rgba(255, 255, 255, 0.3);
}

/* Quantity selector theme for 3rd item */
.membership-plan-item-wrapper:nth-child(3) .quantity-label {
    color: #FFFBEA;
}

.membership-plan-item-wrapper:nth-child(3) .quantity-controls {
    border-color: #FFFBEA;
}

.membership-plan-item-wrapper:nth-child(3) .qty-decrease,
.membership-plan-item-wrapper:nth-child(3) .qty-increase {
    color: #FFFBEA;
}

.membership-plan-item-wrapper:nth-child(3) .qty-decrease:hover,
.membership-plan-item-wrapper:nth-child(3) .qty-increase:hover {
    background: #FFFBEA;
    color: #241E1E;
}

.membership-plan-item-wrapper:nth-child(3) .qty-input {
    color: #FFFBEA;
}

/* Quantity selector theme for 4th item */
.membership-plan-item-wrapper:nth-child(4) .quantity-label {
    color: #FFFBEA;
}

.membership-plan-item-wrapper:nth-child(4) .quantity-controls {
    border-color: #E2A422;
}

.membership-plan-item-wrapper:nth-child(4) .qty-decrease,
.membership-plan-item-wrapper:nth-child(4) .qty-increase {
    color: #E2A422;
}

.membership-plan-item-wrapper:nth-child(4) .qty-decrease:hover,
.membership-plan-item-wrapper:nth-child(4) .qty-increase:hover {
    background: #E2A422;
    color: #241E1E;
}

.membership-plan-item-wrapper:nth-child(4) .qty-input {
    color: #FFFBEA;
    border-left-color: rgba(226, 164, 34, 0.3);
    border-right-color: rgba(226, 164, 34, 0.3);
}

/* Last card styling - tablet only */
@media (min-width: 769px) and (max-width: 1024px) {
    .membership-plan-item-wrapper:last-child {
        margin-top: 0;
    }
    .zoomies-membership-plans {
        row-gap: 44px;
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .membership-plan-item-wrapper:last-child {
        margin-top: 20px;
    }
    .quantity-label {
        font-size: 13px;
    }
    
    .qty-decrease,
    .qty-increase {
        width: 36px;
        height: 34px;
        font-size: 18px;
    }
    
    .qty-input {
        width: 40px;
        height: 34px;
        font-size: 16px;
    }
}

.membership-plan-item .zoomies-btn-primary {
    background: #ffffff;
    color: #241E1E;
 
    border: 1px solid #fff;
    border-radius: 300px;
    padding: 12px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    width: 100%;
    text-decoration: none;
    text-transform: uppercase;
}

/* Button styles for 1st and 2nd items */
.membership-plan-item-wrapper:nth-child(1) .zoomies-btn-primary,
.membership-plan-item-wrapper:nth-child(2) .zoomies-btn-primary {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
 border-radius: 300px;
    padding: 12px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    width: 100%;
    text-decoration: none;
}

.membership-plan-item .zoomies-btn-primary::after {
    content: '\2192';
    font-size: 16px;
    line-height: 1;
}

/* Hide default arrow for all items */
.membership-plan-item-wrapper:nth-child(1) .zoomies-btn-primary::after,
.membership-plan-item-wrapper:nth-child(2) .zoomies-btn-primary::after,
.membership-plan-item-wrapper:nth-child(3) .zoomies-btn-primary::after,
.membership-plan-item-wrapper:nth-child(4) .zoomies-btn-primary::after {
    content: none;
}

/* Button hover for 1st and 2nd items */
.membership-plan-item-wrapper:nth-child(1) .zoomies-btn-primary:hover,
.membership-plan-item-wrapper:nth-child(2) .zoomies-btn-primary:hover {
    border: 1px solid #FFFBEA;
    background: #E2A422;
    color: #241E1E;
    transform: translateY(-2px);
}

/* Button press/focus state for 1st and 2nd items */
.membership-plan-item-wrapper:nth-child(1) .zoomies-btn-primary:active,
.membership-plan-item-wrapper:nth-child(2) .zoomies-btn-primary:active,
.membership-plan-item-wrapper:nth-child(1) .zoomies-btn-primary:focus,
.membership-plan-item-wrapper:nth-child(2) .zoomies-btn-primary:focus {
    background: #D74715;
    border: 1px solid #FFFBEA;
    color: #D6CAC0;
}

/* Change SVG arrow color on press/focus for 1st and 2nd items */
.membership-plan-item-wrapper:nth-child(1) .zoomies-btn-primary:active path,
.membership-plan-item-wrapper:nth-child(2) .zoomies-btn-primary:active path,
.membership-plan-item-wrapper:nth-child(1) .zoomies-btn-primary:focus path,
.membership-plan-item-wrapper:nth-child(2) .zoomies-btn-primary:focus path {
    stroke: #D6CAC0 !important;
}

/* Change SVG arrow color on hover for 1st and 2nd items */
.membership-plan-item-wrapper:nth-child(1) .zoomies-btn-primary:hover path,
.membership-plan-item-wrapper:nth-child(2) .zoomies-btn-primary:hover path {
    stroke: #241E1E;
}

/* Default button hover state (3rd and 4th items) */
.membership-plan-item .zoomies-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

/* Button hover for 3rd item */
.membership-plan-item-wrapper:nth-child(3) .zoomies-btn-primary:hover {
    background: #E2A422;
    color: #241E1E;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

/* Change SVG arrow color on hover for 3rd item */
.membership-plan-item-wrapper:nth-child(3) .zoomies-btn-primary:hover path {
    stroke: #241E1E;
}

/* Button press/focus state for 3rd item */
.membership-plan-item-wrapper:nth-child(3) .zoomies-btn-primary:active,
.membership-plan-item-wrapper:nth-child(3) .zoomies-btn-primary:focus {
    background: #D74715;
    color: #D6CAC0;
}

/* Change SVG arrow color on press/focus for 3rd item */
.membership-plan-item-wrapper:nth-child(3) .zoomies-btn-primary:active path,
.membership-plan-item-wrapper:nth-child(3) .zoomies-btn-primary:focus path {
    stroke: #D6CAC0;
}

/* Default button style for 4th item */
.membership-plan-item-wrapper:nth-child(4) .zoomies-btn-primary {
    background: #E2A422;
    color: #241E1E;
    border: 1px solid #E2A422;
}

/* Button hover for 4th item */
.membership-plan-item-wrapper:nth-child(4) .zoomies-btn-primary:hover {
    background: #FFFBEA;
    color: #241E1E;
    border: 1px solid #FFFBEA;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

/* Change SVG arrow color on hover for 4th item */
.membership-plan-item-wrapper:nth-child(4) .zoomies-btn-primary:hover path {
    stroke: #241E1E;
}

/* Button press/focus state for 4th item */
.membership-plan-item-wrapper:nth-child(4) .zoomies-btn-primary:active,
.membership-plan-item-wrapper:nth-child(4) .zoomies-btn-primary:focus {
    background: #D74715;
    color: #D6CAC0;
}

/* Change SVG arrow color on press/focus for 4th item */
.membership-plan-item-wrapper:nth-child(4) .zoomies-btn-primary:active path,
.membership-plan-item-wrapper:nth-child(4) .zoomies-btn-primary:focus path {
    stroke: #D6CAC0;
}

/* ==================== Dashboard ==================== */
.zoomies-membership-dashboard {
    margin: 0 auto;

}

/* ==================== Dashboard Navigation ==================== */
.dashboard-navigation {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-bottom: 32px;
    padding: 16px 0;
    border-bottom: 1px solid #e5e7eb;
}

.dashboard-nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none !important;
    color: #1A1A1A;
    background: transparent;
    border: none;
    transition: all 0.25s ease;
    cursor: pointer;
    
}

.dashboard-nav-btn svg {
    width: 16px;
    height: 16px;
    transition: all 0.25s ease;
}

.dashboard-nav-btn:hover {
    background: #E2A422;
    color: #1A1A1A;
    transform: translateY(-2px);
}

.dashboard-nav-btn:hover svg {
    stroke: #1A1A1A;
}

.dashboard-nav-btn:active,
.dashboard-nav-btn:focus {
    background: #D74715;
    color: #fff;
    transform: translateY(0);
}

.dashboard-nav-btn:active svg,
.dashboard-nav-btn:focus svg {
    stroke: #fff;
}

.dashboard-logout-btn {
    color: #dc2626;
}

.dashboard-logout-btn:hover {
    background: #dc2626;
    color: #fff;
}

.dashboard-logout-btn:hover svg {
    stroke: #fff;
}

.dashboard-logout-btn:active,
.dashboard-logout-btn:focus {
    background: #991b1b;
    color: #fff;
}

.dashboard-logout-btn:active svg,
.dashboard-logout-btn:focus svg {
    stroke: #fff;
}

/* ==================== Welcome Section ==================== */
.dashboard-welcome {
    margin-bottom: 32px;
}

.dashboard-welcome h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0 0 8px 0;
}

.dashboard-subtitle {
    font-size: 16px;
    color: #666;
    margin: 0;
}

/* ==================== Expiration Warning ==================== */
.expiration-warning {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    border-radius: 12px;

    border: none;
    transition: all 0.3s ease;
}

.expiration-warning .warning-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;

}

.expiration-warning .warning-content {
    flex: 1;
}

.expiration-warning .warning-content p {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
}

.expiration-warning .warning-action {
    flex-shrink: 0;
}

.expiration-warning .btn-renew {
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}

/* Info Level (30-15 days) - Orange */
.expiration-warning.expiration-info {
    background: #D74715 !important;
    color: #fff !important;
}

.expiration-warning.expiration-info .warning-icon {
    color: #fff !important;
}

.expiration-warning.expiration-info .btn-renew {
    background: #241E1E;
    color: #ffffff;
}

.expiration-warning.expiration-info .btn-renew:hover {
    background: #3A3230;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(36, 30, 30, 0.3);
}

/* Inline activation button in warning banner */
.btn-activate-inline {
    display: inline-block;
    background: #E2A422;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-left: 12px;
}

.btn-activate-inline:hover {
    background: #C89419;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(226, 164, 34, 0.3);
}

.btn-activate-inline:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Warning Level (14-8 days) - Yellow/Orange */
.expiration-warning.expiration-warning {
    background: #FEF3C7;
    border-color: #F59E0B;
    color: #92400E;
}

.expiration-warning.expiration-warning .warning-icon {
 
    color: #ffffff;
}

.expiration-warning.expiration-warning .btn-renew {
    background: #F59E0B;
    color: #ffffff;
}

.expiration-warning.expiration-warning .btn-renew:hover {
    background: #D97706;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

/* Danger Level (7 days or less, expired) - Red */
.expiration-warning.expiration-danger {
    background: #FEE2E2;
    border-color: #EF4444;
    color: #991B1B;
}

.expiration-warning.expiration-danger .warning-icon {
    background: #EF4444;
    color: #ffffff;
}

.expiration-warning.expiration-danger .btn-renew {
    background: #EF4444;
    color: #ffffff;
}

.expiration-warning.expiration-danger .btn-renew:hover {
    background: #DC2626;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

/* ==================== Benefits Showcase Section ==================== */
.dashboard-benefits-section {
    background: #57725A;
    border-radius: 8px;
    padding: 32px;
    margin-bottom: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.benefits-header {
    margin-bottom: 24px;
    text-align: center;
}

.benefits-header h3 {
    color: #FFFFFF;
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.benefits-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    margin: 0;
    line-height: 1.5;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(4px);
}

.benefit-check {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    stroke: #C5B88D;
}

.benefit-text {
    flex: 1;
    color: #FFFFFF;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 500;
}

/* ==================== Dashboard Sections ==================== */


.dashboard-section.quick-actions {
    padding: 24px;
    background: #fff;
    border-radius: 12px;
}

/* Quick Actions Header */
.quick-actions-header {
    margin-bottom: 20px;
}

.quick-actions-header h3 {
    font-family: 'Poiret One', cursive;
    font-size: 22px;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.quick-actions-header h3::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #E2A422;
    border-radius: 50%;
    display: inline-block;
}

.quick-actions-subtitle {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    color: #6B7280;
    margin: 0;
}

/* Category Sections */
.quick-actions-category {
    margin-bottom: 20px;
}

.quick-actions-category:last-child {
    margin-bottom: 0;
}

.category-label {
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #1A1A1A;
    margin-bottom: 10px;
    padding-left: 12px;
    border-left: 3px solid #E2A422;
}

.dashboard-section h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1A1A1A;
    padding-bottom: 15px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.section-header h3 {
    margin: 0;
}

.code-count {
    font-size: 14px;
    color: #666;
    background: #f3f4f6;
    padding: 4px 12px;
    border-radius: 12px;
    font-weight: 600;
}

/* ==================== Modern Membership Card ==================== */
.dashboard-section.membership-info {
border: none !important;
padding:0 !important;
margin-bottom: 32px;
}

.membership-card-modern {
    background: #2D2D2D;
    border-radius: 10px;
    padding: 32px;
    color: #fff;
}

/* Card Header */
.membership-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 32px;
    padding-bottom: 24px;

}

.membership-header-left {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.membership-title {
    font-size: 20px;
    font-weight: 600;
    color: #fff !important;
    margin: 0;
}

.membership-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: #C5B68D;
    border-radius: 20px;
    font-weight: 500;
    font-size: 14px;
    color: #000;
    width: fit-content;
}

.membership-badge-pill svg {
    width: 12px;
    height: 12px;
    stroke: #000;
}

.membership-card-modern .membership-status-badge,
.membership-status-badge {
    padding: 8px 20px;
    background: #E2A422 !important;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #000 !important;
    text-transform: capitalize;
}

.membership-card-modern .membership-status-badge.status-active,
.membership-status-badge.status-active {
    background: #E2A422 !important;
    color: #000 !important;
    padding: 8px 20px;
    font-size:12px;
    border-radius:100px;
}

.membership-status-badge.status-expired,
.membership-status-badge.status-canceled {
    background: #ef4444;
    color: #fff;
}

/* Info Grid */
.membership-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

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

.info-label {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.info-value {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    line-height: 1.4;
}

/* Card Footer */
.membership-card-footer {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    justify-content: flex-start;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-cancel-membership {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;

    font-size: 14px;
    font-weight: 500;
    color: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
        background: #FFFBEA;
    color: #241E1E;
    border-color: #E0E0E0;
}

.btn-cancel-membership:hover {
     background: #F0A820;
    color: #1A1A1A;
    border-color: #F0A820;
}
.btn-cancel-membership:focus {
    background: #E85D3C;
    color: #FFFFFF;
    border-color: #E85D3C;
}


.btn-cancel-membership svg {
    width: 16px;
    height: 16px;
}

/* ==================== Quick Actions ==================== */
.quick-actions-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Card-based Quick Action Items */
.quick-action-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    background: #fff;
    color: #1A1A1A;
    text-decoration: none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    transition: all 0.25s ease;
    position: relative;
}

.quick-action-card:hover {
    
}

.quick-action-card:hover .action-icon {

}

.quick-action-card:hover .action-title {

}

.quick-action-card:hover .action-description {

}

.quick-action-card:hover .action-arrow {

}

.quick-action-card:active {
    transform: translateY(0);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

/* Featured Card (View Other Plans) */
.quick-action-card.is-featured {
    background: #6B7F6C;
    border-color: #6B7F6C;
    color: #fff;
    padding: 20px 18px;
}

.quick-action-card.is-featured:hover {
    background: #5D6F5E;
    border-color: #5D6F5E;
    transform: translateY(-2px);
}

.quick-action-card.is-featured .action-icon {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 44px;
    height: 44px;
}

.quick-action-card.is-featured .action-title {
    color: #fff;
    font-weight: 600;
}

.quick-action-card.is-featured .action-description {
    color: rgba(255, 255, 255, 0.85);
}

.quick-action-card.is-featured .action-arrow {
    color: #fff;
}

/* Danger Action (Logout) */
.quick-action-card.card-danger:hover {
    border-color: #fca5a5;
    background: #fef2f2;
}

.quick-action-card.card-danger .action-icon {
    background: #fee2e2;
    color: #dc2626;
}

.quick-action-card.card-danger .action-title {
    color: #dc2626;
}

/* Action Icon */
.action-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #f3f4f6;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.25s ease;
}

.action-icon svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

/* Action Content */
.action-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.action-title {
    font-weight: 600;
    font-size: 15px;
    line-height: 1.3;
    color: #1A1A1A;
}

.action-description {
    font-size: 13px;
    line-height: 1.3;
    color: #6B7280;
}

/* Action Arrow Indicator */
.action-arrow {
    color: #9CA3AF;
    transition: all 0.25s ease;
    opacity: 0.6;
}

.quick-action-card:hover .action-arrow {
    opacity: 1;
    transform: translateX(2px);
}

.action-arrow svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
}

/* Download Icon */
.action-download {
    color: #9CA3AF;
    transition: all 0.25s ease;
    opacity: 0.6;
}

.quick-action-card:hover .action-download {
    opacity: 1;
    color: #E2A422;
}

.action-download svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
}

/* Document Link Cards - Minimal styling for page links */
.quick-action-card.document-link {
    padding: 0;
    border: none;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    gap: 12px;
}

.quick-action-card.document-link:hover {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
    transform: none;
}

.quick-action-card.document-link .action-icon {
    width: 20px;
    height: 20px;
    background: transparent;
    color: #57725a;
}

.quick-action-card.document-link .action-icon svg {
    width: 18px;
    height: 18px;
}

.quick-action-card.document-link .action-title {
    font-family: 'Outfit', sans-serif;
    color: #57725a;
    font-weight: 500;
    transition: color 0.2s ease;
}

.quick-action-card.document-link:hover .action-title {
    color: #495d4c;
    text-decoration: underline;
}

.quick-action-card.document-link .action-description {
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    color: #9CA3AF;
}

.quick-action-card.document-link .action-arrow {
    display: none;
}

/* Support Card */
.support-card {
    background: #f1f1f1;
    padding: 18px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    border-radius: 12px;
    cursor: default;
}

.support-card:hover {
    transform: none;
  
}

.support-card .action-icon {
    background: transparent;
    color: #57725A;
    border: none;
    width: 44px;
    height: 44px;
}

.support-card .action-icon svg {
    width: 44px;
    height: 44px;
}

.support-card .action-content {
    gap: 6px;
}

.support-card .action-title {
    font-weight: 600;
    font-size: 15px;
    color: #1A1A1A;
}

.support-card .action-description {
    font-size: 13px;
    color: #717171;
    margin-bottom: 8px;
}

.support-link {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #57725a;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: all 0.2s ease;
}

.support-link:hover {
    color: #3b4e3d;
    gap: 6px;
}

/* ==================== Quick Actions Groups ==================== */
.quick-actions-group {
    margin-bottom: 28px;
}

.quick-actions-group:last-child {
    margin-bottom: 0;
}

.quick-actions-group-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 4px 12px 4px;
    margin-bottom: 12px;
    border-bottom: 2px solid #f3f4f6;
}

.quick-actions-group-header svg {
    width: 18px;
    height: 18px;
    stroke: #E2A422;
    flex-shrink: 0;
}

.quick-actions-group-header h4 {
    margin: 0;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #64748b;
}

/* Grouped Quick Actions List */
.quick-actions-group .quick-actions-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* ==================== Invite Codes Section ==================== */
.dashboard-section.invite-codes {
    background: #FFFBEA;
    padding: 28px;
    border-radius: 12px;
}

.invite-codes .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.invite-codes .section-header h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.invite-codes .section-header h3 svg {
    color: #E2A422;
}

.section-header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.code-count {
    font-size: 14px;
    color: #64748b;
    font-weight: 600;
}

/* ==================== Invite Codes Grid ==================== */
.invite-codes-grid {
    display: grid;
    gap: 16px;
}

.invite-code-card {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.25s ease;
    position: relative;
}

.invite-code-card:hover {
    border-color: #E2A422;
    box-shadow: 0 4px 12px rgba(226, 164, 34, 0.15);
    transform: translateY(-2px);
}

.invite-code-card.expired,
.invite-code-card.maxed-out {
    opacity: 0.6;
    background: #f9fafb;
}

.code-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.code-value {
    background: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    font-size: 18px;
    font-weight: 700;
    color: #E2A422;
    border: 2px solid #e5e7eb;
    letter-spacing: 1px;
}

.code-actions {
    display: flex;
    gap: 8px;
}

.copy-code-btn,
.share-code-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    background: #1A1A1A;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.copy-code-btn:hover {
    background: #10b981;
    transform: translateY(-2px);
}

.share-code-btn:hover {
    background: #E2A422;
    transform: translateY(-2px);
}

.copy-code-btn svg,
.share-code-btn svg {
    width: 16px;
    height: 16px;
}

.code-usage-bar {
    height: 6px;
    background: #e2e8f0;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 12px;
}

.usage-progress {
    height: 100%;
    background: linear-gradient(90deg, #10b981 0%, #E2A422 50%, #ef4444 100%);
    transition: width 0.3s ease;
}

.code-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.code-stat {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #475569;
}

.code-stat strong {
    color: #1e293b;
}

.code-stat svg {
    width: 14px;
    height: 14px;
    stroke: #E2A422;
}

.code-status {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.code-status.status-active {
    background: #d1fae5;
    color: #065f46;
}

.code-status.expired,
.code-status.maxed {
    background: #fee2e2;
    color: #991b1b;
}

.code-expiry {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #64748b;
    margin-top: 8px;
}

.code-expiry.expired {
    color: #ef4444;
    font-weight: 600;
}

.code-expiry svg {
    width: 12px;
    height: 12px;
}

.view-usage-btn {
    width: 100%;
    margin-top: 12px;
    padding: 10px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    color: #475569;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.view-usage-btn:hover {
    background: #e2e8f0;
    color: #1e293b;
}

.view-usage-btn svg {
    width: 14px;
    height: 14px;
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-state svg {
    color: #cbd5e1;
    margin-bottom: 16px;
}

.empty-state p {
    color: #64748b;
    font-size: 16px;
    margin: 0 0 8px 0;
}

.empty-state .empty-state-desc {
    font-size: 14px;
    color: #94a3b8;
    margin-bottom: 24px;
}

/* Share Code Modal */
.share-code-display,
.share-url-display {
    margin-bottom: 24px;
}

.share-code-display label,
.share-url-display label {
    display: block;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
    font-size: 14px;
}

.code-display-box,
.url-display-box {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 12px 16px;
}

.code-display-box code {
    flex: 1;
    font-family: 'Courier New', monospace;
    font-size: 20px;
    font-weight: 700;
    color: #E2A422;
    letter-spacing: 1px;
}

.url-display-box input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 14px;
    color: #475569;
    outline: none;
}

.copy-share-code-btn,
.copy-share-url-btn {
    padding: 8px;
    background: #1e293b;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.copy-share-code-btn:hover,
.copy-share-url-btn:hover {
    background: #10b981;
}

.copy-share-code-btn svg,
.copy-share-url-btn svg {
    width: 16px;
    height: 16px;
}

.share-methods {
    padding-top: 24px;
    border-top: 1px solid #e2e8f0;
}

.share-methods h4 {
    font-size: 14px;
    font-weight: 600;
    color: #475569;
    margin: 0 0 16px 0;
}

.share-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    background: white;
    color: #1e293b;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.share-btn svg {
    width: 20px;
    height: 20px;
}

.email-btn:hover {
    background: #f3f4f6;
    border-color: #d1d5db;
}

.twitter-btn:hover {
    background: #e0f2fe;
    border-color: #38bdf8;
    color: #0284c7;
}

.facebook-btn:hover {
    background: #dbeafe;
    border-color: #3b82f6;
    color: #1e40af;
}

.whatsapp-btn:hover {
    background: #d1fae5;
    border-color: #10b981;
    color: #065f46;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.spin {
    animation: spin 1s linear infinite;
}

@media (max-width: 768px) {
    .invite-codes .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .section-header-actions {
        width: 100%;
        justify-content: space-between;
    }
    
    .code-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .code-actions {
        width: 100%;
        justify-content: flex-end;
    }
    
    .share-buttons {
        grid-template-columns: 1fr;
    }
}

.code-status.status-active {
    background: #d1fae5;
    color: #065f46;
}

.code-status.status-expired {
    background: #fee2e2;
    color: #991b1b;
}

.code-expiry {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #666;
}

.code-expiry svg {
    width: 12px;
    height: 12px;
    stroke: #666;
}

/* ==================== Transactions List / Activity Log ==================== */
.dashboard-section.transactions {
    background: #ffffff;
    border-radius: 12px;
    padding: 28px;
    border: 1px solid #e0dcc8;
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
.section-header-inline {
    flex-wrap:nowrap;
}
}
.section-header-inline {
    display: flex;

    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid #f3f4f6;
}

.section-header-inline h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #1A1A1A;
}

.section-header-inline h3 svg {
    stroke: #E2A422;
}

.activity-count {
    font-size: 13px;
    font-weight: 600;
    color: #666;
    padding: 4px 12px;
    background: #f3f4f6;
    border-radius: 12px;
}

.transactions-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.transaction-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px;
    background: #f9fafb;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    transition: all 0.25s ease;
}

.transaction-item:hover {
    border-color: #E2A422;
    box-shadow: 0 4px 12px rgba(226, 164, 34, 0.1);
    transform: translateY(-2px);
}

.transaction-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #fff;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    flex-shrink: 0;
    transition: all 0.25s ease;
}

.transaction-item:hover .transaction-icon {
    transform: scale(1.1);
}

.transaction-icon svg {
    width: 18px;
    height: 18px;
}

.transaction-details {
    flex: 1;
}

.transaction-type {
    font-size: 16px;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 6px;
}

.transaction-date {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #666;
}

.transaction-date svg {
    width: 12px;
    height: 12px;
    stroke: #94a3b8;
}

.transaction-amount {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
}

.transaction-amount .amount {
    font-size: 18px;
    font-weight: 700;
    color: #1A1A1A;
}

.status-badge {
    padding: 5px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.status-completed,
.status-badge.status-succeeded {
    background: #d1fae5;
    color: #065f46;
}

.status-badge.status-pending,
.status-badge.status-processing {
    background: #fef3c7;
    color: #92400e;
}

.status-badge.status-failed,
.status-badge.status-canceled {
    background: #fee2e2;
    color: #991b1b;
}

.status-badge.status-refunded {
    background: #e0e7ff;
    color: #3730a3;
}

/* ==================== Empty States ==================== */
.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 24px;
    text-align: center;
}

.empty-state svg {
    width: 48px;
    height: 48px;
    stroke: #d1d5db;
    margin-bottom: 16px;
}

.empty-state p {
    font-size: 16px;
    color: #666;
    margin: 0 0 16px 0;
}

/* ==================== Responsive Design ==================== */

/* Tablet (1024px and below) */
@media (max-width: 1024px) {
    .dashboard-main-grid {
        grid-template-columns: 1fr;
    }
    
    .dashboard-column-right {
        position: static;
        top: 0;
    }
    
    .membership-card-modern {
        padding: 24px;
    }
    
    .membership-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet and smaller - Stack membership card header */
@media (max-width: 900px) {
    .membership-card-header {
        flex-direction: column !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        gap: 12px;
    }
}

/* Mobile (768px and below) */
@media (max-width: 768px) {
    /* Dashboard Container */
    .zoomies-membership-dashboard {
        padding: 16px;
    }
    
    /* Welcome Section */
    .dashboard-welcome {
        margin-bottom: 24px;
    }
    
    .dashboard-welcome h2 {
        font-size: 24px;
        line-height: 1.2;
    }
    
    .dashboard-subtitle {
        font-size: 14px;
    }
    
    /* Navigation */
    .dashboard-navigation {
        flex-direction: column;
        gap: 8px;
    }
    
    .dashboard-nav-btn {
        justify-content: center;
        width: 100%;
        text-decoration: none;
    }
    
    /* Expiration Warning */
    .expiration-warning {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 16px;
    }
    
    .expiration-warning .warning-icon {
        width: 36px;
        height: 36px;
    }
    
    .expiration-warning .warning-icon svg {
        width: 100%;
        height: 100%;
    }
    
    .expiration-warning .warning-content p {
        font-size: 14px;
    }
    
    .expiration-warning .warning-action {
        width: 100%;
    }
    
    .expiration-warning .btn-renew {
        width: 100%;
        text-align: center;
        padding: 12px 16px;
    }
    
    /* Main Grid */
    .dashboard-main-grid {
        gap: 20px;
        margin-bottom: 24px;
    }
    
    /* Dashboard Sections */
    .dashboard-section {
        padding: 20px;
        border-radius: 10px;
    }
    
    .dashboard-section h3 {
        font-size: 18px;
    }
    
    /* Membership Card */
    .membership-card-modern {
        padding: 20px;
    }
    
    .membership-title {
        font-size: 20px;
    }
    
    .membership-badge-pill {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .membership-info-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .info-label {
        font-size: 10px;
    }
    
    .info-value {
        font-size: 14px;
    }
    
    .membership-card-footer {
        flex-direction: column;
        gap: 12px;
    }
    
    .membership-card-footer .btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Benefits Section */
    .dashboard-benefits-section {
        padding: 24px;
    }
    
    .benefits-header h3 {
        font-size: 20px;
    }
    
    .benefits-subtitle {
        font-size: 14px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .benefit-item {
        padding: 12px;
    }
    
    .benefit-text {
        font-size: 14px;
    }
    
    /* Activity Log / Transactions */
    .section-header-inline {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .section-header-inline h3 {
        font-size: 18px;
    }
    
    .transaction-item {
        flex-direction: row;
        flex-wrap: wrap;
        padding: 14px;
    }
    
    .transaction-icon {
        width: 40px;
        height: 40px;
    }
    
    .transaction-icon svg {
        width: 16px;
        height: 16px;
    }
    
    .transaction-details {
        flex: 1;
        min-width: 0;
    }
    
    .transaction-type {
        font-size: 15px;
    }
    
    .transaction-date {
        font-size: 12px;
    }
    
    .transaction-amount {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin-top: 8px;
        padding-top: 8px;
        border-top: 1px solid #e5e7eb;
    }
    
    .transaction-amount .amount {
        font-size: 16px;
    }
    
    /* Quick Actions */
    .quick-actions-grid,
    .quick-actions-list {
        grid-template-columns: 1fr;
    }
    
    .quick-action-card {
        padding: 14px;
    }
    
    .action-icon {
        width: 36px;
        height: 36px;
    }
    
    .action-icon svg {
        width: 16px;
        height: 16px;
    }
    
    .action-title {
        font-size: 15px;
    }
    
    .action-description {
        font-size: 12px;
    }
    
    /* Modals */
    .modal-container {
        width: 95%;
        max-width: 95%;
        margin: 20px auto;
        max-height: 90vh;
        overflow-y: auto;
    }
    
    .modal-header {
        padding: 16px;
    }
    
    .modal-header h3 {
        font-size: 18px;
    }
    
    .modal-body {
        padding: 16px;
    }
    
    .modal-footer {
        padding: 16px;
        flex-direction: column;
        gap: 8px;
    }
    
    .modal-footer .btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Form Fields in Modals */
    .form-group {
        margin-bottom: 16px;
    }
    
    .form-group label {
        font-size: 13px;
        margin-bottom: 6px;
    }
    
    .form-control {
        font-size: 14px;
        padding: 10px;
    }
    
    /* Buttons */
    .btn,
    .zoomies-btn-primary,
    .zoomies-btn-secondary,
    .zoomies-btn-primary-yellow {
        padding: 12px 20px;
        font-size: 14px;
        min-height: 44px; /* Touch target size */
    }
    
    /* Empty States */
    .empty-state {
        padding: 32px 16px;
    }
    
    .empty-state svg {
        width: 40px;
        height: 40px;
    }
    
    .empty-state p {
        font-size: 14px;
    }
    
    .empty-state-desc {
        font-size: 13px;
    }
    
    /* Membership Actions */
    .membership-actions-modern {
        flex-direction: column;
    }
    
    .action-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
    .zoomies-membership-dashboard {
        padding: 12px;
    }
    
    .dashboard-welcome h2 {
        font-size: 20px;
    }
    
    .dashboard-section {
        padding: 16px;
    }
    
    .membership-card-modern {
        padding: 0;
    }
    
    .membership-info-grid {
        gap: 12px;
    }
    
    .dashboard-benefits-section {
        padding: 20px;
    }
    
    .benefits-header h3 {
        font-size: 18px;
    }
    
    .transaction-item {
        padding: 12px;
    }
    
    .modal-container {
        width: 100%;
        max-width: 100%;
        margin: 10px;
        border-radius: 12px;
    }
    
    .form-control {
        font-size: 16px; /* Prevents zoom on iOS */
    }
}

/* No Membership State */
.zoomies-membership-dashboard.no-membership {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
}

.zoomies-membership-dashboard.no-membership h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0 0 16px 0;
}

.zoomies-membership-dashboard.no-membership p {
    font-size: 18px;
    color: #666;
    margin: 0 0 32px 0;
}

.zoomies-membership-dashboard.no-membership .zoomies-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 40px;
    background: #1A1A1A;
    color: #fff;
    text-decoration: none;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    position: relative;
}

.zoomies-membership-dashboard.no-membership .zoomies-btn-primary::after {
    content: '';
    width: 20px;
    height: 20px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M5 12H19" stroke="white" stroke-width="2" stroke-linejoin="round"/><path d="M12 5L19 12L12 19" stroke="white" stroke-width="2" stroke-linejoin="round"/></svg>') no-repeat center;
    background-size: 20px 20px;
    transition: transform 0.3s ease;
}

.zoomies-membership-dashboard.no-membership .zoomies-btn-primary:hover {
    background: #E2A422;
    color: #241E1E;
    border: 1px solid #E2A422;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.zoomies-membership-dashboard.no-membership .zoomies-btn-primary:hover::after {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M5 12H19" stroke="%23241E1E" stroke-width="2" stroke-linejoin="round"/><path d="M12 5L19 12L12 19" stroke="%23241E1E" stroke-width="2" stroke-linejoin="round"/></svg>') no-repeat center;
    background-size: 20px 20px;
    transform: translateX(4px);
}

.zoomies-membership-dashboard.no-membership .zoomies-btn-primary:active,
.zoomies-membership-dashboard.no-membership .zoomies-btn-primary:focus {
    background: #D74715;
    color: #D6CAC0;
    border: 1px solid #D74715;
    transform: translateY(0);
    outline: none;
}

.zoomies-membership-dashboard.no-membership .zoomies-btn-primary:active::after,
.zoomies-membership-dashboard.no-membership .zoomies-btn-primary:focus::after {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M5 12H19" stroke="%23D6CAC0" stroke-width="2" stroke-linejoin="round"/><path d="M12 5L19 12L12 19" stroke="%23D6CAC0" stroke-width="2" stroke-linejoin="round"/></svg>') no-repeat center;
    background-size: 20px 20px;
}


.dashboard-section h3 {
    margin-top: 0;
    color: #333;
    font-size: 22px;
   
}

.membership-card {
    border: 2px solid #2196f3;
    border-radius: 12px;
    padding: 25px;
    background: #57725A;
    color: #fff;
}

.membership-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 20px;
}

.membership-details p {
    margin: 10px 0;
    font-size: 16px;
}

.membership-actions {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.status-active {
    color: #241E1E;
    font-weight: 600;
}

.status-expired,
.status-canceled {
    color: #f44336;
    font-weight: 600;
}

/* ==================== Tables ==================== */
.invite-codes-table,
.transactions-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.invite-codes-table th,
.invite-codes-table td,
.transactions-table th,
.transactions-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.invite-codes-table th,
.transactions-table th {
    background: #f5f5f5;
    font-weight: 600;
    color: #333;
}

.invite-codes-table code {
    background: #e3f2fd;
    padding: 4px 8px;
    border-radius: 4px;
    font-family: monospace;
    color: #1976d2;
    font-weight: 600;
}

/* ==================== Payment Form ==================== */
/* ==================== Registration Page Two-Column Layout ==================== */
.zoomies-membership-registration-wrapper {
    display: grid;
    grid-template-columns: 70% 30%;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Free Account Single Column Layout */
.zoomies-free-account-wrapper {
    display: block !important;
    max-width: 600px !important;
    margin: 0 auto !important;
    padding: 40px 20px !important;
    width: 100% !important;
}

.registration-form-column {
    min-width: 0; /* Prevents grid overflow */
}

.order-summary-column {
    position: sticky;
    top: 20px;
    align-self: start;
}

.order-summary-box {
background: #57725A;
    border-radius: 8px;
    padding: 32px;
    margin-bottom: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.order-summary-header {
    margin-bottom: 20px;
}

.order-summary-title {
    font-family: 'Poiret One', cursive;
    font-size: 22px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.order-summary-title::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #E2A422;
    border-radius: 50%;
    display: inline-block;
}

.order-plan-info {
    margin-bottom: 24px;
}

.plan-info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.plan-info-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    font-family: "Outfit", Sans-serif;
    font-weight: 500;
}

.plan-info-value {
    font-size: 14px;
    font-weight: 600;
    color: #FFFFFF;
    font-family: "Outfit", Sans-serif;
    display: flex;
    align-items: center;
    gap: 4px;
}

.plan-name-summary {
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
    font-family: "Outfit", Sans-serif;
}

.plan-price-summary {
    font-size: 18px;
    font-weight: 700;
    color: #FFFFFF;
    font-family: "Outfit", Sans-serif;
    display: flex;
    align-items: baseline;
    gap: 6px;
    justify-content: flex-start;
}

.summary-section {
    margin-bottom: 20px;
}

.summary-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 8px;
    font-family: "Outfit", Sans-serif;
}

.summary-label svg {
    color: #FFFFFF;
    flex-shrink: 0;
}

.summary-input-wrapper {
    display: grid;
    grid-template-columns: 70% auto;
    gap:8px;
}

.summary-input-wrapper input {
   
    padding: 10px 12px;
    border: 1px solid #e0dcc8;
    border-radius: 6px;
    font-size: 14px;
    font-family: "Outfit", Sans-serif;
    transition: border-color 0.2s ease;
}

.summary-input-wrapper input:focus {
    outline: none;
    border-color: #57725A;
}

.btn-apply {
    padding: 10px 16px;
    background: #ffffff;
    border: 1px solid #e0dcc8;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #241E1E;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: "Outfit", Sans-serif;
    white-space: nowrap;
}

.btn-apply:hover {
    background: #f9f7f2;
    border-color: #57725A;
}

.summary-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 20px 0;
}

.order-breakdown {
    margin-bottom: 20px;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.breakdown-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    font-family: "Outfit", Sans-serif;
}

.breakdown-value {
    font-size: 14px;
    font-weight: 600;
    color: #FFFFFF;
    font-family: "Outfit", Sans-serif;
}

.breakdown-discount {
    color: #FFFFFF;
    font-weight: 600;
}

.order-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.total-label {
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
    font-family: "Outfit", Sans-serif;
}

.total-amount {
    font-size: 24px;
    font-weight: 700;
    color: #FFFFFF;
    font-family: "Poiret One", Sans-serif;
}

.terms-section {
    margin-bottom: 20px;
}

.terms-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 12px;
    color: #7a7a7a;
    cursor: pointer;
    font-family: "Outfit", Sans-serif;
    line-height: 1.5;
}

.terms-checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    flex-shrink: 0;
}

.terms-checkbox-label a {
    color: #57725A;
    text-decoration: underline;
}

.summary-pay-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: 15px;
}

.summary-pay-btn svg {
    width: 18px;
    height: 18px;
}

#payment-message {
    margin-top: 12px;
    font-size: 13px;
    text-align: center;
}

/* Free Account Benefits Box */

.free-account-benefits-box {
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 0;
    margin-bottom: 32px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.free-account-benefits-header {
    background: #e0e0e0;
    border-radius: 12px 12px 0 0;
    padding: 24px 28px 16px 28px;
    margin-bottom: 0;
}

.free-account-benefits-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #171717;
    margin: 0;
    line-height: 1.2;
    font-family: "Outfit", Sans-serif;
}

.benefits-list {
    list-style-type: none !important;
    list-style: none !important;
    padding-left: 28px !important;
    margin: 0;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    color: #171717;
    font-size: 1rem;
    line-height: 1.6;
    font-family: "Outfit", Sans-serif;
}

.benefits-list li:last-child {
    margin-bottom: 0;
}

.benefits-list li svg {
    flex-shrink: 0;
    color: #57725A;
    margin-top: 2px;
}

/* Free Account Benefits Sidebar Styles */
.free-account-benefits-box {
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 0;
    margin-bottom: 32px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.free-account-benefits-header {
    background: #e0e0e0;
    border-radius: 12px 12px 0 0;
    padding: 24px 28px 16px 28px;
    margin-bottom: 0;
}
.free-account-benefits-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #171717;
    margin: 0;
    line-height: 1.2;
    font-family: "Outfit", Sans-serif;
}
.benefits-list {
    list-style-type: none !important;
    list-style: none !important;
    padding-left: 28px !important;
    margin: 0;
}
.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    color: #171717;
    font-size: 1rem;
    line-height: 1.6;
    font-family: "Outfit", Sans-serif;
}
.benefits-list li:last-child {
    margin-bottom: 0;
}

/* Form Actions */
.form-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 30px;
}

.form-actions .btn {
    min-width: 200px;
}

/* Legacy styles for backwards compatibility */
.registration-plan-column {
    display: none; /* Hide old plan column */
}

.registration-form-title {
    font-size: 28px;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 30px;
}

/* ==================== Registration Form Styling (Gravity Forms Pattern) ==================== */
.zoomies-membership-payment-form {
    --gform-theme-color-primary: #57725A;
    --gform-theme-color-primary-hover: #F0A820;
    --gform-theme-color-primary-active: #E85D3C;
    --gform-theme-border-color-default: #D6CAC0;
    --gform-theme-border-color-focus: #57725A;
    --gform-theme-border-color-filled: #8D8D8D;
    --gform-theme-label-color-default: #99999B;
    --gform-theme-label-color-active: #1A1A1A;
    --gform-theme-error-color: #D74715;
    
    background: #ffffff;
    border-radius: 12px;
    padding: 28px;
    border: 1px solid #e0dcc8;
}

.payment-plan-summary {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
}

.payment-plan-summary h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 10px;
}

.plan-price-large {
    font-size: 48px;
    font-weight: 700;
    color: var(--gform-theme-color-primary);
    margin: 15px 0;
}

/* Form Groups & Grid */
.form-group {
    margin-bottom: 24px;
    position: relative;
}

/* Photo Upload Styles */
.photo-upload-wrapper {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.photo-preview {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid #E5E7EB;
    background: #F9FAFB;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.photo-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-placeholder {
    color: #9CA3AF;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
}

.photo-upload-controls {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.photo-upload-controls button {
    width: fit-content;
}

.photo-upload-controls small {
    color: #6B7280;
    font-size: 12px;
    line-height: 1.4;
}

.zoomies-membership-payment-form .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* Labels - Gravity Forms Style */
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.65px;
    color: var(--gform-theme-label-color-default);
    transition: color 0.2s ease;
}

/* Billing Address Section Heading */
.billing-address-heading {
    font-size: 18px;
    font-weight: 600;
    color: #1A1A1A;
    margin: 32px 0 20px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid #f0f0f0;
    text-transform: none;
    letter-spacing: normal;
}

.form-group.has-focus label,
.form-group.has-value label {
    color: var(--gform-theme-label-color-active);
}

/* Input Fields - Gravity Forms Style */
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="password"],
.form-group select {
    width: 100%;
    height: 48px;
    padding: 0 16px;
    border: 1px solid var(--gform-theme-border-color-default);
    border-radius: 4px;
    font-size: 16px;
    color: #1A1A1A;
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    -webkit-appearance: none;
    appearance: none;
}

.form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus,
.form-group input[type="password"]:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gform-theme-border-color-focus);
    box-shadow: 0 0 0 1px var(--gform-theme-border-color-focus);
}

/* Tax Preview Section */
.tax-preview-section {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 20px;
    margin: 25px 0;
}

.tax-preview-heading {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 15px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #dee2e6;
}

.tax-preview-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tax-line-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #495057;
}

.tax-line-item .tax-label {
    font-weight: 500;
}

.tax-line-item .tax-value {
    font-weight: 600;
    color: #2c3e50;
}

.tax-line-item.tax-total {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 2px solid #dee2e6;
    font-size: 16px;
    font-weight: 700;
}

.tax-line-item.tax-total .tax-label,
.tax-line-item.tax-total .tax-value {
    color: #28a745;
    font-weight: 700;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-group.has-value input[type="text"],
.form-group.has-value input[type="email"],
.form-group.has-value input[type="tel"],
.form-group.has-value input[type="password"],
.form-group.has-value select {
    border-color: var(--gform-theme-border-color-filled);
}

.form-group input::placeholder {
    color: #CCCCCC;
    opacity: 1;
}

.form-group small {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: #99999B;
}

/* Invite Code Input Wrapper */
.invite-code-input-wrapper {
    display: flex;
    gap: 12px;
}

.invite-code-input-wrapper input {
    flex: 1;
}

/* Coupon Code Input Wrapper */
.coupon-code-input-wrapper {
    display: flex;
    gap: 12px;
}

.coupon-code-input-wrapper input {
    flex: 1;
}

/* Hide invite code on payment page */
#zoomies-payment-form .form-group:has(#invite_code) {
    display: none !important;
}

#validate-invite-btn.zoomies-btn-validate,
#validate-coupon-btn.zoomies-btn-validate,
.zoomies-btn-validate {
    height: 48px !important;
    padding: 0 30px !important;
    background: transparent !important;
    color: #1A1A1A !important;
    border: 1px solid #1A1A1A !important;
    border-radius: 100px !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    cursor: pointer;
    transition: all 0.3s ease !important;
    white-space: nowrap;
    transform: none !important;
    box-shadow: none !important;
}

#validate-invite-btn.zoomies-btn-validate:hover,
#validate-coupon-btn.zoomies-btn-validate:hover,
.zoomies-btn-validate:hover {
    background: #1A1A1A !important;
    color: #fff !important;
    border-color: #1A1A1A !important;
    transform: none !important;
}

#validate-invite-btn.zoomies-btn-validate:active,
#validate-coupon-btn.zoomies-btn-validate:active,
.zoomies-btn-validate:active {
    background: #000 !important;
    border-color: #000 !important;
}

/* Card Element (Stripe) */
#card-element {
    border: 1px solid var(--gform-theme-border-color-default);
    border-radius: 4px;
    padding: 15px 16px;
    background: #fff;
    min-height: 48px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

#card-element.StripeElement--focus {
    border-color: var(--gform-theme-border-color-focus);
    box-shadow: 0 0 0 1px var(--gform-theme-border-color-focus);
}

#card-element.StripeElement--complete {
    border-color: var(--gform-theme-border-color-filled);
}

/* Error States */
.form-group.has-error input {
    border-color: var(--gform-theme-error-color) !important;
}

.form-group .error-message {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--gform-theme-error-color);
    font-size: 13px;
    margin-top: 8px;
    padding-left: 24px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="%23D74715"><path d="M8 0C3.6 0 0 3.6 0 8s3.6 8 8 8 8-3.6 8-8-3.6-8-8-8zm1 12H7V7h2v5zm0-6H7V4h2v2z"/></svg>') no-repeat left center;
    background-size: 16px 16px;
}

#card-errors {
    color: var(--gform-theme-error-color);
    margin-top: 10px;
    font-size: 13px;
    min-height: 0;
}

#card-errors:not(:empty) {
    display: flex;
    align-items: center;
    gap: 6px;
    padding-left: 24px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="%23D74715"><path d="M8 0C3.6 0 0 3.6 0 8s3.6 8 8 8 8-3.6 8-8-3.6-8-8-8zm1 12H7V7h2v5zm0-6H7V4h2v2z"/></svg>') no-repeat left center;
    background-size: 16px 16px;
}

/* Submit Button - Gravity Forms Style */
#submit-payment {
    width: 100%;
    height: 56px;
    margin-top: 30px;
    padding: 0 40px;
   
    border: none;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}






#submit-payment:disabled {
    background: #CCCCCC;
    cursor: not-allowed;
    transform: none;
}

#submit-payment:disabled::after {
    transform: none;
}

/* ==================== Modal System ==================== */
.zoomies-modal-overlay,
.zoomies-success-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

.zoomies-success-modal {
    background: #fff;
    border-radius: 16px;
    padding: 50px 40px;
    max-width: 480px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
}

.zoomies-success-modal .success-icon {
    margin: 0 auto 24px;
    width: 64px;
    height: 64px;
    animation: scaleIn 0.5s ease 0.2s both;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.zoomies-success-modal .success-icon svg {
    width: 100%;
    height: 100%;
}

.zoomies-success-modal .success-title {
    font-size: 32px;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0 0 16px 0;
}

.zoomies-success-modal .success-message {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0 0 30px 0;
}

.zoomies-success-modal .success-countdown {
    padding-top: 24px;
    border-top: 1px solid #E5E5E5;
}

.zoomies-success-modal .success-countdown span {
    font-size: 14px;
    color: #99999B;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.zoomies-success-modal .countdown-number {
    color: #57725A;
    font-size: 18px;
    font-weight: 700;
}

/* ==================== Confirmation Modal ==================== */
.zoomies-confirm-modal {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    max-width: 480px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
}

.zoomies-confirm-modal .confirm-icon {
    margin: 0 auto 24px;
    width: 48px;
    height: 48px;
}

.zoomies-confirm-modal .confirm-icon svg {
    width: 100%;
    height: 100%;
}

.zoomies-confirm-modal .confirm-title {
    font-size: 28px;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0 0 16px 0;
}

.zoomies-confirm-modal .confirm-message {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0 0 30px 0;
}

.zoomies-confirm-modal .confirm-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.zoomies-btn-cancel-action,
.zoomies-btn-confirm-action {
    padding: 14px 32px;
    border-radius: 100%;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.zoomies-confirm-modal .zoomies-btn-cancel-action {
    background: transparent !important;
    color: #000 !important;
    border: 2px solid #000 !important;
    border-radius:100px;
}

.zoomies-confirm-modal .zoomies-btn-cancel-action:hover {
    background: #000 !important;
    color: #fff !important;
    border-color: #000 !important;
}

.zoomies-confirm-modal .zoomies-btn-confirm-action {
 background: #241E1E;
    color: #FFFBEA;
    border-color: #241E1E;
}

.zoomies-confirm-modal .zoomies-btn-confirm-action:hover {
   background: #E2A422 !important;
    color: #241E1E !important;
    border-color: #FFFBEA !important;
}


.zoomies-confirm-modal .zoomies-btn-confirm-action:active {
    background: #E85D3C !important;
    color: #FFFFFF !important;
    border-color: #E85D3C !important;
}

.zoomies-confirm-modal .zoomies-btn-confirm-action:disabled {
    background: #717171 !important;
    color: #D4D4D4 !important;
    border-color: #717171 !important;
    cursor: not-allowed  !important;
    box-shadow: none  !important;
}

.zoomies-btn-confirm-action:disabled {
    background: #CCCCCC;
    cursor: not-allowed;
}

/* Terms Modal Styles */
.zoomies-terms-modal {
    background: #fff;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
}

.zoomies-terms-modal .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-bottom: 1px solid #E5E5E5;
}

.zoomies-terms-modal .modal-header h2 {
    font-size: 21px;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0;
}

.zoomies-terms-modal .modal-close-btn {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.zoomies-terms-modal .modal-close-btn:hover {
    color: #1A1A1A;
}

.zoomies-terms-modal .modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}

.zoomies-terms-modal .modal-body h1,
.zoomies-terms-modal .modal-body h2,
.zoomies-terms-modal .modal-body h3,
.zoomies-terms-modal .modal-body h4,
.zoomies-terms-modal .modal-body h5,
.zoomies-terms-modal .modal-body h6 {
    color: #1A1A1A;
    margin-top: 16px;
    margin-bottom: 8px;
}

.zoomies-terms-modal .modal-body h1 {
    font-size: 24px;
    font-weight: 700;
}

.zoomies-terms-modal .modal-body h2 {
    font-size: 20px;
    font-weight: 700;
}

.zoomies-terms-modal .modal-body h3 {
    font-size: 18px;
    font-weight: 600;
}

.zoomies-terms-modal .modal-body h4 {
    font-size: 16px;
    font-weight: 600;
}

.zoomies-terms-modal .modal-body h5 {
    font-size: 14px;
    font-weight: 600;
}

.zoomies-terms-modal .modal-body h6 {
    font-size: 13px;
    font-weight: 600;
}

.zoomies-terms-modal .modal-body p {
    margin: 12px 0;
}

.zoomies-terms-modal .modal-body ul,
.zoomies-terms-modal .modal-body ol {
    margin: 12px 0 12px 20px;
}

.zoomies-terms-modal .modal-body li {
    margin: 8px 0;
}

.zoomies-terms-modal .modal-footer {
    display: flex;
    gap: 12px;
    padding: 16px 24px;
    border-top: 1px solid #E5E5E5;
    justify-content: flex-end;
}

.zoomies-terms-modal .modal-accept-btn,
.zoomies-terms-modal .modal-close-footer-btn {
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.zoomies-terms-modal .modal-accept-btn {
    background: #57725a;
    color: #fff;
}

.zoomies-terms-modal .modal-accept-btn:hover {
    background: #3d4f41;
    box-shadow: 0 4px 12px rgba(87, 114, 90, 0.3);
}

.zoomies-terms-modal .modal-accept-btn:active {
    background: #2a3628;
}

.zoomies-terms-modal .modal-close-footer-btn {
    background: transparent;
    color: #666;
    border: 1px solid #ddd;
}

.zoomies-terms-modal .modal-close-footer-btn:hover {
    background: #f5f5f5;
    border-color: #999;
}

/* Terms Agreement Checkbox Styling */
.terms-agreement-group {
    margin: 20px 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 4px;
    cursor: pointer;
    width: 18px;
    height: 18px;
    min-width: 18px;
    min-height: 18px;
    flex-shrink: 0;
    accent-color: #57725a;
}

.checkbox-label input[type="checkbox"]:focus {
    outline: 2px solid #57725a;
    outline-offset: 2px;
}

.checkbox-label a.terms-link {
    color: #57725a;
    text-decoration: underline;
    cursor: pointer;
    font-weight: 600;
    transition: color 0.3s ease;
}

.checkbox-label a.terms-link:hover {
    color: #3d4f41;
    text-decoration: underline;
}

.terms-agreement-group .error-message {
    color: #E85D3C;
    font-size: 13px;
    margin-top: 8px;
    padding: 8px 12px;
    background: #fff5f3;
    border-radius: 4px;
    border-left: 3px solid #E85D3C;
}

/* Password Field Improvements */
.password-field-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.password-field-wrapper input[type="password"],
.password-field-wrapper input[type="text"] {
    padding-right: 40px;
    width: 100%;
}

.password-toggle-btn {
    position: absolute;
    right: 12px;
    background: none;
    border: none;
    cursor: pointer;
    color: #57725a;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease, transform 0.2s ease;
    margin: 0;
    min-width: 0;
    min-height: 0;
}

.password-toggle-btn:hover {
    color: #3d4f41;
    transform: scale(1.1);
}

.password-toggle-btn:focus-visible {
    outline: 2px solid #E2A422;
    outline-offset: 2px;
    border-radius: 4px;
}

.password-toggle-btn svg {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}

/* Responsive adjustments for terms modal */
@media (max-width: 768px) {
    .zoomies-terms-modal {
        max-height: 90vh;
        max-width: 95%;
    }
    
    .zoomies-terms-modal .modal-footer {
        flex-direction: column-reverse;
    }
    
    .zoomies-terms-modal .modal-accept-btn,
    .zoomies-terms-modal .modal-close-footer-btn {
        width: 100%;
    }
}

/* ==================== Error Modal ==================== */
.zoomies-error-modal {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    max-width: 440px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
}

.zoomies-error-modal .error-icon {
    margin: 0 auto 24px;
    width: 48px;
    height: 48px;
}

.zoomies-error-modal .error-icon svg {
    width: 100%;
    height: 100%;
}

.zoomies-error-modal .error-title {
    font-size: 28px;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0 0 16px 0;
}

.zoomies-error-modal .error-message {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0 0 30px 0;
}

.zoomies-btn-close-error {
    padding: 14px 32px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #1A1A1A;
    background: #1A1A1A;
    color: #fff;
}

.zoomies-btn-close-error:hover {
    background: #000;
}

/* ==================== Responsive ==================== */
/* Tablet: 768px - 1024px (2 columns, 2 rows) */
@media (min-width: 768px) and (max-width: 1024px) {
    .zoomies-membership-plans {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Registration Page - Stack on Tablet */
    .zoomies-membership-registration-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 20px;
    }
    
    .registration-plan-column {
        position: static;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Mobile: Below 768px (1 column, stacked) */
@media (max-width: 767px) {
    .zoomies-membership-plans {
        grid-template-columns: 1fr;
    }

    .membership-plan-item {
        padding: 0;
    }

    .membership-actions {
        flex-direction: column;
    }

    .invite-codes-table,
    .transactions-table {
        font-size: 14px;
    }
    
    /* Registration Page Mobile Adjustments */
    .zoomies-membership-registration-wrapper {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 20px;
    }
    
    .registration-plan-column {
        position: static;
    }
    
    .registration-form-title {
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    /* Registration Form Mobile Adjustments */
    .zoomies-membership-payment-form {
        padding: 24px;
        
    }
    
    .zoomies-membership-payment-form .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .payment-plan-summary {
        margin-bottom: 30px;
        padding-bottom: 20px;
    }
    
    .plan-price-large {
        font-size: 36px;
    }
}

/* ==================== Login & Membership Status Notices ==================== */
.zoomies-user-welcome {
    background: #f9f7f2;
    border: 1px solid #e0dcc8;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 24px;
}

.zoomies-user-welcome-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.zoomies-user-welcome-content svg {
    flex-shrink: 0;
    color: #57725A;
}

.zoomies-user-welcome-title {
    display: block;
    color: #241E1E;
    font-size: 16px;
    font-weight: 700;
    font-family: "Outfit", Sans-serif;
}

.zoomies-user-welcome-subtitle {
    margin: 4px 0 0 0;
    font-size: 14px;
    color: #666;
    font-family: "Outfit", Sans-serif;
}

.zoomies-login-notice {
     background: #f9fafb;
    border: 1px solid #e5e7eb;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 30px;
    text-align: center;   
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    line-height: 1.5;

}

.zoomies-login-notice svg {
    flex-shrink: 0;
    color: #ffc107;
}

.zoomies-login-notice span {
    color: #171717;
}

.zoomies-login-notice .login-link {
    color: #171717;
    font-weight: 600;
    text-decoration: underline;
    transition: all 0.2s ease;
}

.zoomies-login-notice .login-link:hover {
    color: #171717;
    text-decoration: underline;
}

.zoomies-multi-dog-note {
    background: #fff8e6;
    border: 1px solid #f0d878;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
}

.zoomies-multi-dog-note-content {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: "Outfit", Sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #5c4b00;
}

.zoomies-multi-dog-note-content svg {
    flex-shrink: 0;
    color: #c79a00;
    margin-top: 2px;
}

.zoomies-multi-dog-note-content p {
    margin: 0 0 8px 0;
}

.zoomies-multi-dog-note-content p:last-child {
    margin-bottom: 0;
}

.zoomies-multi-dog-note-content a {
    color: #5c4b00;
    font-weight: 600;
    text-decoration: underline;
}

.zoomies-multi-dog-note-content a:hover {
    color: #3d3100;
}

/* Upgrade Notice */
.zoomies-upgrade-notice {
    background: #D74715;
    border-radius: 8px;
    padding: 16px 20px;
    margin: 0 0 24px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    line-height: 1.5;
    color: #FFFBEA;
    box-shadow: 0 4px 12px rgba(226, 164, 34, 0.25);
}

.zoomies-upgrade-notice svg {
    flex-shrink: 0;
    color: #FFFBEA;
}

.zoomies-upgrade-notice strong {
    font-weight: 700;
    color: #fff;
}

/* Downgrade Warning */
.zoomies-downgrade-warning {
    background: #fef3c7;
    border: 2px solid #f59e0b;
    border-radius: 8px;
    padding: 16px 20px;
    margin: 0 0 24px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    line-height: 1.6;
    color: #92400e;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.15);
}

.zoomies-downgrade-warning svg {
    flex-shrink: 0;
    color: #f59e0b;
    margin-top: 2px;
}

.zoomies-downgrade-warning .warning-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.zoomies-downgrade-warning .warning-content strong {
    font-weight: 700;
    color: #78350f;
    font-size: 15px;
    display: block;
}

.zoomies-downgrade-warning .warning-content span strong {
    font-weight: 600;
    color: #92400e;
    font-size: 14px;
}

/* Email Exists Warning */
.zoomies-email-exists-warning {
    background: #ffebee;
    border: 1px solid #f44336;
    border-radius: 6px;
    padding: 12px 16px;
    margin-top: 8px;
    font-size: 14px;
    color: #c62828;
}

.zoomies-email-exists-warning a {
    color: #c62828;
    font-weight: 600;
    text-decoration: underline;
}

.zoomies-email-exists-warning a:hover {
    color: #b71c1c;
}

/* Enhanced Email Exists Notice (Payment Form) */
.zoomies-email-exists-notice {
    background: #fff9e6;
    border: 2px solid #ffc107;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin: 20px 0;
}

.zoomies-email-exists-notice .notice-icon {
    flex-shrink: 0;
}

.zoomies-email-exists-notice .notice-icon svg {
    color: #ffc107;
    width: 32px;
    height: 32px;
}

.zoomies-email-exists-notice .notice-content {
    flex: 1;
}

.zoomies-email-exists-notice h4 {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 700;
    color: #171717;
}

.zoomies-email-exists-notice .notice-email {
    margin: 8px 0;
    font-size: 15px;
    color: #171717;
}

.zoomies-email-exists-notice .notice-email strong {
    color: #171717;
    font-weight: 600;
}

.zoomies-email-exists-notice .notice-instruction {
    margin: 12px 0 8px 0;
    font-size: 15px;
    color: #171717;
    font-weight: 600;
}

.zoomies-email-exists-notice .notice-steps {
    list-style: none;
    padding: 0;
    margin: 8px 0 16px 0;
}

.zoomies-email-exists-notice .notice-steps li {
    padding: 4px 0;
    font-size: 14px;
    color: #171717;
}

.zoomies-email-exists-notice .notice-actions {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.zoomies-email-exists-notice .btn-login,
.zoomies-email-exists-notice .btn-reset {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.zoomies-email-exists-notice .btn-login {
    background: #171717;
    color: #ffffff;
    border: 2px solid #171717;
}

.zoomies-email-exists-notice .btn-login:hover {
    background: #000000;
    border-color: #000000;
    transform: translateY(-2px);
}

.zoomies-email-exists-notice .btn-reset {
    background: transparent;
    color: #171717;
    border: 2px solid #171717;
}

.zoomies-email-exists-notice .btn-reset:hover {
    background: #171717;
    color: #ffffff;
    transform: translateY(-2px);
}

/* ==================== Email Exists Modal ==================== */
.zoomies-email-exists-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.zoomies-email-exists-modal {
    background: #FFFBEA;
    border: 3px solid #E2A422;
    border-radius: 16px;
    padding: 40px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
}

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

.zoomies-email-exists-modal .modal-icon {
    margin: 0 auto 24px;
    width: 64px;
    height: 64px;
}

.zoomies-email-exists-modal .modal-icon svg {
    width: 64px;
    height: 64px;
    color: #E2A422;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.zoomies-email-exists-modal .modal-title {
    font-family: 'Poiret One', cursive;
    font-size: 24px;
    font-weight: 700;
    color: #241E1E;
    margin: 0 0 16px 0;
}

.zoomies-email-exists-modal .modal-email {
    font-size: 16px;
    color: #241E1E;
    margin: 0 0 12px 0;
    line-height: 1.5;
}

.zoomies-email-exists-modal .modal-email strong {
    color: #241E1E;
    font-weight: 700;
}

.zoomies-email-exists-modal .modal-instruction {
    font-size: 15px;
    color: #241E1E;
    font-weight: 600;
    margin: 20px 0 12px 0;
}

.zoomies-email-exists-modal .modal-steps {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
    text-align: left;
    display: inline-block;
}

.zoomies-email-exists-modal .modal-steps li {
    font-size: 14px;
    color: #241E1E;
    padding: 6px 0;
    line-height: 1.6;
}

.zoomies-email-exists-modal .modal-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.zoomies-email-exists-modal .modal-btn-login,
.zoomies-email-exists-modal .modal-btn-reset {
    width: 100%;
}

.zoomies-email-exists-modal-close {
    position: absolute;
    top: 14px;
    right: 18px;
    background: none;
    border: none;
    font-size: 24px;
    line-height: 1;
    color: #241E1E;
    cursor: pointer;
    opacity: 0.5;
    padding: 0;
    transition: opacity 0.2s ease;
}

.zoomies-email-exists-modal-close:hover {
    opacity: 1;
}

.zoomies-email-exists-modal {
    position: relative;
}

/* Responsive */
@media (max-width: 600px) {
    .zoomies-email-exists-modal {
        padding: 32px 24px;
    }
    
    .zoomies-email-exists-modal .modal-title {
        font-size: 20px;
    }
}

/* Responsive */
@media (max-width: 600px) {
    .zoomies-email-exists-notice {
        flex-direction: column;
        padding: 20px;
    }
    
    .zoomies-email-exists-notice .notice-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .zoomies-email-exists-notice .btn-login,
    .zoomies-email-exists-notice .btn-reset {
        width: 100%;
        text-align: center;
    }
}

/* ==================== Login Required Notice ==================== */
.zoomies-login-required-notice {
    max-width: 600px;
    margin: 60px auto;
    padding: 0 20px;
}

.zoomies-login-required-notice .login-required-content {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 48px 40px;
    text-align: center;
}

.zoomies-login-required-notice .login-icon {
    margin: 0 auto 24px;
}

.zoomies-login-required-notice .login-icon svg {
    width: 64px;
    height: 64px;
    color: #171717;
    display: block;
    margin: 0 auto;
}

.zoomies-login-required-notice h2 {
    font-size: 28px;
    font-weight: 700;
    color: #171717;
    margin: 0 0 16px 0;
}

.zoomies-login-required-notice p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0 0 32px 0;
}

.zoomies-login-required-notice .login-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.zoomies-login-required-notice .btn-login-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    background: #171717;
    color: #ffffff;
    border: 2px solid #171717;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.zoomies-login-required-notice .btn-login-primary:hover {
    background: #000000;
    border-color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.zoomies-login-required-notice .btn-login-primary svg {
    width: 20px;
    height: 20px;
}

.zoomies-login-required-notice .btn-view-plans {
    display: inline-block;
    padding: 14px 32px;
    background: transparent;
    color: #171717;
    border: 2px solid #171717;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.zoomies-login-required-notice .btn-view-plans:hover {
    background: #171717;
    color: #ffffff;
    transform: translateY(-2px);
}

.zoomies-login-required-notice .login-help {
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.zoomies-login-required-notice .login-help a {
    color: #666;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.zoomies-login-required-notice .login-help a:hover {
    color: #171717;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 600px) {
    .zoomies-login-required-notice {
        margin: 40px auto;
    }
    
    .zoomies-login-required-notice .login-required-content {
        padding: 32px 24px;
    }
    
    .zoomies-login-required-notice h2 {
        font-size: 24px;
    }
    
    .zoomies-login-required-notice .login-icon svg {
        width: 48px;
        height: 48px;
    }
}


/* Current Plan Status Banner */
.zoomies-current-plan-status {
    background: #171717;
    border-radius: 12px;
    padding: 24px 32px;
    margin: 0 0 40px 0;
    color: #FFFBEA;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    border: 1px solid rgba(255, 251, 234, 0.15);
}

.plan-status-header {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.plan-status-header svg {
    flex-shrink: 0;
    color: #E2A422;
    filter: drop-shadow(0 2px 4px rgba(226, 164, 34, 0.3));
}

.plan-status-info h3 {
    margin: 0 0 8px 0;
    font-size: 20px;
    font-weight: 700;
    color: #FFFBEA;
}

.plan-status-info h3 .plan-name {
    color: #E2A422;
    font-weight: 800;
}

.plan-status-info p {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 251, 234, 0.75);
    line-height: 1.4;
}

.plan-status-info .status-active {
    color: #E2A422;
    font-weight: 600;
}

.plan-status-info .status-expired,
.plan-status-info .status-canceled {
    color: #D74715;
    font-weight: 600;
}

.plan-status-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.plan-status-actions .zoomies-btn-secondary {
    background: transparent;
    color: #FFFBEA;
    border: 2px solid #FFFBEA;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 100px;
    font-weight: 700;
}

.plan-status-actions .zoomies-btn-secondary:hover {
    background: #FFFBEA;
    color: #171717;
    border-color: #FFFBEA;
    transform: translateY(-2px);
}

.plan-status-actions .zoomies-btn-secondary:active,
.plan-status-actions .zoomies-btn-secondary:focus {
    background: #D74715;
    color: #FFFBEA;
    border-color: #D74715;
}

.plan-status-actions .zoomies-btn-primary {
    background: #E2A422;
    color: #171717;
    padding: 10px 20px;
    font-size: 14px;
    border: 2px solid #E2A422;
    border-radius: 100px;
    font-weight: 700;
}

.plan-status-actions .zoomies-btn-primary:hover {
    background: #FFFBEA;
    color: #171717;
    border-color: #FFFBEA;
    transform: translateY(-2px);
}

.plan-status-actions .zoomies-btn-primary:active,
.plan-status-actions .zoomies-btn-primary:focus {
    background: #D74715;
    color: #FFFBEA;
    border-color: #D74715;
}

/* Responsive adjustments for plan status */
@media (max-width: 768px) {
    .zoomies-current-plan-status {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }
    
    .plan-status-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .plan-status-actions {
        width: 100%;
        flex-direction: column;
    }
    
    .plan-status-actions .zoomies-btn-secondary,
    .plan-status-actions .zoomies-btn-primary {
        width: 100%;
        text-align: center;
    }
}

/* ==================== Already Purchased Notice ==================== */
.zoomies-already-purchased-notice {
    max-width: 1400px;
    margin: 40px auto;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 48px 40px;
    text-align: center;
}

.zoomies-already-purchased-notice .notice-header {
    margin-bottom: 32px;
}

.zoomies-already-purchased-notice .notice-header svg {
    width: 64px;
    height: 64px;
    color: #10b981;
    margin: 0 auto 16px;
    display: block;
}

.zoomies-already-purchased-notice .notice-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #171717;
    margin: 0 0 8px 0;
}

.zoomies-already-purchased-notice .notice-subtitle {
    font-size: 18px;
    color: #6b7280;
    margin: 0;
}

.zoomies-already-purchased-notice .notice-subtitle strong {
    color: #171717;
    font-weight: 600;
}

.zoomies-already-purchased-notice .current-plan-status-card {
    max-width: 500px;
    margin: 32px auto;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    padding: 24px;
    text-align: left;
}

.zoomies-already-purchased-notice .status-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.zoomies-already-purchased-notice .status-row:last-child {
    border-bottom: none;
}

.zoomies-already-purchased-notice .status-label {
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.zoomies-already-purchased-notice .status-value {
    font-size: 16px;
    font-weight: 600;
    color: #171717;
}

.zoomies-already-purchased-notice .status-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.zoomies-already-purchased-notice .status-active {
    background: #d1fae5;
    color: #065f46;
}

.zoomies-already-purchased-notice .status-expired,
.zoomies-already-purchased-notice .status-canceled {
    background: #fee2e2;
    color: #991b1b;
}

.zoomies-already-purchased-notice .notice-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin: 32px 0;
    flex-wrap: wrap;
}

.zoomies-already-purchased-notice .notice-actions svg {
    width: 20px;
    height: 20px;
}

.zoomies-already-purchased-notice .other-plans-section {
    margin-top: 64px;
    padding-top: 48px;
    border-top: 2px solid #e9ecef;
}

.zoomies-already-purchased-notice .other-plans-title {
    font-size: 24px;
    font-weight: 700;
    color: #171717;
    margin: 0 0 32px 0;
    text-align: center;
}

/* Use existing plan cards grid from main page */
.zoomies-already-purchased-notice .zoomies-membership-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .zoomies-already-purchased-notice {
        padding: 32px 24px;
        margin: 20px 16px;
    }
    
    .zoomies-already-purchased-notice .notice-header h2 {
        font-size: 24px;
    }
    
    .zoomies-already-purchased-notice .notice-subtitle {
        font-size: 16px;
    }
    
    .zoomies-already-purchased-notice .notice-actions {
        flex-direction: column;
    }
    
    .zoomies-already-purchased-notice .notice-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .zoomies-already-purchased-notice .zoomies-membership-plans {
        grid-template-columns: 1fr;
    }
}

/* ==================== Edit Profile Modal ==================== */
.zoomies-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    position: relative;
    background: #fff;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
    -webkit-overflow-scrolling: touch;
}

.modal-content.modal-md {
    max-width: 600px;
}

.modal-content.modal-lg {
    max-width: 800px;
}

.modal-container {
    position: relative;
    background: #fff;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
    z-index: 10000;
    /* Mobile scroll improvements */
    -webkit-overflow-scrolling: touch;
}

/* Prevent background scroll when modal is open */
body.modal-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

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

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    border-bottom: 1px solid #e5e7eb;
}

.modal-header h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0;
}

.modal-close {
    background: transparent;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: #6B7280;
    transition: all 0.2s ease;
    border-radius: 8px;
}

.modal-close:hover {
    background: #f3f4f6;
    color: #1A1A1A;
}

.modal-body {
    padding: 28px;
}

.modal-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    padding: 20px 28px;
    border-top: 1px solid #e5e7eb;
    background: #f9fafb;
    border-radius: 0 0 16px 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    color: #374151;
    margin-bottom: 8px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"],
.form-group input[type="number"],
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.2s ease;
    background: #fff;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B7280' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #E2A422;
    box-shadow: 0 0 0 3px rgba(226, 164, 34, 0.1);
}

.form-text {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    color: #6B7280;
    line-height: 1.4;
}

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

.required {
    color: #dc2626;
    margin-left: 4px;
}

.modal-large {
    max-width: 600px;
}

/* Stripe Card Element */
.stripe-card-element {
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background: #fff;
    transition: all 0.2s ease;
    width: 100%;
    box-sizing: border-box;
    display: block;
    min-width: 0;
}

.StripeElement {
    width: 100%;
    box-sizing: border-box;
    display: block;
    min-width: 0;
    --stripeElementWidth: 100% !important;
    max-width: 100%;
}

.stripe-card-element .__PrivateStripeElement iframe,
.StripeElement iframe {
    width: 100% !important;
    min-width: 0 !important;
}

.stripe-card-element.StripeElement--focus {
    border-color: #E2A422;
    box-shadow: 0 0 0 3px rgba(226, 164, 34, 0.1);
}

.stripe-card-element.StripeElement--invalid {
    border-color: #dc2626;
}

.card-errors {
    color: #dc2626;
    font-size: 13px;
    margin-top: 8px;
    min-height: 20px;
}

.form-divider {
    margin: 28px 0;
    text-align: center;
    position: relative;
}

.form-divider span {
    background: #fff;
    padding: 0 16px;
    color: #6B7280;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
}

.form-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e5e7eb;
}

.modal-footer {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 28px;
    padding: 20px;

    border-top: 1px solid #e5e7eb;
}

/* Modal Button Overrides for Zoomies Button System */
.modal-footer .btn {
    min-width: 100px;
}

.modal-footer .btn .btn-text {
    display: inline-block;
}

.modal-footer .btn .btn-loader {
    display: none;
}

.modal-footer .btn:disabled .btn-text {
    display: none;
}

.modal-footer .btn:disabled .btn-loader,
.modal-footer .btn[disabled] .btn-loader {
    display: inline-block;
}

.btn-loader svg {
    animation: spin 1s linear infinite;
    width: 20px;
    height: 20px;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Alert Messages */
.alert {
    padding: 14px 18px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.5;
}

.alert-success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}

.alert-info {
    background: #dbeafe;
    color: #1e40af;
    border: 1px solid #93c5fd;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

/* Upgrade Cancel Banner */
.upgrade-cancel-banner {
    padding: 18px 22px;
    border-radius: 10px;
    margin-bottom: 25px;
    font-size: 15px;
    line-height: 1.6;
    background: #FFF4E6;
    color: #7C2D12;
    border: 1px solid #F4A261;
    box-shadow: 0 2px 8px rgba(244, 162, 97, 0.15);
}

.upgrade-cancel-banner .banner-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.upgrade-cancel-banner .icon {
    font-size: 20px;
    line-height: 1;
    color: #F4A261;
    font-weight: bold;
}

.upgrade-cancel-banner strong {
    color: #7C2D12;
    font-weight: 600;
    font-size: 16px;
}

.upgrade-cancel-banner .banner-description {
    margin-bottom: 10px;
    color: #7C2D12;
}

.upgrade-cancel-banner .banner-actions {
    color: #7C2D12;
    line-height: 1.5;
}

.upgrade-cancel-banner .rescind-link {
    color: #F4A261;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.2s ease;
    display: inline;
}

.upgrade-cancel-banner .rescind-link:hover {
    color: #E76F51;
    text-decoration: none;
}

.upgrade-cancel-banner.success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #10b981;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.15);
}

.upgrade-cancel-banner.success .icon {
    color: #10b981;
}

.upgrade-cancel-banner.success strong {
    color: #065f46;
}

/* Additional Dog Discount Eligibility Banner */
.discount-eligibility-banner {
    padding: 18px 22px;
    border-radius: 10px;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #fae8df 0%, #f5e6e0 100%);
    border: 1px solid #d74715;
}

.discount-eligibility-banner .banner-inner {
    display: flex;
    align-items: center;
    gap: 16px;
}

.discount-eligibility-banner .banner-icon-wrapper {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: #d74715;
    border-radius: 50%;
    color: white;
}

.discount-eligibility-banner .banner-icon-wrapper svg {
    width: 26px;
    height: 26px;
}

.discount-eligibility-banner .banner-content {
    flex: 1;
    color: #5c2b0f;
    font-size: 15px;
    line-height: 1.6;
}

.discount-eligibility-banner .banner-content strong {
    color: #d74715;
    font-weight: 600;
}

.discount-eligibility-banner .banner-content strong:first-child {
    color: #000000;
    font-weight: 700;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .discount-eligibility-banner {
        padding: 16px 18px;
    }
    
    .discount-eligibility-banner .banner-icon-wrapper {
        width: 40px;
        height: 40px;
    }
}

/* Responsive */
@media (max-width: 640px) {
    .modal-container {
        width: 95%;
        margin: 20px;
    }
    
    .modal-large {
        max-width: none;
    }
    
    .modal-header {
        padding: 20px;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .modal-footer {
        flex-direction: column-reverse;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .modal-footer .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Auto-Renewal Toggle Switch */
.auto-renewal-card {
    cursor: default !important;
}

.action-toggle {
    margin-left: auto;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    margin: 0;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #cbd5e0;
    transition: 0.3s;
    border-radius: 24px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.toggle-switch input:checked + .toggle-slider {
    background-color: #E2A422;
}

.toggle-switch input:checked + .toggle-slider:before {
    transform: translateX(20px);
}

.toggle-switch input:disabled + .toggle-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Dashboard Notifications */
.dashboard-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 16px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    max-width: 400px;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s ease;
}

.dashboard-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.notification-success {
    background: #d1fae5;
    color: #065f46;
    border-left: 4px solid #10b981;
}

.notification-error {
    background: #fee2e2;
    color: #991b1b;
    border-left: 4px solid #ef4444;
}

/* Member Limit Modal Styles */
.member-limit-section {
    background: #f8fafc;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
}

.member-limit-section .section-title,
.household-members-section .section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.member-limit-section .section-title svg,
.household-members-section .section-title svg {
    color: #E2A422;
}

.member-limit-section .section-title h4,
.household-members-section .section-title h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
}

.capacity-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}

.capacity-stats .stat-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.capacity-stats .stat-label {
    font-size: 12px;
    font-weight: 500;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.capacity-stats .stat-value {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
}

.capacity-stats .stat-value.text-warning {
    color: #f59e0b;
}

.capacity-bar {
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
}

.capacity-progress {
    height: 100%;
    background: linear-gradient(90deg, #10b981 0%, #E2A422 100%);
    transition: width 0.3s ease;
}

.capacity-text {
    font-size: 13px;
    color: #64748b;
    text-align: center;
    margin: 0;
}

/* Household Members Section */
.household-members-section {
    margin-top: 24px;
}

#household-members-list {
    margin-bottom: 16px;
}

.household-member-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    margin-bottom: 12px;
    transition: all 0.2s ease;
}

.household-member-item:hover {
    border-color: #cbd5e1;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.household-member-item.primary {
    background: #f1f5f9;
    border-color: #cbd5e1;
}

.member-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
}

.member-name {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #1e293b;
}

.member-name svg {
    color: #E2A422;
}

.member-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.original-price {
    font-size: 12px;
    color: #94a3b8;
    text-decoration: line-through;
}

.discounted-price {
    font-size: 16px;
    font-weight: 700;
    color: #10b981;
}

.remove-member-btn {
    background: transparent;
    border: none;
    color: #ef4444;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    margin-left: 16px;
}

.remove-member-btn:hover {
    background: #fee2e2;
}

.remove-member-btn svg {
    width: 16px;
    height: 16px;
}

#add-household-member-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

@media (max-width: 768px) {
    .capacity-stats {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .capacity-stats .stat-item {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 12px;
        background: white;
        border-radius: 8px;
    }
    
    .household-member-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .member-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        width: 100%;
    }
    
    .member-price {
        align-items: flex-start;
    }
    
    .remove-member-btn {
        margin-left: 0;
        align-self: flex-end;
    }
}

/* ========================================
   Enhanced Coupon Success Badge
   ======================================== */

.zoomies-coupon-success-badge {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: linear-gradient(135deg, #faf6f0 0%, #f5f1e8 100%);
    border-radius: 12px;
    margin: 12px 0;
    animation: slideInBounce 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 4px 12px rgba(232, 98, 14, 0.12);
    font-family: "Outfit", Sans-serif;
}

@keyframes slideInBounce {
    0% {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    60% {
        opacity: 1;
        transform: translateY(5px) scale(1.02);
    }
    100% {
        transform: translateY(0) scale(1);
    }
}

.coupon-badge-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e8620e;
    border-radius: 50%;
    color: white;
    animation: checkPop 0.6s ease 0.2s both;
}

@keyframes checkPop {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.15);
    }
    100% {
        transform: scale(1);
    }
}

.coupon-badge-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.coupon-badge-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    height:32px;
}

.coupon-badge-title {
    font-size: 15px;
    color: #171717;
    font-weight: 500;
}

.coupon-badge-title strong {
    font-weight: 700;
    color: #171717;
    font-family: "Outfit", Sans-serif;
    font-size: 16px;
}

.coupon-remove-btn {
    background: transparent;
    border: none;
    color: #999;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.2s ease;
    opacity: 0.6;
}

.coupon-remove-btn:hover {
    background: rgba(232, 98, 14, 0.1);
    opacity: 1;
    color: #e8620e;
}

.coupon-badge-details {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.coupon-discount {
    display: inline-block;
    width: fit-content;
    font-size: 14px;
    color: #fff;
    font-weight: 600;
    padding: 4px 10px;
    background: #171717;
    border-radius: 6px;
}

.coupon-savings {
    font-size: 14px;
    color: #171717;
    font-weight: 500;
}

.coupon-badge-total {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 8px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.original-price {
    font-size: 16px;
    color: #999;
    text-decoration: line-through;
    font-weight: 400;
}

.new-price {
    font-size: 20px;
    color: #171717;
    font-weight: 700;
}

/* ==================== RESPONSIVE DESIGN ==================== */

/* LARGE DESKTOP BREAKPOINT (max-width: 1400px) */
@media (max-width: 1400px) {
    /* Slightly reduce sidebar width for better content balance */
    .dashboard-sidebar-nav {
        width: 240px;
    }
    
    /* Tighten right panel */
    .page-content-wrapper {
        grid-template-columns: 1fr 330px;
        gap: 28px;
    }
}

/* DESKTOP TO TABLET BREAKPOINT (max-width: 1280px) */
@media (max-width: 1280px) {
    /* Compact sidebar for narrower desktops */
    .dashboard-sidebar-nav {
        width: 200px;
        padding: 24px 0;
    }
    
    /* Reduce sidebar nav item padding */
    .sidebar-nav-item {
        padding: 14px 18px;
        font-size: 14px;
        gap: 12px;
    }
    
    /* Reduce header banner padding */
    .page-header-banner {
        padding: 30px 24px;
    }
    
    .header-banner-text h2 {
        font-size: 30px;
    }
    
    /* Reduce right panel and spacing */
    .page-content-wrapper {
        grid-template-columns: 1fr 310px;
        gap: 24px;
        padding: 24px;
    }
    
    .dashboard-content-grid {
        gap: 22px;
    }
    
    .dashboard-section {
        padding: 24px;
    }
}

/* COMPACT DESKTOP BREAKPOINT (max-width: 1080px) - Move Quick Actions to Bottom */
@media (max-width: 1080px) {
    /* Single column layout */
    .page-content-wrapper {
        grid-template-columns: 1fr;
    }
    
    /* Right panel (quick actions) stacks below */
    .dashboard-right-panel-sticky {
        position: relative;
        top: auto;
    }
}

/* TABLET BREAKPOINT (768px - 1024px) */
@media (max-width: 1024px) {
    /* Slightly smaller sidebar on tablets */
    .dashboard-sidebar-nav {
        width: 220px;
    }
    
    /* Adjust header banner padding */
    .page-header-banner {
        padding: 30px 20px;
    }
    
    .header-banner-text h2 {
        font-size: 28px;
    }
    
    /* Reduce right panel width slightly */
    .page-content-wrapper {
        grid-template-columns: 1fr 300px;
        gap: 20px;
        padding: 20px;
    }
    
    /* Reduce gaps in grid layouts */
    .help-categories {
        gap: 20px;
    }
}
@media (min-width: 1281px) {
    
    
    /* Keep member-info-grid at 2 columns between 768-1080px */
    .member-info-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
}

@media (min-width: 1081px) and (max-width: 1280px){
    
    
    /* Keep member-info-grid at 2 columns between 768-1080px */
    .member-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

/* INTERMEDIATE TABLET BREAKPOINT (max-width: 920px) */
@media (max-width: 1080px) {
    /* Narrower sidebar for intermediate tablets */
    .dashboard-sidebar-nav {
        width: 180px;
    }
    
    /* Tighten header banner padding */
    .page-header-banner {
        padding: 25px 16px;
    }
    
    .header-banner-text h2 {
        font-size: 26px;
    }
    
    /* Reduce right panel width and spacing */
    .page-content-wrapper {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 16px;
    }
    
    /* Tighten gaps in grid layouts */
    .help-categories {
        gap: 16px;
    }
    
    .dashboard-content-grid {
        gap: 20px;
    }
    
    .dashboard-section {
        padding: 20px;
    }
    
    /* Keep member-info-grid at 2 columns between 768-1080px */
    .member-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

/* MOBILE BREAKPOINT (max-width: 768px) */
@media (max-width: 768px) {
    /* Hide desktop sidebar completely on mobile - use bottom nav instead */
    .dashboard-sidebar-nav {
        display: none;
        position: fixed;
        width: 100%;
        height: 100%;
        left: -100%;
        transition: left 0.3s ease;
        z-index: 2000;
        overflow-y: auto;
        padding: 60px 20px 20px 20px;
    }
    
    /* Show sidebar when .sidebar-open class is added (for manual override if needed) */
    .dashboard-sidebar-nav.sidebar-open {
        display: flex;
        left: 0;
    }
    
    /* Mobile overlay for sidebar */
    .mobile-sidebar-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1000;
    }
    
    .mobile-sidebar-overlay.active {
        display: block;
    }
    
    /* Main content takes full width on mobile */
    .dashboard-main-content-area {
        margin-left: 0;
        padding-bottom: 60px;
    }
    
    /* Full-width pages */
    .page-header-banner {
        padding: 25px 15px;
    }
    
    .page-header-emoji {
        font-size: 36px;
    }
    
    .header-banner-text h2 {
        font-size: 24px;
    }
    
    .header-banner-text p {
        font-size: 13px;
    }
    
    /* Single column layout on mobile */
    .page-content-wrapper {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 15px;
    }
    
    /* Right panel becomes full-width below content */
    .dashboard-right-panel-sticky {
        position: relative;
        top: auto;
    }
    
    /* Responsive dashboard content grid */
    .dashboard-content-grid {
        gap: 15px;
    }
    
    /* Stack sections in single column */
    .dashboard-section {
        padding: 20px;
    }
    
    .dashboard-section h3 {
        font-size: 16px;
        padding-bottom: 12px;
        margin-bottom: 15px;
    }
    
    /* Full-width buttons */
    .btn {
        min-height: 48px;
        width: 100%;
    }
    
    .action-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .action-buttons .btn {
        width: 100%;
    }
    
    /* Stack quick action cards */
    .quick-action-card {
        padding: 12px;
        flex-direction: column;
        text-align: center;
    }
    
    .action-arrow {
        display: none;
    }
    
    /* Services grid becomes single column */
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    /* Stats grid becomes single column or 2 columns */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Help categories full width */
    .help-categories {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Transaction table becomes scrollable */
    .transactions-table {
        overflow-x: auto;
    }
    
    .transactions-table table {
        min-width: 400px;
    }
    
    /* Support methods stack vertically */
    .support-methods {
        gap: 15px;
    }
    
    /* Profile fields responsive */
    .field-row {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 0;
    }
    
    /* FAQ items full width */
    .faq-item summary {
        padding: 12px;
        font-size: 13px;
    }
    
    .faq-item p {
        padding: 12px;
        font-size: 12px;
    }
    
    /* Reduce padding in sections */
    .plan-info,
    .payment-info,
    .address-info {
        flex-direction: column;
        gap: 12px;
        padding: 12px;
    }
    
    /* Activity list responsive */
    .activity-item {
        gap: 12px;
        padding: 10px;
    }
    
    .activity-time {
        min-width: 50px;
        font-size: 11px;
    }
    
    .activity-description {
        font-size: 12px;
    }
    
    /* Sidebar nav items smaller on mobile */
    .sidebar-nav-item {
        padding: 12px 16px;
        font-size: 14px;
        gap: 12px;
    }
    
    .sidebar-nav-item svg {
        width: 18px;
        height: 18px;
    }
}

/* Hide free-account CTA on plans shortcode when rendered on homepage */
.zoomies-free-account-option {
    display: none !important;
}

/* SMALL MOBILE BREAKPOINT (max-width: 480px) */
@media (max-width: 480px) {
    /* Even more compact layout */
    .page-header-banner {
        padding: 20px 12px;
    }
    
    .page-header-emoji {
        font-size: 32px;
    }
    
    .header-banner-text h2 {
        font-size: 20px;
    }
    
    .header-banner-text p {
        font-size: 12px;
    }
    
    /* Minimal padding on pages */
    .page-content-wrapper {
        padding: 12px;
        gap: 12px;
    }
    
    .dashboard-section {
        padding: 15px;
        border-radius: 8px;
    }
    
    .dashboard-section h3 {
        font-size: 15px;
        margin-bottom: 12px;
    }
    
    /* Very touch-friendly buttons */
    .btn {
        min-height: 44px;
        padding: 12px 16px;
        font-size: 14px;
    }
    
    /* Single column grid layouts */
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 20px;
    }
    
    /* Compact quick actions */
    .quick-action-card {
        padding: 0;
        margin-bottom: 0;
    }
    
    .action-icon {
        width: 28px;
        height: 28px;
    }
    
    .action-title {
        font-size: 13px;
    }
    
    .action-description {
        font-size: 11px;
    }
    
    /* Smaller form fields */
    .form-group {
        margin-bottom: 15px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Prevent zoom on iOS */
        padding: 12px;
    }
    
    /* Stack form rows */
    .form-row {
        flex-direction: column;
    }
    
    /* Compact profile fields */
    .field-row {
        padding: 8px 0;
    }
    
    .field-label {
        font-size: 12px;
    }
    
    .field-value {
        font-size: 13px;
    }
    
    /* Compact activity */
    .activity-item {
        padding: 8px;
        gap: 10px;
    }
    
    /* Hide less important info on very small screens */
    .help-link {
        font-size: 12px;
        padding: 6px 0;
    }
    
    /* Responsive table */
    .transactions-table th,
    .transactions-table td {
        padding: 8px 6px;
        font-size: 12px;
    }
    
    /* Compact security section */
    .security-item {
        padding: 15px 0;
    }
    
    /* Reduce icon sizes */
    .support-method svg {
        width: 24px;
        height: 24px;
    }
    
    .method-title {
        font-size: 13px;
    }
    
    /* Sidebar toggle position */
    .mobile-menu-toggle {
        width: 40px;
        height: 40px;
        top: 12px;
        left: 12px;
    }
    
    /* Responsive modal for mobile */
    .modal-container {
        width: 95%;
        max-width: calc(100% - 20px);
        border-radius: 12px;
    }
    
    .modal-header {
        padding: 15px;
    }
    
    .modal-header h3 {
        font-size: 16px;
    }
    
    .modal-body {
        padding: 15px;
        max-height: calc(100vh - 120px);
        overflow-y: auto;
    }
}

/* Existing responsive adjustments */
@media (max-width: 600px) {
    .zoomies-coupon-success-badge {
        padding: 14px;
        gap: 10px;
    }
    
    .coupon-badge-icon {
        width: 28px;
        height: 28px;
    }
    
    .coupon-badge-icon svg {
        width: 16px;
        height: 16px;
    }
    
    .coupon-badge-title {
        font-size: 14px;
    }
    
    .coupon-badge-title strong {
        font-size: 14px;
    }
    
    .coupon-badge-details {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .new-price {
        font-size: 18px;
    }
}

/* ==================== Multi-Dog Dashboard Layout ==================== */

/* Dog Group Container */
.dog-group {
    margin-bottom: 30px;
}

.dog-group:last-child {
    margin-bottom: 0;
}

/* Dog Header with Photo and Info */
.dog-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid #e5e7eb;
}

.dog-photo-container {
    flex-shrink: 0;
}

.dog-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #E2A422;
}

.dog-photo-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #E2A422 0%, #F4C430 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.dog-info-editable {
    flex: 1;
}

.dog-name {
    font-size: 24px;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0 0 4px 0;
    padding: 4px 8px;
    border-radius: 4px;
    transition: background 0.2s;
}

.dog-name[contenteditable="true"] {
    background: #fff;
    border: 2px solid #E2A422;
    outline: none;
}

.dog-details {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 14px;
    color: #6b7280;
}

.dog-breed,
.dog-age {
    padding: 4px 8px;
    border-radius: 4px;
    transition: background 0.2s;
}

.dog-breed[contenteditable="true"],
.dog-age[contenteditable="true"] {
    background: #fff;
    border: 2px solid #E2A422;
    outline: none;
}

.detail-separator {
    color: #d1d5db;
}

.dog-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.btn-icon-only {
    padding: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-icon-only:hover {
    background: #f9fafb;
    border-color: #E2A422;
    color: #E2A422;
}

.btn-add-plan-to-dog {
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-add-plan-to-dog svg {
    flex-shrink: 0;
}

.btn-secondary-outline {
    background: #fff;
    color: #1A1A1A;
    border: 1px solid #d1d5db;
}

.btn-secondary-outline:hover {
    background: #f9fafb;
    border-color: #E2A422;
    color: #E2A422;
}

/* Green edit button */
.btn-edit-green {
    background: #10b981;
    color: #fff;
    border: none;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-edit-green svg {
    flex-shrink: 0;
}

.btn-edit-green:hover {
    background: #059669;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(16, 185, 129, 0.2);
}

.btn-edit-green:active {
    background: #047857;
    transform: translateY(0);
}

/* Memberships Grid (2 columns) */
.memberships-grid {
    display: grid;
    gap: 16px;
}

/* ========== Membership Card Design ========== */
.dog-membership-card {
    background: #fff;
    border: 1px solid #D6CAC0;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    font-family: "Outfit", Sans-serif;
    margin-bottom: 24px;
}

.dog-membership-card:hover {

}

/* Member ID Header Bar */
.membership-card-header-bar {
    background: #314f3f;
    color: #fff;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.member-id-display {
    display: flex;
    align-items: center;
    gap: 12px;
}

.member-id-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    opacity: 0.9;
    font-family: "Outfit", Sans-serif;
}

.member-id-value {
    font-size: 16px;
    font-weight: 700;
    font-family: "Outfit", Sans-serif;
}

.member-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
    animation: pulse 2s ease-in-out infinite;
}

.member-status-badge.active .status-dot {
    background: #86efac;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* Card Body */
.membership-card-body {
    padding: 32px 24px 24px;
    display: flex;
    gap: 34px;
}

/* Left: Avatar Section */
.member-avatar-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.member-avatar-container {
    position: relative;
    height:110px !important;
    width:110px !important;

}
.member-avatar-container .member-avatar{
    position: relative;
    height:110px !important;
    width:110px !important;
 border: 1px solid #E2A422;
    border-radius: 50%;
    object-fit: cover;
}


.member-avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #1f7a54;
    box-shadow: 0 0 0 8px rgba(31, 122, 84, 0.15);
}

.member-avatar-placeholder {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: 2px solid #57725a;

}

.member-verified-badge {
    position: absolute;
    bottom: 4px;
    right: 4px;
    width: 28px;
    height: 28px;
    background: #1f7a54;
    border-radius: 50%;
    border: 3px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 2px 8px rgba(31, 122, 84, 0.3);
}

/* Edit Button */
.btn-edit-member {
    width: 32px;
    height: 32px;
    padding: 0;
    background: transparent;
    color: #6B7280;
    border: 1px solid #E5E7EB;
    border-radius: 6px;
    font-size: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.btn-edit-member svg {
    stroke: #6B7280;
    width: 16px;
    height: 16px;
}

.btn-edit-member:hover {
    background: #F9FAFB;
    border-color: #D1D5DB;
    color: #1f7a54;
}

.btn-edit-member:hover svg {
    stroke: #1f7a54;
}

.btn-edit-member:focus-visible {
    outline: 3px solid #E2A422;
    outline-offset: 2px;
}

/* Right: Member Info Section */
.member-info-section {
    flex: 1;
    min-width: 0;
}

.member-name-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 4px;
}

.member-name {
    font-size: 26px;
    font-weight: 700;
    color: #241E1E;
    margin: 0;
    line-height: 1.2;
    font-family: "Outfit", Sans-serif;
}

.member-subtitle {
    font-size: 12px;
    font-weight: 600;
    color: #9CA3AF;
    font-family: "Outfit", Sans-serif;
    letter-spacing: 1px;
    margin: 0 0 20px 0;
}

/* Info Grid */
.member-info-grid {
    display: grid;

    gap: 16px 24px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #E5E7EB;
}

/* Membership Details Grid */
.membership-details-grid {
    display: grid;

    gap: 16px 24px;
    margin-bottom: 20px;
}

/* DESKTOP BREAKPOINT: Keep 3 columns on large screens */
@media (min-width: 1081px) {
    .membership-details-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px 24px;
    }
}

@media (min-width: 768px) and (max-width: 1080px) {
    .membership-details-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px 24px;
    }
}



.info-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.info-label {
    font-size: 11px;
    font-weight: 600;
    color: #6B7280;
    letter-spacing: 0.5px;
    font-family: "Outfit", Sans-serif;
    text-transform: uppercase;
}

.info-value {
    font-size: 15px;
    font-weight: 600;
    color: #241E1E;
    font-family: "Outfit", Sans-serif;
    display: flex;
    align-items: center;
    gap: 6px;
}

.info-value svg {
    stroke: #57725a;
    display: block;
    flex-shrink: 0;
}

/* Stats Box */
.member-stats-box {
    background: rgba(31, 122, 84, 0.06);
    border: 1px solid rgba(31, 122, 84, 0.15);
    border-radius: 10px;
    padding: 16px;
    display: flex;
    gap: 24px;
}

.stats-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stats-item svg {
    color: #1f7a54;
    flex-shrink: 0;
}

.stats-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}


.stats-label {
    font-size: 11px;
    font-weight: 600;
    color: #6B7280;
}

.stats-value {
    font-size: 18px;
    font-weight: 700;
    color: #1f7a54;
    font-family: "Outfit", Sans-serif;
}

/* Services Pills */
.dog-services-row {
    padding: 0 24px 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* Action Button */
.btn-add-new-plan {
    width: 100%;
    padding: 14px 24px;
    background: #E2A422;
    color: #241E1E;
    border: none;
    border-radius: 100px;
    font-family: "Outfit", Sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 16px;
}

.btn-add-new-plan:hover {
    background: #FFFBEA;
    color: #1A1A1A;
}

.btn-add-new-plan:active {
    background: #E85D3C;
    color: #FFFFFF;
}

.btn-add-new-plan svg {
    width: 18px;
    height: 18px;
}

/* Footer Text */
.membership-card-footer-text {
    padding: 16px 24px;
    border-top: 1px solid #F3F4F6;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: "Outfit", Sans-serif;
    font-size: 13px;
    color: #6B7F6C;
    font-weight: 500;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.membership-card-footer-text svg {
    opacity: 0.5;
}

.card-id {
    font-family: "Outfit", Sans-serif;
    font-size: 11px;
    color: #6B7F6C;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .membership-card-header-bar {
        padding: 12px 16px;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }
    
    .membership-card-body {
        flex-direction: row;
        align-items: flex-start;
        padding: 24px 16px 16px;
        gap: 16px;
    }
    
    .member-avatar-section {
        flex-direction: column;
        align-items: center;
        flex-shrink: 0;
        gap: 8px;
    }
    
    .member-avatar-container {
        width: 80px !important;
        height: 80px !important;
    }
    
    .member-avatar,
    .member-avatar-placeholder {
        width: 80px !important;
        height: 80px !important;
        border-width: 3px;
    }
    
    .member-avatar-placeholder svg {
        width: 40px;
        height: 40px;
    }
    
    .member-verified-badge {
        width: 22px;
        height: 22px;
        border-width: 2px;
    }
    
    .member-verified-badge svg {
        width: 12px;
        height: 12px;
    }
    
    .member-info-section {
        flex: 1;
        min-width: 0;
    }
    
    .member-name-row {
        justify-content: space-between;
    }
    
    .btn-edit-member {
        flex-shrink: 0;
    }
    
    .member-name {
        font-size: 22px;
    }
    
    .member-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    /* Membership details grid: keep 3 columns side-by-side */
    .membership-details-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px 16px;
        font-size: 13px;
    }
    
    .membership-details-grid .info-label {
        font-size: 10px;
    }
    
    .membership-details-grid .info-value {
        font-size: 13px;
    }
    
    .member-stats-box {
        flex-direction: column;
        gap: 16px;
    }
    
    .membership-card-footer {
        padding: 0 16px 16px;
    }
    
    .membership-card-footer-text {
        padding: 12px 16px;
        font-size: 12px;
        justify-content: space-between;
    }
    
    .card-id {
        font-size: 10px;
    }
}

/* Small Mobile: Single column for info grid */
@media (max-width: 480px) {
    .membership-card-body {
        display: grid;
        grid-template-columns: auto 1fr auto;
        grid-template-rows: auto auto;
        gap: 12px 16px;
    }
    
    .member-avatar-section {
        grid-column: 1;
        grid-row: 1;
        width: auto;
    }
    
    .member-info-section {
        grid-column: 1 / -1;
        grid-row: 2;
        width: 100%;
    }
    
    .member-name-row {
        margin-bottom: 8px;
        display: block;
    }
    
    .btn-edit-member {
        position: absolute;
        top:84px;
        right: 16px;
        margin: 0;
    }
    
    .member-info-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    /* Stack membership details below 480px */
    .membership-details-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    /* Stack footer content below 480px */
    .membership-card-footer-text {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 8px;
    }
}

/* Card Header with Avatar and Edit Button */
.dog-card-header-v2 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 16px;
}

.dog-card-main-info {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.dog-avatar-container {
    position: relative;
    flex-shrink: 0;
}

.dog-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #E2A422;
}

.dog-avatar-placeholder {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #E2A422 0%, #F4C430 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.dog-active-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 24px;
    height: 24px;
    background: #1f7a54;
    border-radius: 50%;
    border: 3px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

/* Circular Edit Button */
.btn-edit-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #1f7a54;
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.btn-edit-circle:hover {
    background: #216c4c;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(31, 122, 84, 0.3);
}

.btn-edit-circle:active {
    transform: translateY(0);
    background: #1a5d3f;
}

.btn-edit-circle:focus-visible {
    outline: 3px solid #E2A422;
    outline-offset: 2px;
}

/* Dog Info Section */
.dog-card-info-v2 {
    flex: 1;
    min-width: 0;
}

.dog-name-v2 {
    font-family: "Outfit", Sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #241E1E;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.dog-details-v2 {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.dog-detail-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #6B7280;
}

.dog-detail-item svg {
    flex-shrink: 0;
    opacity: 0.6;
}

/* Stats Row */
.dog-stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    padding: 20px;
    background: #F9FAFB;
    border-radius: 8px;
    margin-bottom: 16px;
}

.dog-stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dog-stat-item .stat-icon {
    width: 40px;
    height: 40px;
    background: #1f7a54;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.dog-stat-item:hover .stat-icon {
    background: #216c4c;
    transform: translateY(-2px);
    flex-shrink: 0;
}

.dog-stat-item .stat-icon svg {
    color: #fff;
}

.dog-stat-item .stat-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.dog-stat-item .stat-label {
    font-size: 11px;
    font-weight: 600;
    color: #241E1E;
    line-height: 1;
    font-family: "Outfit", Sans-serif;
}

.stat-value-primary {
    color: #1f7a54;
}

.stat-value-active {
    color: #1f7a54;
}

.stat-value-primary {
    color: #10b981;
}

.stat-value-active {
    color: #10b981;
}

.stat-value-pending {
    color: #F59E0B;
}

.stat-value-inactive {
    color: #6B7280;
}

/* Services Pills */
.dog-services-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: #1f7a54;
    border: 1px solid #1f7a54;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    font-family: "Outfit", Sans-serif;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-pill:hover {
    background: #1f7a54;
    color: #fff;
    transform: translateY(-1px)enter;
    padding: 6px 12px;
    background: #D1FAE5;
    color: #10b981;
    border: 1px solid #10b981;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
}

.service-pill-more {
    background: #F3F4F6;
    color: #6B7280;
    border-color: #E5E7EB;
    cursor: pointer8px;
    background: #1f7a54;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    font-family: "Outfit", Sans-serif;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), 
                box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1), 
                background 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-add-plan-outline:hover {
    background: #216c4c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(31, 122, 84, 0.3);
}

.btn-add-plan-outline:focus-visible {
    outline: 3px solid #E2A422;
    outline-offset: 2px;
}

.btn-add-plan-outline:active {
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-add-plan-outline:hover {
    background: #F9FAFB;
    border-color: #10b981;
    color: #10b981;
    transform: translateY(-1px);
}

.btn-add-plan-outline svg {
    flex-shrink: 0;
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .dog-card-v2 {
        padding: 20px;
    }
    
    .dog-card-main-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .dog-avatar,
    .dog-avatar-placeholder {
        width: 60px;
        height: 60px;
        border-width: 2px;
    }
    
    .dog-avatar-placeholder svg {
        width: 32px;
        height: 32px;
    }
    
    .dog-active-badge {
        width: 20px;
        height: 20px;
        border-width: 2px;
    }
    
    .dog-active-badge svg {
        width: 10px;
        height: 10px;
    }
    
    .btn-edit-circle {
        width: 40px;
        height: 40px;
    }
    
    .btn-edit-circle svg {
        width: 14px;
        height: 14px;
    }
    
    .dog-name-v2 {
        font-size: 18px;
    }
    
    .dog-stats-row {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 16px;
    }
    
    .dog-stat-item .stat-icon {
        width: 36px;
        height: 36px;
    }
    
    .dog-stat-item .stat-icon svg {
        width: 16px;
        height: 16px;
    }
    
    .stat-value {
        font-size: 16px;
    }
    
    .dog-services-row {
        gap: 6px;
    }
    
    .service-pill {
        padding: 5px 10px;
        font-size: 11px;
    }
}

@media (min-width: 768px) {
    .memberships-grid {
    
    }
}

/* Membership Card Adjustments for Multi-Dog */
.memberships-grid .membership-card-modern {
    margin: 0;
    background: #fff;
    color: #1A1A1A;
    border: 1px solid #E5E7EB;
}

.memberships-grid .membership-card-header {
    border-bottom: 1px solid #F3F4F6;
}

.memberships-grid .membership-title {
    font-size: 18px;
    color: #1A1A1A !important;
}

.membership-badge-pill {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    background: #10b981;
    color: #fff;
}

.membership-badge-pill.badge-pending {
    background: #fbbf24;
    color: #78350f;
}

.membership-badge-pill.badge-expired {
    background: #ef4444;
    color: #fff;
}

.membership-badge-pill.badge-active {
    background: #10b981;
    color: #fff;
}

/* Memberships Grid (2 columns) */
.memberships-grid {
    display: grid;

    gap: 16px;
}

@media (min-width: 768px) {
    .memberships-grid {

    }
}

/* Membership Card Adjustments for Multi-Dog */
.memberships-grid .membership-card-modern {
    margin: 0;
}

.memberships-grid .membership-card-header {

}

.memberships-grid .membership-title {
    font-size: 18px;
}

/* Section Header with Actions */
.section-header-inline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.section-header-inline h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #1A1A1A;
}

.section-actions {
    display: flex;
    gap: 8px;
}

.btn-add-dog {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Responsive adjustments for multi-dog layout */
@media (max-width: 768px) {
    /* Move Add Dog button to bottom */
    .dashboard-section.dogs-memberships {
        display: flex;
        flex-direction: column;
    }
    
    .dashboard-section.dogs-memberships .section-header-inline {
        order: -1;
    }
    
    .dashboard-section.dogs-memberships .dog-membership-card {
        order: 0;
    }
    
    .dashboard-section.dogs-memberships .section-actions {
        order: 999;
        width: 100%;
        margin-top: 20px;
    }
    
    .dog-header {
        flex-wrap: wrap;
    }
    
    .dog-actions {
        width: 100%;
        justify-content: flex-end;
    }
    
    .memberships-grid {
        grid-template-columns: 1fr;
    }
    
    .dog-name {
        font-size: 20px;
    }
    
    .dog-photo,
    .dog-photo-placeholder {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .section-header-inline {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .section-actions {
        width: 100%;
    }
    
    .btn-add-dog {
        width: 100%;
        justify-content: center;
    }
    
    .dog-group {
        padding: 0;
    }
}

/* ==================== Unassigned Memberships Section (Legacy) ==================== */

.unassigned-memberships-section {
  
}

.unassigned-header {
    margin-bottom: 24px;
}

.unassigned-header-content {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.unassigned-header-content svg {
    flex-shrink: 0;
    margin-top: 4px;
}

.unassigned-header-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0 0 8px 0;
}

.unassigned-header-content p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Unassigned notice badge inside card */
.unassigned-notice {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: rgba(254, 243, 199, 0.3);
    border-radius: 12px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.unassigned-notice svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    stroke: rgba(255, 255, 255, 0.8);
}

.btn-assign-to-dog {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-assign-to-dog svg {
    width: 16px;
    height: 16px;
}

/* Assign to Dog Modal Styles */
#assign-dog-modal .modal-container {
    max-width: 500px;
}

#assign-dog-modal .assign-option-card {

    cursor: pointer;
    transition: all 0.2s;
}

#assign-dog-modal .assign-option-card:hover {

}

#assign-dog-modal .assign-option-card.selected {

}

#assign-dog-modal .assign-option-card h4 {
    margin: 0 0 12px 0;
    font-size: 15px;
    font-weight: 600;
    color: #1A1A1A;
}

#assign-dog-modal .dog-select-list {
    max-height: 300px;
    overflow-y: auto;
    padding: 12px;
    background: #f9fafb;
    border-radius: 8px;
}

#assign-dog-modal .dog-select-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #fff;
    border: 2px solid transparent;
    border-radius: 8px;
    margin-bottom: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

#assign-dog-modal .dog-select-item:hover {
    border-color: #E2A422;
}

#assign-dog-modal .dog-select-item.selected {
    border-color: #E2A422;
    background: #FFF9E6;
}

#assign-dog-modal .dog-select-photo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #E2A422 0%, #F4C430 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    font-size: 18px;
}

#assign-dog-modal .dog-select-info h5 {
    margin: 0 0 4px 0;
    font-size: 16px;
    color: #1A1A1A;
}

#assign-dog-modal .dog-select-info p {
    margin: 0;
    font-size: 13px;
    color: #666;
}

#assign-dog-modal .new-dog-form {

}

@media (max-width: 768px) {
    .unassigned-memberships-section {

    }
    
    .unassigned-header-content {
        flex-direction: column;
        gap: 12px;
    }
}

/* ==================== Upgrade Shortcode Styles ==================== */

.zoomies-upgrade-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

.zoomies-upgrade-container h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #171717;
}

.upgrade-intro {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 40px;
}

.dog-memberships-group {
    margin-bottom: 40px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
}

.dog-header-upgrade {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    border-bottom: 1px solid #e5e7eb;
}

.dog-photo-upgrade {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.dog-photo-placeholder-upgrade {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.dog-photo-placeholder-upgrade svg {
    color: #9ca3af;
}

.dog-info-upgrade h3 {
    font-size: 24px;
    font-weight: 700;
    color: #171717;
    margin: 0;
}

.dog-info-upgrade .dog-breed {
    font-size: 14px;
    color: #6b7280;
    margin: 4px 0 0 0;
}

.memberships-list-upgrade {
    padding: 24px;
}

.membership-upgrade-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 16px;
    overflow: hidden;
}

.membership-upgrade-card:last-child {
    margin-bottom: 0;
}

.current-membership-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    gap: 20px;
}

.membership-details h4 {
    font-size: 20px;
    font-weight: 700;
    color: #171717;
    margin: 0 0 8px 0;
}

.membership-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.membership-status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.membership-status.status-active {
    background: #dcfce7;
    color: #166534;
}

.membership-status.status-pending {
    background: #fef3c7;
    color: #92400e;
}

.membership-status.status-expired {
    background: #fee2e2;
    color: #991b1b;
}

.membership-expiry {
    font-size: 14px;
    color: #6b7280;
}

.current-plan-price {
    font-size: 16px;
    font-weight: 600;
    color: #374151;
}

.btn-view-upgrades {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #3b82f6;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.btn-view-upgrades:hover {
    background: #2563eb;
    transform: translateY(-1px);
}

.btn-view-upgrades svg {
    transition: transform 0.3s;
}

.no-upgrades-badge {
    padding: 8px 16px;
    background: #f3f4f6;
    color: #6b7280;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
}

.upgrade-options {
    padding: 20px;
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
}

.upgrade-options h5 {
    font-size: 16px;
    font-weight: 700;
    color: #374151;
    margin: 0 0 16px 0;
}

.upgrade-plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.upgrade-plan-option {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 20px;
    transition: all 0.2s;
}

.upgrade-plan-option:hover {
    border-color: #3b82f6;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

.upgrade-plan-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.upgrade-plan-header h6 {
    font-size: 18px;
    font-weight: 700;
    color: #171717;
    margin: 0;
}

.upgrade-plan-badge {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.upgrade-plan-badge.sale {
    background: #fee2e2;
    color: #991b1b;
}

.upgrade-plan-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 12px;
}

.upgrade-plan-price .price-original {
    font-size: 16px;
    color: #9ca3af;
    text-decoration: line-through;
}

.upgrade-plan-price .price-sale,
.upgrade-plan-price .price-current {
    font-size: 24px;
    font-weight: 700;
    color: #171717;
}

.upgrade-plan-price .price-period {
    font-size: 14px;
    color: #6b7280;
}

.upgrade-plan-desc {
    font-size: 14px;
    color: #6b7280;
    margin: 0 0 16px 0;
    line-height: 1.5;
}

.btn-upgrade-to-plan {
    display: block;
    width: 100%;
    padding: 12px;
    background: #3b82f6;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-upgrade-to-plan:hover {
    background: #2563eb;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* Responsive Upgrade Styles */
@media (max-width: 768px) {
    .current-membership-info {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .btn-view-upgrades {
        width: 100%;
        justify-content: center;
    }
    
    .upgrade-plans-grid {
        grid-template-columns: 1fr;
    }
    
    .dog-header-upgrade {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
}
/* ==================== Optional Plan Selection Styles ==================== */
/* Optional label styling */
.optional-label {
    font-size: 13px;
    font-weight: 400;
    color: #6B7280;
    font-style: italic;
}

/* Section help text */
.section-help-text {
    font-size: 14px;
    color: #6B7280;
    margin: -5px 0 20px 0;
    line-height: 1.5;
}

/* Skip plan option card styling */
.plan-skip-option {
    border: 2px dashed #D1D5DB !important;
    background: #F9FAFB !important;
}

.plan-skip-option:hover {
    border-color: #9CA3AF !important;
    background: #F3F4F6 !important;
}

.plan-skip-option input:checked + .plan-content {
    background: transparent !important;
}

.plan-skip-option .plan-content {
    color: #374151;
}

.plan-skip-option .plan-content h4 {
    color: #1F2937;
}

.plan-skip-option .plan-content .plan-description {
    color: #6B7280;
    font-style: italic;
}

/* No membership enhanced view */
.no-membership-cta {
    text-align: center;
    padding: 48px 32px;
    background: #F9FAFB;
    border-radius: 12px;
    margin-top: 32px;
}

.no-membership-cta .cta-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.no-membership-cta .cta-icon svg {
    width: 48px;
    height: 48px;
    color: #10b981;
}

.no-membership-cta h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0 0 12px 0;
}

.no-membership-cta p {
    font-size: 16px;
    color: #6B7280;
    margin: 0 0 28px 0;
    line-height: 1.6;
}

.no-membership-cta .cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Dogs grid in no-membership view */
.no-membership .dogs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.no-membership .dog-card {
    background: #fff;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.no-membership .dog-card:hover {
    border-color: #E2A422;
    box-shadow: 0 8px 24px rgba(226, 164, 34, 0.15);
    transform: translateY(-2px);
}

.no-membership .dog-card-content {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.no-membership .dog-card-avatar {
    flex-shrink: 0;
}

.no-membership .dog-card .dog-photo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #E2A422;
}

.no-membership .dog-card .dog-photo-placeholder {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #E2A422 0%, #F4C430 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.no-membership .dog-card-info {
    flex: 1;
    min-width: 0;
}

.no-membership .dog-card-header {
    margin-bottom: 8px;
}

.no-membership .dog-card-header h4 {
    font-size: 20px;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0;
    line-height: 1.3;
}

.no-membership .dog-card-details {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 14px;
    color: #6B7280;
    line-height: 1.5;
}

.no-membership .dog-card-details .dog-breed {
    font-weight: 500;
    color: #374151;
}

.no-membership .dog-card-details .dog-age {
    color: #6B7280;
}

.no-membership .dog-card-details .detail-separator {
    color: #D1D5DB;
    font-weight: 700;
}

.no-membership .dog-card-actions {
    display: flex;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid #F3F4F6;
}

.no-membership .dog-card-actions .btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 16px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.no-membership .dog-card-actions .btn svg {
    flex-shrink: 0;
}

.no-membership .dog-card-actions .btn-edit-green {
    background: #10b981;
    color: #fff;
    border: none;
}

.no-membership .dog-card-actions .btn-edit-green:hover {
    background: #059669;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.no-membership .dog-card-actions .btn-secondary-outline {
    background: transparent;
    color: #6B7280;
    border: 2px solid #E5E7EB;
}

.no-membership .dog-card-actions .btn-secondary-outline:hover {
    background: #F9FAFB;
    border-color: #E2A422;
    color: #E2A422;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .no-membership-cta {
        padding: 32px 24px;
    }
    
    .no-membership-cta .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .no-membership-cta .cta-buttons .zoomies-btn-primary,
    .no-membership-cta .cta-buttons .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .no-membership .dogs-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .no-membership .dog-card {
        padding: 20px;
    }
    
    .no-membership .dog-card-content {
        gap: 12px;
    }
    
    .no-membership .dog-card .dog-photo,
    .no-membership .dog-card .dog-photo-placeholder {
        width: 60px;
        height: 60px;
        border-width: 2px;
    }
    
    .no-membership .dog-card .dog-photo-placeholder svg {
        width: 32px;
        height: 32px;
    }
    
    .no-membership .dog-card-header h4 {
        font-size: 18px;
    }
    
    .no-membership .dog-card-details {
        font-size: 13px;
    }
    
    .no-membership .dog-card-actions {
        flex-direction: column;
        gap: 8px;
    }
    
    .no-membership .dog-card-actions .btn {
        width: 100%;
    }

    .no-membership .dogs-grid {
        grid-template-columns: 1fr;
    }
}
/* ============================================
   Free Account Option (Plans Page)
   ============================================ */

.zoomies-free-account-option {
    margin: 60px auto 0;
    padding: 40px 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    text-align: center;
    max-width: 600px;
    border: 2px dashed #dee2e6;
}

.free-account-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #241E1E;
    margin: 0 0 12px 0;
}

.free-account-content p {
    font-size: 16px;
    color: #6c757d;
    margin: 0 0 24px 0;
    line-height: 1.5;
}

.zoomies-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: white;
    color: #241E1E;
    border: 2px solid #241E1E;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.zoomies-btn-outline:hover {
    background: #241E1E;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(36, 30, 30, 0.2);
}

.zoomies-btn-outline:hover svg {
    stroke: white;
}

.zoomies-btn-outline svg {
    transition: stroke 0.3s ease;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .zoomies-free-account-option {
        margin: 40px 20px 0;
        padding: 30px 20px;
    }
    
    .free-account-content h3 {
        font-size: 20px;
    }
    
    .free-account-content p {
        font-size: 14px;
    }
    
    .zoomies-btn-outline {
        padding: 12px 24px;
        font-size: 14px;
    }
}

/* ==================== Dog Plan Features Cards ==================== */
.dog-plan-features {
    margin-top: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.dog-plan-features-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.dog-plan-features-title {
    margin: 0;
    font-size: 14px;
    color: #6B7F6C;
    font-weight: 600;
}

.dog-plan-features-list {
    margin: 0;
    padding-left: 20px;
    font-size: 13px;
    color: #666;
}

.dog-plan-features-list li {
    margin-bottom: 5px;
}

.dog-plan-features-empty {
    margin: 0;
    font-size: 13px;
    color: #999;
}

.dog-plan-features-actions {
    margin-top: 15px;
    display: flex;
    gap: 10px;
}

.dog-plan-features-actions button {
    font-size: 12px;
    padding: 6px 12px;
}

/* Order Summary Quantity Badge */
.price-per-unit {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.quantity-value {
    display: flex;
    align-items: center;
}

.quantity-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: linear-gradient(135deg, #E2A422 0%, #F4C430 100%);
    color: #241E1E;
    border-radius: 16px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(226, 164, 34, 0.3);
    letter-spacing: 0.3px;
}

.quantity-badge svg {
    flex-shrink: 0;
    stroke-width: 2.5;
    width: 14px;
    height: 14px;
}

.dog-plan-features-actions .btn-add-plan-to-dog {
    background: #E2A422;
    color: #241E1E;
    border-color: #E2A422;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.dog-plan-features-actions .btn-add-plan-to-dog:hover {
    background: #FFFBEA;
    color: #1A1A1A;
    border-color: #FFFBEA;
}

.dog-plan-features-actions .btn-add-plan-to-dog:active,
.dog-plan-features-actions .btn-add-plan-to-dog:focus {
    background: #E85D3C;
    color: #FFFFFF;
    border-color: #E85D3C;
}

.dog-plan-features-actions .btn-add-plan-to-dog svg {
    width: 14px;
    height: 14px;
    stroke-width: 2.5;
}

.dog-plan-features-actions .cancel-membership {
    font-size: 12px;
    color: #E85D3C;
}

/* Status Badges */
.plan-status-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    color: white;
}

.plan-status-badge.status-active {
    background: #10b981;
}

.plan-status-badge.status-pending {
    background: #57725a;
}

.plan-status-badge.status-cancelled {
    background: #E85D3C;
}

.plan-status-badge.status-expired {
    background: #999;
}

.plan-status-badge.status-upgraded {
    background: rgb(197, 182, 141);
    color: rgb(49, 79, 63);
}

/* Dog Avatar Placeholder Background */
.member-avatar-placeholder,
.dog-photo-placeholder {
    background-color: #57725a;
}

/* ===== INLINE BILLING FORMS ===== */
/* Form styling matching checkout/registration forms */
.zoomies-form-group {
    margin-bottom: 20px;
}

.zoomies-form-group label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    color: #374151;
    margin-bottom: 8px;
}

.zoomies-form-group label .required {
    color: #dc2626;
}

.zoomies-form-group input,
.zoomies-form-group select,
.zoomies-form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 16px;
    color: #1A1A1A;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    transition: all 0.2s ease;
    background: white;
}

.zoomies-form-group input:focus,
.zoomies-form-group select:focus,
.zoomies-form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.zoomies-form-group input::placeholder,
.zoomies-form-group textarea::placeholder {
    color: #9CA3AF;
}

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

@media (max-width: 768px) {
    .zoomies-form-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

.form-messages {
    margin-bottom: 20px;
}

.form-messages .message {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 10px;
}

.form-messages .message.success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #d1fae5;
}

.form-messages .message.error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.form-messages .message svg {
    flex-shrink: 0;
}

.form-actions {
    margin-top: 24px;
}

.billing-form-inline,
.payment-form-inline {
    margin-top: 20px;
}

.payment-form-inline .form-text {
    color: #6B7280;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* Stripe Card Element Styling */
.stripe-card-element {
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    background: white;
    transition: all 0.2s ease;
    width: 100%;
    box-sizing: border-box;
    display: block;
    min-width: 0;
}

.stripe-card-element:focus-within {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.card-errors {
    color: #dc2626;
    font-size: 14px;
    margin-top: 8px;
    min-height: 20px;
}

/* Current Card Display in Inline Form */
.current-card-info {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 20px;
}

.current-card-info .card-info {
    font-size: 14px;
    color: #374151;
}

.current-card-info .card-info strong {
    color: #1A1A1A;
}

/* Button Loading State */
.btn .btn-loader {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn .btn-loader svg {
    animation: spin 1s linear infinite;
}

/* Profile and Password Inline Forms */
.profile-form-inline,
.password-form-inline {
    margin-top: 20px;
}

.profile-form-inline .form-text,
.password-form-inline .form-text {
    color: #6B7280;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.profile-form-inline .zoomies-form-group input[disabled],
.password-form-inline .zoomies-form-group input[disabled] {
    background-color: #f3f4f6;
    cursor: not-allowed;
    opacity: 0.6;
}

/* Form Messages */
.form-messages {
    margin-bottom: 20px;
}

.form-messages .alert {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.5;
}

.form-messages .alert-success {
    background-color: #dcfce7;
    color: #15803d;
    border: 1px solid #86efac;
}

.form-messages .alert-error {
    background-color: #fee2e2;
    color: #dc2626;
    border: 1px solid #fca5a5;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* ==================== MOBILE BOTTOM NAVIGATION ==================== */

/* Hidden by default, shown at 768px breakpoint */
.dashboard-bottom-nav-mobile {
    display: none;
}

/* Mobile breakpoint: Show bottom nav (768px and below) */
@media (max-width: 768px) {
    /* Mobile Bottom Navigation Container */
    .dashboard-bottom-nav-mobile {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        height: 60px;
        background: #314f3f;
        border-top: 1px solid #1f3535;
        box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.15);
        z-index: 1800;
        align-items: center;
        justify-content: center;
    }
    
    /* Bottom Nav List */
    .bottom-nav-list {
        display: flex;
        align-items: center;
        justify-content: space-around;
        width: 100%;
        height: 100%;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: 8px;
    }
    
    /* Bottom Nav Item */
    .bottom-nav-item {
        flex: 1;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Bottom Nav Link (Tab) */
    .bottom-nav-link {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
        text-decoration: none;
        color: #fffbea;
        transition: all 0.2s ease;
        position: relative;
        padding: 0;
        border: none;
        background: transparent;
        cursor: pointer;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }
    
    /* Bottom Nav Icon */
    .bottom-nav-icon {
        width: 20px;
        height: 20px;
        color: #fffbea;
        flex-shrink: 0;
        margin-bottom: 4px;
        transition: all 0.2s ease;
    }
    
    /* Bottom Nav Label */
    .bottom-nav-label {
        font-size: 11px;
        font-weight: 500;
        color: #fffbea;
        transition: all 0.2s ease;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    /* Inactive Tab State */
    .bottom-nav-link:not(.active) {
        color: #fffbea;
    }
    
    .bottom-nav-link:not(.active) .bottom-nav-icon {
        color: #fffbea;
        opacity: 0.7;
    }
    
    .bottom-nav-link:not(.active) .bottom-nav-label {
        color: #fffbea;
        opacity: 0.7;
    }
    
    /* Hover State */
    .bottom-nav-link:not(.active):hover,
    .bottom-nav-link:not(.active):focus {
        background: rgba(255, 251, 234, 0.1);
        outline: none;
    }
    
    .bottom-nav-link:not(.active):hover .bottom-nav-icon,
    .bottom-nav-link:not(.active):focus .bottom-nav-icon {
        transform: scale(1.05);
    }
    
    /* Active Tab State */
    .bottom-nav-link.active {
        color: #fffbea;
        font-weight: 700;
        border-bottom: 2px solid #fffbea;
        padding-bottom: 0;
    }
    
    .bottom-nav-link.active .bottom-nav-icon {
        color: #fffbea;
        font-weight: 700;
    }
    
    .bottom-nav-link.active .bottom-nav-label {
        color: #fffbea;
        font-weight: 700;
    }
    
    /* Active Tab Hover */
    .bottom-nav-link.active:hover,
    .bottom-nav-link.active:focus {
        background: rgba(255, 251, 234, 0.08);
        outline: none;
    }
    
    /* Touch feedback */
    .bottom-nav-link:active {
        transform: scale(0.98);
    }
}

.ssBtnDefault {
    display: none !important;
}