/* --- Modern Single Product Page Styles --- */

:root {
    --gp-glass: rgba(255, 255, 255, 0.7);
    --gp-glass-border: rgba(255, 255, 255, 0.4);
    --gp-glass-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.gp-product-page {
    padding: 15px 20px;
    /* Further reduced from 30px */
    font-family: 'Inter', sans-serif;
    color: #333;
    max-width: 1400px;
    margin: 0 auto;
}

/* Hide default WooCommerce AJAX notice */
.gp-product-page a.added_to_cart {
    display: none !important;
}

.gp-product-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 40px;
    padding: 50px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    animation: fadeInProduct 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes fadeInProduct {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gp-gallery-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    /* Center labels below image */
}

.gp-product-gallery {
    display: flex;
    flex-direction: row;
    /* Thumbnails on left */
    gap: 15px;
    align-items: flex-start;
    width: 100%;
    position: relative;
}

.gp-main-image-wrap {
    flex: 1;
    aspect-ratio: 1/1;
    border-radius: 20px;
    overflow: hidden;
    background: #fdfdfd;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
}

.gp-main-image-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    height: 100%;
    width: 100%;
}

.gp-main-image-slider::-webkit-scrollbar {
    display: none;
}

.gp-slider-item {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    scroll-snap-align: center;
}

.gp-slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gp-main-image-wrap:hover .gp-slider-item img {
    transform: scale(1.05);
}

.gp-gallery-pagination {
    display: none;
    /* Mobile only */
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    gap: 8px;
    z-index: 10;
}

.gp-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gp-dot.active {
    background: #000;
    transform: scale(1.2);
}

.gp-mobile-gallery-actions {
    display: none;
    /* Mobile only */
    position: absolute;
    bottom: 15px;
    right: 20px;
    gap: 15px;
    z-index: 10;
}

.gp-share-action {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #ffffff;
    border-radius: 50%;
    cursor: pointer;
    color: #333;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gp-share-action:hover {
    transform: scale(1.1);
}

.gp-full-view-link {
    display: none;
    /* Hidden by default (mobile/tablet) */
    text-align: center;
    font-size: 13px;
    color: #2D5A27;
    margin-top: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

@media (min-width: 1025px) {
    .gp-full-view-link {
        display: block;
    }
}

.gp-thumbnails {
    display: flex;
    flex-direction: column;
    /* Vertical stack */
    gap: 10px;
    overflow-y: auto;
    max-height: 480px;
    /* Constrain height to make it scrollable */
    width: 75px;
    flex-shrink: 0;
    padding-right: 5px;
}

/* Custom Scrollbar for Thumbnails */
.gp-thumbnails::-webkit-scrollbar {
    width: 4px;
}

.gp-thumbnails::-webkit-scrollbar-track {
    background: transparent;
}

.gp-thumbnails::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.gp-thumbnails::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.2);
}

.gp-thumbnails {
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.1) transparent;
}

.gp-thumb {
    width: 50px;
    /* Further reduced from 60px */
    height: 50px;
    /* Further reduced from 60px */
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.gp-thumb.active {
    border-color: var(--gp-primary);
    transform: scale(0.95);
}

.gp-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gp-mobile-header {
    display: none;
    width: 100%;
    margin-bottom: 5px;
}

/* --- Content Styles --- */
.gp-product-details {
    display: flex;
    flex-direction: column;
}

.gp-product-meta {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #2D5A27;
    letter-spacing: 1px;
    background: rgba(45, 90, 39, 0.05);
    /* Soft brand green background */
    padding: 6px 16px;
    border-radius: 50px;
    border: 1px solid rgba(45, 90, 39, 0.1);
    display: inline-block;
    text-align: center;
}

.gp-product-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    /* Increased from 28px */
    line-height: 1.1;
    color: #1a1a1a;
    margin: 0 0 10px 0;
}

.gp-rating-summary {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    /* Further reduced */
}

