/* Trazelo Brand Styles v1.0.0 */
/* Brand: Warm Terracotta #6b3a2e / Fonts: Spectral + Plus Jakarta Sans */

:root {
    --trazelo-terracotta: #6b3a2e;
    --trazelo-terracotta-light: #8a5240;
    --trazelo-cream: #faf6f0;
    --trazelo-warm: #f5ede3;
    --trazelo-text: #2a2018;
    --trazelo-gray: #6b5d52;
    --trazelo-border: #e0d6ca;
}

* { box-sizing: border-box; }

body {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    color: #2a2018 !important;
    font-size: 16px !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Spectral', serif !important;
}

/* Hide Astra footer */
footer.site-footer, .site-footer { display: none !important; }

/* Make homepage full-width */
.page-id-126 .site-content, .home .site-content,
.page-id-126 .ast-container, .home .ast-container,
.page-id-126 .entry-content, .home .entry-content,
.page-id-126 article, .home article {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

.home .ast-container, .page-id-126 .ast-container {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
}

/* Header */
.site-header {
    background: #fff !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06) !important;
}

.main-header-menu li a {
    font-size: 16px !important;
    color: #2a2018 !important;
    font-weight: 500 !important;
}

.site-branding p, .site-title {
    font-family: 'Spectral', serif !important;
    font-size: 28px !important;
    font-weight: 700 !important;
    color: #6b3a2e !important;
}

.site-description {
    font-size: 13px !important;
    color: #8a5240 !important;
}

/* Hide mobile fallback menu */
.ast-mobile-header-content .main-header-menu,
.ast-builder-menu-mobile .main-header-menu {
    display: none !important;
}

/* === HERO CAROUSEL === */
.trazelo-hero-carousel {
    position: relative !important;
    width: 100% !important;
    height: 600px !important;
    overflow: hidden !important;
}

.trazelo-carousel-track {
    width: 100%;
    height: 100%;
    position: relative;
}

.trazelo-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 600px !important;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trazelo-slide.active {
    opacity: 1;
}

.trazelo-slide-overlay {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(42,32,24,0.55) 0%, rgba(107,58,46,0.3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.trazelo-slide-content {
    max-width: 700px;
    padding: 40px;
}

.trazelo-slide-eyebrow {
    color: #f5ede3;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.trazelo-slide-content h1 {
    color: #fff;
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.trazelo-slide-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 18px;
    margin-bottom: 28px;
    line-height: 1.6;
}

.trazelo-btn {
    display: inline-block;
    background: #6b3a2e;
    color: #fff !important;
    padding: 14px 36px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none !important;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.trazelo-btn:hover {
    background: #8a5240;
    transform: translateY(-2px);
}

.trazelo-btn-light {
    display: inline-block;
    background: #fff;
    color: #6b3a2e !important;
    padding: 14px 36px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none !important;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.trazelo-btn-light:hover {
    background: #faf6f0;
    transform: translateY(-2px);
}

.trazelo-btn-outline {
    display: inline-block;
    border: 2px solid #6b3a2e;
    color: #6b3a2e !important;
    padding: 12px 32px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none !important;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.trazelo-btn-outline:hover {
    background: #6b3a2e;
    color: #fff !important;
}

.trazelo-carousel-prev, .trazelo-carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    border: none;
    color: #fff;
    font-size: 24px;
    padding: 12px 16px;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s;
    z-index: 10;
}

.trazelo-carousel-prev { left: 20px; }
.trazelo-carousel-next { right: 20px; }

.trazelo-carousel-prev:hover, .trazelo-carousel-next:hover {
    background: rgba(255,255,255,0.4);
}

.trazelo-carousel-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
}

.trazelo-carousel-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: background 0.3s;
}

.trazelo-carousel-dots span.active {
    background: #fff;
}

/* === TRUST BAR === */
.trazelo-trust-bar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 48px;
    padding: 28px 40px !important;
    background: #faf6f0 !important;
    border-bottom: 1px solid #e0d6ca;
}

.trazelo-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
    color: #2a2018;
}

.trazelo-trust-icon {
    color: #6b3a2e;
    font-size: 20px;
    font-weight: bold;
}

/* === SECTIONS === */
.trazelo-section {
    padding: 72px 40px;
}

.trazelo-section-alt {
    background: #faf6f0 !important;
}

.trazelo-section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.trazelo-section-eyebrow {
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #6b3a2e;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.trazelo-section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #2a2018;
    margin-bottom: 48px;
}

/* === CATEGORIES === */
.trazelo-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.trazelo-cat-card {
    background: #fff;
    border: 1px solid #e0d6ca;
    border-radius: 8px;
    padding: 32px 24px;
    text-align: center;
    text-decoration: none !important;
    color: #2a2018 !important;
    transition: all 0.3s ease;
}

.trazelo-cat-card:hover {
    border-color: #6b3a2e;
    box-shadow: 0 4px 16px rgba(107,58,46,0.1);
    transform: translateY(-4px);
}

.trazelo-cat-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.trazelo-cat-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2a2018;
}

