/* ============================================================
   Elementor WooCommerce Products Widget
   Styles ported 1-to-1 from Greek Shop Template (page template)
   All rules scoped under .ewpw-scope (added by the widget wrapper)
   ============================================================ */

/* ── Category section ──────────────────────────────────────── */
.product-category-section {
    max-width: 1340px;
    margin: 60px auto 40px;
}

h2.category-title {
    max-width: 1300px !important;
    margin: auto !important;
    margin-bottom: 0 !important;
    color: #000 !important;
    font-size: 40px !important;
    padding: 0 20px;
}

/* ── Single product container ──────────────────────────────── */
.single-product-container {
    max-width: 1340px;
    margin: 0 auto;
    padding: 20px;
    color: #000;
}

/* ── Product layout: image left, summary right ─────────────── */
.product-main-info {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

.product-image {
    flex: 1;
    max-width: 33%;
    min-height: 650px;
}

.product-image img {
    width: 100%;
    position: sticky;
    object-fit: cover;
    top: 0;
}

.product-summary {
    flex: 1;
}

/* ── Typography ────────────────────────────────────────────── */
.product-title {
    font-size: 40px;
    margin: 0;
    font-weight: 400;
}

.product-short-description {
    font-size: 23px;
    margin-bottom: 15px;
    font-weight: 400;
}

.product-price {
    font-size: 30px;
    font-weight: 300;
    margin-bottom: 20px;
}

.product-long-description {
    font-size: 23px;
    font-weight: 400;
}

/* ── Accordion ─────────────────────────────────────────────── */
.product-accordion {
    margin-top: 30px;
}

.accordion-item {
    margin-bottom: 7px;
}

.accordion-title {
    font-size: 23px;
    cursor: pointer;
    padding-bottom: 15px;
    border-bottom: 1px solid;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-content {
    display: none;
    padding: 15px;
    font-size: 18px;
    color: #000;
}

.accordion-icon {
    font-size: 27px;
    margin-right: 10px;
    transition: transform 0.3s ease;
}

.product-accordion ul {
    padding-left: 40px !important;
}

.product-accordion ul li {
    list-style: disc !important;
}

/* ── Cart area ─────────────────────────────────────────────── */
.product-cart-area {
    margin-top: 40px;
}

.product-cart-area label.screen-reader-text {
    display: contents;
    font-size: 20px;
    text-transform: capitalize;
}

.cart {
    display: flex;
    gap: 45px;
    align-items: end;
}

.product-cart-area form.cart .quantity {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: self-start !important;
    margin-right: 50px;
}

.cart .quantity input {
    width: 70px !important;
    height: 40px;
    border-radius: 0 !important;
    text-align: center !important;
    margin-top: 10px;
}

.cart .single_add_to_cart_button {
    background-color: #e0bc8c !important;
    color: #000 !important;
    height: 45px;
    font-size: 17px !important;
    font-weight: 400 !important;
    text-transform: capitalize;
    border-radius: 0 !important;
    width: 300px;
}

.cart .single_add_to_cart_button:hover {
    background-color: #051624 !important;
    color: #fff !important;
}

/* ── Responsive: 1024px ────────────────────────────────────── */
@media (max-width: 1299px) {
    .product-category-section {
        margin: 0px auto 40px !important;
    }
}

@media (max-width: 1024px) {
    .single-product-container {
        padding: 30px 20px;
    }

    .product-main-info {
        flex-direction: column;
        gap: 30px;
    }

    .product-image {
        max-width: 100%;
        min-height: 400px;
        max-height: none;
    }

    .product-summary {
        max-width: 100%;
    }

    .product-title {
        font-size: 32px;
    }

    .product-short-description,
    .product-long-description {
        font-size: 20px;
    }

    .product-price {
        font-size: 26px;
    }

    .accordion-title {
        font-size: 20px;
    }

    .accordion-content {
        font-size: 16px;
    }

    .cart {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .cart .single_add_to_cart_button {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .product-title {
        font-size: 28px;
    }

    .product-short-description,
    .product-long-description {
        font-size: 18px;
    }

    .product-price {
        font-size: 24px;
    }

    .accordion-title {
        font-size: 18px;
    }

    .accordion-icon {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .product-title {
        font-size: 24px;
    }

    .product-price {
        font-size: 20px;
    }

    .product-short-description,
    .product-long-description {
        font-size: 16px;
    }

    .accordion-title {
        font-size: 16px;
    }

    .accordion-content {
        font-size: 14px;
    }

    .cart .quantity input {
        width: 60px !important;
        height: 35px;
    }
}
