.retail-title-section {
    border-bottom: 1px solid #e9e9e9;
    background: #f8f9f9;
    padding: 20px 0px;
}

.retail-title-inner {
    margin: 0 6%;
}

.retail-title-heading {
    font-size: 35px;
    font-weight: 700;
    color: #333;
}

@media (max-width: 768px) {
    .retail-title-heading {
        font-size: 24px;
    }
}

.custom-gallery-section {
    margin: 40px 6%;
    margin-bottom: unset;
}

.custom-banner img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 10px;
}

.custom-image-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
    padding: 20px 10px;
}

.custom-image-grid a {
    flex: 0 0 calc(16.666% - 10px);
    display: block;
}

.custom-image-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.custom-image-grid img:hover {
    transform: scale(1.05);
}

/* Lightbox styles */
.custom-gallery-lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.custom-gallery-lightbox-img {
    max-width: 90%;
    max-height: 80%;
    margin: auto;
    display: block;
    border-radius: 10px;
}

.custom-gallery-close {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}

.custom-gallery-nav {
    position: absolute;
    top: 50%;
    font-size: 50px;
    color: white;
    padding: 10px;
    cursor: pointer;
    user-select: none;
}

.custom-gallery-nav.prev {
    left: 20px;
}

.custom-gallery-nav.next {
    right: 20px;
}

/* Mobile responsiveness */
@media (max-width: 1024px) {
    .custom-image-grid a {
        flex: 0 0 calc(33.333% - 10px);
    }
}

@media (max-width: 768px) {
    .custom-image-grid a {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 480px) {
    .custom-image-grid a {
        flex: 0 0 100%;
    }
}

.custom-section {
    padding: 20px 6%;
}

.custom-row {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.custom-col {
    flex: 1 1 50%;
    padding: 10px;
    box-sizing: border-box;
}

.custom-row-title {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.accordion-header {
    background-color: #6DAB3C;
    color: white;
    cursor: pointer;
    padding: 12px 16px;
    font-weight: bold;
    border: none;
    width: 100%;
    text-align: left;
    outline: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 16px;
    background-color: #fafafa;
    transition: max-height 0.4s ease, padding 0.3s ease, background-color 0.3s ease;
}

.accordion-item.active .accordion-header {
    background-color: #F8F8F8;
    color: #777777;
    border-bottom: 1px solid #e1dede;    
}

.accordion-item.active .accordion-content {
    max-height: 500px; /* adjust this value if needed */
    padding: 10px 16px 16px;
    background-color: #F8F8F8;
}

.accordion-item .accordion-header::before {
    content: '+';
    margin-right: 10px;
}

.accordion-item.active .accordion-header::before {
    content: '-';
}

@media (max-width: 768px) {
    .custom-col {
        flex: 1 1 100%;
    }
}

.custom-col p {
    font-size: 16px;
    font-family: Garamond, 'Times New Roman', serif;
    line-height: 1.6;
}

.custom-col a {
    color: #006605;
}