/* Ajándékkártya specifikus stílusok */
        .gift-card-hero {
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
            padding: 80px 0 60px;
            text-align: center;
            color: white;
        }

        .gift-section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .gift-section-title.compact {
            margin-bottom: 20px;
        }

        .gift-intro {
            text-align: center;
            color: #666;
            max-width: 700px;
            margin: 0 auto 40px;
        }

        .gift-gross-note {
            opacity: 0.7;
        }

        .gift-gross-note-total {
            opacity: 0.8;
        }

        .gift-vat-row {
            font-size: 0.85em;
            opacity: 0.7;
        }

        .gift-vat-row span {
            font-weight: normal;
        }

        .gift-tax-note {
            font-size: 0.75em;
            opacity: 0.7;
            text-align: center;
            margin-top: 10px;
            padding-top: 10px;
            border-top: 1px solid #eee;
        }

        .gift-card-hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .gift-card-hero p {
            font-size: 20px;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
        }

        .gift-card-section {
            padding: 60px 0;
        }

        .gift-amounts-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }

        .gift-amount-card {
            background: white;
            border-radius: 16px;
            padding: 40px 30px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            border: 3px solid transparent;
        }

        .gift-amount-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
        }

        .gift-amount-card.selected {
            border-color: var(--accent-color);
            background: linear-gradient(135deg, #fff9e6 0%, #ffffff 100%);
        }

        .gift-amount-icon {
            font-size: 48px;
            color: var(--accent-color);
            margin-bottom: 20px;
        }

        .gift-amount-value {
            font-size: 36px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 10px;
        }

        .gift-amount-label {
            font-size: 16px;
            color: #666;
        }

        .gift-amount-popular {
            position: absolute;
            top: -12px;
            right: 20px;
            background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
            color: white;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
        }

        .gift-form-section {
            background: #f8f9fa;
            padding: 40px;
            border-radius: 16px;
            max-width: 700px;
            margin: 0 auto;
        }

        .form-group {
            margin-bottom: 25px;
        }

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

        .form-group label .required {
            color: #dc3545;
        }

        .form-control {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid #dee2e6;
            border-radius: 10px;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--accent-color);
            box-shadow: 0 0 0 3px rgba(255, 186, 8, 0.1);
        }

        textarea.form-control {
            resize: vertical;
            min-height: 100px;
        }

        .form-section-title {
            font-size: 20px;
            font-weight: 700;
            margin: 30px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--accent-color);
        }

        .form-section-title:first-child {
            margin-top: 0;
        }

        .checkbox-group {
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }

        .checkbox-group input[type="checkbox"] {
            width: 20px;
            height: 20px;
            margin-top: 3px;
            cursor: pointer;
        }

        .checkbox-group label {
            margin-bottom: 0;
            cursor: pointer;
            font-weight: 400;
        }

        .gift-summary {
            background: white;
            padding: 30px;
            border-radius: 12px;
            margin-top: 30px;
            border: 2px solid var(--accent-color);
        }

        .summary-row {
            display: flex;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid #e9ecef;
        }

        .summary-row:last-child {
            border-bottom: none;
            font-size: 24px;
            font-weight: 700;
            color: var(--accent-color);
            margin-top: 10px;
            padding-top: 20px;
            border-top: 2px solid var(--accent-color);
        }

        .btn-purchase {
            width: 100%;
            padding: 18px;
            background: linear-gradient(135deg, var(--accent-color) 0%, #e5a807 100%);
            color: #000;
            border: none;
            border-radius: 12px;
            font-size: 18px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 20px;
        }

        .btn-purchase:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255, 186, 8, 0.4);
        }

        .btn-purchase:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            transform: none;
        }

        .benefits-section {
            background: white;
            padding: 60px 0;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .benefit-card {
            text-align: center;
            padding: 30px;
        }

        .benefit-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--accent-color) 0%, #e5a807 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 32px;
            color: #000;
        }

        .benefit-title {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .benefit-desc {
            color: #666;
            line-height: 1.6;
        }

        .error-message {
            background: #f8d7da;
            border: 1px solid #f5c6cb;
            color: #721c24;
            padding: 12px 18px;
            border-radius: 8px;
            margin-bottom: 20px;
        }

        @media (max-width: 768px) {
            .gift-card-hero h1 {
                font-size: 36px;
            }

            .gift-amounts-grid {
                grid-template-columns: 1fr;
            }

            .gift-form-section {
                padding: 25px;
            }
        }
