/**
 * Public Styles for Membership Plugin
 *
 * @package Membership_Plugin
 */


/* Membership Modal Styles - Business Card Display */
.membership-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    display: none;
}

.membership-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    cursor: pointer;
}

.membership-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    max-width: 650px;
    width: 90%;
    max-height: 90vh;
    overflow: visible;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.membership-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 32px;
    color: #666;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
    z-index: 10;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
}

.membership-modal-close:hover {
    color: #000;
    background: rgba(255, 255, 255, 1);
}

.membership-modal-header {
    text-align: center;
    margin-bottom: 20px;
}

.membership-modal-header h2 {
    margin: 0;
    color: #333;
    font-size: 24px;
    font-weight: 700;
}

.membership-modal-body {
    width: 100%;
    overflow: visible;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.membership-modal-body .member-info-section {
    text-align: center;
    margin-bottom: 20px;
    width: 100%;
}

.membership-modal-body .member-info-section h3 {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 20px;
}

.membership-modal-body .member-details {
    color: #666;
    font-size: 14px;
}

.membership-modal-body .member-details p {
    margin: 5px 0;
}

.membership-modal-footer {
    margin-top: 20px;
    text-align: center;
}

/* Responsive modal */
@media (max-width: 768px) {
    .membership-modal-content {
        padding: 30px 20px;
        width: 95%;
        max-height: 95vh;
    }
}

/* Membership Purchase Form - Pack Design */
.membership-purchase-form-wrapper {
    width: 100%;
    padding: 60px 20px;
    background: transparent;
    min-height: 100vh;
    box-sizing: border-box;
}

.membership-packs-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    max-width: 100%;
    margin: 0 auto;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}

.membership-packs-container::-webkit-scrollbar {
    height: 8px;
}

.membership-packs-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.membership-packs-container::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

.membership-packs-container::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

.membership-pack {
    position: relative;
    min-width: 280px;
    width: 100%;
    max-width: 320px;
    flex: 1 1 280px;
    background: #F5F0ED;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: none;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: row;
    border: 2px solid #9B4045;
}

.membership-pack:hover {
    transform: translateY(-5px);
}

/* Pack Gold - Larger and more prominent */
.membership-pack.pack-gold {
    min-width: 300px;
    max-width: 360px;
    flex: 1.1 1 300px;
    z-index: 2;
}

.membership-pack.pack-gold:hover {
    transform: translateY(-5px) scale(1.02);
}

/* Pack Platinum - Most premium, larger than gold */
.membership-pack.pack-platinum {
    min-width: 320px;
    max-width: 380px;
    flex: 1.15 1 320px;
    z-index: 3;
}

.membership-pack.pack-platinum:hover {
    transform: translateY(-5px) scale(1.02);
}

/* Pack Tab - Vertical tab on the left */
.pack-tab {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    color: #F5F0ED;
    position: relative;
    padding: 20px 10px;
    box-shadow: none;
}

.pack-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(245, 240, 237, 0.2) 0%, rgba(245, 240, 237, 0.1) 100%);
    z-index: -1;
}

.pack-tab-text {
    transform: rotate(180deg);
    white-space: nowrap;
}

