/*
Theme Name: WoodMart Sneakers Child
Theme URI: https://yourstore.com
Description: Child theme for WoodMart - Sneakers Store Homepage
Author: Your Store
Author URI: https://yourstore.com
Template: woodmart
Version: 1.0.0
Text Domain: woodmart-child
*/

/* ===========================
   SNEAKERS HOMEPAGE STYLES
   =========================== */

/* Hero Slider */
.sneaker-hero {
    position: relative;
    width: 100%;
    min-height: 480px;
    background: #111111;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.sneaker-hero__slide {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 30px;
}

.sneaker-hero__content {
    max-width: 480px;
    color: #fff;
    z-index: 2;
}

.sneaker-hero__label {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #e8e8e8;
    margin-bottom: 10px;
}

.sneaker-hero__brand {
    font-size: 72px;
    font-weight: 900;
    line-height: 1;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.sneaker-hero__subtitle {
    font-size: 16px;
    color: #aaaaaa;
    margin-bottom: 30px;
}

.sneaker-hero__btn {
    display: inline-block;
    padding: 14px 36px;
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.sneaker-hero__btn:hover {
    background: #fff;
    color: #111;
    text-decoration: none;
}

.sneaker-hero__btn--primary {
    background: #e74c3c;
    border-color: #e74c3c;
    color: #fff;
}

.sneaker-hero__btn--primary:hover {
    background: #c0392b;
    border-color: #c0392b;
    color: #fff;
}

.sneaker-hero__image {
    position: relative;
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.sneaker-hero__image img {
    max-height: 360px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
}

/* Dots slider nav */
.sneaker-hero__dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.sneaker-hero__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: background 0.3s;
}

.sneaker-hero__dot.active {
    background: #fff;
}

/* ===========================
   FEATURES BAR
   =========================== */
.sneaker-features {
    background: #f8f8f8;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    padding: 20px 0;
}

.sneaker-features__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.sneaker-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sneaker-feature-item__icon {
    font-size: 28px;
    color: #e74c3c;
}

.sneaker-feature-item__text h4 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 2px;
    color: #222;
}

.sneaker-feature-item__text p {
    font-size: 12px;
    color: #888;
    margin: 0;
}

/* ===========================
   PROMO BANNERS 3x
   =========================== */
.sneaker-banners {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.sneaker-banner {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    min-height: 220px;
    display: flex;
    align-items: flex-end;
    cursor: pointer;
    transition: transform 0.3s;
}

.sneaker-banner:hover {
    transform: translateY(-4px);
}

.sneaker-banner__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s;
}

.sneaker-banner:hover .sneaker-banner__bg {
    transform: scale(1.05);
}

.sneaker-banner--dark .sneaker-banner__bg { background-color: #1a1a2e; }
.sneaker-banner--blue .sneaker-banner__bg { background-color: #16213e; }
.sneaker-banner--red .sneaker-banner__bg { background-color: #0f3460; }

.sneaker-banner__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
}

.sneaker-banner__content {
    position: relative;
    z-index: 2;
    padding: 20px;
    color: #fff;
    width: 100%;
}

.sneaker-banner__tag {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #e74c3c;
    margin-bottom: 6px;
}

.sneaker-banner__title {
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 8px;
}

.sneaker-banner__desc {
    font-size: 12px;
    color: #ccc;
    margin-bottom: 12px;
}

.sneaker-banner__link {
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.5);
    padding-bottom: 2px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.sneaker-banner__link:hover {
    color: #e74c3c;
    border-color: #e74c3c;
    text-decoration: none;
}

/* ===========================
   TICKER / PROMO BAR
   =========================== */
.sneaker-ticker {
    background: #222;
    color: #fff;
    padding: 10px 0;
    text-align: center;
    font-size: 13px;
    overflow: hidden;
}

.sneaker-ticker span {
    color: #e74c3c;
    font-weight: 700;
}

/* ===========================
   PRODUCTS TABS SECTION
   =========================== */
.sneaker-products-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 30px;
}

.sneaker-products-section__header {
    text-align: center;
    margin-bottom: 30px;
}

.sneaker-tabs {
    display: flex;
    justify-content: center;
    gap: 30px;
    border-bottom: 2px solid #eee;
    margin-bottom: 30px;
}

.sneaker-tab {
    padding: 10px 0;
    font-size: 15px;
    font-weight: 600;
    color: #888;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sneaker-tab.active,
.sneaker-tab:hover {
    color: #222;
    border-bottom-color: #e74c3c;
}

.sneaker-products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

/* Product Card */
.sneaker-product-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s;
    position: relative;
}

.sneaker-product-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    transform: translateY(-3px);
}

.sneaker-product-card__badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #e74c3c;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.sneaker-product-card__badge--sale {
    background: #27ae60;
}

