/* ===== RESET BASE ===== */
html {
    scroll-behavior: smooth;
}
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #f5f5f5;
    color: #222;
    padding-top: 0 !important;
}

/* ===== TOP BAR ===== */
.temu-topbar {
    background: #dd9494;
    color: #fff;
    text-align: center;
    padding: 6px 0;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
    position: relative;
    z-index: 1001;
}

/* ===== STICKY HEADER ===== */
.temu-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.temu-middle-header {
    background: #fff;
    padding: 8px 0;
}
.temu-header-row {
    display: flex;
    align-items: center;
    gap: 12px;
}
.temu-logo {
    flex: 0 0 auto;
    min-width: 100px;
}
.temu-site-title {
    font-size: 20px;
    font-weight: 800;
    color: #dd9494;
    text-decoration: none;
    letter-spacing: -0.5px;
    white-space: nowrap;
}
.temu-search {
    flex: 1;
}
.temu-search form {
    display: flex;
    border: 2px solid #e8e8e8;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.2s;
    background: #f5f5f5;
}
.temu-search form:focus-within {
    border-color: #dd9494;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(221,148,148,0.1);
}
.temu-search input {
    flex: 1;
    border: none;
    padding: 8px 14px;
    font-size: 13px;
    outline: none;
    background: transparent;
    color: #333;
}
.temu-search input::placeholder {
    color: #bbb;
}
.temu-search button {
    background: transparent;
    color: #999;
    border: none;
    padding: 8px 14px;
    cursor: pointer;
    font-size: 14px;
    transition: color 0.2s;
}
.temu-search button:hover {
    color: #dd9494;
}
.temu-header-icons {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 0 0 auto;
}
.temu-icon {
    color: #444;
    font-size: 18px;
    position: relative;
    text-decoration: none;
    transition: color 0.2s;
    display: flex;
    align-items: center;
}
.temu-icon:hover {
    color: #dd9494;
}
.temu-desktop-only {
    display: inline-flex;
}
.cart-count {
    position: absolute;
    top: -6px;
    right: -8px;
    background: #dd9494;
    color: #fff;
    font-size: 10px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    line-height: 1;
}

/* ===== NAV BAR ===== */
.temu-nav-bar {
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.temu-nav-bar::-webkit-scrollbar {
    display: none;
}
.temu-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 0;
    white-space: nowrap;
}
.temu-nav-menu li a {
    display: block;
    padding: 9px 14px;
    color: #555;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    position: relative;
    transition: color 0.2s;
}
.temu-nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: #dd9494;
    transition: transform 0.2s;
}
.temu-nav-menu li a:hover {
    color: #dd9494;
}
.temu-nav-menu li a:hover::after {
    transform: translateX(-50%) scaleX(1);
}

