/* ============================================================
   PURE LUXURY — Homepage Styles
   Hero, brands, categories, sections, trust badges, newsletter
   ============================================================ */

/* ============================================================
   HERO BANNER
   ============================================================ */
.pl-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.pl-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(0, 0, 0, 0.65) 0%,
            rgba(0, 0, 0, 0.35) 35%,
            rgba(0, 0, 0, 0.30) 50%,
            rgba(0, 0, 0, 0.35) 65%,
            rgba(0, 0, 0, 0.65) 100%);
    z-index: 1;
}

.pl-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, var(--pl-black), transparent);
    z-index: 1;
}

.pl-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
    max-width: 900px;
}

.pl-hero__title {
    font-family: var(--pl-font-heading) !important;
    font-size: 5rem;
    font-weight: 700;
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-bottom: 15px;
    line-height: 1.1;
    color: #c9a84c;
    text-shadow:
        0 0 40px rgba(201, 168, 76, 0.5),
        0 0 80px rgba(201, 168, 76, 0.25),
        0 2px 10px rgba(0, 0, 0, 0.7);
}

.pl-hero__title.gold-shimmer {
    background: linear-gradient(90deg, #c9a84c, #f5e6a3, #c9a84c, #a8843a, #c9a84c);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
    filter: drop-shadow(0 0 25px rgba(201, 168, 76, 0.5)) drop-shadow(0 0 60px rgba(201, 168, 76, 0.25));
    animation: shimmerSlide 4s linear infinite, glowPulse 3s ease-in-out infinite;
}

@keyframes shimmerSlide {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes glowPulse {
    0%, 100% {
        filter: drop-shadow(0 0 25px rgba(201, 168, 76, 0.4)) drop-shadow(0 0 60px rgba(201, 168, 76, 0.15));
    }
    50% {
        filter: drop-shadow(0 0 40px rgba(201, 168, 76, 0.7)) drop-shadow(0 0 80px rgba(201, 168, 76, 0.35)) drop-shadow(0 0 120px rgba(201, 168, 76, 0.15));
    }
}



.pl-hero__subtitle {
    font-family: var(--pl-font-body) !important;
    color: var(--pl-white);
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 45px;
    opacity: 1;
    text-shadow:
        0 0 20px rgba(0, 0, 0, 0.8),
        0 1px 6px rgba(0, 0, 0, 0.9);
}

.pl-hero__cta {
    display: inline-block;
    background: var(--pl-gold) !important;
    color: var(--pl-black) !important;
    border: 2px solid var(--pl-gold) !important;
    padding: 18px 55px !important;
    font-family: var(--pl-font-body) !important;
    font-size: 13px !important;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-decoration: none !important;
    transition: var(--pl-transition);
    position: relative;
    overflow: hidden;
}

.pl-hero__cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.6s ease;
}

.pl-hero__cta:hover::before {
    left: 100%;
}

.pl-hero__cta:hover {
    background: var(--pl-gold-light) !important;
    border-color: var(--pl-gold-light) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.35);
}

/* Scroll indicator */
.pl-hero__scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: float 2s ease-in-out infinite;
}

.pl-hero__scroll-text {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--pl-gray) !important;
}

.pl-hero__scroll-line {
    width: 1px;
    height: 30px;
    background: linear-gradient(to bottom, var(--pl-gold), transparent);
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.pl-section {
    padding: var(--pl-section-padding);
    max-width: 100%;
}

.pl-section--dark {
    background-color: var(--pl-black);
}

.pl-section--charcoal {
    background-color: var(--pl-charcoal);
}

.pl-section__header {
    text-align: center;
    margin-bottom: 60px;
}

.pl-section__title {
    font-family: var(--pl-font-heading) !important;
    color: var(--pl-white) !important;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 0;
    position: relative;
    display: inline-block;
}

.pl-section__title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--pl-gold), transparent);
    margin: 18px auto 0;
}

.pl-section__subtitle {
    font-family: var(--pl-font-body);
    color: var(--pl-gray);
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 20px;
}

