/* Wizard Container */
#gdp-wizard-container {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #000 0%, #30a544 100%);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    color: #fff;
}

/* Progress Bar */
.gdp-progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    margin-bottom: 30px;
    margin-top: 30px;
    overflow: hidden;
}

.gdp-progress {
    height: 100%;
    background: #fff;
    transition: width 0.5s ease;
    border-radius: 3px;
}

/* Wizard Steps */
.gdp-wizard-step {
    display: none;
}

.gdp-wizard-step.active {
    display: block;
}

.gdp-wizard-step h3 {
    margin-bottom: 10px;
    color: #fff;
    font-size: 28px;
    font-weight: 600;
}

.gdp-step-description {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-size: 16px;
}

.gdp-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

/* Option Buttons */
.gdp-option-btn {
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.gdp-option-btn:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.gdp-option-btn:hover:before {
    width: 300px;
    height: 300px;
}

.gdp-option-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.gdp-option-btn.selected {
    background: rgba(255, 255, 255, 0.95);
    color: #667eea;
    border-color: #fff;
}

.gdp-next-btn {
    margin-top: 30px;
    padding: 15px 40px;
    background: #fff;
    color: #667eea;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.gdp-next-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* Results Section */
#gdp-wizard-results {
    background: #fff;
    color: #333;
    border-radius: 12px;
    padding: 30px;
}

#gdp-wizard-results h3 {
    color: #333;
    margin-bottom: 20px;
}

/* Filters */
.gdp-filters {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: #f5f5f5;
    border-radius: 8px;
    flex-wrap: wrap;
}

.gdp-filter-group {
    flex: 1;
    min-width: 200px;
}

.gdp-filter-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #666;
}

.gdp-filter-group select,
.gdp-filter-group input[type="range"] {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

#gdp-price-value {
    display: block;
    margin-top: 5px;
    color: #667eea;
    font-weight: 600;
}

/* Pack Cards Grid */
.gdp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.gdp-pack-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.gdp-pack-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #667eea;
}

.gdp-pack-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.gdp-pack-card h4 {
    margin: 0 0 15px;
    color: #333;
    font-size: 20px;
}

/* Pricing */
.gdp-price {
    font-size: 24px;
    font-weight: bold;
    color: #667eea;
    margin-bottom: 15px;
}

.gdp-original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 18px;
    margin-right: 10px;
}

.gdp-discounted-price {
    color: #28a745;
}

.gdp-discount-badge {
    display: inline-block;
    padding: 3px 8px;
    background: #dc3545;
    color: #fff;
    border-radius: 4px;
    font-size: 14px;
    margin-left: 5px;
}

/* Features List */
.gdp-pack-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    color: #666;
}

.gdp-pack-card ul li {
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
}

.gdp-pack-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

/* Pack Actions */
.gdp-pack-actions {
    display: flex;
    gap: 10px;
}

.gdp-btn {
    display: inline-block;
    padding: 12px 20px;
    background: #667eea;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    flex: 1;
    text-align: center;
}

.gdp-btn:hover {
    background: #5568d3;
    transform: translateY(-2px);
}

.gdp-view-details {
    background: #f5f5f5;
    color: #667eea;
}

.gdp-view-details:hover {
    background: #e8e8e8;
}

.gdp-add-to-cart.gdp-in-cart {
    background: #28a745;
}

.gdp-add-to-cart.gdp-in-cart:hover {
    background: #218838;
}

/* Cart Summary */
#gdp-cart-summary {
    margin-top: 40px;
    padding: 25px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-radius: 12px;
}

#gdp-cart-summary h3 {
    margin-top: 0;
    color: #fff;
}

.gdp-cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background: rgba(255, 255, 255, 0.15);
    margin-bottom: 10px;
    border-radius: 6px;
}

.gdp-cart-item-name {
    flex: 1;
}

.gdp-cart-item-price {
    margin: 0 15px;
    font-weight: 600;
}

.gdp-remove-from-cart {
    background: rgba(220, 53, 69, 0.9);
    color: #fff;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
    transition: all 0.3s ease;
}

.gdp-remove-from-cart:hover {
    background: #dc3545;
    transform: scale(1.1);
}

.gdp-cart-total {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    font-size: 24px;
}

.gdp-primary-btn {
    background: #fff;
    color: #667eea;
    padding: 15px 30px;
    font-size: 16px;
    margin-top: 20px;
    margin-right: 10px;
}

.gdp-primary-btn:hover {
    background: #f5f5f5;
}

/* Checkout Form */
#gdp-checkout-form {
    background: #fff;
    color: #333;
    border-radius: 12px;
    padding: 40px;
}

#gdp-checkout-form h3 {
    color: #333;
    margin-bottom: 30px;
}

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

.gdp-form-group {
    margin-bottom: 20px;
}

.gdp-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.gdp-form-group input,
.gdp-form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.gdp-form-group input:focus,
.gdp-form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.gdp-order-summary {
    margin: 30px 0;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
}

.gdp-order-summary h4 {
    margin-top: 0;
    color: #667eea;
}

.gdp-checkout-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.gdp-checkout-total {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 2px solid #667eea;
    font-size: 20px;
    text-align: right;
}

.gdp-form-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

/* Success Message */
#gdp-success-message {
    background: #fff;
    color: #333;
    border-radius: 12px;
    padding: 60px 40px;
    text-align: center;
}

.gdp-success-icon {
    width: 80px;
    height: 80px;
    background: #28a745;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    margin: 0 auto 30px;
}

#gdp-success-message h2 {
    color: #28a745;
    margin-bottom: 20px;
}

#gdp-success-message p {
    font-size: 16px;
    margin-bottom: 15px;
}

/* Restart Button */
#gdp-restart-btn,
#gdp-restart-after-success {
    margin-top: 30px;
    padding: 12px 30px;
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

#gdp-restart-btn:hover,
#gdp-restart-after-success:hover {
    background: #667eea;
    color: #fff;
}

/* Loading State */
.gdp-loading {
    text-align: center;
    padding: 60px 20px;
    color: #667eea;
    font-size: 18px;
}

.gdp-no-results {
    text-align: center;
    padding: 60px 20px;
    background: #f9f9f9;
    border-radius: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
    #gdp-wizard-container {
        padding: 20px;
    }

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

    .gdp-grid {
        grid-template-columns: 1fr;
    }

    .gdp-form-row {
        grid-template-columns: 1fr;
    }

    .gdp-filters {
        flex-direction: column;
    }

    .gdp-pack-actions {
        flex-direction: column;
    }
}