.tleft {
    text-align: left;
}
.tright {
    text-align: right;
}
.tcenter {
    text-align: center;
}
/* top */
.ads-top {
    width: 1400px;
    height: 50px;
    overflow: hidden;
    background: #fff;
    display: flex;
    align-items: center;
    position: relative;
}
.text-slider {
    display: flex;
    width: 2800px;
    height: 100%;
    animation: slideLeft 8s cubic-bezier(0.2, 0, 0.2, 1) infinite;
}
.slide {
    width: 1400px;
    height: 100%;
    display: flex;
    align-items: center;
    color: #333;
    font-size: 18px;
    box-sizing: border-box;
    flex-shrink: 0;
    font-weight: bold;
    padding-right: 10px;
}
.ads-top .highlight {
    color: #ff6b6b;
    margin: 0 5px;
    font-size: 1.6em;
}
.join-btn {
    background: linear-gradient(90deg, #fd9393, #ff6b6b);
    color: #fff;
    text-decoration: none;
    padding: 8px 28px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}
.join-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.4);
    color: #fff;
}
@keyframes slideLeft {
    0%   { transform: translateX(0%); }
    26%  { transform: translateX(0%); }
    29%  { transform: translateX(-50%); }
    81%  { transform: translateX(-50%); }
    84%  { transform: translateX(0%); }
    100% { transform: translateX(0%); }
}
/* Footer */
.footer-temp {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    max-width: 1400px;
    margin: 20px auto;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column ul {
    list-style: none;
    margin: 0;
}

.footer-column li {
    margin-bottom: 10px;
}

/* SwiperContainer */
.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    overflow: hidden;
}

/* Swiper Button */
.swiper-button-next,
.swiper-button-prev {
    color: var(--white);
    background-color: rgba(0, 0, 0, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: var(--transition);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.5rem;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: rgba(0, 0, 0, 0.6);
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background-color: var(--primary-color);
}

/* slider - text style */
.text-container {
    flex: 1;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.slide-title {
    color: #000;
    margin-bottom: 20px;
    line-height: 1.1;
    font-size: 40px;
}

.slide-description {
    font-size: 17px;
    line-height: 1.8;
    color: #000;
    margin-bottom: 20px;
}

.slide-btn {
    display: inline-block;
    background-color: #263238;
    color: white;
    padding: 12px 48px;
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    transition: all 0.3s ease;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    align-self: flex-start;
}

.slide-btn:hover {
    background-color: #2A8ABD;
    border-color: #2A8ABD;
    color: #fff;
}

.slide-btn-2 {
    display: inline-block;
    background-color: #fff;
    color: #000;
    padding: 12px 48px;
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    transition: all 0.3s ease;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    align-self: flex-start;
}

.slide-btn-2:hover {
    background-color: #000;
    color: #fff;
}

.slide-note {
    font-size: 15px;
    color: #000;
    margin-top: 20px;
}

/* slider- image style */
.image-container {
    flex: 1;
    height: 100%;
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.swiper-slide-active .image-container img {
    transform: scale(1.05);
}

/* accordion */
.accordion {
    width: 100%;
    margin: 20px auto;
}

.accordion-item {
    border: 1px solid #ddd;
    margin-bottom: 5px;
    overflow: hidden;
}

.accordion-header {
    background-color: #f9f9f9;
    padding: 12px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    transition: background-color 0.2s;
}

.accordion-header:hover {
    background-color: #f0f0f0;
}

.accordion-header::after {
    content: '+';
    font-size: 18px;
    transition: transform 0.3s;
}

.accordion-item.active .accordion-header::after {
    content: '−';
    transform: rotate(0deg);
}

.accordion-content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: #fff;
    text-align: left;
}

.accordion-item.active .accordion-content {
    padding: 15px 20px;
    max-height: 500px;
}

.accordion-item span {
    font-weight: 500;
}


@media (max-width: 768px) {
    .swiper-slide {
        display: block;
    }
}
@media (min-width: 769px) {
    #ast-desktop-header { position: fixed; width: 100%; }
    #primary,#secondary {margin-top:150px!important; }
}

/* woocommerce */
.woocommerce-js div.product .product_title{
    font-size: 28px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}
.woocommerce-js .woocommerce-breadcrumb a {
    color:#000;
}
.woocommerce-product-details__short-description p {
    margin-bottom: 1em;
}
[CLASS*="wc-block"] button {
    padding: 10px;
}
.wc-block-components-quantity-selector {
    width: 140px;
}

/* widget - single-post-cf7 */
.single-post-cf7, .related-post {
    background-color: #fff;
    border-radius: 15px;
}
.single-post-cf7 p.title, .related-post p {
    padding: 20px 20px 0;
    color: var(--ast-global-color-2, #111827);
    font-size: 18px;
    font-weight: 500;
    text-transform: none;
    line-height: 1.2em;
    margin-bottom: 0;
}
.single-post-cf7 .sub-title {
    padding: 10px 20px 0;
    color: var(--ast-global-color-2, #111827);
    font-size: 15px;
    line-height: 1.2rem;
    margin-bottom: 0;
}
.single-post-cf7 .wpcf7 form>p {
    margin-bottom: 0;
}
.related-post ul {
    padding: 20px;
}