
/* ===================================
   PRICING PAGE STYLES - START
   =================================== */

/* ===== Pricing Hero Section ===== */
.pricing-hero-section {
    background: linear-gradient(135deg, #fff5ed 0%, #fffaf5 100%);
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    border-bottom: 1px solid #ffe8d6;
}

.pricing-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.pricing-main-title {
    font-size: 56px;
    font-weight: 700;
    color: var(--main-dark-txt-color);
    margin: 16px 0 24px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.pricing-hero-description {
    font-size: 20px;
    line-height: 1.6;
    color: var(--main-txt-color);
    margin: 0;
    max-width: 800px;
    margin: 0 auto;
}

/* Country Tabs Section */
.pricing-tabs-section {
    background: #ffffff;
    padding: 0 0 60px 0;
}

.pricing-tabs-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(252, 135, 0, 0.3) transparent;
}

.pricing-tabs-wrapper::-webkit-scrollbar {
    height: 6px;
}

.pricing-tabs-wrapper::-webkit-scrollbar-track {
    background: transparent;
    margin: 0 20px;
}

.pricing-tabs-wrapper::-webkit-scrollbar-thumb {
    background: #d0d0d0;
    border-radius: 3px;
}

.pricing-tabs-wrapper::-webkit-scrollbar-thumb:hover {
    background: #b0b0b0;
}

.pricing-country-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    min-width: min-content;
    border-bottom: 1px solid #e8e8e8;
}

.country-tab {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 24px;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.country-tab:hover {
    background: #f8f8f8;
    border-bottom-color: #cccccc;
}

.country-tab.active {
    background: transparent;
    border-bottom-color: var(--main-theme-color);
}

.tab-upcoming-badge {
    background: var(--main-theme-color);
    color: #ffffff;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.8px;
    padding: 4px 8px;
    border-radius: 3px;
    text-transform: uppercase;
    line-height: 1;
}

.country-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--main-dark-txt-color);
    line-height: 1.2;
}

.country-tab.active .country-name {
    color: var(--main-theme-color);
}

/* Pricing Cards Section */
.pricing-cards-section {
    background: #ffffff;
    padding: 0 0 80px 0;
}

.pricing-content {
    animation: fadeIn 0.4s ease;
}

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

/* Event Info Banner */
.pricing-event-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    padding: 24px;
    background: #f9f9f9;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    margin-bottom: 60px;
}

.event-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-icon {
    font-size: 24px;
}

.info-text {
    font-size: 16px;
    color: var(--main-txt-color);
}

/* Pricing Table Comparison */
.pricing-table-wrapper {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    margin-top: 20px;
    position: relative;
}

.pricing-table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}

.pricing-comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 1000px;
}
/* Pricing Scroll Arrows */
.pricing-scroll-arrow {
    position: absolute;
    top: 52%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid #e8e8e8;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.pricing-scroll-arrow:hover {
    background: #ffffff;
    border-color: var(--main-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.pricing-scroll-arrow:hover i {
    color: var(--main-color);
}

.pricing-scroll-arrow i {
    font-size: 20px;
    color: var(--main-dark-txt-color);
    transition: color 0.3s ease;
}

.pricing-scroll-left {
    left: 16px;
}

.pricing-scroll-right {
    right: 16px;
}

.pricing-scroll-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.pricing-scroll-arrow.hidden {
    opacity: 0;
    pointer-events: none;
}
/* Table Header */
.feature-column-header {
    background: #f9f9f9;
    padding: 32px 24px;
    text-align: left;
    font-size: 18px;
    font-weight: 700;
    color: var(--main-dark-txt-color);
    border-right: 1px solid #e8e8e8;
    border-bottom: 2px solid #e8e8e8;
    width: 250px;
    position: sticky;
    left: 0;
    top: 0px;
    z-index: 98;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
}

.ticket-column-header {
    background: #ffffff;
    padding: 32px 20px 15px 20px;
    text-align: center;
    border-left: 1px solid #e8e8e8;
    border-bottom: 2px solid #e8e8e8;
    vertical-align: top;
    position: sticky;
    top: 0px;
    min-width: 180px;
    z-index: 98;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.ticket-column-header.highlight-column {
    background: linear-gradient(180deg, #fff5ed 0%, #ffffff 100%);
    border-left: 2px solid var(--main-theme-color);
    border-right: 2px solid var(--main-theme-color);
}

.table-badge {
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    background: #333333;
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.8px;
    padding: 4px 12px;
    border-radius: 0 0 5px 5px;
    text-transform: uppercase;
    white-space: nowrap;
}

.table-badge.badge-popular {
    background: var(--main-theme-color);
}

.ticket-header-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 15px;
}

.ticket-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--main-dark-txt-color);
    margin: 0;
    line-height: 1.2;
}

.ticket-price {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 16px 0 0 0;
    border-top: 1px solid #e8e8e8;
}

.price-main {
    font-size: 32px;
    font-weight: 700;
    color: var(--main-dark-txt-color);
    line-height: 1;
}

.price-main .currency {
    font-size: 18px;
    font-weight: 700;
}

.price-original {
    font-size: 13px;
    color: var(--main-txt-color);
    text-decoration: line-through;
    opacity: 0.7;
}

/* Checkbox Styling */
.ticket-checkbox {
    margin-top: 12px;
}

.ticket-checkbox input[type="checkbox"] {
    display: none;
}

.checkbox-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    background: #f9f9f9;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 600;
    color: var(--main-dark-txt-color);
}

