/* Subscribe Page Styles */

/* Shop Full Store Button */
.shop-full-store-btn {
    background: linear-gradient(135deg, #4a7c59 0%, #3a6347 100%);
    color: #fff;
    border: none;
    padding: 12px 32px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(74, 124, 89, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.shop-full-store-btn:hover {
    background: linear-gradient(135deg, #3a6347 0%, #2a5337 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(74, 124, 89, 0.4);
}

.shop-full-store-btn i {
    font-size: 18px;
}

.shop-full-store-btn.expanded {
    background: linear-gradient(135deg, #6c757d 0%, #5a6268 100%);
}

.shop-full-store-btn.expanded:hover {
    background: linear-gradient(135deg, #5a6268 0%, #495057 100%);
}

/* Category Buttons Container */
.category-buttons-container {
    margin-bottom: 1.5rem;
}

.category-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .category-buttons {
        grid-template-columns: repeat(2, 1fr);
    }
}

.category-btn {
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #6c757d;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
}

.category-btn i {
    font-size: 1.5rem;
    color: #6c757d;
    transition: all 0.3s ease;
}

.category-btn span {
    font-size: 0.8125rem;
    line-height: 1.2;
}

.category-btn:hover {
    border-color: #4a7c59;
    background: #f8fdf9;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(74, 124, 89, 0.15);
}

.category-btn:hover i {
    color: #4a7c59;
    transform: scale(1.1);
}

.category-btn.active {
    background: linear-gradient(135deg, #4a7c59 0%, #3a6347 100%);
    border-color: #4a7c59;
    color: #fff;
    box-shadow: 0 4px 12px rgba(74, 124, 89, 0.3);
}

.category-btn.active i {
    color: #fff;
}

.category-btn.active:hover {
    background: linear-gradient(135deg, #3a6347 0%, #2a5337 100%);
}

/* Hide filtered items */
.add-on-item.hidden {
    display: none;
}

/* Progress Bar */
.progress-bar-container {
    background: #fff;
    border-bottom: 1px solid #e9ecef;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 998;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.progress-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.progress-step.active {
    opacity: 1;
}

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e9ecef;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
}

.progress-step.active .step-circle {
    background: #4a7c59;
    color: #fff;
    box-shadow: 0 4px 12px rgba(74, 124, 89, 0.3);
}

.progress-step.completed .step-circle {
    background: #28a745;
    color: #fff;
}

.progress-step span {
    font-size: 14px;
    font-weight: 600;
    color: #6c757d;
}

.progress-step.active span {
    color: #2C3E2E;
}

.progress-line {
    width: 80px;
    height: 2px;
    background: #e9ecef;
    margin: 0 20px;
    margin-bottom: 28px;
}

/* Hero Section */
.subscribe-hero {
    background: linear-gradient(135deg, #f8fdf9 0%, #ffffff 100%);
    padding: 60px 0 40px;
    border-bottom: 1px solid rgba(74, 124, 89, 0.1);
}

.subscribe-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    padding: 8px 20px;
    border-radius: 24px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 20px;
}

.subscribe-hero h1 {
    font-size: 3rem;
    font-family: 'Barlow Condensed', sans-serif;
    color: #2C3E2E;
    margin-bottom: 16px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #5a6c57;
    margin-bottom: 30px;
}

.hero-trust-signals {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.trust-signal-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #2C3E2E;
}

.trust-signal-item i {
    color: #28a745;
    font-size: 16px;
}

/* Main Layout */
.subscribe-content {
    padding: 60px 0;
    background: #f8f9fa;
}

.subscribe-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    align-items: start;
}

/* Main Content Area */
.subscribe-main {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    padding: 40px;
}

.subscribe-section {
    margin-bottom: 40px;
}

.subscribe-section:last-child {
    margin-bottom: 0;
}

.section-header-inline {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.section-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4a7c59 0%, #3a6247 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(74, 124, 89, 0.3);
}

.section-header-inline h2 {
    font-size: 2rem;
    font-family: 'Barlow Condensed', sans-serif;
    color: #2C3E2E;
    margin-bottom: 8px;
}

.section-header-inline p {
    color: #6c757d;
    font-size: 1rem;
}

/* Box Selection Grid */
.box-selection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.box-card {
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.box-card:hover {
    border-color: #4a7c59;
    box-shadow: 0 8px 24px rgba(74, 124, 89, 0.15);
    transform: translateY(-4px);
}

.box-card.selected {
    border-color: #4a7c59;
    box-shadow: 0 8px 24px rgba(74, 124, 89, 0.25);
    background: linear-gradient(135deg, #f8fdf9 0%, #ffffff 100%);
}

.box-card.popular {
    border-color: #FFD700;
}

.popular-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    z-index: 1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.box-card-header {
    padding: 20px;
}

.box-image {
    width: 100%;
    height: 180px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 16px;
}

.box-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.box-info h3 {
    font-size: 1.5rem;
    font-family: 'Barlow Condensed', sans-serif;
    color: #2C3E2E;
    margin-bottom: 4px;
}

.box-serves {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.box-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #4a7c59;
}

.price-period {
    font-size: 1rem;
    color: #6c757d;
}

.box-card-body {
    padding: 0 20px 20px;
}

.box-description {
    color: #5a6c57;
    font-size: 0.95rem;
    margin-bottom: 16px;
    line-height: 1.6;
}

.box-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.box-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: #2C3E2E;
    font-size: 0.9rem;
}

.box-features li i {
    color: #28a745;
    font-size: 14px;
}

.box-select-btn {
    width: 100%;
    background: #000;
    color: #fff;
    border: 2px solid #000;
    padding: 14px 24px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.box-select-btn:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.box-card.selected .box-select-btn {
    background: #4a7c59;
    border-color: #4a7c59;
    color: #fff;
}

.box-card.selected .box-select-btn::before {
    content: "✓ ";
}

/* Delivery Preferences */
.delivery-preferences {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.preference-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #2C3E2E;
    font-size: 1rem;
}

.preference-label i {
    color: #4a7c59;
    font-size: 18px;
}

.preference-select,
.preference-input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Barlow', sans-serif;
    transition: all 0.3s ease;
}

.preference-select:focus,
.preference-input:focus {
    outline: none;
    border-color: #4a7c59;
    box-shadow: 0 0 0 3px rgba(74, 124, 89, 0.1);
}

.preference-select:disabled {
    background: #f8f9fa;
    cursor: not-allowed;
    opacity: 0.6;
}

.preference-help {
    font-size: 0.875rem;
    color: #6c757d;
    display: flex;
    align-items: center;
    gap: 6px;
}

.preference-help i {
    color: #4a7c59;
}

.preference-help a {
    color: #4a7c59;
    text-decoration: underline;
}

/* Frequency Options */
.frequency-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.frequency-option {
    cursor: pointer;
}

.frequency-option input {
    display: none;
}

.frequency-card {
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.frequency-option:hover .frequency-card {
    border-color: #4a7c59;
    box-shadow: 0 4px 12px rgba(74, 124, 89, 0.1);
}

.frequency-option input:checked + .frequency-card {
    border-color: #4a7c59;
    background: linear-gradient(135deg, #f8fdf9 0%, #ffffff 100%);
    box-shadow: 0 4px 12px rgba(74, 124, 89, 0.2);
}

.frequency-icon {
    font-size: 32px;
    color: #4a7c59;
    margin-bottom: 12px;
}

.frequency-card h4 {
    font-size: 1.25rem;
    color: #2C3E2E;
    margin-bottom: 4px;
}

.frequency-card p {
    font-size: 0.875rem;
    color: #6c757d;
}

.frequency-popular {
    display: inline-block;
    background: #FFD700;
    color: #000;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    margin-top: 8px;
}

/* Section Actions */
.section-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #e9ecef;
}

/* Sidebar */
.subscribe-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    align-self: flex-start;
    scroll-behavior: smooth;
    /* Custom scrollbar styling */
    scrollbar-width: thin;
    scrollbar-color: #4a7c59 #f5f5f5;
}

/* Webkit scrollbar styling for Chrome/Safari */
.subscribe-sidebar::-webkit-scrollbar {
    width: 8px;
}

.subscribe-sidebar::-webkit-scrollbar-track {
    background: #f5f5f5;
    border-radius: 10px;
}

.subscribe-sidebar::-webkit-scrollbar-thumb {
    background: #4a7c59;
    border-radius: 10px;
}

.subscribe-sidebar::-webkit-scrollbar-thumb:hover {
    background: #3d6649;
}

.order-summary {
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.order-summary-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid #e9ecef;
}

.order-summary h3 {
    font-size: 1.5rem;
    font-family: 'Barlow Condensed', sans-serif;
    color: #2C3E2E;
    margin: 0;
}

.clear-order-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: transparent;
    border: 1.5px solid #dc3545;
    border-radius: 6px;
    color: #dc3545;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.clear-order-btn:hover {
    background: #dc3545;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.3);
}

.clear-order-btn i {
    font-size: 0.875rem;
}

.summary-empty {
    text-align: center;
    padding: 40px 20px;
    color: #6c757d;
}

.summary-empty i {
    font-size: 48px;
    color: #dee2e6;
    margin-bottom: 16px;
}

.summary-section {
    padding: 20px 0;
    border-bottom: 1px solid #e9ecef;
}

.summary-section:last-child {
    border-bottom: none;
}

.summary-section-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.summary-item {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 16px;
    align-items: start;
}

.summary-item-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
}

.summary-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.summary-item-details h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #2C3E2E;
    margin-bottom: 4px;
}

.summary-item-details p {
    font-size: 0.875rem;
    color: #6c757d;
    margin-bottom: 2px;
}

.summary-frequency {
    color: #4a7c59 !important;
    font-weight: 600;
}

.summary-item-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2C3E2E;
}

/* Selected Add-Ons List */
.selected-addons-list {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px dashed #e9ecef;
}

.addons-list-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 700;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.addons-list-header i {
    color: #4a7c59;
    font-size: 1rem;
}

.addon-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #f8fdf9 0%, #ffffff 100%);
    border: 1px solid #e9ecef;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.addon-list-item:hover {
    border-color: #4a7c59;
    background: linear-gradient(135deg, #f0f7f1 0%, #f8fdf9 100%);
}

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

.addon-list-item-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #4a7c59 0%, #3d6649 100%);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.addon-list-item-name {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #2C3E2E;
}

.addon-list-item-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.addon-qty-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 4px 8px;
}

