
.promo-temu-container {
position: relative;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background: #fff;
border: 2px solid #f68b1e;
border-radius: 12px;
box-shadow: 0 8px 24px rgba(0,0,0,0.1);
padding: 1.5rem;
box-sizing: border-box;
width: 100%;
max-width: 100%;
color: #222;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
transition: all 0.3s ease;
margin-bottom: 2rem;
}
.promo-temu-badge {
position: absolute;
top: 8px;
right: 8px;
background: #eee;
color: #888;
font-size: 0.7rem;
padding: 2px 6px;
border-radius: 6px;
font-weight: bold;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.promo-temu-content {
display: flex;
flex-direction: column;
gap: 1rem;
align-items: center;
width: 100%;
}
.promo-temu-title {
font-size: 1.8rem;
color: #f68b1e;
font-weight: bold;
text-align: center;
}
.promo-temu-subtitle {
font-size: 1rem;
text-align: center;
}
.promo-temu-code {
font-size: 1.5rem;
background-color: #f68b1e;
color: #fff;
padding: 0.75rem 1rem;
border-radius: 8px;
font-weight: bold;
user-select: all;
white-space: nowrap;
}
.promo-temu-button-copy {
background-color: #f68b1e;
color: #fff;
border: none;
border-radius: 8px;
padding: 0.7rem 1.5rem;
font-size: 1rem;
font-weight: bold;
cursor: pointer;
transition: background 0.3s ease;
white-space: nowrap;
}
.promo-temu-button-copy:hover {
background-color: #e47800;
}
.promo-temu-button-visit {
background: transparent;
border: 2px solid #f68b1e;
color: #f68b1e;
border-radius: 8px;
padding: 0.6rem 1.2rem;
font-size: 0.9rem;
font-weight: bold;
cursor: pointer;
transition: all 0.3s ease;
}
.promo-temu-button-visit:hover {
background-color: #f68b1e;
color: #fff;
}
.promo-temu-terms {
font-size: 0.8rem;
color: #555;
text-align: center;
margin-top: 1rem;
}
@media (min-width: 600px) {
.promo-temu-content {
flex-direction: row;
flex-wrap: wrap;
justify-content: space-between;
align-items: center;
text-align: left;
}
.promo-temu-title,
.promo-temu-subtitle {
flex: 1 1 100%;
text-align: center;
}
.promo-temu-code,
.promo-temu-button-copy,
.promo-temu-button-visit {
flex: 1 1 auto;
text-align: center;
}
}