.checkbox-label::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #d0d0d0;
    border-radius: 4px;
    background: #ffffff;
    transition: all 0.3s ease;
}

.checkbox-label:hover {
    background: #f0f0f0;
    border-color: var(--main-theme-color);
}

.ticket-checkbox input[type="checkbox"]:checked + .checkbox-label {
    background: linear-gradient(135deg, #ff5a00 0%, #ff7800 100%);
    border-color: var(--main-theme-color);
    color: #ffffff;
}

.ticket-checkbox input[type="checkbox"]:checked + .checkbox-label::before {
    background: #ffffff;
    border-color: #ffffff;
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--main-theme-color);
    font-weight: 700;
    font-size: 14px;
}

/* Table Body */
.feature-row {
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s ease;
}

.feature-row:hover {
    background: #fafafa;
}

.feature-name {
    padding: 16px 24px;
    font-size: 15px;
    color: var(--main-dark-txt-color);
    font-weight: 500;
    border-right: 1px solid #e8e8e8;
    background: #ffffff;
    position: sticky;
    left: 0;
    z-index: 5;
    min-width: 250px;
    width: 250px;
}

.feature-check {
    padding: 16px 20px;
    text-align: center;
    border-left: 1px solid #f0f0f0;
    min-width: 200px;
}

.feature-check.highlight-column {
    background: rgba(255, 245, 237, 0.3);
    border-left: 1px solid #ffe8d6;
    border-right: 1px solid #ffe8d6;
}

.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--main-theme-color);
    color: #ffffff;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
}

.cross-icon {
    color: #cccccc;
    font-size: 18px;
}

/* Table Footer */
.footer-cell {
    padding: 24px 20px;
    text-align: center;
    background: #f9f9f9;
    border-top: 2px solid #e8e8e8;
    border-left: 1px solid #e8e8e8;
}

.footer-cell.highlight-column {
    background: #fff5ed;
    border-left: 2px solid var(--main-theme-color);
    border-right: 2px solid var(--main-theme-color);
}

