/* ===============================
   PEHRAWAAH — HOME PAGE STYLES
   =============================== */

html, body {
    overflow-x: hidden;
}

.pw-section-container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 28px;
}

/* -------------------------------
   EDITORIAL HERO (PEHRAWAAH)
   ------------------------------- */
.pw-editorial-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle at center, #0B3B2C 0%, #07261C 70%, #041711 100%);
    color: #FFFFFF;
    padding: 100px 24px;
    overflow: hidden;
    border-bottom: 2px solid #C5A059;
}

.pw-editorial-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: 
        radial-gradient(circle at 20% 30%, rgba(197, 160, 89, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(197, 160, 89, 0.12) 0%, transparent 45%);
}

.pw-editorial-hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image: radial-gradient(#C5A059 1px, transparent 1px);
    background-size: 24px 24px;
}

.pw-editorial-hero-content {
    position: relative;
    z-index: 2;
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pw-hero-emblem {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid #C5A059;
    color: #DFBE7A;
    display: grid;
    place-items: center;
    font-size: 20px;
    margin-bottom: 20px;
    background: rgba(197, 160, 89, 0.1);
    box-shadow: 0 0 20px rgba(197, 160, 89, 0.2);
}

.pw-hero-kicker {
    font-family: var(--font-body, 'Plus Jakarta Sans', sans-serif);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #DFBE7A;
    margin-bottom: 14px;
    display: inline-block;
}

.pw-hero-title {
    font-family: var(--font-heading, 'Bodoni Moda', serif);
    font-size: clamp(38px, 5.5vw, 68px);
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.15;
    margin: 0 0 20px;
    color: #FFFFFF;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.pw-hero-desc {
    font-family: var(--font-body, 'Plus Jakarta Sans', sans-serif);
    font-size: clamp(16px, 1.8vw, 19px);
    color: #D5DFDC;
    line-height: 1.7;
    max-width: 680px;
    margin: 0 0 36px;
}

.pw-hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.pw-hero-primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 8px;
    background: #C5A059;
    color: #07261C;
    font-family: var(--font-body, 'Plus Jakarta Sans', sans-serif);
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(197, 160, 89, 0.35);
    transition: all 0.3s ease;
}

.pw-hero-primary-btn:hover {
    background: #DFBE7A;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(197, 160, 89, 0.45);
}

.pw-hero-secondary-btn {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    border-radius: 8px;
    border: 1px solid rgba(197, 160, 89, 0.6);
    background: rgba(255, 255, 255, 0.05);
    color: #FFFFFF;
    font-family: var(--font-body, 'Plus Jakarta Sans', sans-serif);
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.pw-hero-secondary-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #DFBE7A;
    color: #DFBE7A;
}

/* -------------------------------
   SHOP BY CATEGORY (STRIP)
   ------------------------------- */
.pw-category-strip {
    padding: 65px 0 50px;
    background: #FFFFFF;
    border-bottom: 1px solid rgba(11, 59, 44, 0.08);
}

.pw-category-header {
    text-align: center;
    margin-bottom: 36px;
}

.pw-subheading {
    font-family: var(--font-body, 'Plus Jakarta Sans', sans-serif);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #C5A059;
    display: block;
    margin-bottom: 6px;
}

.pw-heading {
    font-family: var(--font-heading, 'Bodoni Moda', serif);
    font-size: clamp(28px, 3.5vw, 38px);
    font-weight: 600;
    color: #0B3B2C;
    margin: 0;
}

.pw-category-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 20px;
}

.pw-cat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.pw-cat-card:hover {
    transform: translateY(-6px);
}

.pw-cat-circle {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: #F8F6F0;
    border: 2px solid rgba(197, 160, 89, 0.35);
    display: grid;
    place-items: center;
    font-size: 28px;
    color: #0B3B2C;
    margin-bottom: 14px;
    box-shadow: 0 6px 18px rgba(11, 59, 44, 0.06);
    transition: all 0.3s ease;
}

.pw-cat-card:hover .pw-cat-circle {
    background: #0B3B2C;
    color: #DFBE7A;
    border-color: #C5A059;
    box-shadow: 0 10px 24px rgba(11, 59, 44, 0.2);
}

.pw-cat-name {
    font-family: var(--font-heading, 'Bodoni Moda', serif);
    font-size: 16px;
    font-weight: 600;
    color: #161E1A;
    margin-bottom: 3px;
    transition: color 0.2s ease;
}

.pw-cat-card:hover .pw-cat-name {
    color: #0B3B2C;
}

.pw-cat-sub {
    font-size: 11.5px;
    color: #7B8C86;
    text-align: center;
}

/* -------------------------------
   EDITORIAL STORY STRIP
   ------------------------------- */