/* Pack Colors - Variations of main palette */
/* Silver - Lighter burgundy mix */
.pack-silver .pack-tab {
    background: linear-gradient(180deg, #A84A4F 0%, #8a383d 100%);
    box-shadow: none;
}

.pack-silver {
    border-color: #A84A4F;
    background: linear-gradient(135deg, #F5F0ED 0%, #F0EBE6 100%);
    box-shadow: none;
}

/* Gold - Medium burgundy mix */
.pack-gold .pack-tab {
    background: linear-gradient(180deg, #9B4045 0%, #8a383d 100%);
    box-shadow: none;
}

.pack-gold {
    border-color: #9B4045;
    background: linear-gradient(135deg, #F5F0ED 0%, #F8F3EF 100%);
    box-shadow: none;
}

/* Platinum - Darker burgundy mix */
.pack-platinum .pack-tab {
    background: linear-gradient(180deg, #8a383d 0%, #7a3236 100%);
    box-shadow: none;
    position: relative;
}

.pack-platinum .pack-tab::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(245, 240, 237, 0.15) 0%, transparent 50%, rgba(138, 56, 61, 0.1) 100%);
    pointer-events: none;
}

.pack-platinum {
    border-color: #8a383d;
    background: linear-gradient(135deg, #F8F3EF 0%, #F5F0ED 100%);
    box-shadow: none;
    position: relative;
    z-index: 3;
}

.pack-platinum::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(138, 56, 61, 0.3), rgba(122, 50, 54, 0.2), rgba(138, 56, 61, 0.3));
    border-radius: 14px;
    z-index: -1;
    opacity: 0.6;
}

@media (max-width: 768px) {
    .pack-platinum::before {
        opacity: 0.4;
    }
}

.pack-platinum:hover {
    transform: scale(1.12) translateY(-5px);
    box-shadow: none;
}

/* Pack Content */
.pack-content {
    flex: 1;
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    background: transparent;
    backdrop-filter: none;
}

.pack-silver .pack-content {
    background: linear-gradient(135deg, rgba(245, 240, 237, 0.95) 0%, rgba(240, 235, 230, 0.95) 100%);
}

.pack-gold .pack-content {
    background: linear-gradient(135deg, rgba(245, 240, 237, 0.98) 0%, rgba(248, 243, 239, 0.95) 100%);
}

.pack-platinum .pack-content {
    padding: 35px 30px;
    background: linear-gradient(135deg, rgba(248, 243, 239, 0.98) 0%, rgba(245, 240, 237, 0.95) 100%);
    backdrop-filter: none;
    border-left: 1px solid rgba(138, 56, 61, 0.2);
    position: relative;
}

.pack-platinum .pack-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(155, 64, 69, 0.3), transparent);
}

/* Pack Price */
.pack-price {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(155, 64, 69, 0.2);
}

.pack-silver .pack-price {
    border-bottom: 1px solid rgba(168, 74, 79, 0.2);
}

.pack-platinum .pack-price {
    border-bottom: 1px solid rgba(138, 56, 61, 0.3);
    padding-bottom: 25px;
    margin-bottom: 35px;
    position: relative;
}

.pack-platinum .pack-price::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(138, 56, 61, 0.5), transparent);
}

.price-amount {
    font-size: 36px;
    font-weight: 700;
    color: #9B4045;
    display: block;
    line-height: 1.2;
}

.pack-silver .price-amount {
    color: #A84A4F;
}

.pack-gold .price-amount {
    font-size: 42px;
    color: #9B4045;
}

.pack-platinum .price-amount {
    font-size: 48px;
    background: linear-gradient(135deg, #8a383d 0%, #7a3236 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    position: relative;
}

.pack-platinum .price-amount::after {
    content: attr(data-price);
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, #9B4045 0%, #7a3236 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: blur(1px);
    z-index: -1;
}

.price-period {
    font-size: 14px;
    color: #9B4045;
    font-weight: 400;
    margin-left: 5px;
    opacity: 0.8;
}

.pack-silver .price-period {
    color: #A84A4F;
}

.pack-platinum .price-period {
    color: #8a383d;
}

/* Pack Features */
.pack-features {
    flex: 1;
    margin-bottom: 30px;
}

.pack-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: #9B4045;
    font-size: 14px;
}

.pack-silver .pack-feature {
    color: #A84A4F;
}

.pack-platinum .pack-feature {
    color: #8a383d;
}

.feature-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-included .feature-icon {
    color: #9B4045;
}

.pack-silver .feature-included .feature-icon {
    color: #A84A4F;
}

.pack-platinum .feature-included .feature-icon {
    color: #8a383d;
}

.feature-excluded .feature-icon {
    color: rgba(155, 64, 69, 0.3);
}