.table-pricing-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.table-pricing-btn.btn-primary {
    background: linear-gradient(135deg, #ff5a00 0%, #ff7800 100%);
    color: #ffffff;
}

.table-pricing-btn.btn-primary:hover {
    background: linear-gradient(135deg, #ff4500 0%, #ff6600 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(252, 135, 0, 0.4);
    color: #ffffff;
}

.table-pricing-btn.btn-secondary {
    background: #ffffff;
    color: var(--main-dark-txt-color);
    border-color: #d0d0d0;
}

.table-pricing-btn.btn-secondary:hover {
    background: var(--main-dark-txt-color);
    color: #ffffff;
    border-color: var(--main-dark-txt-color);
    transform: translateY(-2px);
}

/* Old card styles - keep for backwards compatibility */
.pricing-card {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 40px;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    border-color: #d0d0d0;
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.pricing-card-highlight {
    border: 2px solid var(--main-theme-color);
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: scale(1.02);
}

.pricing-card-highlight:hover {
    transform: scale(1.02) translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

/* Pricing Badge */
.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #333333 0%, #555555 100%);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.pricing-badge.badge-popular {
    background: linear-gradient(135deg, #ff5a00 0%, #ff7800 100%);
}

/* Pricing Card Header */
.pricing-card-header {
    text-align: center;
    margin-bottom: 32px;
}

.pricing-card-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--main-dark-txt-color);
    margin: 0 0 12px;
    letter-spacing: -0.5px;
}

.pricing-card-description {
    font-size: 16px;
    color: var(--main-txt-color);
    line-height: 1.5;
    margin: 0;
}

/* Pricing Card Price */
.pricing-card-price {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 2px solid #f0f0f0;
}

.price-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
    margin-bottom: 12px;
}

.currency {
    font-size: 28px;
    font-weight: 700;
    color: var(--main-dark-txt-color);
    margin-top: 8px;
}

.price-amount {
    font-size: 64px;
    font-weight: 900;
    color: var(--main-dark-txt-color);
    line-height: 1;
    letter-spacing: -2px;
}

.original-price {
    font-size: 14px;
    color: var(--main-txt-color);
}

.original-price span {
    text-decoration: line-through;
    opacity: 0.7;
}

/* Pricing Features Toggle Button */
.pricing-features-toggle {
    display: none;
    width: 100%;
    padding: 12px 20px;
    background: #f9f9f9;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 0;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 600;
    color: var(--main-dark-txt-color);
}

.pricing-features-toggle:hover {
    background: #f0f0f0;
    border-color: #d0d0d0;
}

.toggle-text {
    flex: 1;
    text-align: left;
}

.toggle-icon {
    font-size: 12px;
    transition: transform 0.3s ease;
    color: var(--main-theme-color);
}

/* Pricing Card Features */
.pricing-card-features {
    flex: 1;
    margin-bottom: 32px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: var(--main-theme-color);
    color: #ffffff;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-text {
    font-size: 16px;
    color: var(--main-txt-color);
    line-height: 1.5;
}

/* Pricing Card Action */
.pricing-card-action {
    margin-top: auto;
}

.pricing-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 18px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.pricing-btn-primary {
    background: linear-gradient(135deg, #ff5a00 0%, #ff7800 100%);
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(252, 135, 0, 0.3);
}

.pricing-btn-primary:hover {
    background: linear-gradient(135deg, #ff4500 0%, #ff6600 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(252, 135, 0, 0.4);
    color: #ffffff;
}

.pricing-btn-secondary {
    background: #ffffff;
    color: var(--main-dark-txt-color);
    border-color: #d0d0d0;
}

.pricing-btn-secondary:hover {
    background: var(--main-dark-txt-color);
    color: #ffffff;
    border-color: var(--main-dark-txt-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Additional Info Section */
.pricing-additional-info {
    background: #ffffff;
    padding: 80px 0;
}

.additional-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.info-card {
    background: #f9f9f9;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: #d0d0d0;
}

.info-card-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.info-card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--main-dark-txt-color);
    margin: 0 0 12px;
}

.info-card-text {
    font-size: 15px;
    color: var(--main-txt-color);
    line-height: 1.6;
    margin: 0 0 20px;
}

.info-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--main-theme-color);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.info-link:hover {
    color: var(--main-theme-dark-color);
    gap: 10px;
}

/* Hide toggle button on desktop */
.features-toggle-row {
    display: none;
}

/* Hide mobile cards on desktop */
.pricing-mobile-cards {
    display: none;
}

/* Mobile Pricing Cards */
.pricing-mobile-card {
    background: #ffffff;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 16px;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-mobile-card.card-highlighted {
    border-color: var(--main-theme-color);
    box-shadow: 0 4px 20px rgba(252, 135, 0, 0.15);
}

.mobile-card-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #333333;
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.8px;
    padding: 4px 12px;
    border-radius: 4px;
    text-transform: uppercase;
    white-space: nowrap;
}

.mobile-card-badge.badge-popular {
    background: var(--main-theme-color);
}

.mobile-card-header {
    text-align: center;
    margin-bottom: 20px;
    padding-top: 8px;
}

.mobile-card-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--main-dark-txt-color);
    margin: 0 0 12px;
}

.mobile-card-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.mobile-price-main {
    font-size: 32px;
    font-weight: 700;
    color: var(--main-theme-color);
    display: flex;
    align-items: flex-start;
}

.mobile-price-main .currency {
    font-size: 18px;
    margin-right: 2px;
}

.mobile-price-original {
    font-size: 16px;
    color: #999999;
    text-decoration: line-through;
}

.mobile-card-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    margin-bottom: 16px;
}