.trazelo-cat-card p {
    font-size: 16px;
    color: #6b5d52;
    line-height: 1.5;
}

/* === PRODUCTS GRID === */
.trazelo-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.trazelo-product-card {
    background: #fff;
    border: 1px solid #e0d6ca;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none !important;
    color: #2a2018 !important;
    transition: all 0.3s ease;
}

.trazelo-product-card:hover {
    border-color: #6b3a2e;
    box-shadow: 0 4px 16px rgba(107,58,46,0.12);
    transform: translateY(-4px);
}

.trazelo-product-img {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: #f5ede3;
}

.trazelo-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trazelo-product-name {
    font-size: 16px;
    font-weight: 600;
    padding: 16px 16px 8px;
    color: #2a2018;
}

.trazelo-product-price {
    font-size: 18px;
    font-weight: 700;
    color: #6b3a2e;
    padding: 0 16px 16px;
}

/* === PROMO BANNER === */
.trazelo-promo-banner {
    background: linear-gradient(135deg, #6b3a2e 0%, #8a5240 100%) !important;
    padding: 80px 40px !important;
    text-align: center;
    width: 100% !important;
    box-sizing: border-box !important;
}

.trazelo-promo-content {
    max-width: 600px;
    margin: 0 auto;
}

.trazelo-promo-eyebrow {
    color: #f5ede3;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.trazelo-promo-title {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.trazelo-promo-text {
    color: rgba(255,255,255,0.9);
    font-size: 18px;
    margin-bottom: 28px;
    line-height: 1.6;
}

/* === BRAND STORY === */
.trazelo-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: #faf6f0 !important;
    border-radius: 12px;
    padding: 72px 60px !important;
}

.trazelo-story-title {
    font-size: 36px;
    font-weight: 700;
    color: #2a2018;
    margin-bottom: 20px;
    text-align: left;
}

.trazelo-story-body {
    font-size: 17px;
    color: #6b5d52;
    line-height: 1.8;
    margin-bottom: 16px;
}

.trazelo-story-values {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.trazelo-value-item {
    text-align: left;
}

.trazelo-value-icon {
    font-size: 32px;
    color: #6b3a2e;
}

.trazelo-value-item h4 {
    font-size: 17px;
    font-weight: 600;
    color: #2a2018;
    margin: 8px 0 6px;
}

.trazelo-value-item p {
    font-size: 16px;
    color: #6b5d52;
    line-height: 1.5;
}

/* === TESTIMONIALS === */
.trazelo-testimonials {
    background: #f5ede3 !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 72px 40px !important;
}

.trazelo-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.trazelo-testimonial {
    background: #fff;
    border-radius: 8px;
    padding: 32px;
    text-align: center;
}

.trazelo-stars {
    color: #6b3a2e;
    font-size: 20px;
    margin-bottom: 16px;
}

.trazelo-testimonial p {
    font-size: 16px;
    color: #2a2018;
    line-height: 1.6;
    margin-bottom: 16px;
    font-style: italic;
}

.trazelo-testimonial-author {
    font-weight: 600;
    color: #6b3a2e;
    font-style: normal;
}

/* === NEWSLETTER === */
.trazelo-newsletter {
    background: #2a2018 !important;
    padding: 72px 40px !important;
    text-align: center;
    width: 100% !important;
    box-sizing: border-box !important;
}

.trazelo-newsletter-inner {
    max-width: 600px;
    margin: 0 auto;
}

.trazelo-newsletter-title {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.trazelo-newsletter-text {
    color: rgba(255,255,255,0.8);
    font-size: 18px;
    margin-bottom: 28px;
}

.trazelo-newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
}

.trazelo-newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    outline: none;
}