.pack-silver .feature-excluded .feature-icon {
    color: rgba(168, 74, 79, 0.3);
}

.pack-platinum .feature-excluded .feature-icon {
    color: rgba(138, 56, 61, 0.3);
}

.feature-included .feature-text {
    color: #9B4045;
}

.pack-silver .feature-included .feature-text {
    color: #A84A4F;
}

.pack-platinum .feature-included .feature-text {
    color: #8a383d;
}

.feature-excluded .feature-text {
    color: rgba(155, 64, 69, 0.5);
    text-decoration: line-through;
}

.pack-silver .feature-excluded .feature-text {
    color: rgba(168, 74, 79, 0.5);
}

.pack-platinum .feature-excluded .feature-text {
    color: rgba(138, 56, 61, 0.5);
}

.pack-platinum .pack-feature.feature-included .feature-icon {
    color: #8a383d;
    filter: none;
    transform: scale(1.1);
}

.pack-platinum .pack-feature.feature-included .feature-text {
    color: #8a383d;
    font-weight: 500;
    text-shadow: none;
}

.feature-text {
    flex: 1;
    line-height: 1.4;
}

.feature-price-badge {
    font-size: 11px;
    color: #9B4045;
    margin-left: auto;
    padding: 2px 6px;
    background: rgba(155, 64, 69, 0.1);
    border-radius: 3px;
}

.pack-silver .feature-price-badge {
    color: #A84A4F;
    background: rgba(168, 74, 79, 0.1);
}

.pack-platinum .feature-price-badge {
    color: #8a383d;
    background: rgba(138, 56, 61, 0.1);
}

/* Feature Selection for Platinum */
/* Selected features display (always visible when features are selected) */
.pack-selected-features-display {
    margin: 20px 0;
    padding: 15px;
    background: rgba(155, 64, 69, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(155, 64, 69, 0.2);
}

.pack-silver .pack-selected-features-display {
    background: rgba(168, 74, 79, 0.05);
    border: 1px solid rgba(168, 74, 79, 0.2);
}

.pack-platinum .pack-selected-features-display {
    background: rgba(138, 56, 61, 0.05);
    border: 1px solid rgba(138, 56, 61, 0.2);
}

.selected-features-header h4 {
    margin: 0 0 12px 0;
    font-size: 14px;
    font-weight: 600;
    color: #9B4045 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pack-silver .selected-features-header h4 {
    color: #A84A4F !important;
}

.pack-platinum .selected-features-header h4 {
    color: #8a383d !important;
}

.selected-features-list {
display: flex;
    flex-direction: column;
    gap: 8px;
}

.selected-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: rgba(155, 64, 69, 0.05);
    border-radius: 6px;
    font-size: 14px;
}

.pack-silver .selected-feature-item {
    background: rgba(168, 74, 79, 0.05);
}

.pack-platinum .selected-feature-item {
    background: rgba(138, 56, 61, 0.05);
}

.selected-feature-icon {
    color: #9B4045;
    font-weight: bold;
    font-size: 16px;
    flex-shrink: 0;
}

.pack-silver .selected-feature-icon {
    color: #A84A4F;
}

.pack-platinum .selected-feature-icon {
    color: #8a383d;
}

.selected-feature-name {
    flex: 1;
    color: #9B4045;
    font-weight: 500;
}

.pack-silver .selected-feature-name {
    color: #A84A4F;
}

.pack-platinum .selected-feature-name {
    color: #8a383d;
}

.selected-feature-price {
    color: #9B4045;
    font-weight: 600;
    font-size: 13px;
    flex-shrink: 0;
}

.pack-silver .selected-feature-price {
    color: #A84A4F;
}

.pack-platinum .selected-feature-price {
    color: #8a383d;
}

