/* --- Custom FAQ Section Styling --- */

/* The Main Wrapper */
.custom-faq-section {
    background-color: #f3e5dc; /* UPDATED: Warm Beige from your screenshot */
    padding: 60px 20px;
    margin-top: 0; 
    border-top: none;
}

/* The Container to keep content centered */
.faq-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* The Heading */
.custom-faq-section h2 {
    text-align: center;
    font-size: 2.2rem; /* Made slightly larger to match your 'About' header */
    color: #1a1a1a; /* Darker black/grey for better contrast on beige */
    margin-bottom: 40px;
    font-weight: 800; /* Bolder to match your brand style */
}

/* The Accordion Item (details tag) */
.faq-item {
    background: #ffffff; /* Keep white inner boxes for clean contrast */
    margin-bottom: 15px;
    border: 1px solid rgba(0,0,0,0.05); /* Softer border */
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 6px 15px rgba(0,0,0,0.08); /* Slightly deeper shadow */
    transform: translateY(-2px); /* Subtle lift effect */
}

/* The Question (summary tag) */
.faq-item summary {
    padding: 22px;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
    position: relative;
    font-size: 1.15rem;
    color: #333;
}

/* Custom Arrow for the Accordion */
.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 800;
    font-size: 1.6rem;
    color: #d85c2e; /* Updated: Burnt Orange to match your "30+ Years" text */
}

/* Change arrow to minus when open */
.faq-item[open] summary::after {
    content: '-';
    color: #333; /* Dark grey when open, optional stylistic choice */
}

/* The Answer Box */
.faq-answer {
    padding: 0 22px 25px 22px;
    color: #555;
    line-height: 1.7;
    background-color: #fff;
}

/* Hide default marker in some browsers */
.faq-item summary::-webkit-details-marker {
    display: none;
}

/* --- Fix Empty Space in Shop Grid (Simplified) --- */

/* Only hide the 'ghost' element causing the gap. */
/* We are NOT changing the display type of the container anymore, 
   so your original column sizes will return. */

ul.products::before,
ul.products::after {
    display: none !important;
    content: none !important;
    width: 0 !important;
}