.gp-rating-text {
    font-size: 12px;
    color: #666;
    font-weight: 500;
}

.gp-product-price-section {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.gp-product-price {
    font-size: 24px;
    /* Slightly larger */
    font-weight: 800;
    /* Bolder */
    color: #111;
    display: flex;
    align-items: center;
    gap: 8px;
}

.gp-product-price ins {
    text-decoration: none;
    color: #111;
}

.gp-product-price del {
    font-size: 16px;
    color: #a0a0a0;
    font-weight: 500;
    margin-right: 4px;
}

.gp-discount-badge {
    background: #2D5A27;
    /* Brand green */
    color: white;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(45, 90, 39, 0.2);
}

.gp-short-desc {
    font-size: 15px;
    /* Increased from 13px */
    line-height: 1.5;
    color: #555;
    margin-bottom: 10px;
    /* Further reduced from 20px */
    max-width: 550px;
    /* Reduced width for readability */
    text-align: justify;
}

/* --- Variation Selector --- */
.gp-variation-row {
    margin-bottom: 12px;
}

.gp-variation-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 10px;
}

/* --- Stock Indicator --- */
.gp-stock {
    font-size: 13px;
    font-weight: 600;
    margin: 8px 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 50px;
    width: fit-content;
}

.gp-stock.low-stock {
    background: rgba(227, 137, 39, 0.1);
    color: #e38927;
    border: 1px solid rgba(227, 137, 39, 0.2);
    animation: gpPulse 2s infinite;
}

.gp-stock.out-of-stock {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.2);
}

.gp-stock.in-stock {
    background: rgba(45, 90, 39, 0.1);
    color: #2D5A27;
    border: 1px solid rgba(45, 90, 39, 0.2);
}

@keyframes gpPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.02);
        opacity: 0.9;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* --- Quantity & Actions --- */
.gp-actions-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
    max-width: 450px;
}

.gp-product-page .gp-qty-box {
    display: flex;
    align-items: center;
    background: #edf1f3;
    border-radius: 100px;
    padding: 4px;
    width: fit-content;
    border: none;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

.gp-product-page .gp-qty-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: none;
    background: transparent;
    color: #555;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.gp-product-page .gp-qty-btn:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #111;
}

.gp-product-page .gp-qty-input {
    width: 32px;
    height: 28px;
    text-align: center;
    border: 1px solid #e0e6eb;
    background: #ffffff;
    color: #111;
    font-weight: 600;
    font-size: 13px;
    outline: none;
    padding: 0;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    margin: 0 4px;
}