.pack-feature-selection {
    margin-top: 20px;
    padding: 20px;
    background: rgba(155, 64, 69, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(155, 64, 69, 0.2);
}

.pack-silver .pack-feature-selection {
    background: rgba(168, 74, 79, 0.1);
    border: 1px solid rgba(168, 74, 79, 0.2);
}

.pack-platinum .pack-feature-selection {
    background: rgba(138, 56, 61, 0.1);
    border: 1px solid rgba(138, 56, 61, 0.2);
}

.feature-selection-header {
    margin-bottom: 15px;
}

.feature-selection-header h4 {
    margin: 0 0 5px 0;
    color: #9B4045 !important;
    font-size: 16px;
    font-weight: 600;
}

.pack-silver .feature-selection-header h4 {
    color: #A84A4F !important;
}

.pack-platinum .feature-selection-header h4 {
    color: #8a383d !important;
}

.feature-selection-subtitle {
    margin: 0;
    color: #9B4045 !important;
    font-size: 12px;
    opacity: 0.8;
}

.pack-silver .feature-selection-subtitle {
    color: #A84A4F !important;
}

.pack-platinum .feature-selection-subtitle {
    color: #8a383d !important;
}

.feature-selection-list {
    max-height: 200px;
    overflow-y: auto;
    margin-bottom: 15px;
}

.feature-selection-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    margin-bottom: 8px;
    background: rgba(155, 64, 69, 0.05);
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.pack-silver .feature-selection-item {
    background: rgba(168, 74, 79, 0.05);
}

.pack-platinum .feature-selection-item {
    background: rgba(138, 56, 61, 0.05);
}

.feature-selection-item:hover {
    background: rgba(155, 64, 69, 0.1);
}

.pack-silver .feature-selection-item:hover {
    background: rgba(168, 74, 79, 0.1);
}

.pack-platinum .feature-selection-item:hover {
    background: rgba(138, 56, 61, 0.1);
}

.feature-selection-item input[type="checkbox"] {
    margin: 0;
    cursor: pointer;
}

.feature-selection-name {
    flex: 1;
    color: #9B4045;
    font-size: 14px;
    font-weight: 500;
}

.pack-silver .feature-selection-name {
    color: #A84A4F;
}

.pack-platinum .feature-selection-name {
    color: #8a383d;
}

.feature-selection-desc {
    flex: 1;
    color: rgba(155, 64, 69, 0.7);
    font-size: 12px;
}

.pack-silver .feature-selection-desc {
    color: rgba(168, 74, 79, 0.7);
}

.pack-platinum .feature-selection-desc {
    color: rgba(138, 56, 61, 0.7);
}

.feature-selection-price {
    color: #9B4045;
    font-weight: 600;
    font-size: 13px;
}

.pack-silver .feature-selection-price {
    color: #A84A4F;
}

.pack-platinum .feature-selection-price {
    color: #8a383d;
}

.feature-selection-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background: rgba(155, 64, 69, 0.1);
    border-radius: 5px;
    border-top: 1px solid rgba(155, 64, 69, 0.3);
}

.pack-silver .feature-selection-total {
    background: rgba(168, 74, 79, 0.1);
    border-top: 1px solid rgba(168, 74, 79, 0.3);
}

.pack-platinum .feature-selection-total {
    background: rgba(138, 56, 61, 0.1);
    border-top: 1px solid rgba(138, 56, 61, 0.3);
}

.feature-selection-total .total-label {
    color: #9B4045;
    font-weight: 600;
}

.pack-silver .feature-selection-total .total-label {
    color: #A84A4F;
}

.pack-platinum .feature-selection-total .total-label {
    color: #8a383d;
}

.feature-selection-total .total-amount {
    color: #9B4045;
    font-weight: 700;
    font-size: 16px;
}

.pack-silver .feature-selection-total .total-amount {
    color: #A84A4F;
}

.pack-platinum .feature-selection-total .total-amount {
    color: #8a383d;
}