/* ===== HERO ===== */
.temu-hero {
    background: linear-gradient(135deg, #fdf5f5 0%, #fce8e8 50%, #fdd5d5 100%);
    text-align: center;
    padding: 50px 0 40px;
    position: relative;
    overflow: hidden;
}
.temu-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(221,148,148,0.08) 0%, transparent 70%);
    border-radius: 50%;
}
.temu-hero-content {
    position: relative;
    z-index: 1;
}
.temu-hero h1 {
    font-size: 36px;
    color: #dd9494;
    margin-bottom: 8px;
    letter-spacing: -1px;
    font-weight: 900;
}
.temu-hero p {
    font-size: 15px;
    color: #888;
    margin-bottom: 20px;
}
.temu-btn {
    background: linear-gradient(135deg, #dd9494, #c47a7a);
    color: #fff;
    padding: 12px 36px;
    border-radius: 24px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    display: inline-block;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(221,148,148,0.3);
}
.temu-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(221,148,148,0.4);
    color: #fff;
}
.temu-countdown {
    margin-top: 15px;
    font-size: 20px;
    font-weight: 700;
    color: #dd9494;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}
.temu-countdown span {
    background: #fff;
    padding: 6px 10px;
    border-radius: 6px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    display: inline-block;
    min-width: 36px;
}

/* ===== SECTION TITLES ===== */
.section-title {
    text-align: center;
    font-size: 22px;
    font-weight: 800;
    margin: 28px 0 18px;
    color: #222;
    letter-spacing: -0.3px;
}
.section-title.with-badge {
    color: #dd9494;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* ===== CATEGORIES ===== */
.temu-categories {
    padding: 10px 0 20px;
}
.temu-cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 10px;
}
.temu-cat-card {
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    background: #fff;
    border: 1px solid #f0f0f0;
    text-decoration: none;
    transition: all 0.25s;
}
.temu-cat-card:hover {
    border-color: #dd9494;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(221,148,148,0.15);
}
.temu-cat-card img {
    width: 100%;
    height: 110px;
    object-fit: cover;
    transition: transform 0.3s;
}
.temu-cat-card:hover img {
    transform: scale(1.05);
}
.temu-cat-placeholder {
    width: 100%;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}
.temu-cat-card:hover .temu-cat-placeholder {
    transform: scale(1.05);
}
.temu-cat-letter {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.temu-cat-card span {
    display: block;
    padding: 10px;
    font-weight: 600;
    font-size: 12px;
    color: #333;
}

/* ===== PRODUCT CARDS ===== */
.temu-flash-deals,
.temu-products-grid {
    padding: 5px 0 15px;
}
.products {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(165px, 1fr)) !important;
    gap: 8px !important;
}
.temu-product-card {
    list-style: none;
    padding: 0 !important;
    margin: 0 !important;
    width: auto !important;
    clear: none !important;
}
.temu-product-inner {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    transition: all 0.25s;
}
.temu-product-inner:hover {
    border-color: #e0e0e0;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    transform: translateY(-2px);
}
.temu-product-image {
    position: relative;
    display: block;
    overflow: hidden;
    background: #fafafa;
}
.temu-product-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}
.temu-product-inner:hover .temu-product-image img {
    transform: scale(1.04);
}
.temu-badge {
    position: absolute;
    top: 6px;
    left: 6px;
    background: #dd9494;
    color: #fff;
    padding: 2px 7px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.4;
    z-index: 2;
}
.temu-badge-free {
    position: absolute;
    top: 6px;
    right: 6px;
    background: #4caf50;
    color: #fff;
    padding: 2px 7px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.4;
    z-index: 2;
}
.temu-product-info {
    padding: 10px;
}
.temu-product-title {
    font-size: 12px;
    margin: 0 0 4px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: 2.6em;
}
.temu-product-title a {
    color: #222;
    text-decoration: none;
    transition: color 0.2s;
}
.temu-product-title a:hover {
    color: #dd9494;
}
.temu-rating .star-rating {
    font-size: 10px !important;
    margin: 2px 0;
    width: 5.6em;
}
.temu-price {
    font-size: 15px;
    font-weight: 800;
    color: #dd9494;
    margin: 4px 0;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}
