/**
 * What Do We Sell Section Block Styles
 * 
 * @package ACF Child Theme
 */

/* Section Wrapper - Full width background */
.what-do-we-sell-section {
    background-color: #f5f5f5;
    width: 100%;
    padding: 80px 0;
}

/* Content Wrapper - WordPress layout width */
.wdws-content-wrapper {
    max-width: var(--theme-normal-container-max-width, 1290px);
    width: var(--theme-container-width, 100%);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Section */
.wdws-header {
    text-align: center;
    margin-bottom: 60px;
}

/* Section Title */
.wdws-title {
    font-size: 3rem;
    font-weight: 700;
    color: #000000;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

/* Section Description */
.wdws-description {
    font-size: 1.25rem;
    color: #000000;
    line-height: 1.6;
    margin: 0;
    max-width: 800px;
    margin: 0 auto;
}

/* Items Grid */
.wdws-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

/* Individual Item */
.wdws-item {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 40px 40px 40px 30px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    padding-left: 50px;
}

/* Orange vertical line inside the card */
.wdws-item::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 40px;
    bottom: 40px;
    width: 5px;
    background-color: #d98b20;
    border-radius: 3px;
}

.wdws-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}

/* Item Name */
.wdws-item-name {
    font-size: 1.75rem;
    font-weight: 700;
    color: #000000;
    margin: 0 0 20px 0;
    line-height: 1.3;
}

/* Item Description */
.wdws-item-description {
    font-size: 1rem;
    color: #000000;
    line-height: 1.8;
}

.wdws-item-description p {
    margin: 0 0 15px 0;
}

.wdws-item-description p:last-child {
    margin-bottom: 0;
}

.wdws-item-description ul,
.wdws-item-description ol {
    padding-left: 25px;
    margin: 15px 0;
}

.wdws-item-description li {
    margin-bottom: 10px;
    line-height: 1.8;
}

.wdws-item-description strong {
    font-weight: 700;
}

.wdws-item-description a {
    color: #8c47c0;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.wdws-item-description a:hover {
    color: #f7b119;
}

/* Button Wrapper */
.wdws-button-wrapper {
    text-align: center;
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

/* Call to Action Button */
.wdws-button-wrapper .btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    white-space: nowrap;
}

.wdws-button-wrapper .btn-default {
    background: linear-gradient(to right, #c67ffb, #8c47c0);
    color: #ffffff;
    border: none;
}

.wdws-button-wrapper .btn-default:hover {
    background: #d98b20;
    color: #ffffff;
}

/* Tablet Styles */
@media (max-width: 1024px) {
    .what-do-we-sell-section {
        padding: 60px 0;
    }

    .wdws-content-wrapper {
        padding: 0 30px;
    }

    .wdws-header {
        margin-bottom: 50px;
    }

    .wdws-title {
        font-size: 2.5rem;
    }

    .wdws-description {
        font-size: 1.125rem;
    }

    .wdws-items {
        gap: 35px;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .wdws-item {
        padding: 35px 35px 35px 45px;
    }

    .wdws-item::before {
        left: 18px;
        top: 35px;
        bottom: 35px;
    }

    .wdws-item-name {
        font-size: 1.5rem;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .what-do-we-sell-section {
        padding: 50px 0;
    }

    .wdws-content-wrapper {
        padding: 0 20px;
    }

    .wdws-header {
        margin-bottom: 40px;
    }

    .wdws-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .wdws-description {
        font-size: 1rem;
    }

    .wdws-items {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }

    .wdws-item {
        padding: 30px 30px 30px 40px;
    }

    .wdws-item::before {
        left: 15px;
        top: 30px;
        bottom: 30px;
    }

    .wdws-item-name {
        font-size: 1.375rem;
        margin-bottom: 15px;
    }

    .wdws-item-description {
        font-size: 0.95rem;
    }

    .wdws-button-wrapper {
        margin-top: 40px;
    }

    .wdws-button-wrapper .btn {
        font-size: 16px;
        padding: 12px 28px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .what-do-we-sell-section {
        padding: 40px 0;
    }

    .wdws-content-wrapper {
        padding: 0 15px;
    }

    .wdws-header {
        margin-bottom: 35px;
    }

    .wdws-title {
        font-size: 1.75rem;
    }

    .wdws-description {
        font-size: 0.95rem;
    }

    .wdws-items {
        gap: 25px;
    }

    .wdws-item {
        padding: 25px 25px 25px 35px;
    }

    .wdws-item::before {
        left: 12px;
        top: 25px;
        bottom: 25px;
        width: 4px;
    }

    .wdws-item-name {
        font-size: 1.25rem;
    }

    .wdws-item-description {
        font-size: 0.9rem;
    }

    .wdws-button-wrapper .btn {
        font-size: 15px;
        padding: 11px 24px;
        width: 100%;
        justify-content: center;
    }
}
