:root {
    --bg-color: #4A1414;
    --card-bg: #E6E4D1;
    --primary-color: #4A1414;
    --secondary-color: #ff5454;
    --text-color: #4A1414;
    --input-border: #4A1414;
    --input-focus: #732222;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page_landing__image {
    padding: 0
}

.landing_page_form {
    display: flex;
    justify-content: center;
    background-color: #561a1c;
    padding: 40px 20px;
}

.landing_popup-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 12000;
}

.landing_popup-modal-overlay.landing_popup-active {
    opacity: 1;
    visibility: visible;
}

.landing_popup-card {
    background-color: var(--card-bg);
    padding: 60px;
    border-radius: 40px;
    width: 100%;
    max-width: 800px;
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    transform: scale(0.9);
    transition: all 0.3s ease;
}

.landing_popup-modal-overlay.landing_popup-active .landing_popup-card {
    transform: scale(1);
}

.landing_popup-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2.5rem;
    color: var(--text-color);
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: auto;
    box-shadow: none;
    font-weight: 300;
}

.landing_popup-close-btn:hover {
    transform: none;
    box-shadow: none;
    opacity: 0.7;
}

.landing_popup-title {
    color: var(--text-color);
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.landing_popup-subtitle {
    color: var(--text-color);
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 20px;
    font-weight: 500;
}

.landing_popup-form-group {
    text-align: left;
    margin-bottom: 25px;
}

.landing_popup-label {
    display: block;
    color: var(--text-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.landing_popup-input,
.landing_popup-textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1.5px solid var(--input-border) !important;
    border-radius: 15px;
    background: transparent;
    font-size: 1.1rem;
    color: var(--text-color);
    outline: none;
    transition: all 0.3s ease;
}

.landing_popup-textarea {
    height: 120px;
    resize: none;
}

.landing_popup-input:focus,
.landing_popup-textarea:focus {
    border-color: var(--input-focus);
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 10px rgba(74, 20, 20, 0.1);
}

.landing_popup-button-container {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.landing_popup-button-container>p {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.landing_popup-submit-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 60px;
    font-size: 1.5rem;
    font-weight: 500;
    border-radius: 25px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.landing_popup-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
    background-color: var(--input-focus);
}

.landing_popup-submit-btn:active {
    transform: translateY(0);
}

@media (max-width: 600px) {
    .landing_popup-card {
        padding: 20px;
        border-radius: 20px;
    }

    .landing_popup-title {
        font-size: 1.8rem;
        width: 90%;
    }

    .landing_popup-subtitle {
        font-size: 0.9rem;
    }

    .landing_popup-label {
        font-size: 1rem;
    }

    .landing_popup-submit-btn {
        width: 100%;
        font-size: 18px;
        padding: 10px;
    }
}

/* WooCommerce Reviews Section */

#reviews {
    margin-top: 50px;
    padding: 0 20px;
}

#reviews h2 {
    color: var(--link-color);
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
}

.woocommerce-Reviews-title span {
    color: var(--primary-color);
    font-weight: bold;
}

.woocommerce-Reviews .commentlist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.woocommerce-Reviews .comment_container {
    border-radius: 10px;
    padding: 20px;
    display: flex;
    gap: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    align-items: flex-start;
}

.woocommerce-Reviews .avatar {
    border-radius: 50%;
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 2px solid var(--link-color);
}

.woocommerce-Reviews p {
    color: var(--link-color);
}

.comment-notes:has(#email-notes) {
    text-align: center;
}

.woocommerce-noreviews {
    font-size: 24px;
    text-align: center;
}

.woocommerce-Reviews .comment-text {
    flex: 1;
}

.woocommerce-Reviews .meta {
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--link-color);
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 5px;
}

.woocommerce-Reviews .woocommerce-review__author {
    font-weight: bold;
    font-size: 1.1rem;
    color: var(--link-color);
}

.woocommerce-Reviews .description {
    color: var(--link-color);
    line-height: 1.5;
}

/* Review Form */
#review_form_wrapper {
    margin-top: 50px;
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

#reply-title {
    display: block;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--link-color);
    margin-bottom: 20px;
    text-align: center;
}

#reply-title small a {
    color: var(--link-color);
    font-size: 0.8rem;
    font-weight: normal;
}

.comment-form-rating {
    margin-bottom: 20px;
    text-align: center;
}

.comment-form-rating label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--link-color);
}

/* .stars {
    display: flex;
    justify-content: center;
    gap: 5px;
}

.stars a {
    color: var(--secondary-color);
    margin: 0 5px;
    text-decoration: none;
    font-size: 1.5rem;
}

.stars a.active {
    color: var(--link-color);
} */


.star-rating {
    overflow: hidden;
    position: relative;
    height: 1.618em;
    line-height: 1.618;
    width: 5.3em;
    font-family: star;
    font-weight: 400;
}

.star-rating::before {
    content: "\53\53\53\53\53";
    opacity: 0.25;
    float: left;
    top: 0;
    left: 0;
    position: absolute;
}

.star-rating span {
    overflow: hidden;
    float: left;
    top: 0;
    left: 0;
    position: absolute;
    padding-top: 1.5em;
}

.star-rating span::before {
    content: "\53\53\53\53\53";
    top: 0;
    position: absolute;
    left: 0;
    color: #FFC300;
}

p.stars a {
    position: relative;
    height: 1em;
    width: 1em;
    text-indent: -999em;
    display: inline-block;
    text-decoration: none;
    margin-right: 1px;
    font-weight: 400;
}

p.stars a::before {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 1em;
    height: 1em;
    line-height: 1;
    font-family: star;
    content: "\53";
    color: #404040;
    text-indent: 0;
    opacity: 0.25;
}

p.stars a:hover~a::before {
    content: "\53";
    color: #404040;
    opacity: 0.25;
}

p.stars:hover a::before {
    content: "\53";
    color: #FFC300;
    opacity: 1;
}

p.stars.selected a.active::before {
    content: "\53";
    color: #FFC300;
    opacity: 1;
}

p.stars.selected a.active~a::before {
    content: "\53";
    color: #404040;
    opacity: 0.25;
}

p.stars.selected a:not(.active)::before {
    content: "\53";
    color: #FFC300;
    opacity: 1;
}

.comment-form-comment {
    margin-bottom: 20px;
}

.comment-form-comment label {
    display: block;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--link-color);
}

.comment-form-comment textarea {
    width: 100%;
    padding: 15px;
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, .1);
    background: transparent;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-color);
    outline: none;
    transition: all 0.3s ease;
    resize: vertical;
}

.comment-form-comment textarea:focus {
    border-color: var(--input-focus);
    background: rgba(255, 255, 255, 0.3);
}

.form-submit {
    text-align: center;
    margin-top: 30px;
    width: 100%;
}

#submit {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    padding: 12px 60px;
    font-size: 1.2rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

#submit:hover {
    background-color: var(--input-focus);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 600px) {
    .woocommerce-Reviews .comment_container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .woocommerce-Reviews .meta {
        justify-content: center;
    }

    #review_form_wrapper {
        padding: 20px;
        border-radius: 20px;
    }

    #reply-title {
        font-size: 1.5rem;
    }
}