/* ==========================================================================
   PUNJABI MANIA STYLE & FASHION HUB - MODERN STYLES
   ========================================================================== */

:root {
    --pm-style-primary: #ed1e24;
    --pm-style-amazon: #FF9900;
    --pm-style-amazon-hover: #e88b00;
    --pm-style-prime: #00A8E1;
    --pm-style-bg-dark: #090d16;
    --pm-style-surface-dark: rgba(255, 255, 255, 0.03);
    --pm-style-border-dark: rgba(255, 255, 255, 0.08);
}

/* --- STYLE HUB HERO BANNER --- */
.pm-style-hero {
    position: relative;
    padding: 50px 0 35px 0;
    background: radial-gradient(circle at 50% 0%, rgba(237, 30, 36, 0.08) 0%, transparent 70%);
    text-align: center;
}

.pm-style-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(237, 30, 36, 0.1);
    color: var(--pm-primary, #ed1e24);
    border: 1px solid rgba(237, 30, 36, 0.2);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 16px;
}

.pm-style-title {
    font-family: 'Playfair Display', 'Roboto Slab', Georgia, serif;
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 900;
    line-height: 1.15;
    margin: 0 0 14px 0;
    letter-spacing: -0.5px;
    color: var(--pm-text, #0f172a);
}

.pm-style-subtitle {
    font-size: 1.05rem;
    color: var(--pm-text-muted, #64748b);
    max-width: 650px;
    margin: 0 auto 30px auto;
    line-height: 1.6;
}

/* --- ARTIST FILTER AVATAR SLIDER --- */
.pm-style-artist-slider {
    display: flex;
    align-items: center;
    gap: 14px;
    overflow-x: auto;
    padding: 10px 4px 20px 4px;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
}

.pm-style-artist-slider::-webkit-scrollbar {
    height: 4px;
}

.pm-style-artist-slider::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

.pm-artist-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 16px 6px 6px;
    border-radius: 30px;
    background: var(--pm-surface, #ffffff);
    border: 1px solid var(--pm-border, rgba(0, 0, 0, 0.08));
    color: var(--pm-text, #1e293b);
    text-decoration: none !important;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.25s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.pm-artist-pill img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.pm-artist-pill:hover,
.pm-artist-pill.active {
    background: var(--pm-primary, #ed1e24);
    border-color: var(--pm-primary, #ed1e24);
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(237, 30, 36, 0.25);
}

/* --- FILTER CATEGORY PILLS --- */
.pm-style-filter-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 12px;
    margin-bottom: 30px;
    scrollbar-width: none;
}

.pm-style-filter-bar::-webkit-scrollbar {
    display: none;
}

.pm-style-cat-pill {
    padding: 8px 18px;
    border-radius: 20px;
    background: var(--pm-surface, #ffffff);
    border: 1px solid var(--pm-border, rgba(0,0,0,0.08));
    color: var(--pm-text-muted, #64748b);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none !important;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.pm-style-cat-pill:hover,
.pm-style-cat-pill.active {
    background: #0f172a;
    color: #ffffff !important;
    border-color: #0f172a;
}

/* --- STYLE LOOKS GRID --- */
.pm-style-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
    margin-bottom: 50px;
    width: 100%;
    clear: both;
}

.pm-style-card {
    background: var(--pm-surface, #ffffff);
    border-radius: 16px;
    border: 1px solid var(--pm-border, rgba(0,0,0,0.08));
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    text-decoration: none !important;
    color: inherit;
    position: relative;
}

.pm-style-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 30px -10px rgba(0,0,0,0.12);
}

.pm-style-card-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #1e293b;
}

.pm-style-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.pm-style-card:hover .pm-style-card-thumb img {
    transform: scale(1.05);
}

.pm-style-card-occasion {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.15);
}

.pm-style-card-badge-items {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: #ed1e24;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 4px 12px rgba(237, 30, 36, 0.4);
}

.pm-style-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.pm-style-card-artist {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--pm-primary, #ed1e24);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.pm-style-card-title {
    font-family: 'Playfair Display', 'Roboto Slab', Georgia, serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--pm-text, #1e293b);
    line-height: 1.4;
    margin: 0 0 8px 0;
}

.pm-style-card-subtitle {
    font-size: 0.85rem;
    color: var(--pm-text-muted, #64748b);
    line-height: 1.5;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ==========================================================================
   LOOK DETAIL PAGE & "SHOP THE LOOK" STACKED CARDS
   ========================================================================== */

.pm-look-page-wrapper {
    padding: 30px 0 70px 0;
    width: 100%;
}

.pm-look-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--pm-text-muted, #64748b);
    margin-bottom: 16px;
}

.pm-look-breadcrumbs a {
    color: inherit;
    text-decoration: none;
}

.pm-look-header {
    margin-bottom: 35px;
}

.pm-look-title-h1 {
    font-family: 'Playfair Display', 'Roboto Slab', Georgia, serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 900;
    line-height: 1.25;
    margin: 0 0 12px 0;
    color: var(--pm-text, #0f172a);
}

.pm-look-subheading {
    font-size: 1.05rem;
    color: var(--pm-text-muted, #64748b);
    margin: 0 0 16px 0;
    line-height: 1.55;
    max-width: 800px;
}

.pm-look-meta-row {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: var(--pm-text-muted, #64748b);
}

.pm-look-artist-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--pm-text, #1e293b);
    text-decoration: none !important;
    font-weight: 700;
}

.pm-look-artist-chip img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
}

.pm-look-pill-occasion {
    background: rgba(237, 30, 36, 0.1);
    color: var(--pm-primary, #ed1e24);
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.78rem;
    text-transform: uppercase;
}

/* 2-Column Look Container (Normal Flow, No Sticky Overlaps) */
.pm-look-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 50px;
    width: 100%;
}

@media (max-width: 960px) {
    .pm-look-layout {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}

.pm-look-visual-col {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.pm-look-hero-frame {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--pm-border, rgba(0,0,0,0.08));
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.1);
    background: #0f172a;
}

.pm-look-hero-frame img {
    width: 100%;
    height: auto;
    display: block;
}

.pm-look-story-card {
    background: var(--pm-surface, #ffffff);
    border: 1px solid var(--pm-border, rgba(0,0,0,0.08));
    border-radius: 16px;
    padding: 26px;
    line-height: 1.8;
    font-size: 1rem;
    color: var(--pm-text, #334155);
}

.pm-look-story-title {
    font-family: 'Playfair Display', 'Roboto Slab', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 800;
    margin: 0 0 14px 0;
    color: var(--pm-text, #0f172a);
}

.pm-look-story-text {
    line-height: 1.75;
}

/* --- "SHOP THE LOOK" STACKED PRODUCTS SECTION --- */
.pm-shop-the-look-wrapper {
    background: var(--pm-surface, #ffffff);
    border: 1px solid var(--pm-border, rgba(0,0,0,0.08));
    border-radius: 20px;
    padding: 26px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.pm-stl-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--pm-border, rgba(0,0,0,0.08));
}

.pm-stl-heading {
    font-family: 'Playfair Display', 'Roboto Slab', Georgia, serif;
    font-size: 1.35rem;
    font-weight: 800;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--pm-text, #0f172a);
}

.pm-stl-count-badge {
    font-size: 0.8rem;
    font-weight: 700;
    color: #64748b;
    background: rgba(0,0,0,0.05);
    padding: 4px 10px;
    border-radius: 12px;
}

.pm-stl-items-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Stacked Product Card */
.pm-stl-item-card {
    display: grid;
    grid-template-columns: 105px 1fr;
    gap: 16px;
    background: var(--pm-bg, #f8fafc);
    border: 1px solid var(--pm-border, rgba(0,0,0,0.06));
    border-radius: 14px;
    padding: 14px;
    transition: all 0.25s ease;
    align-items: center;
}

.pm-stl-item-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.06);
    border-color: rgba(237, 30, 36, 0.25);
}

.pm-stl-item-thumb {
    width: 105px;
    height: 105px;
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--pm-border, rgba(0,0,0,0.06));
    padding: 6px;
    box-sizing: border-box;
}

.pm-stl-item-thumb img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.pm-stl-item-card:hover .pm-stl-item-thumb img {
    transform: scale(1.06);
}

.pm-stl-item-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.pm-stl-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    width: fit-content;
}

.pm-stl-badge.exact_match { background: #fef3c7; color: #92400e; border: 1px solid #fde68a; }
.pm-stl-badge.similar_style { background: #e0f2fe; color: #0369a1; border: 1px solid #bae6fd; }
.pm-stl-badge.budget_pick { background: #dcfce7; color: #15803d; border: 1px solid #bbf7d0; }
.pm-stl-badge.accessory { background: #f3e8ff; color: #7e22ce; border: 1px solid #e9d5ff; }

.pm-stl-item-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--pm-text, #1e293b);
    line-height: 1.35;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pm-stl-price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin: 2px 0;
}

.pm-stl-price-current {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--pm-text, #0f172a);
}

.pm-stl-price-mrp {
    font-size: 0.82rem;
    color: #94a3b8;
    text-decoration: line-through;
}

.pm-stl-discount-tag {
    font-size: 0.72rem;
    font-weight: 700;
    color: #16a34a;
}

/* Amazon High-Converting CTA Button */
.pm-btn-amazon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #FF9900;
    color: #0f172a !important;
    padding: 7px 14px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 800;
    text-decoration: none !important;
    transition: all 0.2s ease;
    border: 1px solid #e28700;
    box-shadow: 0 2px 4px rgba(255, 153, 0, 0.2);
    width: fit-content;
    margin-top: 3px;
}

.pm-btn-amazon:hover {
    background: #e88b00;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(255, 153, 0, 0.35);
}

.pm-btn-amazon i {
    font-size: 0.95rem;
}

.pm-stl-disclosure {
    margin-top: 18px;
    font-size: 0.72rem;
    color: #94a3b8;
    line-height: 1.4;
    text-align: center;
}

/* More Looks Section */
.pm-look-more-section {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid var(--pm-border, rgba(0,0,0,0.08));
    width: 100%;
    clear: both;
}

.pm-look-more-title {
    font-family: 'Playfair Display', 'Roboto Slab', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 0 25px 0;
    color: var(--pm-text, #0f172a);
}