.sneaker-product-card__badge--new {
    background: #2980b9;
}

.sneaker-product-card__image {
    background: #f5f5f5;
    padding: 20px;
    text-align: center;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.sneaker-product-card__image img {
    max-height: 140px;
    object-fit: contain;
    transition: transform 0.3s;
}

.sneaker-product-card:hover .sneaker-product-card__image img {
    transform: scale(1.08);
}

.sneaker-product-card__info {
    padding: 15px;
}

.sneaker-product-card__brand {
    font-size: 10px;
    font-weight: 700;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.sneaker-product-card__name {
    font-size: 13px;
    font-weight: 600;
    color: #222;
    margin-bottom: 8px;
    line-height: 1.3;
}

.sneaker-product-card__price {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sneaker-product-card__price-current {
    font-size: 15px;
    font-weight: 700;
    color: #e74c3c;
}

.sneaker-product-card__price-old {
    font-size: 12px;
    color: #bbb;
    text-decoration: line-through;
}

.sneaker-product-card__actions {
    padding: 0 15px 15px;
}

.sneaker-product-card__btn {
    width: 100%;
    padding: 10px;
    background: #222;
    color: #fff;
    border: none;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.3s;
}

.sneaker-product-card__btn:hover {
    background: #e74c3c;
}

/* ===========================
   FULL WIDTH BANNER
   =========================== */
.sneaker-fullbanner {
    background: #1a1a2e;
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}

.sneaker-fullbanner__content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.sneaker-fullbanner__tag {
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #aaa;
    margin-bottom: 10px;
}

.sneaker-fullbanner__title {
    font-size: 52px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 10px;
}

.sneaker-fullbanner__title span {
    color: #e74c3c;
}

.sneaker-fullbanner__subtitle {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 25px;
    max-width: 500px;
}

.sneaker-fullbanner__btn {
    display: inline-block;
    padding: 14px 40px;
    border: 2px solid #fff;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    transition: all 0.3s;
}

.sneaker-fullbanner__btn:hover {
    background: #fff;
    color: #1a1a2e;
    text-decoration: none;
}

/* ===========================
   NEWSLETTER
   =========================== */
.sneaker-newsletter {
    background: #e74c3c;
    padding: 60px 30px;
    text-align: center;
    color: #fff;
}

.sneaker-newsletter h2 {
    font-size: 32px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #fff;
}

.sneaker-newsletter p {
    font-size: 15px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 30px;
}

.sneaker-newsletter__form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 0;
}

.sneaker-newsletter__input {
    flex: 1;
    padding: 16px 20px;
    border: none;
    font-size: 14px;
    outline: none;
}

.sneaker-newsletter__submit {
    padding: 16px 30px;
    background: #222;
    color: #fff;
    border: none;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.3s;
}

.sneaker-newsletter__submit:hover {
    background: #111;
}

/* ===========================
   SECTION TITLES
   =========================== */
.sneaker-section-title {
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
    color: #222;
    text-align: center;
    margin-bottom: 8px;
    letter-spacing: 2px;
}

.sneaker-section-subtitle {
    font-size: 14px;
    color: #888;
    text-align: center;
    margin-bottom: 30px;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
    .sneaker-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .sneaker-banners {
        grid-template-columns: repeat(2, 1fr);
    }
    .sneaker-hero__brand {
        font-size: 52px;
    }
}

@media (max-width: 768px) {
    .sneaker-hero__slide {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }
    .sneaker-hero__image {
        justify-content: center;
        margin-top: 20px;
    }
    .sneaker-hero__brand {
        font-size: 38px;
    }
    .sneaker-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .sneaker-banners {
        grid-template-columns: 1fr;
    }
    .sneaker-features__inner {
        flex-direction: column;
        gap: 15px;
    }
    .sneaker-fullbanner__title {
        font-size: 32px;
    }
    .sneaker-tabs {
        gap: 15px;
        overflow-x: auto;
    }
    .sneaker-newsletter__form {
        flex-direction: column;
    }
}