/* Pack Duration Selector */
.pack-duration-selector {
    margin: 20px 0;
    padding: 15px;
    background: rgba(155, 64, 69, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(155, 64, 69, 0.2);
}

.pack-silver .pack-duration-selector {
    background: rgba(168, 74, 79, 0.05);
    border-color: rgba(168, 74, 79, 0.2);
}

.pack-platinum .pack-duration-selector {
    background: rgba(138, 56, 61, 0.08);
    border-color: rgba(138, 56, 61, 0.3);
}

.pack-duration-selector label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #9B4045;
    font-size: 14px;
}

.pack-silver .pack-duration-selector label {
    color: #A84A4F;
}

.pack-platinum .pack-duration-selector label {
    color: #8a383d;
    font-weight: 700;
}

.pack-duration-select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid rgba(155, 64, 69, 0.3);
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    background: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    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='%239B4045' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px;
    padding-right: 35px;
}

.pack-silver .pack-duration-select {
    border-color: rgba(168, 74, 79, 0.3);
    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='%23A84A4F' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
}

.pack-platinum .pack-duration-select {
    border-color: rgba(138, 56, 61, 0.4);
    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='%238a383d' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
}

.pack-duration-select:hover {
    border-color: #9B4045;
    background-color: #fff;
}

.pack-silver .pack-duration-select:hover {
    border-color: #A84A4F;
}

.pack-platinum .pack-duration-select:hover {
    border-color: #8a383d;
}

.pack-duration-select:focus {
    outline: none;
    border-color: #9B4045;
    box-shadow: 0 0 0 3px rgba(155, 64, 69, 0.1);
}

.pack-silver .pack-duration-select:focus {
    border-color: #A84A4F;
    box-shadow: 0 0 0 3px rgba(168, 74, 79, 0.1);
}

.pack-platinum .pack-duration-select:focus {
    border-color: #8a383d;
    box-shadow: 0 0 0 3px rgba(138, 56, 61, 0.15);
}

/* Pack Total Price Display */
.pack-total-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    margin-bottom: 20px;
    border-top: 1px solid rgba(155, 64, 69, 0.2);
    border-bottom: 1px solid rgba(155, 64, 69, 0.2);
}

.pack-total-price .total-label {
    color: #9B4045;
    font-weight: 600;
    font-size: 14px;
}

.pack-silver .pack-total-price .total-label {
    color: #A84A4F;
}

.pack-platinum .pack-total-price .total-label {
    color: #8a383d;
}

.pack-total-price .total-amount {
    color: #9B4045;
    font-weight: 700;
    font-size: 20px;
}

.pack-silver .pack-total-price .total-amount {
    color: #A84A4F;
}

.pack-platinum .pack-total-price .total-amount {
    font-size: 24px;
    background: linear-gradient(135deg, #8a383d 0%, #7a3236 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Customize Button */
.pack-customize-button {
    width: 100%;
    padding: 12px 20px;
    margin-bottom: 10px;
    border: 2px solid rgba(155, 64, 69, 0.5);
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #9B4045;
    background: rgba(155, 64, 69, 0.1);
}

.pack-silver .pack-customize-button {
    border-color: rgba(168, 74, 79, 0.5);
    color: #A84A4F;
    background: rgba(168, 74, 79, 0.1);
}

.pack-platinum .pack-customize-button {
    border-color: rgba(138, 56, 61, 0.5);
    color: #8a383d;
    background: rgba(138, 56, 61, 0.15);
}

.pack-customize-button:hover {
    background: rgba(155, 64, 69, 0.2);
    border-color: #9B4045;
    transform: translateY(-2px);
}

.pack-silver .pack-customize-button:hover {
    background: rgba(168, 74, 79, 0.2);
    border-color: #A84A4F;
}

.pack-platinum .pack-customize-button:hover {
    background: rgba(138, 56, 61, 0.25);
    border-color: #8a383d;
}

/* Pack Buy Button */
.pack-buy-button {
    width: 100%;
    padding: 16px 24px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #F5F0ED;
    position: relative;
    overflow: hidden;
}

.pack-buy-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(245, 240, 237, 0.3), transparent);
    transition: left 0.5s ease;
}