.trazelo-newsletter-form button {
    background: #6b3a2e;
    color: #fff;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.trazelo-newsletter-form button:hover {
    background: #8a5240;
}

/* === FOOTER === */
.trazelo-footer {
    background: #2a2018 !important;
    color: #d0c4b8 !important;
    padding: 60px 40px 20px !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.trazelo-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
}

.trazelo-footer-logo {
    color: #fff !important;
    font-size: 28px !important;
    font-weight: 700 !important;
    margin-bottom: 8px !important;
    font-family: 'Spectral', serif !important;
}

.trazelo-footer-tagline {
    color: #8a5240 !important;
    font-size: 16px !important;
    margin-bottom: 16px !important;
}

.trazelo-footer-desc {
    font-size: 16px;
    color: #a89a8e;
    line-height: 1.6;
    margin-bottom: 20px;
}

.trazelo-footer-contact p {
    font-size: 15px;
    color: #a89a8e;
    margin: 4px 0;
}

.trazelo-footer-policies {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 16px;
}

.trazelo-footer-policies a {
    color: #a89a8e !important;
    font-size: 15px;
    text-decoration: none !important;
    transition: color 0.3s;
}

.trazelo-footer-policies a:hover {
    color: #fff !important;
}

.trazelo-footer-col h4 {
    color: #fff !important;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 20px !important;
}

.trazelo-footer-col a {
    display: block;
    color: #a89a8e !important;
    font-size: 16px;
    text-decoration: none !important;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.trazelo-footer-col a:hover {
    color: #fff !important;
}

.trazelo-footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.trazelo-footer-bottom p {
    font-size: 15px;
    color: #8a7a6e;
}

/* === PRODUCT INFO PANEL === */
.trazelo-product-info-panel {
    margin: 20px 0;
    padding: 20px;
    background: #faf6f0;
    border-radius: 8px;
    border: 1px solid #e0d6ca;
}

.trazelo-info-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #e0d6ca;
    font-size: 16px;
}

.trazelo-info-row:last-child {
    border-bottom: none;
}

.trazelo-info-label {
    font-weight: 600;
    color: #6b3a2e;
}

.trazelo-info-value {
    color: #2a2018;
}

/* === WOOCOMMERCE === */
.woocommerce ul.products li.product .price {
    color: #6b3a2e !important;
    font-size: 18px !important;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 16px !important;
    font-weight: 600 !important;
}

.woocommerce ul.products li.product .button {
    background: #6b3a2e !important;
    color: #fff !important;
    font-size: 16px !important;
}

.single-product .product_title {
    font-family: 'Spectral', serif !important;
    font-size: 28px !important;
}

.single-product .price {
    color: #6b3a2e !important;
    font-size: 24px !important;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .trazelo-hero-carousel { height: 400px !important; }
    .trazelo-slide { height: 400px !important; }
    .trazelo-slide-content h1 { font-size: 28px; }
    .trazelo-slide-subtitle { font-size: 16px; }
    .trazelo-categories { grid-template-columns: 1fr; }
    .trazelo-products-grid { grid-template-columns: repeat(2, 1fr); }
    .trazelo-story { grid-template-columns: 1fr; gap: 32px; padding: 40px 24px; }
    .trazelo-testimonials-grid { grid-template-columns: 1fr; }
    .trazelo-footer-inner { grid-template-columns: 1fr; gap: 32px; }
    .trazelo-newsletter-form { flex-direction: column; }
    .trazelo-section { padding: 48px 20px; }
    .trazelo-section-title { font-size: 28px; }
    .trazelo-promo-title { font-size: 28px; }
}