.gp-add-to-cart {
    flex: 1;
    background: #ffffff;
    color: var(--gp-primary);
    border: 2px solid var(--gp-primary);
    border-radius: 14px;
    padding: 10px 15px;
    /* Compact */
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gp-add-to-cart-icon {
    display: none;
    font-size: 20px;
    line-height: 1;
}

.gp-add-to-cart-text {
    display: inline;
}

.gp-add-to-cart:hover {
    background: var(--gp-primary);
    color: #ffffff;
}

.gp-buy-now {
    flex: 0 0 100%;
    background: var(--gp-primary);
    color: white;
    border: none;
    border-radius: 14px;
    padding: 14px 15px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Pincode Checker Styles --- */
.gp-pincode-checker {
    margin: 5px 0 15px 0;
    /* Minimum gap */
    padding: 10px 0;
    background: transparent;
    border-radius: 0;
    border: none;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    max-width: 480px;
    /* Constrain width */
}

.gp-pincode-label {
    font-size: 11px;
    font-weight: 700;
    color: #2D5A27;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gp-pincode-input-group {
    display: flex;
    gap: 8px;
    margin-bottom: 0px;
}

.gp-pincode-input-group input {
    flex: 1;
    padding: 8px 12px;
    border-radius: 50px;
    border: 1px solid #ddd;
    font-size: 13px;
    height: auto;
}

.gp-pincode-input-group button {
    padding: 8px 15px;
    background: #2D5A27;
    color: #fff;
    font-size: 12px;
    border-radius: 50px;
    height: auto;
    border: none;
    cursor: pointer;
}

/* --- Modern Variation Selector --- */
.gp-product-page .gp-modern-variations-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 0 0 25px 0;
    width: 100%;
    max-width: 300px;
}

.gp-product-page .gp-variation-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 8px 12px;
    background: #ffffff;
    border: 1.5px solid #ececec;
    border-radius: 14px;
    cursor: pointer;
    width: 100%;
    box-sizing: border-box;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.gp-product-page .gp-variation-card:hover {
    border-color: #2D5A27;
    background: #f9fbf9;
    transform: translateY(-1px);
}

.gp-product-page .gp-variation-card.is-selected {
    border-color: #2D5A27;
    background: rgba(45, 90, 39, 0.03);
    box-shadow: 0 4px 12px rgba(45, 90, 39, 0.08);
}

.gp-product-page .gp-var-radio {
    width: 18px;
    height: 18px;
    border: 2px solid #ccc;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 2px;
    transition: all 0.3s ease;
}

.gp-product-page .gp-variation-card.is-selected .gp-var-radio {
    border-color: #2D5A27;
    background: #fff;
}

.gp-product-page .radio-inner {
    width: 10px;
    height: 10px;
    background: #2D5A27;
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gp-product-page .gp-variation-card.is-selected .radio-inner {
    opacity: 1;
    transform: scale(1);
}

.gp-product-page .gp-var-img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    overflow: hidden;
    margin: 0 5px;
    flex-shrink: 0;
    border: 1px solid #f0f0f0;
}

.gp-product-page .gp-var-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gp-product-page .gp-var-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gp-product-page .gp-var-title {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0px;
}

.gp-product-page .gp-var-save {
    font-size: 11px;
    font-weight: 700;
    color: #2D5A27;
    padding: 0;
    margin: 0;
}

.gp-product-page .gp-var-price-box {
    text-align: right;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gp-product-page .gp-var-price {
    font-size: 13px;
    font-weight: 700;
    color: #111;
    line-height: 1.2;
}

.gp-product-page .gp-var-regular {
    font-size: 11px;
    color: #999;
    text-decoration: line-through;
    margin-top: 1px;
}

/* --- Product Share Styles --- */
.gp-product-share {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.gp-share-label {
    font-size: 11px;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.gp-share-btns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.gp-share-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid #eee;
    background: #fff;
    font-size: 13px;
    font-weight: 600;
    color: #444;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gp-share-btn .btn-icon {
    font-size: 16px;
}

.gp-share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-color: #ddd;
}

.gp-share-btn.whatsapp:hover {
    background: #25D366;
    color: #fff;
    border-color: #25D366;
}

.gp-share-btn.copy:hover {
    background: #2D5A27;
    color: #fff;
    border-color: #2D5A27;
}

.gp-share-btn.native:hover {
    background: #111;
    color: #fff;
    border-color: #111;
}

/* --- Mobile Responsiveness Adjustments --- */
@media (max-width: 1024px) {
    body {
        overflow-x: hidden;
    }

    .gp-product-page {
        padding: 0 0 120px 0;
        /* Added bottom padding for sticky bar visibility */
        width: 100%;
        overflow-x: hidden;
    }

    .gp-product-container {
        grid-template-columns: 1fr;
        padding: 10px 20px 20px 20px;
        /* Reduced bottom padding to close gap */
        gap: 20px;
        border-radius: 0;
        border-left: none;
        border-right: none;
        width: 100%;
        box-sizing: border-box;
    }

    .gp-product-gallery {
        flex-direction: column-reverse;
        /* Thumbnails to bottom */
    }

    .gp-thumbnails {
        display: none !important;
    }

    .gp-main-image-wrap {
        width: 100%;
        border-radius: 0;
        aspect-ratio: 1/1;
        /* Square for more compactness */
    }

    .gp-gallery-pagination {
        display: flex;
    }

    .gp-mobile-gallery-actions {
        display: flex;
    }

    .gp-mobile-header {
        display: flex;
        align-items: baseline;
        justify-content: space-between;
        padding: 5px 5px;
        margin-bottom: 5px;
        gap: 15px;
    }

    .gp-mobile-header .gp-product-title {
        font-size: 22px;
        text-align: left;
        margin-bottom: 0;
        flex: 1;
    }

    .gp-mobile-header .gp-rating-summary {
        margin-bottom: 0;
        gap: 0;
        flex-shrink: 0;
    }

    .gp-mobile-header .gp-stars {
        scale: 0.7;
        transform-origin: right center;
    }

    .gp-mobile-header .gp-rating-text {
        display: none;
    }

    .gp-product-details .gp-product-title,
    .gp-product-details .gp-rating-summary {
        display: none;
    }

    .gp-actions-wrap {
        position: fixed;
        bottom: 70px;
        /* Exactly on top of mobile-bottom-nav */
        left: 0;
        width: 100%;
        max-width: none;
        background: white;
        padding: 8px 15px;
        /* Reduced padding from 12px */
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 10px;
        box-shadow: 0 -10px 25px rgba(0, 0, 0, 0.05);
        z-index: 999;
        margin-top: 0;
        box-sizing: border-box;

        /* Visibility transition logic */
        opacity: 0;
        transform: translateY(150%);
        pointer-events: none;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .gp-actions-wrap.is-visible {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .gp-product-page .gp-qty-box {
        display: flex;
        align-items: center;
        margin: 0;
        flex: 0 0 22%;
        /* Adjusted slightly for better fit */
        min-width: 0;
        background: #f0f2f4;
        border-radius: 10px;
        padding: 2px;
        justify-content: center;
        /* Center content instead of space-between */
        gap: 2px;
        height: 40px;
        box-sizing: border-box;
    }

    .gp-product-page .gp-qty-btn {
        width: 22px;
        height: 100%;
        background: transparent;
        border: none;
        box-shadow: none;
        color: #333;
        font-size: 14px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 22px;
    }

    .gp-product-page .gp-qty-input {
        width: 20px;
        background: white;
        border: none;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
        margin: 0;
        font-size: 13px;
        height: 28px;
        border-radius: 4px;
        flex: 0 0 20px;
        text-align: center;
        color: #111;
    }

    .gp-add-to-cart {
        flex: 0 0 45px;
        height: 40px;
        padding: 0;
        border-radius: 10px;
    }

    .gp-add-to-cart-text {
        display: none;
    }

    .gp-add-to-cart-icon {
        display: block;
    }

    .gp-buy-now {
        flex: 1;
        padding: 10px 10px;
        font-size: 14px;
        white-space: nowrap;
        border-radius: 12px;
        /* Matches plus button */
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .gp-gallery-column {
        position: relative;
        gap: 0;
    }

    .gp-product-meta {
        position: relative;
        top: 0;
        left: 0;
        display: inline-block;
        margin-top: 15px;
        background: rgba(45, 90, 39, 0.05);
        color: #2D5A27;
        font-size: 11px;
        padding: 6px 16px;
        border-radius: 50px;
        border: 1px solid rgba(45, 90, 39, 0.1);
        box-shadow: none;
        backdrop-filter: none;
    }

    .gp-product-page .gp-modern-variations-list {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        gap: 10px;
        width: calc(100vw - 40px);
        max-width: none;
        /* Allow full width on mobile */
        margin: 5px 0 10px 0;
        padding-bottom: 5px;
        scrollbar-width: none;
        -ms-overflow-style: none;
        -webkit-overflow-scrolling: touch;
    }

    .gp-product-page .gp-modern-variations-container {
        width: 100%;
        overflow: hidden;
    }

    .gp-product-page .gp-modern-variations-list::-webkit-scrollbar {
        display: none;
    }

    .gp-product-page .gp-variation-card {
        flex: 0 0 220px;
        /* Reduced from 280px */
        padding: 6px 10px;
        /* Reduced padding */
        width: auto;
    }

    .gp-product-page .gp-var-img {
        width: 30px;
        height: 30px;
    }

    .gp-product-page .gp-var-radio {
        width: 16px;
        height: 16px;
    }
}

/* --- Section Styles --- */
.gp-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin: 30px 0 20px 0;
    color: #1a1a1a;
}

.gp-product-description-section,
.gp-related-section,
.gp-reviews-section {
    margin-top: 0;
    background: #ffffff;
    border: none;
    border-radius: 0;
    padding: 30px;
    box-shadow: none;
}

@media (min-width: 1025px) {

    .gp-product-description-section,
    .gp-related-section,
    .gp-reviews-section {
        margin-top: 40px;
        border-radius: 40px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
        border: 1px solid rgba(0, 0, 0, 0.05);
    }
}

.gp-description-content {
    line-height: 1.6;
    color: #444;
    font-size: 15px;
}

@media (max-width: 1024px) {
    .gp-related-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }

    .gp-related-card,
    .gp-related-img-wrap,
    .gp-related-img-wrap img {
        border-radius: 0 !important;
    }
}

.gp-related-card {
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s;
    background: transparent;
    padding: 0;
    border-radius: 0;
    border: none;
}

.gp-related-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.6);
}

.gp-related-img-wrap {
    aspect-ratio: 1/1;
    border-radius: 0;
    overflow: hidden;
    margin-bottom: 12px;
}

.gp-related-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gp-related-name {
    font-weight: 700;
    font-size: 15px;
    display: block;
    margin-bottom: 5px;
}

.gp-related-price {
    font-size: 14px;
    color: #2D5A27;
    font-weight: 600;
}

/* Reviews */
.gp-reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.gp-rating-large {
    display: flex;
    align-items: center;
    gap: 15px;
}

.gp-rating-value {
    font-size: 40px;
    font-weight: 700;
    color: #111;
}

.gp-stars-container {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.gp-rating-count {
    font-size: 13px;
    color: #666;
}

.gp-write-review-btn {
    background: #111;
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}

.gp-write-review-btn:hover {
    background: #333;
    transform: scale(1.05);
}

.gp-review-card {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 25px 0;
}

.gp-review-card:last-child {
    border-bottom: none;
}

.gp-review-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.gp-review-author {
    font-weight: 700;
    font-size: 15px;
}

.gp-review-date {
    font-size: 13px;
    color: #888;
}

.gp-review-content {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}

.gp-no-reviews {
    text-align: center;
    padding: 40px;
    color: #888;
    font-style: italic;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 0;
}

/* --- Lightbox Styles (Desktop Only) --- */
.gp-lightbox-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 999999;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

@media (min-width: 1025px) {
    .gp-lightbox-overlay {
        display: flex;
    }
}

.gp-lightbox-modal {
    background: white;
    width: 90vw;
    max-width: 1000px;
    height: 80vh;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
    animation: gpZoomIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes gpZoomIn {
    from {
        transform: scale(0.95);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.gp-lightbox-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: #333;
    z-index: 10;
    line-height: 1;
}

.gp-lightbox-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    height: 100%;
}

.gp-lightbox-main-img {
    background: #fdfdfd;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    overflow: hidden;
}

.gp-lightbox-main-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.gp-lightbox-sidebar {
    background: #fff;
    border-left: 1px solid #eee;
    padding: 40px 25px;
    display: flex;
    flex-direction: column;
}

.gp-lightbox-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    margin-bottom: 25px;
    color: #111;
    line-height: 1.3;
}

.gp-lightbox-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.gp-lightbox-thumb {
    aspect-ratio: 1/1;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s ease;
}

.gp-lightbox-thumb.active {
    border-color: #2D5A27;
}

.gp-lightbox-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}