.addon-qty-btn {
    background: transparent;
    border: none;
    color: #4a7c59;
    cursor: pointer;
    padding: 4px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.2s ease;
    font-size: 0.75rem;
}

.addon-qty-btn:hover:not(:disabled) {
    background: #f0f7f1;
    color: #3d6649;
}

.addon-qty-btn:active:not(:disabled) {
    background: #e8f5e9;
    transform: scale(0.95);
}

.addon-qty-btn:disabled {
    color: #dee2e6;
    cursor: not-allowed;
    opacity: 0.5;
}

.addon-qty-btn.addon-qty-minus .fa-trash-alt {
    color: #dc3545;
}

.addon-qty-display {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #2C3E2E;
    min-width: 20px;
    text-align: center;
}

.addon-list-item-price {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #4a7c59;
    min-width: 60px;
    text-align: right;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    font-size: 1rem;
}

.summary-row span:first-child {
    color: #6c757d;
}

.summary-row span:last-child {
    font-weight: 600;
    color: #2C3E2E;
}

.summary-row.discount span:last-child {
    color: #28a745;
}

.summary-row.total {
    font-size: 1.25rem;
    font-weight: 700;
    padding: 16px 0 0;
}

.summary-row.total span {
    color: #2C3E2E;
}

/* Price update animation */
.summary-row.price-updated {
    animation: priceHighlight 0.8s ease;
    background: linear-gradient(90deg, transparent, rgba(74, 124, 89, 0.15), transparent);
    border-radius: 8px;
    padding: 12px 8px;
    margin: 0 -8px;
}

