/* ==========================================================================
   Pure Nature Store (Boutique) Widget
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&family=Montserrat:wght@300;400;500;600&display=swap');

.pn-store {
    background-color: #F9F6F0;
    padding: 160px 48px;
}

.pn-store .section-inner {
    max-width: 1400px;
    margin: 0 auto;
}

/* Section Header */
.pn-store .section-header {
    text-align: center;
    margin-bottom: 80px;
}

.pn-store .section-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #D4A373;
    margin-bottom: 16px;
    font-weight: 600;
}

.pn-store .section-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    color: #3B4D41;
    margin-bottom: 16px;
    font-weight: 400;
    letter-spacing: 0.04em;
}

.pn-store .section-header > p {
    font-family: 'Montserrat', sans-serif;
    color: #7A857E;
    font-size: 15px;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

/* Store Grid */
.pn-store .store-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Main Area */
.pn-store .store-main {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.pn-store .store-main-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.pn-store .store-main-text {
    padding-right: 40px;
}

.pn-store .store-main-text h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    color: #3B4D41;
    margin-bottom: 12px;
    font-weight: 400;
    letter-spacing: 0.04em;
}

.pn-store .store-address {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #D4A373;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0;
    font-weight: 500;
}

.pn-store .store-main-text .divider {
    width: 60px;
    height: 1px;
    background-color: #3B4D41;
    margin: 32px 0;
    opacity: 0.2;
}

.pn-store .store-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #2C3530;
    line-height: 1.8;
    margin-bottom: 40px;
    font-weight: 300;
}

/* Button */
.pn-store .btn-outline-dark {
    display: inline-block;
    padding: 16px 48px;
    background-color: transparent;
    border: 1px solid #3B4D41;
    color: #3B4D41;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    transition: all 0.4s ease;
    cursor: pointer;
    font-weight: 500;
}

.pn-store .btn-outline-dark:hover {
    background-color: #3B4D41;
    color: #FFFFFF;
}

/* Side Cards */
.pn-store .store-side {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.pn-store .store-side-card {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.pn-store .store-side-card.card-top {
    height: 560px;
}

.pn-store .store-side-card.card-bottom {
    height: 480px;
}

.pn-store .store-side-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pn-store .store-side-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: #FFFFFF;
}

.pn-store .store-side-overlay h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    margin-bottom: 4px;
    font-weight: 400;
    letter-spacing: 0.04em;
}

.pn-store .store-side-overlay p {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    opacity: 0.9;
    font-weight: 300;
}

/* Responsive */
@media (max-width: 1024px) {
    .pn-store .store-grid {
        grid-template-columns: 1fr;
    }

    .pn-store .store-main-img {
        height: 400px;
    }

    .pn-store .store-side {
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .pn-store {
        padding: 80px 24px;
    }

    .pn-store .store-grid {
        grid-template-columns: 1fr;
    }

    .pn-store .store-main-text {
        padding-right: 0;
    }

    .pn-store .section-header h2 {
        font-size: 28px;
    }

    .pn-store .store-main-text h3 {
        font-size: 24px;
    }
}