/* ============================================================
   BRAND GRID
   ============================================================ */
.pl-brands {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 35px;
    padding: 0 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.pl-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
    cursor: pointer;
    transition: var(--pl-transition);
    text-decoration: none !important;
}

.pl-brand:hover {
    transform: translateY(-6px);
}

.pl-brand__img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid rgba(201, 168, 76, 0.2);
    padding: 3px;
    transition: var(--pl-transition);
    background-color: var(--pl-charcoal);
    object-fit: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.pl-brand__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.pl-brand:hover .pl-brand__img {
    border-color: var(--pl-gold);
    box-shadow: 0 0 30px rgba(201, 168, 76, 0.2);
}

.pl-brand__name {
    font-family: var(--pl-font-body);
    color: var(--pl-gray-light) !important;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2.5px;
}

.pl-brand:hover .pl-brand__name {
    color: var(--pl-gold) !important;
}

/* ============================================================
   CATEGORY CARDS
   ============================================================ */
.pl-categories {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    padding: 0 20px;
    max-width: var(--pl-container);
    margin: 0 auto;
}

.pl-category {
    position: relative;
    overflow: hidden;
    border-radius: var(--pl-border-radius);
    aspect-ratio: 3 / 4;
    cursor: pointer;
    text-decoration: none !important;
}

.pl-category img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.pl-category:hover img {
    transform: scale(1.12);
}

.pl-category::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(0, 0, 0, 0.15) 50%,
            rgba(0, 0, 0, 0.05) 100%);
    transition: var(--pl-transition);
}

.pl-category:hover::after {
    background: linear-gradient(to top,
            rgba(201, 168, 76, 0.35) 0%,
            rgba(0, 0, 0, 0.1) 50%,
            rgba(0, 0, 0, 0.05) 100%);
}

.pl-category__title {
    position: absolute;
    bottom: 25px;
    left: 25px;
    z-index: 2;
    font-family: var(--pl-font-heading);
    color: var(--pl-white) !important;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: var(--pl-transition);
}

.pl-category:hover .pl-category__title {
    bottom: 30px;
    color: var(--pl-gold) !important;
}

.pl-category__count {
    position: absolute;
    bottom: 25px;
    right: 25px;
    z-index: 2;
    font-family: var(--pl-font-body);
    color: var(--pl-gray);
    font-size: 11px;
    letter-spacing: 1px;
    opacity: 0;
    transition: var(--pl-transition);
}

.pl-category:hover .pl-category__count {
    opacity: 1;
}

/* ============================================================
   PRODUCTS SECTION (WooCommerce shortcode override)
   ============================================================ */
.pl-products-section .products .product,
.pl-products-section ul.products li.product {
    background-color: var(--pl-card) !important;
    border: 1px solid rgba(201, 168, 76, 0.06);
    border-radius: var(--pl-border-radius);
    padding: 0 !important;
    margin-bottom: 0;
    overflow: hidden;
    transition: var(--pl-transition);
    position: relative;
}

.pl-products-section .products .product:hover {
    border-color: rgba(201, 168, 76, 0.2);
    box-shadow: var(--pl-shadow-gold);
    transform: translateY(-5px);
}

.pl-products-section .products .product img {
    transition: transform 0.5s ease;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    width: 100%;
}

.pl-products-section .products .product:hover img {
    transform: scale(1.06);
}

/* ============================================================
   TRUST BADGES
   ============================================================ */
.pl-trust {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 60px;
    padding: 70px 20px;
    background-color: var(--pl-charcoal);
    border-top: var(--pl-border-gold);
    border-bottom: var(--pl-border-gold);
    flex-wrap: wrap;
    max-width: 100%;
}

.pl-trust__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
    max-width: 200px;
    transition: var(--pl-transition);
}

.pl-trust__item:hover {
    transform: translateY(-4px);
}

.pl-trust__icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 50%;
    transition: var(--pl-transition);
}

