/**
 * Frontend styles for Tecas Solar Simulator
 */

.tecas-solar-simulator {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
}

/* Global button typography in simulator */
.tecas-solar-simulator button,
.tecas-solar-simulator input[type="button"],
.tecas-solar-simulator input[type="submit"],
.tecas-solar-simulator input[type="reset"] {
	text-transform: none;
	font-size: 15px;
	border-radius: 5px;
}

/* Steps Progress Bar */
.tecas-steps-progress {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
	margin-bottom: 40px;
	padding: 20px 0;
	position: relative;
}

.tecas-steps-progress::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 10%;
	right: 10%;
	height: 2px;
	background: #ddd;
	z-index: 0;
}

.tecas-step-indicator {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	position: relative;
	z-index: 1;
	background: #fff;
	padding: 0 15px;
}

.tecas-step-number {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #ddd;
	color: #666;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	font-size: 18px;
	transition: all 0.3s ease;
}

.tecas-step-indicator.active .tecas-step-number {
	background: #2271b1;
	color: #fff;
}

.tecas-step-indicator.completed .tecas-step-number {
	background: #46b450;
	color: #fff;
}

.tecas-step-label {
	font-size: 12px;
	color: #666;
	font-weight: 600;
}

.tecas-step-indicator.active .tecas-step-label {
	color: #2271b1;
}

/* Steps */
.tecas-step {
	display: none;
}

.tecas-step.active {
	display: block;
}

.tecas-step-title {
	text-align: center;
	margin-bottom: 15px;
	color: #333;
	font-size: 24px;
}

.tecas-step-description {
	text-align: center;
	color: #666;
	margin-bottom: 30px;
	font-size: 16px;
}

/* Building type options */
.tecas-building-type-options {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 30px;
	max-width: 400px;
	margin-left: auto;
	margin-right: auto;
}

.tecas-building-type-option {
	display: flex;
	align-items: center;
	padding: 14px 18px;
	background: #f9f9f9;
	border: 2px solid #ddd;
	border-radius: 6px;
	cursor: pointer;
	transition: border-color 0.2s ease, background 0.2s ease;
}

.tecas-building-type-option:hover {
	border-color: #2271b1;
	background: #f0f6fc;
}

.tecas-building-type-option input[type="radio"] {
	margin: 0 12px 0 0;
	width: 18px;
	height: 18px;
	accent-color: #2271b1;
}

.tecas-building-type-option input[type="radio"]:checked + .tecas-option-label {
	font-weight: 600;
	color: #2271b1;
}

.tecas-building-type-option:has(input:checked) {
	border-color: #2271b1;
	background: #f0f6fc;
}

.tecas-option-label {
	font-size: 15px;
	color: #333;
}

