.wedding .header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    animation: sparkle 20s linear infinite;
}

@keyframes sparkle {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(-50px) translateY(-50px); }
}

.wedding .calculator-body {
    padding: 40px;
}

.wedding .calculator-grid {
    /* display: grid; */
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.wedding .category h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.3em;
    border-bottom: 2px solid #764ba2;
    padding-bottom: 10px;
}

.wedding .summary-panel {
    color: #666666;
    border-radius: 15px;
    padding: 30px;
    position: sticky;
    top: 20px;
    height: fit-content;
}

.wedding .summary-panel h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.8em;
}

.wedding .summary-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

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

.wedding .summary-item.total {
    font-size: 1.3em;
    font-weight: bold;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #764ba2;
}

.wedding .cost-breakdown {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
}

.wedding .progress-bar {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    height: 10px;
    margin: 10px 0;
    overflow: hidden;
}

.wedding .progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 10px;
    transition: width 0.5s ease;
}

.wedding .guest-calculator {
    border-radius: 10px;
    padding: 15px;
    margin: 15px 0;
}

.wedding .alert {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    color: #856404;
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0;
    display: none;
}

.wedding .reset-btn {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 20px;
}

.wedding .reset-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
}

@media (max-width: 768px) {
    .wedding .calculator-grid {
        grid-template-columns: 1fr;
    }
    
    .wedding .header h1 {
        font-size: 2em;
    }
    
    .wedding .calculator-body {
        padding: 20px;
    }
}

.wedding .currency-symbol {
    color: #666666;
    font-weight: bold;
}