@keyframes priceHighlight {
    0% {
        background: linear-gradient(90deg, transparent, rgba(74, 124, 89, 0.3), transparent);
        transform: scale(1.02);
    }
    50% {
        background: linear-gradient(90deg, transparent, rgba(74, 124, 89, 0.2), transparent);
    }
    100% {
        background: linear-gradient(90deg, transparent, rgba(74, 124, 89, 0.15), transparent);
        transform: scale(1);
    }
}

.summary-divider {
    height: 2px;
    background: #e9ecef;
    margin: 12px 0;
}

/* Discount Helper Note */
.discount-helper-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 16px;
    background: linear-gradient(135deg, #fff3cd 0%, #fffbef 100%);
    border: 2px solid #ffc107;
    border-radius: 8px;
    margin: 12px 0;
    font-size: 0.875rem;
    color: #856404;
    box-shadow: 0 2px 6px rgba(255, 193, 7, 0.15);
}

.discount-helper-note i {
    font-size: 1.25rem;
    margin-top: 2px;
    flex-shrink: 0;
    color: #ffc107;
}

.discount-helper-note span {
    line-height: 1.5;
}

.discount-helper-note span strong {
    color: #664d03;
    font-weight: 700;
}

/* Subscriber Add-On Discount Banner */
.subscriber-addon-discount-banner {
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, #fff3cd 0%, #fffbef 100%);
    border: 2px solid #ffc107;
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.2);
}

.discount-badge-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.discount-badge-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.discount-badge-content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #856404;
    margin: 0 0 4px 0;
}

.discount-badge-content p {
    font-size: 0.875rem;
    color: #856404;
    margin: 0;
    opacity: 0.9;
}

/* Add-On Discount Badge */
.addon-discount-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    color: #fff;
    font-size: 0.625rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(255, 152, 0, 0.4);
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Original Price Strikethrough */
.add-on-price .original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 0.75rem;
    margin-right: 6px;
    opacity: 0.7;
}

/* Add position relative to add-on-card for badge positioning */
.add-on-card {
    position: relative;
}

