/**
 * Peaklab Widgets - Product Tile (offer-entry) Styles
 */

.offer-entry {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: #1e1e1e;
    padding: 25px;
    text-align: center;
    height: 100%;
}

.offer-entry .offer-title {
    font-size: 35px;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    margin: 0;
    padding: 0;
    line-height: 1.2;
}

.offer-entry .offer-price {
    font-size: 28px;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    margin: 0;
    padding: 0;
    line-height: 1.2;
}

.offer-entry .offer-details {
    padding: 0;
    margin: 0;
    flex-grow: 1;
    color: #7a7a7a;
    text-align: center;
    line-height: 1.5;
}

.offer-entry .offer-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.offer-entry .offer-details li {
    color: #7a7a7a;
    text-align: center;
    margin-bottom: 8px;
    line-height: 1.5;
}

.offer-entry .offer-details li:last-child {
    margin-bottom: 0;
}

.offer-entry .offer-details p {
    color: #7a7a7a;
    text-align: center;
    margin: 0 0 8px 0;
    line-height: 1.5;
}

.offer-entry .offer-details p:last-child {
    margin-bottom: 0;
}

.offer-entry .offer-button {
    text-align: center;
}

.offer-entry .offer-button a {
    display: inline-block;
    background-color: #61ce70;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 3px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.offer-entry .offer-button a:hover {
    background-color: #4db85c;
    color: #ffffff;
    text-decoration: none;
}

/**
 * Peaklab Widgets - Product Tiles Grid Styles
 */

.product-tiles-grid-wrapper {
    width: 100%;
}

.product-tiles-grid-title {
    font-size: 28px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    padding: 0;
    line-height: 1.2;
}

.product-tiles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.product-tiles-grid .offer-entry {
    height: 100%;
}

/**
 * Peaklab Widgets - Accordion Styles
 */

/* Accordion Header */
.offer-header {
    background-color: #1e1e1e;
    padding: 20px 40px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.offer-header .product-tiles-grid-title {
    text-align: left;
    margin: 0;
}

/* Arrow indicator */
.offer-header .arrow {
    display: inline-block;
    float: right;
    transition: transform 0.3s ease;
}

/* Accordion Content (offer-grid) */
.offer-accordion .offer-grid {
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease-in-out;
    padding: 0;
}

/* Active state */
.offer-accordion.active .offer-header {
    background-color: #009e66;
}

.offer-accordion.active .offer-grid {
    height: auto;
    overflow: visible;
    margin-bottom: 20px;
    padding-top: 20px;
}

.offer-accordion.active .arrow {
    transform: rotate(180deg);
}

/* Non-accordion mode */
.product-tiles-grid-wrapper:not(.offer-accordion) .offer-grid {
    height: auto;
    overflow: visible;
}

.product-tiles-grid-wrapper:not(.offer-accordion) .product-tiles-grid-title {
    text-align: center;
    margin-bottom: 30px;
}