.temu-price .woocommerce-Price-amount {
    color: #dd9494;
}
.temu-price del {
    color: #bbb;
    font-size: 11px;
    font-weight: 400;
}
.temu-price ins {
    text-decoration: none;
}
.temu-free-shipping {
    display: inline-block;
    font-size: 10px;
    color: #fff;
    background: #4caf50;
    padding: 1px 6px;
    border-radius: 3px;
    font-weight: 700;
    margin: 2px 0;
    letter-spacing: 0.2px;
}
.temu-add-to-cart {
    display: block;
    text-align: center;
    background: linear-gradient(135deg, #dd9494, #c47a7a);
    color: #fff;
    padding: 7px 0;
    border-radius: 6px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    margin-top: 6px;
    transition: all 0.25s;
    letter-spacing: 0.3px;
}
.temu-add-to-cart:hover {
    background: linear-gradient(135deg, #c47a7a, #b06a6a);
    transform: scale(1.02);
    color: #fff;
}

/* ===== SINGLE PRODUCT ===== */
.temu-single-product {
    padding: 20px 0;
}
.temu-product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.temu-main-image {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
}
.temu-main-image img {
    width: 100%;
    display: block;
}
.temu-thumbnails {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
}
.temu-thumbnails img {
    width: 65px;
    height: 65px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.6;
    transition: all 0.2s;
    flex-shrink: 0;
}
.temu-thumbnails img:hover,
.temu-thumbnails img.active {
    border-color: #dd9494;
    opacity: 1;
}
.temu-product-detail {
    background: #fff;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
}
.temu-product-detail h1 {
    font-size: 20px;
    margin-bottom: 10px;
    line-height: 1.3;
    font-weight: 800;
}
.temu-product-detail .temu-price {
    font-size: 28px;
    margin: 12px 0;
    gap: 10px;
}
.temu-product-detail .temu-price del {
    font-size: 16px;
    color: #bbb;
}
.temu-product-detail .temu-price ins {
    color: #dd9494;
}
.temu-free-shipping-badge {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 13px;
    display: inline-block;
    margin: 10px 0;
}
.temu-product-detail .cart {
    margin: 16px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.temu-product-detail .quantity {
    margin-right: 4px;
}
.temu-product-detail .quantity input {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 8px 6px;
    width: 60px;
    text-align: center;
    font-size: 14px;
}
.temu-product-detail .single_add_to_cart_button {
    background: linear-gradient(135deg, #dd9494, #c47a7a) !important;
    color: #fff;
    border: none;
    padding: 12px 36px;
    border-radius: 24px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(221,148,148,0.3);
    flex: 1;
}
.temu-product-detail .single_add_to_cart_button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(221,148,148,0.4);
}
.temu-product-description {
    margin: 30px 0;
    background: #fff;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    line-height: 1.7;
}
.temu-related {
    margin: 30px 0;
}
.temu-related h2 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 16px;
}
.temu-related .products {
    grid-template-columns: repeat(4, 1fr) !important;
}

/* ===== NEWSLETTER ===== */
.temu-newsletter {
    background: linear-gradient(135deg, #fdf5f5 0%, #fce8e8 100%);
    text-align: center;
    padding: 40px 0;
    margin-top: 30px;
    border-radius: 0;
}
.temu-newsletter h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #333;
    font-weight: 800;
}
.temu-newsletter-form {
    display: flex;
    max-width: 400px;
    margin: 0 auto;
}
.temu-newsletter-form input {
    flex: 1;
    padding: 10px 18px;
    border: 2px solid #e8e8e8;
    border-right: none;
    border-radius: 24px 0 0 24px;
    outline: none;
    font-size: 13px;
    background: #fff;
    transition: border 0.2s;
}
.temu-newsletter-form input:focus {
    border-color: #dd9494;
}
.temu-newsletter-form button {
    background: linear-gradient(135deg, #dd9494, #c47a7a);
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: 0 24px 24px 0;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
}
.temu-newsletter-form button:hover {
    background: linear-gradient(135deg, #c47a7a, #b06a6a);
}

/* ===== FOOTER ===== */
.temu-footer {
    background: #1a1a1a;
    color: #aaa;
    padding: 40px 0 0;
}
.temu-footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.temu-footer-col h4 {
    color: #fff;
    font-size: 14px;
    margin-bottom: 12px;
    font-weight: 700;
}
.temu-footer-col p {
    font-size: 12px;
    line-height: 1.6;
    color: #999;
}
.temu-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.temu-footer-col ul li a {
    color: #999;
    text-decoration: none;
    font-size: 12px;
    line-height: 2;
    transition: color 0.2s;
}
.temu-footer-col ul li a:hover {
    color: #dd9494;
}
.temu-social {
    display: flex;
    gap: 10px;
}
.temu-social a {
    color: #999;
    font-size: 18px;
    transition: all 0.2s;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}
.temu-social a:hover {
    color: #fff;
    background: #dd9494;
}
.temu-footer-bottom {
    background: #000;
    padding: 16px 0;
    margin-top: 30px;
    text-align: center;
    font-size: 12px;
    color: #777;
}

/* ===== SHOP PAGE ===== */
.temu-shop-page .container {
    max-width: 100%;
    padding: 0 15px;
}
.temu-shop-page .sidebar {
    display: none !important;
}
.temu-shop-page .col-lg-8,
.temu-shop-page .col-md-8 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
}
.temu-shop-title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 16px;
}
.temu-shop-header {
    margin-bottom: 10px;
}
.woocommerce-ordering {
    margin-bottom: 14px;
}
.woocommerce-ordering select {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 13px;
    background: #fff;
}
.woocommerce-result-count {
    font-size: 13px;
    color: #888;
}

/* ===== CART & CHECKOUT ===== */
.woocommerce-cart .container,
.woocommerce-checkout .container {
    max-width: 960px;
}
.woocommerce-cart .cart_totals h2,
.woocommerce-cart .cross-sells h2 {
    font-size: 18px;
    font-weight: 800;
}

/* ===== WOOCOMMERCE OVERRIDES ===== */
.woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(165px, 1fr)) !important;
    gap: 8px !important;
}
.woocommerce ul.products::before,
.woocommerce ul.products::after {
    display: none !important;
}
.woocommerce ul.products li.product {
    width: auto !important;
    float: none !important;
    clear: none !important;
    margin: 0 !important;
    padding: 0 !important;
}
.woocommerce ul.products li.product .onsale {
    display: none !important;
}
.woocommerce ul.products li.product .button {
    display: none !important;
}
.woocommerce ul.products li.product .price {
    display: none !important;
}
.woocommerce ul.products li.product h2 {
    display: none !important;
}
.woocommerce ul.products li.product .star-rating {
    display: none !important;
}
.woocommerce ul.products li.product a img {
    margin: 0;
}