.pw-editorial-strip {
    background: #0B3B2C;
    color: #FFFFFF;
    border-top: 1px solid rgba(197, 160, 89, 0.4);
    border-bottom: 1px solid rgba(197, 160, 89, 0.4);
    padding: 70px 24px;
    position: relative;
    overflow: hidden;
}

.pw-editorial-strip-inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.pw-editorial-tag {
    font-family: var(--font-body, 'Plus Jakarta Sans', sans-serif);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #DFBE7A;
    display: inline-block;
    margin-bottom: 12px;
}

.pw-editorial-strip-text h3 {
    font-family: var(--font-heading, 'Bodoni Moda', serif);
    font-size: clamp(26px, 3.4vw, 42px);
    font-weight: 600;
    line-height: 1.25;
    margin: 0 0 16px;
    color: #FFFFFF;
}

.pw-editorial-strip-text p {
    font-size: 16px;
    color: #D5DFDC;
    line-height: 1.8;
    max-width: 780px;
    margin: 0 auto 28px;
}

.pw-editorial-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border: 1px solid #C5A059;
    border-radius: 6px;
    color: #DFBE7A;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.25s ease;
}

.pw-editorial-link:hover {
    background: #C5A059;
    color: #07261C;
}

/* -------------------------------
   PRODUCT SECTION & CAROUSEL
   ------------------------------- */
.pw-section {
    padding: 75px 0;
}

.pw-section:nth-of-type(even) {
    background: #F8F6F0;
}

.pw-section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 34px;
    border-bottom: 1px solid rgba(11, 59, 44, 0.1);
    padding-bottom: 18px;
}

.pw-section-kicker {
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #C5A059;
    display: block;
    margin-bottom: 4px;
}

.pw-section-title {
    margin: 0 0 6px;
    font-family: var(--font-heading, 'Bodoni Moda', serif);
    font-size: clamp(28px, 3.2vw, 38px);
    font-weight: 600;
    color: #0B3B2C;
}

.pw-section-desc {
    margin: 0;
    font-size: 14.5px;
    color: #7B8C86;
}

.pw-explore-btn {
    padding: 10px 22px;
    border: 1px solid #0B3B2C !important;
    background: transparent !important;
    color: #0B3B2C !important;
    border-radius: 6px;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.pw-explore-btn:hover {
    background: #0B3B2C !important;
    color: #FFFFFF !important;
}

.pw-carousel-track {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 26px;
}

/* -------------------------------
   THE PEHRAWAAH PROMISE (TRUST)
   ------------------------------- */
.pw-trust-section {
    padding: 70px 0;
    background: #FFFFFF;
    border-top: 1px solid rgba(11, 59, 44, 0.08);
    border-bottom: 1px solid rgba(11, 59, 44, 0.08);
}

.pw-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.pw-trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 16px;
    border-radius: 12px;
    background: #FBF9F5;
    border: 1px solid rgba(197, 160, 89, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pw-trust-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(11, 59, 44, 0.08);
    border-color: #C5A059;
}

.pw-trust-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #0B3B2C;
    color: #DFBE7A;
    display: grid;
    place-items: center;
    font-size: 22px;
    margin-bottom: 18px;
    box-shadow: 0 6px 16px rgba(11, 59, 44, 0.18);
}

.pw-trust-item h4 {
    margin: 0 0 8px;
    font-family: var(--font-heading, 'Bodoni Moda', serif);
    font-size: 17px;
    font-weight: 600;
    color: #0B3B2C;
}

.pw-trust-item p {
    margin: 0;
    font-size: 13.5px;
    line-height: 1.6;
    color: #55605B;
}

/* -------------------------------
   INSTAGRAM COMMUNITY
   ------------------------------- */
.pw-insta-section {
    padding: 60px 0;
    background: #FBF9F5;
}

/* -------------------------------
   RESPONSIVE QUERIES
   ------------------------------- */
@media (max-width: 1200px) {
    .pw-category-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .pw-carousel-track {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px;
    }
    .pw-trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .pw-section-container {
        padding: 0 16px;
    }
    .pw-editorial-hero {
        min-height: 65vh;
        padding: 60px 16px;
    }
    .pw-category-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    .pw-cat-circle {
        width: 70px;
        height: 70px;
        font-size: 22px;
    }
    .pw-cat-name {
        font-size: 14px;
    }
    .pw-cat-sub {
        display: none;
    }
    .pw-section-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }
    .pw-carousel-track {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }
    .pw-trust-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .pw-category-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    .pw-hero-actions {
        flex-direction: column;
        width: 100%;
    }
    .pw-hero-primary-btn,
    .pw-hero-secondary-btn {
        width: 100%;
        justify-content: center;
    }
}
