/**
 * WooCommerce Header & SEO Styles
 *
 * @package Astra Child
 */

:root {
    --ceit-gold: #c6a87c;
    --ceit-gold-hover: #b59567;
    --ceit-dark-bg: #1a1a1a;
    --ceit-text-light: #ffffff;
}

/* .ceit-container {
    width: 100%;
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
} */

/* =========================================
   Premium Shop Header
   ========================================= */
.ceit-shop-header {
    background-color: var(--ceit-dark-bg);
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
    /* Fallback or placeholder */
    background-size: cover;
    background-position: center;
    padding: 60px 0;
    margin-bottom: 40px;
    position: relative;
    text-align: center;
}

.ceit-shop-header__content {
    position: relative;
    z-index: 2;
}

.ceit-shop-header__title {
    max-width: 670px;
    width: 100%;
    color: var(--ceit-text-light);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
    text-align: left;
}

.ceit-shop-header__title span {
    color: var(--ceit-gold);
}

/* Breadcrumbs Styling */
.ceit-shop-header__breadcrumbs {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ceit-shop-header__breadcrumbs a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.ceit-shop-header__breadcrumbs a:hover {
    color: var(--ceit-gold);
}

.ceit-shop-header__breadcrumbs .delimiter {
    margin: 0 8px;
    color: rgba(255, 255, 255, 0.4);
}

.ceit-shop-header__breadcrumbs .current {
    color: var(--ceit-text-light);
    font-weight: 600;
}

/* =========================================
   SEO Text Areas
   ========================================= */
.ceit-seo-text {
    margin-bottom: 30px;
    line-height: 1.6;
    color: #555;
    font-size: 1rem;
}

.ceit-seo-text--top {
    margin-top: -20px;
    /* Pull closer to header if needed */
    margin-bottom: 40px;
}

.ceit-seo-text--bottom {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #eee;
    width: 100%;
    max-width: 100%;
    grid-column: 1 / -1;
    display: block;
    clear: both;
    flex-basis: 100%;
}

.ceit-seo-text h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #333;
}

.ceit-seo-text p {
    margin-bottom: 15px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .ceit-shop-header {
        padding: 40px 0;
    }

    .ceit-shop-header__title {
        font-size: 2rem;
    }
}


/**/
.ast-separate-container .ast-woocommerce-container {
    padding: 16px;
}

.ceit-compare-btn,
.ceit-wishlist-btn {
    max-width: 100%;
    width: 100%;
    margin-bottom: 4px;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: flex-end;
    gap: 4px;
}

.ceit-compare-btn.ceit-btn--icon-only,
.ceit-wishlist-btn.ceit-btn--icon-only {
    align-items: center;
}

.woocommerce-js .woocommerce-breadcrumb {
    text-align: left;
}