/* ===== HIDE PARENT THEME CLUTTER ===== */
.page-template-custom-home-page .home-page-header {
    box-shadow: none !important;
}
.topbar,
.middle-header .menu-section-sec,
.serach_outer,
.toggle-nav {
    display: none !important;
}
.home-page-header {
    position: static !important;
}

/* ===== TABS ===== */
.woocommerce-tabs {
    background: #fff;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    margin: 24px 0;
}
.woocommerce-tabs ul.tabs {
    margin: 0 0 16px;
    padding: 0;
}
.woocommerce-tabs ul.tabs li {
    border: none !important;
    background: none !important;
    padding: 8px 16px 8px 0;
}
.woocommerce-tabs ul.tabs li.active {
    border-bottom: 2px solid #dd9494 !important;
}
.woocommerce-tabs ul.tabs li a {
    font-weight: 600;
    color: #555;
}
.woocommerce-tabs ul.tabs li.active a {
    color: #dd9494;
}

/* ===== STICKY HEADER SHADOW ===== */
.temu-header.scrolled {
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* ===== MOBILE NAV ===== */
.temu-mobile-nav {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100%;
    background: #fff;
    z-index: 9999;
    transition: left 0.3s ease;
    overflow-y: auto;
    box-shadow: 2px 0 12px rgba(0,0,0,0.1);
}
.temu-mobile-nav.open {
    left: 0;
}
.temu-mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    border-bottom: 1px solid #f0f0f0;
    background: #dd9494;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
}
.temu-mobile-nav-header a {
    color: #fff;
    font-size: 18px;
    text-decoration: none;
}
.temu-mobile-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}
.temu-mobile-nav-menu li {
    border-bottom: 1px solid #f5f5f5;
}
.temu-mobile-nav-menu li a {
    display: block;
    padding: 12px 16px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.2s;
}
.temu-mobile-nav-menu li a:hover {
    background: #fdf5f5;
    color: #dd9494;
}
.temu-mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9998;
}
#mobile-menu-toggle {
    display: none;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.temu-hero-content {
    animation: fadeInUp 0.6s ease-out;
}
.temu-cat-card,
.temu-product-inner {
    animation: fadeInUp 0.4s ease-out;
}
.temu-cat-card:nth-child(2) { animation-delay: 0.05s; }
.temu-cat-card:nth-child(3) { animation-delay: 0.1s; }
.temu-cat-card:nth-child(4) { animation-delay: 0.15s; }
.temu-product-card:nth-child(2) .temu-product-inner { animation-delay: 0.04s; }
.temu-product-card:nth-child(3) .temu-product-inner { animation-delay: 0.08s; }
.temu-product-card:nth-child(4) .temu-product-inner { animation-delay: 0.12s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .temu-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .temu-header-row {
        flex-wrap: wrap;
        gap: 8px;
    }
    .temu-logo {
        min-width: auto;
    }
    .temu-site-title {
        font-size: 17px;
    }
    .temu-search {
        order: 3;
        flex-basis: 100%;
    }
    .temu-header-icons .temu-icon {
        font-size: 16px;
    }
    .temu-header-icons .temu-icon {
        font-size: 16px;
    }
    .temu-header-icons .temu-icon:not(#mobile-menu-toggle):not([title="Cart"]) {
        display: none;
    }
    #mobile-menu-toggle {
        display: flex !important;
    }
    .temu-nav-bar {
        display: none;
    }
    .temu-nav-menu {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .temu-nav-menu li a {
        padding: 8px 12px;
        font-size: 12px;
    }
    .temu-cat-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
    }
    .products {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 6px !important;
    }
    .temu-product-layout {
        grid-template-columns: 1fr;
    }
    .temu-hero {
        padding: 30px 0 24px;
    }
    .temu-hero h1 {
        font-size: 26px;
    }
    .temu-related .products {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .temu-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 480px) {
    .temu-cat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .products {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 4px !important;
    }
    .temu-product-info {
        padding: 6px;
    }
    .temu-product-title {
        font-size: 11px;
    }
    .temu-price {
        font-size: 13px;
    }
    .temu-footer-grid {
        grid-template-columns: 1fr;
    }
    .temu-newsletter-form {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    .temu-newsletter-form input {
        border-radius: 24px;
        border-right: 2px solid #e8e8e8;
        width: 100%;
    }
    .temu-newsletter-form button {
        border-radius: 24px;
        width: 100%;
    }
    .temu-newsletter-klaviyo input[type="email"],
    .temu-newsletter-klaviyo input[type="text"] {
        border-radius: 24px;
        border-right: 2px solid #dd9494;
        width: 100%;
    }
    .temu-newsletter-klaviyo button,
    .temu-newsletter-klaviyo input[type="submit"] {
        border-radius: 24px;
        width: 100%;
        margin-top: 8px;
    }
}

/* ===== KLAVIYO WIDGET (integración en .temu-newsletter) ===== */
.temu-newsletter-klaviyo {
    max-width: 450px;
    margin: 0 auto;
}
.temu-newsletter-klaviyo .widget_klaviyo_emailsignup_widget form {
    display: flex !important;
    flex-wrap: wrap;
    gap: 0;
}
.temu-newsletter-klaviyo .klaviyo_field_group {
    display: flex;
    flex: 1;
    width: 100%;
}
.temu-newsletter-klaviyo input[type="email"],
.temu-newsletter-klaviyo input[type="text"] {
    flex: 1;
    padding: 10px 18px;
    border: 2px solid #dd9494;
    border-right: none;
    border-radius: 24px 0 0 24px;
    outline: none;
    font-size: 13px;
    background: #fff;
    min-width: 0;
}
.temu-newsletter-klaviyo .klaviyo_submit_button {
    background: linear-gradient(135deg, #dd9494, #c47a7a) !important;
    color: #fff !important;
    border: none !important;
    padding: 10px 24px !important;
    border-radius: 0 24px 24px 0 !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    cursor: pointer !important;
    style: none !important;
}
.temu-newsletter-klaviyo .klaviyo_submit_button:hover {
    background: linear-gradient(135deg, #c47a7a, #b06a6a) !important;
}
.temu-newsletter-klaviyo label,
.temu-newsletter-klaviyo .klaviyo-form-title,
.temu-newsletter-klaviyo .kla-success {
    display: none !important;
}
.temu-newsletter-fallback {
    font-size: 14px;
    color: #c47a7a;
    text-align: center;
}