/* Add-Ons Section */
.add-ons-section {
    background: linear-gradient(135deg, #f8fdf9 0%, #ffffff 100%);
    border: 2px solid #4a7c59;
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
}

.add-ons-section h4 {
    font-size: 1.75rem;
    font-weight: 800;
    color: #2C3E2E;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    padding: 16px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border-radius: 8px;
    border: 3px solid #4a7c59;
}

.add-ons-section h4 i {
    color: #4a7c59;
    font-size: 1.75rem;
    animation: pulse 2s ease-in-out infinite;
}

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

.add-ons-intro {
    font-size: 0.875rem;
    color: #6c757d;
    margin-bottom: 16px;
}

.add-ons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 16px;
}

.add-on-item {
    cursor: pointer;
}

.add-on-item input[type="checkbox"] {
    display: none;
}

.add-on-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 12px;
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
}

.add-on-card i {
    font-size: 1.5rem;
    color: #4a7c59;
}

.add-on-name {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #2C3E2E;
}

.add-on-price {
    font-size: 0.875rem;
    font-weight: 700;
    color: #4a7c59;
}

.add-on-item:hover .add-on-card {
    border-color: #4a7c59;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(74, 124, 89, 0.15);
}

.add-on-item input[type="checkbox"]:checked + .add-on-card {
    background: linear-gradient(135deg, #4a7c59 0%, #3a6247 100%);
    border-color: #4a7c59;
}

.add-on-item input[type="checkbox"]:checked + .add-on-card i,
.add-on-item input[type="checkbox"]:checked + .add-on-card .add-on-name,
.add-on-item input[type="checkbox"]:checked + .add-on-card .add-on-price {
    color: #fff;
}

.add-on-item input[type="checkbox"]:checked + .add-on-card .original-price {
    color: rgba(255, 255, 255, 0.7);
}

.add-ons-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 2px solid #e9ecef;
    font-weight: 700;
    color: #2C3E2E;
}

/* Savings Highlight */
.savings-highlight {
    background: linear-gradient(135deg, #f8fdf9 0%, #ffffff 100%);
    border: 2px solid #4a7c59;
    border-radius: 8px;
    padding: 20px !important;
}

.savings-highlight h4 {
    font-size: 1.125rem;
    color: #2C3E2E;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.savings-highlight h4 i {
    color: #4a7c59;
}

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

.savings-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #5a6c57;
}

.savings-amount {
    font-weight: 700;
    color: #28a745;
}

.savings-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    margin-top: 12px;
    border-top: 2px solid #4a7c59;
    font-weight: 700;
    font-size: 1.125rem;
    color: #2C3E2E;
}

.savings-total span:last-child {
    color: #4a7c59;
    font-size: 1.5rem;
}

/* Trust Badges in Summary */
.summary-trust-badges {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.trust-badge-small {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: #2C3E2E;
    font-weight: 500;
}

.trust-badge-small i {
    color: #28a745;
    font-size: 14px;
}

/* Help Section */
.help-section {
    background: linear-gradient(135deg, #4a7c59 0%, #3a6247 100%);
    color: #fff;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
}

.help-section i {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.9;
}

.help-section h4 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.help-section p {
    font-size: 0.9rem;
    margin-bottom: 16px;
    opacity: 0.9;
}

.btn-help {
    display: inline-block;
    background: #fff;
    color: #4a7c59;
    padding: 12px 24px;
    border-radius: 24px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 16px;
}

.btn-help:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.help-contact {
    font-size: 0.875rem;
    margin-top: 16px;
    opacity: 0.9;
}

.help-contact a {
    color: #fff !important;
    text-decoration: underline;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .subscribe-layout {
        grid-template-columns: 1fr;
    }

    .subscribe-sidebar {
        position: static;
        order: -1;
    }

    .order-summary {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .subscribe-hero h1 {
        font-size: 2rem;
    }

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

    .hero-trust-signals {
        flex-direction: column;
        gap: 12px;
    }

    .subscribe-main {
        padding: 24px;
    }

    .section-header-inline {
        flex-direction: column;
        gap: 12px;
    }

    .box-selection-grid {
        grid-template-columns: 1fr;
    }

    .frequency-options {
        grid-template-columns: 1fr;
    }

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

    .section-actions button {
        width: 100%;
    }

    .progress-steps {
        padding: 0 20px;
    }

    .progress-line {
        width: 40px;
        margin: 0 10px;
    }

    .progress-step span {
        font-size: 12px;
    }
    
    .add-ons-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .subscribe-hero {
        padding: 40px 0 30px;
    }

    .subscribe-hero h1 {
        font-size: 1.75rem;
    }

    .section-header-inline h2 {
        font-size: 1.5rem;
    }

    .order-summary,
    .subscribe-main {
        padding: 20px;
    }

    .summary-item {
        grid-template-columns: 60px 1fr auto;
        gap: 12px;
    }

    .summary-item-image {
        width: 60px;
        height: 60px;
    }
}