.mobile-card-btn.btn-primary {
    background: linear-gradient(135deg, #ff5a00 0%, #ff7800 100%);
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(252, 135, 0, 0.3);
}

.mobile-card-btn.btn-primary:hover {
    background: linear-gradient(135deg, #ff4500 0%, #ff6600 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(252, 135, 0, 0.4);
}

.mobile-card-btn.btn-secondary {
    background: #ffffff;
    color: var(--main-dark-txt-color);
    border-color: #d0d0d0;
}

.mobile-card-btn.btn-secondary:hover {
    background: var(--main-dark-txt-color);
    color: #ffffff;
    border-color: var(--main-dark-txt-color);
}

.mobile-card-toggle {
    width: 100%;
    background: transparent;
    border: none;
    border-top: 1px solid #e8e8e8;
    padding: 16px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--main-theme-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-card-toggle:hover {
    color: var(--main-theme-dark-color);
}

.mobile-toggle-icon {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.mobile-card-toggle[aria-expanded="true"] .mobile-toggle-icon {
    transform: rotate(180deg);
}

.mobile-card-features {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.mobile-card-features.show {
    max-height: 1000px;
}

.mobile-features-list {
    list-style: none;
    padding: 16px 0 0;
    margin: 0;
}

.mobile-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--main-txt-color);
    border-bottom: 1px solid #f0f0f0;
}

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

.mobile-check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: var(--main-theme-color);
    color: #ffffff;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Responsive Styles for Pricing Page */


/* ===================================
   WORKSHOPS PRICING PAGE - START
   =================================== */

/* ===== Workshops Selection Section ===== */
.workshops-selection-section {
    padding: 60px 0 120px 0;
    background: #ffffff;
}

/* Workshop Category Card - Uses brand colors from :root variables */
.workshop-category-card {
    background: #ffffff;
    border: 2px solid #ffe8d6; /* Light orange border */
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
}

.workshop-category-card:hover {
    border-color: var(--main-theme-color); /* Orange on hover */
    box-shadow: 0 8px 24px rgba(252, 135, 0, 0.1);
}

/* Workshop Category Header */
.workshop-category-header {
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.workshop-category-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--main-dark-txt-color); /* Brand dark text color */
    margin: 0 0 8px 0;
}

.workshop-category-description {
    font-size: 14px;
    color: var(--main-txt-color); /* Brand text color */
    margin: 0;
    line-height: 1.6;
}

/* Workshop Option Card - Individual workshop items */
.workshop-option-card {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 16px;
    transition: all 0.3s ease;
}

.workshop-option-card:hover {
    background: #fff5ed; /* Light orange tint on hover */
}

/* Checkbox Styling - Custom checkbox with brand colors */
.workshop-checkbox {
    width: 22px;
    height: 22px;
    cursor: pointer;
    accent-color: var(--main-theme-color); /* Orange checkmark */
}

.workshop-checkbox-label {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    margin-left: 12px;
    gap: 12px;
}

.workshop-option-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--main-dark-txt-color);
}

.workshop-option-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--main-theme-color); /* Orange price tag */
}

/* Workshop Badge - Recommended tag */
.workshop-badge {
    background: var(--main-theme-color);
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== Special Offer Alert - Discount notification ===== */
.workshop-special-offer {
    margin-top: 16px;
    background: linear-gradient(135deg, #fff5ed 0%, #ffe8d6 100%); /* Orange gradient */
    border: 2px solid var(--main-theme-color);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    gap: 12px;
    animation: slideDown 0.4s ease;
}

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

.special-offer-icon {
    font-size: 18px;
}

.special-offer-title {
    color: var(--main-theme-color);
    font-size: 16px;
}

.special-offer-text {
    margin: 0;
    font-size: 14px;
    color: var(--main-dark-txt-color);
    line-height: 1.5;
}

/* ===== Sticky Summary Bar - Fixed bottom cart summary ===== */
.workshop-summary-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    z-index: 1000;
    animation: slideUp 0.4s ease;
}

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

.workshop-summary-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.workshop-summary-count {
    font-size: 16px;
    font-weight: 600;
    color: var(--main-dark-txt-color);
}

.workshop-summary-label {
    font-size: 16px;
    color: var(--main-txt-color);
}

.workshop-summary-price {
    font-size: 24px;
    color: var(--main-theme-color); /* Large orange price */
}

/* Discount Badge - Green success badge */
.discount-badge {
    background: #10b981; /* Green for savings */
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 12px;
}

/* ===== Summary Bar Buttons ===== */
.workshop-btn-clear {
    padding: 12px 24px;
    border: 2px solid #e0e0e0;
    background: #ffffff;
    color: var(--main-dark-txt-color);
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.workshop-btn-clear:hover {
    border-color: #dc2626; /* Red on hover */
    color: #dc2626;
}

.workshop-btn-checkout {
    padding: 12px 28px;
    background: var(--main-theme-color); /* Orange CTA button */
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.workshop-btn-checkout:hover {
    background: var(--main-theme-dark-color); /* Navy on hover */
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(252, 135, 0, 0.3);
}

/* ===== Responsive Design - Mobile Optimizations ===== */
@media (max-width: 768px) {
    /* Stack summary bar content vertically on mobile */
    .workshop-summary-content {
        flex-direction: column;
        align-items: stretch;
    }

    /* Full width buttons on mobile */
    .workshop-btn-clear,
    .workshop-btn-checkout {
        flex: 1;
    }
}

/* ===================================
   WORKSHOPS PRICING PAGE - END
   =================================== */

/* ===================================
   PRICING PAGE STYLES - END
   =================================== */