/* Premium Shop Landing Layout */
.tec-premium-archive {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    font-family: 'Inter', sans-serif;
    color: #2B2118;
}

/* Typography Overrides */
.tec-premium-archive h1,
.tec-premium-archive h2 {
    font-family: 'Playfair Display', serif;
    color: #33472A;
}

/* Hero Section */
.tec-hero {
    text-align: center;
    margin-bottom: 3rem;
}
.tec-hero-subtitle {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #d64045;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
}
.tec-hero-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}
.tec-hero-desc {
    font-size: 1.1rem;
    color: #2B2118;
    opacity: 0.8;
}

/* Category Cards */
.tec-cat-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}
@media (max-width: 768px) {
    .tec-cat-cards {
        grid-template-columns: 1fr;
    }
}
.tec-cat-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.tec-cat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.tec-cat-card-img {
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.tec-cat-card-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #FBF7EC;
    color: #2B2118;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}
.tec-cat-card-content {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.tec-cat-card-content h2 {
    margin: 0 0 0.5rem;
    font-size: 1.6rem;
}
.tec-cat-card-content p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}
.tec-cat-card-btn {
    border: 1px solid #33472A;
    color: #33472A;
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    transition: all 0.3s;
}
.tec-cat-card-btn:hover {
    background: #33472A;
    color: #fff;
}
.tec-cat-card-btn-red {
    border-color: #d64045;
    color: #d64045;
}
.tec-cat-card-btn-red:hover {
    background: #d64045;
    color: #fff;
}
.arrow {
    margin-left: 0.5rem;
}

/* Divider */
.tec-divider-text {
    text-align: center;
    position: relative;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    color: #2B2118;
    margin: 4rem 0;
}
.tec-divider-text::before,
.tec-divider-text::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 35%;
    height: 1px;
    background: #E3D6BC;
}
.tec-divider-text::before {
    left: 0;
}
.tec-divider-text::after {
    right: 0;
}

/* Category Blocks */
.tec-category-block {
    border-radius: 16px;
    padding: 3rem 2rem;
    margin-bottom: 4rem;
}
.tec-block-green {
    background: #738466; /* Un verde suave basado en la paleta */
    color: #FBF7EC;
}
.tec-block-red {
    background: #C46D5E; /* Un terracota/rojo suave */
    color: #FBF7EC;
}
.tec-block-header {
    margin-bottom: 2rem;
}
.tec-block-header small {
    display: block;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}
.tec-block-header h2 {
    font-size: 2.5rem;
    margin: 0 0 0.5rem;
    color: #FBF7EC !important;
}
.tec-block-header p {
    font-style: italic;
    opacity: 0.9;
}

/* Filter Chips */
.tec-block-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 2rem;
}
.tec-filter-chip {
    background: #FBF7EC;
    color: #2B2118;
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s;
}
.tec-filter-chip:hover {
    background: #E3D6BC;
}
.tec-filter-chip.active {
    background: #33472A;
    color: #fff;
}
.tec-block-red .tec-filter-chip.active {
    background: #8e473b;
}

/* Mini Product Grid */
.tec-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
@media (max-width: 1024px) {
    .tec-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .tec-product-grid {
        grid-template-columns: 1fr;
    }
}

/* Sobreescribir WooCommerce interno de la grilla para adaptarlo al bloque oscuro */
.tec-product-grid .product {
    background: #fff;
    border-radius: 8px;
    padding: 1rem;
    text-align: left;
    color: #2B2118;
}
.tec-product-grid .woocommerce-loop-product__title {
    font-size: 1.1rem;
    color: #33472A !important;
}
.tec-product-grid .price {
    color: #2B2118 !important;
}