/* Fixation Type Options */
.tecas-fixation-type-options {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
	margin-bottom: 30px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.tecas-fixation-type-option {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 20px;
	background: #f9f9f9;
	border: 2px solid #ddd;
	border-radius: 8px;
	cursor: pointer;
	transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
	text-align: center;
}

.tecas-fixation-type-option:hover {
	border-color: #2271b1;
	background: #f0f6fc;
	transform: translateY(-2px);
}

.tecas-fixation-type-option input[type="radio"] {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.tecas-fixation-icon {
	width: 80px;
	height: 80px;
	margin-bottom: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.tecas-fixation-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.tecas-fixation-type-option input[type="radio"]:checked + .tecas-fixation-icon + .tecas-option-label {
	font-weight: 600;
	color: #2271b1;
}

.tecas-fixation-type-option:has(input:checked) {
	border-color: #2271b1;
	background: #f0f6fc;
	box-shadow: 0 2px 8px rgba(34, 113, 177, 0.15);
}

/* Power Type Options */
.tecas-power-type-options {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
	margin-bottom: 30px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.tecas-power-type-option {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 20px;
	background: #f9f9f9;
	border: 2px solid #ddd;
	border-radius: 8px;
	cursor: pointer;
	transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
	text-align: center;
}

.tecas-power-type-option:hover {
	border-color: #2271b1;
	background: #f0f6fc;
	transform: translateY(-2px);
}

.tecas-power-type-option input[type="radio"] {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.tecas-power-icon {
	width: 80px;
	height: 80px;
	margin-bottom: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.tecas-power-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.tecas-power-details {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.tecas-power-voltage {
	font-size: 14px;
	color: #666;
	font-weight: 500;
}

.tecas-power-type-option input[type="radio"]:checked ~ .tecas-power-icon ~ .tecas-power-details .tecas-option-label,
.tecas-power-type-option:has(input:checked) .tecas-power-details .tecas-option-label {
	font-weight: 600;
	color: #2271b1;
}

.tecas-power-type-option:has(input:checked) {
	border-color: #2271b1;
	background: #f0f6fc;
	box-shadow: 0 2px 8px rgba(34, 113, 177, 0.15);
}

/* Exposition Options */
.tecas-exposition-options {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
	margin-bottom: 24px;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

.tecas-exposition-option {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 16px 12px;
	background: #f9f9f9;
	border: 2px solid #ddd;
	border-radius: 8px;
	cursor: pointer;
	transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
	text-align: center;
}

.tecas-exposition-option:hover {
	border-color: #2271b1;
	background: #f0f6fc;
	transform: translateY(-2px);
}

.tecas-exposition-option input[type="radio"] {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.tecas-exposition-icon {
	width: 70px;
	height: 70px;
	margin-bottom: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.tecas-exposition-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.tecas-exposition-option input[type="radio"]:checked + .tecas-exposition-icon + .tecas-option-label {
	font-weight: 600;
	color: #2271b1;
}

.tecas-exposition-option:has(input:checked) {
	border-color: #2271b1;
	background: #f0f6fc;
	box-shadow: 0 2px 8px rgba(34, 113, 177, 0.15);
}

/* Double Orientation Checkbox */
.tecas-exposition-double-orientation {
	margin-bottom: 24px;
	text-align: center;
}

.tecas-checkbox-option {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
	padding: 10px 16px;
	background: #f9f9f9;
	border: 2px solid #ddd;
	border-radius: 6px;
	transition: border-color 0.2s ease, background 0.2s ease;
}

.tecas-checkbox-option:hover {
	border-color: #2271b1;
	background: #f0f6fc;
}

.tecas-checkbox-option input[type="checkbox"] {
	width: 18px;
	height: 18px;
	accent-color: #2271b1;
	cursor: pointer;
}

.tecas-checkbox-label {
	font-size: 14px;
	color: #333;
	cursor: pointer;
}

.tecas-checkbox-option:has(input:checked) {
	border-color: #2271b1;
	background: #f0f6fc;
}

/* Boutons du simulateur : style identique pour tous */
.tecas-btn {
	display: inline-block;
	min-width: 200px;
	padding: 14px 28px;
	font-size: 15px;
	font-weight: 600;
	text-align: center;
	text-transform: none;
	background: #e6e6e6;
	color: #333;
	border: 1px solid #d0d0d0;
	border-radius: 5px;
	cursor: pointer;
	transition: background 0.3s ease, color 0.3s ease;
}

.tecas-btn:hover {
	background: #dcdcdc;
	color: #333;
}

.tecas-btn:disabled {
	background: #ccc;
	color: #666;
	cursor: not-allowed;
}

/* Primary actions (Next / Simulate / Submit) */
.tecas-step-next:not(:disabled):not(.disabled),
.tecas-simulate-btn-primary:not(:disabled):not(.disabled),
.tecas-btn.tecas-simulate-btn-primary:not(:disabled):not(.disabled) {
	background: #f98909 !important;
	color: white !important;
	border-color: #f98909 !important;
}

.tecas-step-next:not(:disabled):not(.disabled):hover,
.tecas-simulate-btn-primary:not(:disabled):not(.disabled):hover,
.tecas-btn.tecas-simulate-btn-primary:not(:disabled):not(.disabled):hover {
	background: #e57d07 !important;
	color: white !important;
	border-color: #e57d07 !important;
}

/* Keep previous buttons gray even on hover */
.tecas-step-prev {
	background: #e6e6e6 !important;
	color: #333 !important;
	border-color: #d0d0d0 !important;
}

.tecas-step-prev:hover {
	background: #dcdcdc !important;
	color: #333 !important;
	border-color: #c8c8c8 !important;
}

/* Centrer le bouton Suivant de l'étape 1 */
#tecas-step-1 .tecas-btn {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.tecas-step-actions {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 15px;
	margin-top: 30px;
	flex-wrap: wrap;
}

.tecas-step-actions .tecas-btn {
	margin: 0;
}

.tecas-simulator-container {
	background: #fff;
	padding: 30px;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.tecas-simulator-title {
	margin-top: 0;
	text-align: center;
	color: #333;
}

.tecas-simulator-description {
	text-align: center;
	color: #666;
	margin-bottom: 30px;
}

/* Mode Selection Tabs */
.tecas-mode-selection {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-bottom: 30px;
	border-bottom: 2px solid #eee;
}

.tecas-mode-tab {
	padding: 12px 24px;
	background: transparent;
	border: none;
	border-bottom: 3px solid transparent;
	color: #666;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.tecas-mode-tab:hover {
	color: #2271b1;
}

.tecas-mode-tab.active {
	color: #2271b1;
	border-bottom-color: #2271b1;
}

.tecas-input-mode {
	margin: 30px 0;
}

.tecas-consumption-slider-wrapper {
	margin: 30px 0;
}

/* Bill Input */
.tecas-bill-input-wrapper {
	margin: 30px 0;
}

.tecas-bill-input-wrapper label {
	display: block;
	font-weight: 600;
	margin-bottom: 15px;
	font-size: 18px;
}

.tecas-bill-input-group {
	display: flex;
	align-items: center;
	gap: 10px;
	max-width: 400px;
	margin: 0 auto;
}

.tecas-bill-input {
	flex: 1;
	padding: 15px;
	border: 2px solid #ddd;
	border-radius: 5px;
	font-size: 18px;
	text-align: center;
	transition: border-color 0.3s ease;
}

.tecas-bill-input:focus {
	outline: none;
	border-color: #2271b1;
}

.tecas-bill-input.error {
	border-color: #d63638;
}

.tecas-bill-currency {
	font-size: 18px;
	font-weight: 600;
	color: #333;
}

.tecas-bill-description {
	text-align: center;
	color: #666;
	margin-top: 10px;
	font-size: 14px;
}

.tecas-consumption-slider-wrapper label {
	display: block;
	font-weight: 600;
	margin-bottom: 15px;
	font-size: 18px;
}

#tecas-consumption-value {
	color: #2271b1;
	font-weight: bold;
	font-size: 24px;
}

.tecas-slider {
	width: 100%;
	height: 8px;
	border-radius: 5px;
	background: #ddd;
	outline: none;
	appearance: none;
	-webkit-appearance: none;
}

.tecas-slider::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: #2271b1;
	cursor: pointer;
}

.tecas-slider::-moz-range-thumb {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: #2271b1;
	cursor: pointer;
	border: none;
}

.tecas-slider-labels {
	display: flex;
	justify-content: space-between;
	margin-top: 5px;
	font-size: 12px;
	color: #666;
}

/* Ancienne classe conservée pour compatibilité (si utilisée ailleurs) */
.tecas-simulate-button {
	display: inline-block;
	min-width: 200px;
	padding: 14px 28px;
	font-size: 15px;
	font-weight: 600;
	text-transform: none;
	background: #f98909;
	color: white;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	transition: background 0.3s ease;
}

.tecas-simulate-button:hover {
	background: #e57d07;
	color: white;
}

.tecas-simulate-button:disabled {
	background: #ccc;
	color: #666;
	cursor: not-allowed;
}

/* Boutons Télécharger PDF / Envoyer par email */
.tecas-results-actions {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 15px;
	margin-top: 25px;
	flex-wrap: wrap;
}

.tecas-results-actions .tecas-btn {
	margin: 0;
}

/* Formulaire "Recevoir les résultats par email" */
.tecas-email-results-box {
	margin-top: 35px;
	padding: 25px;
	background: #f9f9f9;
	border: 1px solid #ddd;
	border-radius: 8px;
	max-width: 480px;
	margin-left: auto;
	margin-right: auto;
}

/* Step 6: make the form narrower than container */
#tecas-step-6 #tecas-send-results-form-wrapper {
	max-width: 860px;
	margin-left: auto;
	margin-right: auto;
}

#tecas-step-6 .tecas-email-form {
	max-width: 860px;
	margin-left: auto;
	margin-right: auto;
}

.tecas-email-results-box h4 {
	margin-top: 0;
	margin-bottom: 8px;
	font-size: 18px;
	color: #333;
}

.tecas-email-description {
	margin-bottom: 20px;
	color: #666;
	font-size: 14px;
}

/* Form Grid - 2 columns */
.tecas-form-grid {
	display: grid !important;
	grid-template-columns: repeat(2, 1fr) !important;
	gap: 20px !important;
	margin-bottom: 20px !important;
}

.tecas-form-row-full {
	grid-column: 1 / -1;
}

.tecas-form-consent .tecas-consent-label {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	cursor: pointer;
	font-weight: 500;
}

.tecas-form-consent input[type="checkbox"] {
	margin-top: 4px;
	flex-shrink: 0;
}

@media (max-width: 768px) {
	.tecas-form-grid {
		grid-template-columns: 1fr !important;
	}
}

.tecas-email-form .tecas-form-row {
	margin-bottom: 0 !important;
	display: flex !important;
	flex-direction: column !important;
}

.tecas-email-form label {
	display: block;
	margin-bottom: 6px;
	font-weight: 600;
	font-size: 14px;
	color: #333;
}

.tecas-email-form .required {
	color: #b32d2e;
}

.tecas-email-form input[type="text"],
.tecas-email-form input[type="email"],
.tecas-email-form input[type="tel"] {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 15px;
	box-sizing: border-box;
}

.tecas-email-form textarea {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 15px;
	box-sizing: border-box;
	resize: vertical;
	min-height: 80px;
}

.tecas-email-form input:focus {
	outline: none;
	border-color: #2271b1;
}

.tecas-form-actions {
	margin-top: 22px;
}

.tecas-email-form .tecas-btn {
	margin: 0;
}

/* Step 6: center CTA and hide "Précédent" */
#tecas-step-6 .tecas-form-actions {
	display: flex;
	justify-content: center;
	align-items: center;
}

#tecas-step-6 .tecas-form-actions .tecas-step-prev {
	display: none !important;
}

#tecas-step-6 .tecas-form-actions .tecas-btn {
	min-width: 260px;
}

.tecas-email-message {
	margin-top: 15px;
	padding: 12px;
	border-radius: 4px;
	font-size: 14px;
}

.tecas-email-success {
	background: #d4edda;
	color: #155724;
	border: 1px solid #c3e6cb;
}

.tecas-email-error {
	background: #f8d7da;
	color: #721c24;
	border: 1px solid #f5c6cb;
}

/* Success block (after form submit) */
.tecas-send-success-block {
	text-align: center;
	padding: 32px 24px;
	margin-bottom: 28px;
	background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
	border: 1px solid #a7f3d0;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(16, 185, 129, 0.08);
}

.tecas-send-success-icon {
	width: 56px;
	height: 56px;
	margin: 0 auto 16px;
	background: #10b981;
	border-radius: 50%;
	position: relative;
	box-shadow: 0 4px 14px rgba(16, 185, 129, 0.35);
}

.tecas-send-success-icon::before,
.tecas-send-success-icon::after {
	content: '';
	position: absolute;
	background: #fff;
	border-radius: 2px;
}

.tecas-send-success-icon::before {
	width: 14px;
	height: 4px;
	left: 14px;
	top: 28px;
	transform: rotate(-45deg);
}

.tecas-send-success-icon::after {
	width: 24px;
	height: 4px;
	left: 20px;
	top: 28px;
	transform: rotate(45deg);
}

.tecas-send-success-title {
	margin: 0 0 10px;
	font-size: 22px;
	font-weight: 700;
	color: #065f46;
	letter-spacing: -0.02em;
}

.tecas-send-success-message {
	margin: 0;
	font-size: 15px;
	line-height: 1.55;
	color: #047857;
	max-width: 520px;
	margin-left: auto;
	margin-right: auto;
}

/* Recap Section - Compact single line */
.tecas-simulation-recap {
	margin-bottom: 20px;
	padding: 12px 16px;
	background: #f9f9f9;
	border-radius: 6px;
	border: 1px solid #e0e0e0;
}

.tecas-recap-title {
	margin-top: 0;
	margin-bottom: 8px;
	font-size: 14px;
	font-weight: 600;
	color: #333;
}

.tecas-recap-content {
	font-size: 13px;
	line-height: 1.5;
}

.tecas-recap-list {
	display: flex !important;
	flex-wrap: wrap !important;
	gap: 0 12px !important;
	align-items: center !important;
	flex-direction: row !important;
}

.tecas-recap-item {
	display: inline-flex !important;
	align-items: center !important;
	gap: 4px !important;
	white-space: nowrap !important;
	flex-shrink: 0 !important;
}

.tecas-recap-label {
	font-weight: 500;
	color: #666;
	font-size: 13px;
	display: inline !important;
}

.tecas-recap-value {
	font-weight: 600;
	color: #2271b1;
	font-size: 13px;
	display: inline !important;
}

.tecas-recap-item:not(:last-child)::after {
	content: ' • ' !important;
	color: #ccc;
	margin-left: 8px;
	margin-right: 4px;
	display: inline !important;
}

.tecas-simulation-results {
	margin-top: 30px;
	padding-top: 30px;
	border-top: 2px solid #eee;
}

.tecas-results-title {
	margin-top: 0;
	margin-bottom: 20px;
	font-size: 18px;
	font-weight: 600;
	color: #333;
	text-align: center;
}

.tecas-simulation-results h3 {
	margin-top: 0;
	text-align: center;
	color: #333;
}

.tecas-results-success-message {
	margin: 20px 0;
	padding: 15px 20px;
	background: #d4edda;
	border: 1px solid #c3e6cb;
	border-radius: 4px;
	text-align: center;
}

.tecas-success-text {
	color: #155724;
	font-size: 16px;
	font-weight: 500;
	margin: 0;
}

.tecas-offers-grid {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-top: 20px;
}

.tecas-offer-card {
	background: #f9f9f9;
	border: 2px solid #ddd;
	border-radius: 8px;
	padding: 12px 18px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	width: 100%;
}

.tecas-offer-main-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
}

.tecas-offer-left-section {
	flex: 1;
	min-width: 300px;
}

.tecas-offer-right-section {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 10px;
	flex-shrink: 0;
}

.tecas-offer-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.tecas-offer-card.recommended {
	border-color: #2271b1;
	background: #f0f6fc;
}

.tecas-offer-header-card {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin-bottom: 8px;
	gap: 10px;
}

.tecas-offer-title-card {
	font-size: 16px;
	font-weight: bold;
	margin: 0;
	color: #333;
}

.tecas-offer-label-card {
	display: inline-block;
	background: #2271b1;
	color: #fff;
	padding: 2px 8px;
	border-radius: 3px;
	font-size: 10px;
	font-weight: 600;
	text-transform: uppercase;
}

.tecas-offer-description-card {
	color: #666;
	margin-bottom: 15px;
	line-height: 1.6;
	display: none; /* Hidden by default */
}

.tecas-offer-description-card.show {
	display: block;
}

.tecas-offer-details {
	display: flex;
	gap: 15px;
	margin: 0;
	flex-wrap: wrap;
}

.tecas-offer-detail-item {
	background: transparent;
	padding: 0;
	border-radius: 0;
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	gap: 5px;
}

.tecas-offer-detail-label {
	font-size: 12px;
	color: #666;
	margin: 0;
}

.tecas-offer-detail-value {
	font-size: 14px;
	font-weight: 600;
	color: #333;
	margin: 0;
}

.tecas-offer-price {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	padding: 0;
	background: transparent;
	border-radius: 0;
	margin: 0;
}

.tecas-offer-price-label {
	font-size: 11px;
	color: #666;
	margin: 0;
	text-align: right;
}

.tecas-offer-price-value {
	font-size: 20px;
	font-weight: bold;
	color: #2271b1;
	margin: 0;
	line-height: 1.2;
}

.tecas-offer-products {
	margin-top: 15px;
	padding-top: 15px;
	border-top: 1px solid #ddd;
	display: none; /* Hidden by default */
}

.tecas-offer-products.show {
	display: block;
}

.tecas-offer-products-title {
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 10px;
	color: #333;
}

.tecas-product-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.tecas-product-item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px;
	background: #fff;
	border-radius: 4px;
	margin-bottom: 5px;
}

.tecas-product-image {
	width: 40px;
	height: 40px;
	object-fit: cover;
	border-radius: 4px;
}

.tecas-product-info {
	flex: 1;
}

.tecas-product-name {
	font-size: 14px;
	font-weight: 600;
	color: #333;
	text-decoration: none;
}

.tecas-product-name:hover {
	color: #2271b1;
}

.tecas-product-price {
	font-size: 14px;
	color: #666;
}

.tecas-offer-cta {
	width: 100%;
	padding: 12px;
	background: #f98909;
	color: white;
	border: none;
	border-radius: 4px;
	font-size: 15px;
	font-weight: 600;
	text-transform: none;
	cursor: pointer;
	transition: background 0.3s ease;
	text-decoration: none;
	display: block;
	text-align: center;
}

.tecas-offer-cta:hover {
	background: #e57d07;
	color: white;
}

.tecas-offer-toggle-details {
	color: #2271b1;
	text-decoration: underline;
	font-size: 13px;
	cursor: pointer;
	transition: color 0.3s ease;
	margin: 0;
	white-space: nowrap;
	background: none;
	border: none;
	padding: 0;
}

.tecas-offer-toggle-details:hover {
	color: #135e96;
	text-decoration: underline;
}

.tecas-offer-toggle-details.active {
	color: #2271b1;
	text-decoration: underline;
}

.tecas-loading {
	text-align: center;
	padding: 20px;
	color: #666;
}

.tecas-error {
	background: #f8d7da;
	color: #721c24;
	padding: 15px;
	border-radius: 4px;
	margin-top: 20px;
	border: 1px solid #f5c6cb;
}

/* Responsive */
@media (max-width: 768px) {
	.tecas-offers-grid {
		grid-template-columns: 1fr;
	}

	.tecas-offer-main-content {
		flex-direction: column;
		align-items: flex-start;
	}

	.tecas-offer-right-section {
		width: 100%;
		align-items: flex-start;
		flex-direction: row;
		justify-content: space-between;
	}

	.tecas-offer-details {
		flex-direction: column;
		gap: 5px;
	}
}
