button.popup1 {
    padding: 10px 20px;
    background-color: #2185d0;
    color: white;
    border-radius: 10px;
}

nav.woocommerce-breadcrumb {
	font-size: 19px !important;
}
.bc-type-default .container{
	padding-bottom:0px;
}
.et_element.single_product-html_block.single_product-html_block1,.et_element.single_product-html_block.single_product-html_block1 {
    padding-bottom: 20px !important;
}

.content li, .type-product li {
	margin-bottom:0px;}
.content-product .product-title{
	height:auto !important;
}
.elementor-350 .elementor-element.elementor-element-a1464f0 .swiper-wrapper {
    align-items: flex-start;
}

/* Container spacing & border line */
.product-faqs-accordion-container {
    margin-top: 0px;
    padding-top: 70px;
	padding-bottom: 70px;
    border-top: px solid #eaeaea;
    clear: both;
}

/* Big bold centered uppercase heading */
.faq-accordion-title {
    text-align: center !important;
    font-size: 26px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px;
    margin-bottom: 35px !important;
    color: #111;
}

/* Individual Accordion Rows */
.faq-accordion-item {
    border-bottom: 1px solid #eaeaea;
    padding: 2px 0;
    background: transparent;
}

/* Add a line above the very first accordion item to sandwich them nicely */
.faq-accordion-item:first-of-type {
    border-top: 1px solid #eaeaea;
}

/* Clickable summary block (The Question row) */
.faq-accordion-question {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    list-style: none !important; /* Hide native HTML triangle */
    cursor: pointer;
    padding: 18px 0;
    font-weight: 700;
    font-size: 16px;
    color: #000;
    user-select: none;
}

/* Hide native Safari details marker */
.faq-accordion-question::-webkit-details-marker {
    display: none !important;
}

/* Smooth Arrow Icon container */
.faq-accordion-icon {
    position: relative;
    width: 12px;
    height: 12px;
    flex-shrink: 0;
    margin-left: 15px;
}

/* Drawing a clean CSS arrow pointing right (collapsed state) */
.faq-accordion-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    border-right: 2px solid #000;
    border-bottom: 2px solid #000;
    transform: translate(-50%, -50%) rotate(-45deg); /* Points Right */
    transition: transform 0.25s ease;
}

/* Rotate arrow downwards when the accordion row is opened */
.faq-accordion-item[open] .faq-accordion-icon::before {
    transform: translate(-50%, -50%) rotate(45deg); /* Points Down */
}

/* Answer body block styling */
.faq-accordion-answer {
    padding: 0 0 20px 0;
    animation: slideDownFade 0.3s ease-out;
}

/* Light gray, beautifully spaced answer paragraph */
.faq-accordion-answer p {
    font-size: 15px;
    line-height: 1.6;
    color: #777; /* Matches the soft gray color in your screenshot */
    margin: 0 !important;
}

/* Visual fade-in entry when clicked open */
@keyframes slideDownFade {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}