.pl-trust__item:hover .pl-trust__icon {
    border-color: var(--pl-gold);
    box-shadow: 0 0 20px rgba(201, 168, 76, 0.15);
}

.pl-trust__icon svg {
    stroke: var(--pl-gold);
}

.pl-trust__title {
    color: var(--pl-white) !important;
    font-family: var(--pl-font-body);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.pl-trust__text {
    color: var(--pl-gray);
    font-family: var(--pl-font-body);
    font-size: 12px;
    line-height: 1.7;
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.pl-newsletter {
    text-align: center;
    padding: var(--pl-section-padding);
    background-color: var(--pl-black);
}

.pl-newsletter__form {
    max-width: 520px;
    margin: 0 auto;
    display: flex;
    gap: 0;
    border: 1px solid var(--pl-gray-dark);
    border-radius: var(--pl-border-radius);
    overflow: hidden;
    transition: var(--pl-transition);
}

.pl-newsletter__form:focus-within {
    border-color: var(--pl-gold);
    box-shadow: var(--pl-shadow-gold);
}

.pl-newsletter__input {
    flex: 1;
    background: var(--pl-charcoal) !important;
    border: none !important;
    color: var(--pl-white) !important;
    padding: 16px 20px !important;
    font-family: var(--pl-font-body) !important;
    font-size: 13px;
    letter-spacing: 0.5px;
    outline: none;
}

.pl-newsletter__input::placeholder {
    color: var(--pl-gray) !important;
}

.pl-newsletter__btn {
    background: var(--pl-gold) !important;
    color: var(--pl-black) !important;
    border: none !important;
    padding: 16px 35px !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 11px;
    cursor: pointer;
    font-family: var(--pl-font-body) !important;
    transition: var(--pl-transition);
    white-space: nowrap;
}

.pl-newsletter__btn:hover {
    background: var(--pl-gold-light) !important;
    transform: none !important;
}

/* ============================================================
   RESPONSIVE — Homepage
   ============================================================ */
@media (max-width: 1024px) {
    .pl-hero__title {
        font-size: 3.5rem;
    }

    .pl-brands {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }

    .pl-categories {
        grid-template-columns: repeat(3, 1fr);
    }

    .pl-trust {
        gap: 35px;
    }
}

@media (max-width: 768px) {
    .pl-hero {
        min-height: 75vh;
    }

    .pl-hero__title {
        font-size: 2.4rem;
        letter-spacing: 4px;
    }

    .pl-hero__subtitle {
        font-size: 0.85rem;
        letter-spacing: 3px;
    }

    .pl-hero__cta {
        padding: 14px 35px !important;
        font-size: 11px !important;
        letter-spacing: 3px;
    }

    .pl-hero__scroll {
        display: none;
    }

    .pl-brands {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .pl-brand__img {
        width: 75px;
        height: 75px;
    }

    .pl-brand__name {
        font-size: 9px;
    }

    .pl-categories {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .pl-category {
        aspect-ratio: 1 / 1;
    }

    .pl-category__title {
        font-size: 1rem;
        letter-spacing: 2px;
        bottom: 15px;
        left: 15px;
    }

    .pl-trust {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        padding: 50px 20px;
    }

    .pl-section__title {
        font-size: 1.5rem;
        letter-spacing: 3px;
    }

    .pl-newsletter__form {
        flex-direction: column;
        border: none;
    }

    .pl-newsletter__input {
        border: 1px solid var(--pl-gray-dark) !important;
        border-radius: var(--pl-border-radius);
        margin-bottom: 10px;
    }

    .pl-newsletter__btn {
        border-radius: var(--pl-border-radius);
        padding: 14px 30px !important;
    }
}

@media (max-width: 480px) {
    .pl-hero__title {
        font-size: 1.8rem;
        letter-spacing: 3px;
    }

    .pl-brands {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .pl-brand__img {
        width: 65px;
        height: 65px;
    }

    .pl-categories {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .pl-category {
        aspect-ratio: 16 / 9;
    }
}