@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

:root {
    --primary: #0066cc;
    --primary-dark: #0052a3;
    --accent: #ff4b4b;
    --text: #333333;
    --text-light: #666666;
    --background: #ffffff;
    --background-alt: #f0f7ff;
    --border: #e0e0e0;
    --shadow: rgba(0, 102, 204, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--background);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.highlight {
    color: var(--accent);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 30%;
    background-color: rgba(255, 107, 107, 0.3);
    z-index: -1;
    transform: skew(-5deg);
    z-index: 999;
}

.site-header {
    background: var(--background);
    box-shadow: 0 2px 10px var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary);
}

.cta-button {
    background: var(--accent);;
    color: var(--background);
    border: none;
    padding: 0.8em 1.6em;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px var(--shadow);
    text-decoration: none;
}

.cta-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 8px var(--shadow);
}

.hero {
background-color: #21D4FD;
    background-image: linear-gradient(19deg, #21D4FD 0%, #B721FF 100%);
    color: var(--background);
    padding: 140px 0 80px;
    text-align: center;

}

.badge {
    display: inline-block;
    background: var(--accent);
    color: var(--background);
    padding: 0.5em 1em;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.audio-players {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.audio-player {
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px var(--shadow);
}

.audio-player:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 8px var(--shadow);
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.play-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    border: none;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.play-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    border-style: solid;
    border-width: 10px 0 10px 16px;
    border-color: transparent transparent transparent var(--background);
}

.play-button.playing::before {
    content: '';
    width: 15px;
    height: 15px;
    background: var(--background);
    left: 50%;
    display: none;
}
.play-button.playing::after{
    font-size: 27px;
}

.progress-bar {
    height: 6px;
    background: var(--background-alt);
    border-radius: 3px;
    margin-top: 1rem;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: var(--primary);
    width: 0;
    transition: width 0.1s linear;
}

.features-grid,
.occasions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card,
.occasion-card {
    background: var(--background);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px var(--shadow);
}

.feature-card:hover,
.occasion-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px var(--shadow);
}

.feature-icon,
.occasion-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.section-title {
    text-align: center;
    margin-bottom: 2rem;
}

.section {
    padding: 80px 0;
}

.section:nth-child(even) {
    background-color: var(--background-alt);
}

.styles-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.style-button {
    background: var(--primary);
    color: var(--background);
    border: none;
    padding: 0.8em 1.6em;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: moveButton 10s infinite alternate;
}

.style-button:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

@keyframes moveButton {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(100vw - 100%));
    }
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}