.pack-buy-button:hover::before {
    left: 100%;
}

.pack-buy-button:hover {
    transform: translateY(-2px);
    box-shadow: none;
}

.pack-buy-button:active {
    transform: translateY(0);
}

/* Bronze Button */
.pack-bronze .pack-buy-button {
    background: linear-gradient(135deg, #9B4045 0%, #7a3236 100%);
    box-shadow: none;
}

.pack-bronze .pack-buy-button:hover {
    box-shadow: none;
    background: linear-gradient(135deg, #a84a4f 0%, #8a383d 100%);
}

/* Silver Button - Lighter burgundy */
.pack-silver .pack-buy-button {
    background: linear-gradient(135deg, #A84A4F 0%, #8a383d 100%);
    box-shadow: none;
}

.pack-silver .pack-buy-button:hover {
    box-shadow: none;
    background: linear-gradient(135deg, #B55A5F 0%, #9B4045 100%);
}

/* Gold Button - Medium burgundy */
.pack-gold .pack-buy-button {
    background: linear-gradient(135deg, #9B4045 0%, #8a383d 100%);
    box-shadow: none;
    color: #F5F0ED;
}

.pack-gold .pack-buy-button:hover {
    box-shadow: none;
    background: linear-gradient(135deg, #A84A4F 0%, #9B4045 100%);
}

/* Platinum Button - Darker burgundy */
.pack-platinum .pack-buy-button {
    background: linear-gradient(135deg, #8a383d 0%, #7a3236 50%, #6a2a2e 100%);
    box-shadow: none;
    color: #F5F0ED;
    font-weight: 800;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
}

.pack-platinum .pack-buy-button::before {
    background: linear-gradient(90deg, transparent, rgba(245, 240, 237, 0.3), transparent);
}

.pack-platinum .pack-buy-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(245, 240, 237, 0.15) 0%, transparent 50%, rgba(138, 56, 61, 0.1) 100%);
    pointer-events: none;
}

.pack-platinum .pack-buy-button:hover {
    box-shadow: none;
    background: linear-gradient(135deg, #9B4045 0%, #8a383d 50%, #7a3236 100%);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .membership-packs-container {
        gap: 20px;
    }
    
    .membership-pack {
        width: 300px;
    }
    
    .membership-pack.pack-gold {
        width: 340px;
    }
    
    .membership-pack.pack-platinum {
        width: 360px;
    }
}

@media (max-width: 768px) {
    .membership-purchase-form-wrapper {
        padding: 40px 15px;
    }
    
    .membership-packs-container {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }
    
    .membership-pack {
        width: 100%;
        max-width: 400px;
    }
    
    .membership-pack.pack-gold {
        width: 100%;
        max-width: 400px;
        transform: scale(1);
    }
    
    .membership-pack.pack-gold:hover {
        transform: translateY(-5px);
    }
    
    .membership-pack.pack-platinum {
        width: 100%;
        max-width: 420px;
        transform: scale(1);
    }
    
    .membership-pack.pack-platinum:hover {
        transform: translateY(-5px);
    }
    
    .pack-platinum::before {
        display: none;
    }
    
    .pack-content {
        padding: 25px 20px;
    }
    
    .price-amount {
        font-size: 32px;
    }
    
    .pack-gold .price-amount {
        font-size: 36px;
    }
}

/* Legacy styles for backward compatibility */
.membership-purchase-form {
    padding: 20px;
}

.membership-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.membership-type-card {
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.membership-type-card:hover {
    box-shadow: none;
    transform: translateY(-2px);
}

.membership-type-card h4 {
    margin-top: 0;
    color: #333;
}

.membership-price {
    font-size: 24px;
    color: #0073aa;
    margin: 15px 0;
}

.membership-duration {
    color: #666;
    font-size: 14px;
}