.faq-item summary {
    padding: 1rem;
    cursor: pointer;
    font-weight: 600;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    float: right;
    font-size: 1.5rem;
    line-height: 1;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-content {
    padding: 1rem;
    border-top: 1px solid var(--border);
}

.order-form {
    max-width: 800px;
    margin: 0 auto;
    background: var(--background);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px var(--shadow);
}

.form-group {
    margin-bottom: 0.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.radio-group {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    text-align: center;
   
}

.radio-group input[type="radio"] {
    margin-right: 0.5rem;
}

.site-footer {
    background-color: var(--primary-dark);
    color: var(--background);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-content>div {
    flex-basis: calc(25% - 2rem);
    /* 25% din lățime minus spațiul dintre elemente */
    flex-grow: 1;
}

.footer-logo img {
    max-width: 150px;
    margin-bottom: 1rem;
}

.footer-links h4,
.footer-contact h4, .footer-useful-info h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-links ul, .footer-useful-info ul {
    list-style: none;
}

.footer-links li, .footer-useful-info li {
    margin-bottom: 0.5rem;
}

.footer-links a, .footer-useful-info a {
    color: var(--background);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover, .footer-useful-info a:hover {
    color: var(--accent);
}

.footer-contact p {
    margin-bottom: 0.5rem;
}

.footer-useful-info span {
    cursor: pointer;
}

.footer-bottom {
    margin-top: 2rem;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .nav-links {
        display: none;
    }

    .hero {
        clip-path: none;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-logo,
    .footer-links,
    .footer-contact {
        width: 100%;
    }
}

/* Adăugați aceste stiluri la fișierul styles.css existent */

/* Stiluri pentru secțiunea de recenzii */
.full-width {
    width: 100%;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background-color: #fff;
    color: var(--background);
    padding: 4rem 0;
}

#section-title{
    color:#000;
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.review-card {
    background-color: var(--primary);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.review-stars {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.review-text {
    font-style: italic;
    margin-bottom: 1rem;
    color: #fff;
}

.review-author {
    font-weight: 600;
    color: #fff;
}


/* Responsive design pentru recenzii */
@media (max-width: 992px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .site-header .cta-button{
        font-size: 14px;
    }
    .order-form{
        padding: 1rem;
    }
    .form-group-inline-mobile .form-group{
        width: 100%;
    }
    .form-group-inline-mobile {
        display: block !important;
    }
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* Ajustări pentru hero section */
.hero .highlight::after {
    background-color: rgba(255, 255, 255, 0.3);
}

.hero .cta-button {
    margin-top: 1rem;
}

.hero .delivery-info {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Stiluri pentru noile carduri de ocazii */
.occasion-card:nth-child(7) .occasion-icon,
.occasion-card:nth-child(8) .occasion-icon {
    font-size: 2.8rem;
    margin-bottom: 0.8rem;
}

/* Ajustări generale */
.section-title {
    margin-bottom: 1.5rem;
}

.section-desc {
    max-width: 800px;
    margin: 0 auto 2rem;
    text-align: center;
}

/* Adăugați sau modificați aceste stiluri în fișierul styles.css existent */

/* Container pentru opțiunile de livrare */
.delivery-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Stiluri îmbunătățite pentru radio buttons */
.radio-group {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    border: 2px solid transparent;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    flex: 1;
}

.radio-group:hover {
    background-color: var(--background-alt);
}

.radio-group input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid var(--border);
    border-radius: 50%;
    margin-right: 1rem;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.radio-group input[type="radio"]:checked {
    border-color: var(--primary);
}

.radio-group input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background-color: var(--primary);
    border-radius: 50%;
    animation: scaleIn 0.2s ease;
}

.radio-group label {
    font-weight: 500;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.radio-group:has(input[type="radio"]:checked) {
    border-color: var(--primary);
    background-color: var(--background-alt);
}

@keyframes scaleIn {
    0% {
        transform: translate(-50%, -50%) scale(0);
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
    }
}

/* Layout pentru desktop */
@media (min-width: 768px) {
    .delivery-options {
        flex-direction: row;
    }

    .radio-group {
        flex-basis: 0;
        text-align: center;
    }

    .radio-group label {
        align-items: center;
    }
}

/* Ajustare pentru mobile */
@media (max-width: 767px) {
    .radio-group {
        padding: 0.5rem;
    }

    .radio-group input[type="radio"] {
        width: 18px;
        height: 18px;
    }

    .radio-group input[type="radio"]:checked::after {
        width: 8px;
        height: 8px;
    }
}

.cta-button span {
    color: transparent;
    text-shadow: 0 0 0 #fff;
    font-size: 20px;
}
/* Stiluri îmbunătățite pentru radio buttons */
.radio-group {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.75rem;
    border: 2px solid transparent;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 32%;
    display: inline-block;
    border-color: #ebebeb;
}

.radio-group:hover {
    background-color: var(--background-alt);
}

.radio-group input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid var(--border);
    border-radius: 50%;
    margin-right: 1rem;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.radio-group input[type="radio"]:checked {
    border-color: var(--primary);
}

.radio-group input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background-color: var(--primary);
    border-radius: 50%;
    animation: scaleIn 0.2s ease;
}

.radio-group label {
    font-weight: 500;
    cursor: pointer;
}

.radio-group:has(input[type="radio"]:checked) {
    border-color: var(--primary);
    background-color: var(--background-alt);
}

@keyframes scaleIn {
    0% {
        transform: translate(-50%, -50%) scale(0);
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
    }
}

/* Ajustare pentru mobile */
@media (max-width: 768px) {
    .radio-group {
        padding: 0.5rem;
    }

    .radio-group input[type="radio"] {
        width: 18px;
        height: 18px;
    }

    .radio-group input[type="radio"]:checked::after {
        width: 8px;
        height: 8px;
    }
}

/* Stiluri pentru grid */
.styles-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    overflow: hidden;
    /* Adăugat pentru a preveni ieșirea din container */
}

.style-button {
    background: var(--primary);
    color: var(--background);
    border: none;
    padding: 0.8em 1.6em;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    /* Eliminăm animația care cauzează ieșirea din ecran */
    animation: float 3s ease-in-out infinite;
}

.style-button:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

/* Adăugăm o nouă animație pentru butoane */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}



.highlight-blue {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.highlight-blue::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 30%;
    background-color: rgba(134, 120, 255, 0.3);
    z-index: -1;
    transform: skew(-5deg);
        z-index: 999;
}

.audio-player {
    margin-bottom: 20px;
}

.wavesurfer-container {
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #f7f7f7;
    margin-top: 10px;
}

.play-button {
    background: #ff5722;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin-right: 10px;
    position: relative;
    /* Pentru a permite poziționarea precisă a pseudo-elementelor */
    font-size: 20px;
    /* Ajustează dimensiunea textului */
    line-height: 1;
    /* Asigură centrare verticală */
}

.play-button::after {
    position: absolute;
    font-family: Arial, sans-serif;
    font-size: 20px;
    /* Ajustează dimensiunea simbolului */
    color: white;
}

.play-button.paused::after {
    content: "▶";
}

.play-button.playing::after {
    content: "⏸";
}

.player-header {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 10px;
}

.song-title {
    font-weight: bold;
    color: #333;
    font-size: 15px;
}

.song-title strong{
    color: var(--accent);
}


.duration {
    font-size: 14px;
    color: #777;
}

.volume-control {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.volume-control .duration {
    margin-left: auto;
    /* Împinge durata spre partea dreaptă */
    font-weight: bold;
    /* Pentru a evidenția durata */
}

.volume-control input[type="range"] {
    width: 100px;
}

.hero {
    position: relative;
  
    color: var(--background);
    padding: 40px 0 30px;
    text-align: center;
    overflow: hidden;
}

#hero-background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1,
.hero p,
.hero .delivery-info {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero .badge {
    background: var(--accent);
    color: var(--background);
}

.hero .cta-button {
    background: #fff;
    color: var(--accent);
    border: 2px solid var(--accent);
    margin-top: 10px;
    margin-bottom: 10px;
    display: inline-block;
}

.hero .cta-button:hover {
    background: var(--background);
    color: var(--accent);
}

.hero .delivery-info {
    color: var(--background);
    opacity: 0.9;
}

/* Stil general pentru formular */
.order-form {
    max-width: 800px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
}

/* Grupare a câmpurilor pe același rând */
.form-group-inline {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    /* Spațiu între câmpuri */
}

/* Ajustează câmpurile să ocupe jumătate din lățime */
.form-group-inline .form-group {
    flex: 1;
    /* Fiecare câmp să ocupe spațiul disponibil */
}

.form-group-inline .form-group:first-child {
    margin-right: 10px;
    /* Adaugă spațiu între primele două câmpuri */
}

/* Stiluri pentru input-uri și select */
.order-form input,
.order-form select,
.order-form textarea {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

/* Stil pentru label-uri */
.order-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 14px;
}

#recenzii .section-title{
    color: #000;
}

.select2-container--default .select2-selection--single{
    height: 38px !important;
    color: #000 !important;
    padding: 5px;
}

.select2-default {
    color: #000 !important;
}

.select2-selection__placeholder{
    color: #000000 !important;
}

#orderForm .cta-button{
    width: 100%;
        font-size: 18px;
}

/* Stilizare pentru popup-uri */

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}

.hidden {
    display: none;
}

    .popup {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-color: white;
        border: 1px solid #ccc;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        z-index: 99999;
        padding: 20px;
        max-width: 500px;
        width: 90%;
    }

    .popup.hidden {
        display: none;
    }

    .popup-content {
        text-align: left;
    }

    .popup-content h2 {
        margin-top: 0;
        font-size: 20px;
    }

    .close-popup {
        background: #007bff;
        color: white;
        border: none;
        padding: 10px 20px;
        border-radius: 5px;
        cursor: pointer;
        margin-top: 20px;
        display: inline-block;
    }

    .close-popup:hover {
        background: #0056b3;
    }

/* Stilizare pentru popup-uri */
.send-message{
    width: 100%;
}

.footer-contact a{
    text-decoration: none;
}
#response-message {
    padding: 10px;
    margin: 15px 0;
    border-radius: 5px;
    text-align: center;
    display: none;
}

#response-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

#response-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    padding: 20px;
    width: 90%;
   
}

.popup.hidden {
    display: none;
}

/* Conținut scrollabil */
.popup-scrollable-content {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 10px;
}

/* Buton de închidere în colțul dreapta-sus */
.popup-close-icon {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
    color: #555;
}

.popup-close-icon:hover {
    color: #000;
}

/* Stilizare buton Închide */
.close-popup {
    background: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
    display: inline-block;
}

.close-popup:hover {
    background: #0056b3;
}

.popup-content-inside{
    overflow: auto;
    display: block;
    height: 350px;
}

.form-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 10px;
}

.form-group span {
    color: #007bff;
    text-decoration: underline;
    cursor: pointer;
}

.form-group span:hover {
    color: #0056b3;
    text-decoration: none;
}



.dashboard-progress {
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    background-color: #ffffff;
}

.dashboard-progress h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.progress-bar {
    position: relative;
    width: 100%;
    height: 20px;
    background-color: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    margin: 10px 0;
}

.progress-bar .progress {
    height: 100%;
    background-color: #ff5722;
    border-radius: 10px 0 0 10px;
    animation: progress-animation 2s ease-in-out;
}

@keyframes progress-animation {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

.dashboard-progress p {
    font-size: 14px;
    color: #555;
}

.woocommerce-account .woocommerce-MyAccount-content {
    border: 0px solid #e5e5e5;
    padding: 0px;
    background-color: transparent;
}

.woocommerce-MyAccount-content p{
    text-align: center;
}

.timp_ramas{
    float: right;
}

.woocommerce table.shop_table td {
    padding: 9px 12px !important;
}

/* Asigură dimensiuni egale pentru toate cardurile */
.slick-slide>.review-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    /* Înălțime completă */
    padding: 20px;
    background: #007bff;
    /* Fundal albastru */
    color: #fff;
    /* Text alb */
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    text-align: center;
}

/* Asigură că toate cardurile au aceeași dimensiune */
.slick-slide {
    height: auto;
}

/* Spații între slide-uri */
.slick-track {
    display: flex !important;
    /* Forțează layout flexibil */
    gap: 15px;
    /* Spațiu uniform între carduri */
}

.slick-list {
    padding: 0 10px;
    /* Spațiu față de marginea containerului */
    overflow: hidden;
    /* Previne afișarea incompletă */
}

/* Poziționează săgețile */
.slick-prev,
.slick-next {
    position: absolute;
    top: 80px;
    /* Poziția săgeților la 80px de sus */
    z-index: 10;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 20px;
    line-height: 40px;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Poziționare pe desktop */
.slick-prev {
    left: -50px;
    /* Poziționează săgeata în stânga caruselului */
}

.slick-next {
    right: -50px;
    /* Poziționează săgeata în dreapta caruselului */
}

/* Poziționare pe mobil */
@media screen and (max-width: 768px) {
    .slick-prev {
        background: var(--accent);
        left: 20px;
        top: 10px;
        /* Adaugă spațiu față de marginea ecranului */
    }

    .slick-next {
        background: var(--accent);
        right: 20px;
        top: 10px;
        /* Adaugă spațiu față de marginea ecranului */
    }
}

/* Adaugă efect hover pentru săgeți */
.slick-prev:hover,
.slick-next:hover {
    background-color: #0056b3;
    /* Albastru mai închis la hover */
}

/* Ascunde punctele de navigare */
.slick-dots {
    display: none !important;
}

/* Adaugă un aspect responsive pentru carduri */
@media screen and (max-width: 768px) {
    .slick-slide>.review-card {
        padding: 15px;
        /* Reducem spațiul intern pe dispozitive mobile */
    }
}

@media screen and (max-width: 480px) {
    .slick-slide>.review-card {
        font-size: 14px;
        /* Reducem dimensiunea fontului pe ecrane foarte mici */
        padding: 10px;
        /* Mai puțin padding pe ecrane mici */
    }
}

/* Container pentru secțiunea Întrebări Frecvente */
#intrebari {
    padding: 50px 20px;
    background-color: #f7f7f7;
}

#intrebari .section-title {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #333;
}

.faq-list {
    display: flex;
    flex-wrap: wrap;
    /* Permite trecerea pe mai multe rânduri */
    gap: 20px;
    /* Spațiu între întrebări */
    justify-content: center;
    /* Centrează întrebările */
}

.faq-item {
    flex: 1 1 calc(50% - 20px);
    /* Întrebările ocupă 50% din rând */
    min-width: 250px;
    /* Dimensiune minimă */
    max-width: 400px;
    /* Dimensiune maximă */
    padding: 20px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.faq-item:hover {
    background-color: #f0f0f0;
    transform: scale(1.03);
    /* Efect de hover */
}

/* Săgeată indicatoare */
.faq-item::after {
    content: "➤";
    display: inline;
    /* Săgeată indicatoare */
    font-size: 18px;
    color: #007BFF;
    position: absolute;
    right: 15px;
    top: 75%;
    transform: translateY(-50%);
    transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item:hover::after {
    transform: translateY(-50%) rotate(90deg);
    /* Rotirea săgeții la hover */
    color: #0056b3;
}

.faq-item span {
    font-size: 16px;
    font-weight: bold;
    color: #555;
    line-height: 1.4;
    transition: color 0.3s ease;
}


/* Popup */
.popup_faq {
    display: none; /* Ascuns implicit */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Fundal semi-transparent */
    justify-content: center; /* Centrează orizontal */
    align-items: center; /* Centrează vertical */
    z-index: 1000;
}

/* Conținutul popup-ului */
.popup_faq .popup-content {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    max-width: 600px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.2);
    animation: popup-fade-in 0.3s ease;
}

/* Titlul întrebării */
.popup_faq .popup-content h3 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

/* Textul răspunsului */
.popup_faq .popup-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

/* Butonul de închidere */
.popup_faq .popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
    color: #333;
    font-weight: bold;
    transition: color 0.3s ease;
}

.popup_faq .popup-close:hover {
    color: #ff0000;
    /* Roșu pe hover */
}

/* Efect de fade-in pentru popup */
@keyframes popup-fade-in {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.faq-item{
        min-height: 93px !important;
}
/* Responsivitate pentru dispozitive mobile */
@media (max-width: 768px) {
    .faq-item {
        flex: 1 1 calc(40% - 20px);
        /* Tot două pe rând */
    }

    .popup_faq .popup-content {
        padding: 20px;
    }

    .popup_faq .popup-content h3 {
        font-size: 18px;
    }

    .popup_faq .popup-content p {
        font-size: 14px;
    }
}


#intrebari .slick-prev {
    left: -50px;
    top: 15%;
}

#intrebari .slick-next {
    right: -50px;
    top: 15%;
}

#intrebari .slick-prev:hover,
#intrebari .slick-next:hover {
    background-color: #0056b3;
}

/* Stiluri pentru puncte */
#intrebari .slick-dots li button:before {
    color: #007BFF;
}
#faq-popup .popup-content {
    top: 30%;
    left: 30%;
}

#orderForm .cta-button {
    width: 100%;
    font-size: 18px;
    margin-top: 15px;
    display: block;
    text-align: center;
}

#accept-terms:checked:before{
        left: 4px;
            top: 8px;
}

.radio-group:checked:before,.radio-group:checked:after{
    display: none !important;
}
@media (max-width: 768px) {
    #intrebari .slick-prev,
    #intrebari .slick-next{
        width: 30px;
        height: 30px;
        line-height: 30px;
    }
    
    #intrebari .slick-next {
        right: -30px !important;
        top: 23% !important;
    }

    #intrebari .slick-prev {
        left: -30px !important;
        top: 23% !important;
    }
    #intrebari .faq-item {
        min-height: 93px !important;
    }
    #faq-popup .popup-content {
        top: 30%;
        left: 5%;
    }

    .hero .cta-button {
        font-size: 14px;
    }

}


.badge:after{
    display: none !important;
}
