/**
 * Sunshine Single Product Styles
 */

:root {
    --sunshine-red: #D73135;
    --sunshine-cream: #fff9f0;
    /* Background for info section */
    --sunshine-dark: #323232;
    --sunshine-gray: #404040;
}

.sunshine-single-wrapper {
    max-width: 1440px;
    margin: 0 auto;
    padding: 2% 0;
}

.sunshine-breadcrumbs a {
    font-weight: 500;
    font-family: 'Albert Sans';
}

.sunshine-breadcrumbs svg {
    height: 22px;
    width: 22px;
    padding-top: 2px;
    margin: 2px 5px 0 5px;
}

/* Breadcrumbs */
.sunshine-breadcrumbs {
    font-size: 18px;
    color: #40404069;
    margin-bottom: 0;
    display: flex;
    align-items: center;
}

.sunshine-breadcrumbs a {
    color: rgb(64 64 64 / 60%);
    text-decoration: none;
}

.sunshine-breadcrumbs span {
    color: var(--sunshine-red);
    font-family: 'Albert Sans';
    font-weight: 500;
    text-transform: capitalize !important;
}

/* Top Detail Section */
.sunshine-product-details {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 0;
}

/* Gallery (Left) */
.sunshine-gallery-col {
    flex: 1;
    min-width: 705px;
}

.sunshine-main-wrapper {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    margin-bottom: 0;
    background: #fff;
    border-radius: 16px;
}

.sunshine-main-image {
    width: 100%;
    object-fit: contain;
    display: block;
    height: 480px;
    cursor: zoom-in;
    margin-bottom: 0;
    background: #fff;
    border-radius: 20px;
}

/* Nav Arrows */
.sunshine-g-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #fcf7ed;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    /* Hidden by default */
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    color: #fff;
    font-size: 20px;
    z-index: 1;
}

.sunshine-g-arrow>svg {
    color: var(--sunshine-dark);
}

.sunshine-g-arrow:hover {
    background: var(--sunshine-cream);
    transform: translateY(-50%) scale(1.1);
}

.sunshine-g-arrow:hover>svg {
    color: #000;
}

/* Initial positions (pushed out slightly) */
.sunshine-g-prev {
    left: -20px;
}

.sunshine-g-next {
    right: -20px;
}

/* Hover State (Slide in) */
.sunshine-main-wrapper:hover .sunshine-g-arrow {
    opacity: 1;
}

.sunshine-main-wrapper:hover .sunshine-g-prev {
    left: 20px;
}

.sunshine-main-wrapper:hover .sunshine-g-next {
    right: 20px;
}

/* Mobile: Always Visible */
@media (max-width: 768px) {
    .sunshine-g-arrow {
        opacity: 1;
    }

    .sunshine-g-prev {
        left: 10px;
    }

    .sunshine-g-next {
        right: 10px;
    }
}

.sunshine-thumbs {
    position: relative;
    /* Ensure offsets are relative to this */
    display: flex;
    gap: 15px;
    padding-top: 15px;
    overflow-x: hidden;
    padding-bottom: 0;
    border-radius: 8px !important;
    scroll-behavior: smooth;
    width: 100%;
}

.sunshine-thumbs::-webkit-scrollbar {
    display: none;
}

.sunshine-thumb {
    /* (100% - (3 gaps * 15px)) / 4 items */
    min-width: calc((100% - 45px) / 4);
    width: calc((100% - 45px) / 4);
    height: 140px;
    border-radius: 0px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.6;
    transition: all 0.3s;
    flex-shrink: 0;
}

.sunshine-thumb.active,
.sunshine-thumb:hover {
    border-color: var(--sunshine-red);
    opacity: 1;
    transform: scale(0.98);
}

.sunshine-thumb img {
    width: 170px;
    height: 100%;
    background: #feeed4;
}

/* Info (Right) */
.sunshine-info-col {
    flex: 1;
    min-width: 300px;
}

.sunshine-product-title {
    font-size: 48px;
    font-weight: 400 !important;
    margin: 0;
    text-transform: capitalize;
    font-family: 'Gilroy Black';
    color: var(--sunshine-dark) !important;
}

.sunshine-product-tagline {
    font-size: 18px;
    color: var(--sunshine-gray) !important;
    font-weight: 400;
    font-family: 'Albert Sans';
    margin-bottom: 0;
    padding: 8px 0 35px;
}

/* Variant Selector as Pills */
.sunshine-variant-label {
    font-size: 14px;
    color: var(--sunshine-gray);
    margin-bottom: 8px;
    font-weight: 500;
    font-family: 'Albert Sans';
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sunshine-variant-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 0;
    padding: 5px 0 35px;
    flex-wrap: wrap;
}

.sunshine-v-btn {
    font-family: 'Albert Sans' !important;
    padding: 9px 24px;
    border: 1px solid #404040;
    background: transparent;
    font-size: 16px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    color: #404040;
    text-transform: unset !important;
    border-radius: 12px;
    /* Pillow shape */
    transition: all 0.2s ease;
    min-width: 80px;
    text-align: center;
}

.sunshine-v-btn:hover,
.sunshine-v-btn.active {
    border-color: #404040;
    background: #404040;
    color: #fff;
}

/* Action Buttons */
.sunshine-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 0;
    padding-bottom: 35px;
    align-items: center;
}

.sunshine-btn {
    padding: 12px 24px;
    /* Reduced vertical padding */
    text-align: center;
    font-weight: 700;
    text-transform: capitalize;
    font-size: 16px;
    border-radius: 50px;
    /* Fully rounded */
    cursor: pointer;
    text-decoration: none;
    border: 1px solid transparent;
    font-family: 'Albert Sans';
    /* Changed from Bayon to match design text */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    line-height: 1.2;
    transition: all 0.3s ease;
}

.sunshine-btn-primary {
    background: #E84646;
    /* Brighter red */
    color: #fff;
    flex: 0 0 auto;
}

.sunshine-btn-primary:hover {
    background: #c93030;
    color: #fff;
    transform: translateY(-2px);
}

.sunshine-btn-outline {
    border-color: #404040;
    color: #404040;
    background: transparent;
    flex: 0 0 auto;
}

.sunshine-btn-outline:hover {
    background: #f5f5f5;
    color: #000;
    transform: translateY(-2px);
}

/* Arrow Icon inside button */
.sunshine-btn .arrow-icon {
    display: inline-block;
    background: #fff;
    color: var(--sunshine-red);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    text-align: center;
    line-height: 20px;
    font-size: 14px;
}

.sunshine-btn-primary .arrow-icon {
    color: #E84646;
}

.sunshine-btn-outline .arrow-icon {
    background: #FCB900;
    /* Yellow accent */
    color: #000;
}

/* Share Icon Overlay */
.sunshine-share-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: #FCB900;
    /* Yellow */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1;
    transition: transform 0.2s;
    color: #000;
    box-shadow: 0px 6px 2px rgba(84, 84, 84, 0.01), 0px 3px 2px rgba(84, 84, 84, 0.04), 0px 2px 2px rgba(84, 84, 84, 0.07), 0px 0px 1px rgba(84, 84, 84, 0.08);
}

.sunshine-share-icon:hover {
    transform: scale(1.1);
}

.sunshine-share-icon svg {
    width: 18px;
    height: 18px;
    stroke-width: 2;
}

/* Collapsible Desc */
.sunshine-desc-toggle {
    border-top: 0;
    border-bottom: 0;
    padding: 15px 0 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    font-size: 18px;
    color: #323232;
    font-family: 'Albert Sans';
}

.sunshine-desc-content p {
    margin: 0;
}

.sunshine-desc-content {
    padding: 15px 0 30px;
    font-size: 18px;
    line-height: 150%;
    color: var(--sunshine-gray);
    margin: 0;
    font-family: 'Albert Sans';
    border-bottom: 1px solid #7878787a;
}

/* Share */
.sunshine-share {
    margin-top: 20px;
    font-size: 12px;
    color: #888;
    display: flex;
    align-items: center;
    gap: 18px;
}

/* === Info Grid Section ("What you need to know") === */
.sunshine-info-section {
    text-align: center;
}

.sunshine-section-title {
    font-size: 48px;
    text-transform: capitalize;
    color: #292725;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
    font-family: 'Gilroy Black';
}

.sunshine-section-subtitle {
    margin: 0 auto 50px;
    font-size: 18px;
    color: #525252;
    line-height: 1.6;
    padding: 0 15%;
    font-family: 'Albert Sans';
}

.sunshine-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 0 auto;
    text-align: left;
    justify-content: center;
    align-items: center;
    padding-bottom: 0%;
}

/*.sunshine-info-grid>.sunshine-info-card:nth-child(even) {*/
/*    height: 345px;*/
/*    margin-bottom: -35%;*/
/*}*/

.sunshine-info-card h4 {
    font-size: 20px !important;
    margin: 0 0 5px;
    color: #EE344D !important;
    font-family: 'Gilroy Black';
    text-transform: none !important;
    font-style: normal !important;
    font-weight: 500 !important;
}

.sunshine-info-card {
    background: #FCF7ED;
    padding: 30px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 345px;
}

.sunshine-info-icon {
    object-fit: contain;
    margin-bottom: 0;
    align-self: flex-start;
}

/* Revert icon to top-right based on typical modern inputs? 
   Actually user said "based on image". 
   Let's stick to standard card: Icon top, Text bottom. 
*/
.sunshine-info-card h4 {
    font-size: 16px;
    margin: 0 0 5px;
    color: #333;
}

.sunshine-info-card p {
    font-size: 16px;
    color: #000000;
    margin: 0;
    line-height: 150%;
    font-family: 'Albert Sans';
    font-weight: 300;
}

/* Lightbox */
.sunshine-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.sunshine-lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.sunshine-lightbox img {
    max-width: 90%;
    max-height: 90%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    border: 2px solid #fff;
    background: #feeed4;
}

.sunshine-lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
}

.sunshine-share a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.sunshine-share a svg {
    height: 13px;
}

.sunshine-share span {
    font-size: 18px;
    color: #323232;
    font-weight: 500;
    font-family: 'Albert Sans';
}

.sunshine-desc-toggle .toggle-icon svg {
    transition: transform 0.3s ease;
    transform-origin: center;
    transform: rotate(180deg);
}

.sunshine-desc-toggle.open .toggle-icon svg {
    transform: rotate(0deg);
}


.sunshine-info-section.product-info-grid {
    padding: 6% 0 7%;
    background: #ffffff;
    margin: 0 0;
}

.sunshine-info-section.product-info-grid .sunshine-single-wrapper {
    padding: 0;
}

.sunshine-single-wrapper .connect-with-us-wrapper p {
    font-family: 'Albert Sans';
    font-size: 18px;
    line-height: 150%;
    padding-bottom: 0.5rem;
}

.single-product-background-element-wrapper img.single-mobile-background-element {
    display: none;
}

.single-product-background-element-wrapper img.single-desktop-background-element {
    display: block;
}

.sunshine-product-section {
    background: #FCF7ED;
    margin-top: -1.5%;
    padding-top: 2%;
}

.sunshine-single-wrapper.sunshine-product-details {
    padding-bottom: 8%;
}

.sunshine-info-section.product-explore .sunshine-single-wrapper {
    padding: 0;
}

.sunshine-info-section.product-explore {
    padding: 5% 0 7%;
    background: #FCF7ED;
}


.hero-title::after {
    margin-bottom: 2% !important;
}

a.sunshine-mobile-menu-cta {
    margin: 0;
}

a.sunshine-mobile-menu-cta.with-bg-clr {
    background: #EE344D;
}

a.sunshine-mobile-menu-cta.with-bg-clr span {
    color: #fff;
}

a.sunshine-mobile-menu-cta.with-bg-clr .sunshine-mobile-menu-cta-circle {
    background: #FFFFFF;
}

a.sunshine-mobile-menu-cta.with-bg-clr .sunshine-mobile-menu-cta-circle span {
    color: #000;
}

.sunshine-actions a.sunshine-mobile-menu-cta {
    width: 100%;
    max-width: 100%;
}

a.sunshine-mobile-menu-cta.with-bg-clr:hover .sunshine-mobile-menu-cta-circle {
    background: var(--sunshine-primary);
}

.sunshine-product-details.wrapper-box .sunshine-gallery-col .sunshine-thumbs .sunshine-thumb {
    border-radius: 12px;
    height: 150px;
}

.title-wrapper-block h2.hero-title {
    margin: 0;
    padding-bottom: 40px;
    font-family: 'Gilroy Black';
    text-transform: capitalize !important;
}

section.background-element-section.badge.top {
    background-image: url(https://ahura.xyz/sunshine/wp-content/uploads/2026/01/Group-3469224-scaled.png);
    background-position: top;
    height: 2vh;
    margin-top: -1%;
    position: relative;
    background-repeat: no-repeat;
}


section.background-element-section.white.top {
    background-image: url(https://ahura.xyz/sunshine/wp-content/uploads/2026/01/Group-3469224-scaled.png);
    margin-top: -1%;
    height: 2vh;
}

section.background-element-section.white.bottom {
    background-image: url(https://ahura.xyz/sunshine/wp-content/uploads/2026/01/Group-3469224-scaled.png);
    background-position: bottom;
    height: 2vh;
    margin-top: 0%;
    position: relative;
    background-repeat: no-repeat;
}

section.background-element-section.white.bottom.single {
    background-image: url(https://ahura.xyz/sunshine/wp-content/uploads/2026/01/Group-3469224-scaled.png);
    background-position: unset;
    height: 2vh;
    margin-top: 0%;
    position: relative;
    background-repeat: no-repeat;
}

.similar-product-section {
    padding-top: 30px;
}

/* Responsive */
@media screen and (min-width: 1024px) and (max-width:1440px) {
    .sunshine-info-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .sunshine-gallery-col {
        min-width: 520px;
    }

    .sunshine-product-details.wrapper-box .sunshine-gallery-col .sunshine-thumbs .sunshine-thumb {
        height: 120px
    }
}

@media (max-width: 1440px) {
    .sunshine-product-details {
        padding: 0 5%;
        padding-top: 2%;
    }

    .sunshine-product-details.wrapper-box {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        padding: 0;
    }

    .sunshine-desc-content p {
        margin: 0;
        font-size: 14px;
        line-height: 140%;
    }

    .sunshine-info-col {
        min-width: 100%;
    }

    .sunshine-actions {
        flex-wrap: wrap;
    }

    .sunshine-actions a.sunshine-mobile-menu-cta span {
        font-size: 16px;
    }

    .sunshine-info-col .sunshine-actions .sunshine-mobile-menu-cta-circle {
        width: 35px;
        height: 35px;
    }

    .sunshine-info-section.product-info-grid,
    .sunshine-info-section.product-explore {
        padding: 5% 5% 5%;
    }

    .sunshine-featured-hero {
        padding: 0 5%;
    }

    .sunshine-product-title,
    .sunshine-section-title {
        font-size: 35px;
    }

    .sunshine-section-subtitle {
        line-height: 150%;
        padding: 0 5%;
    }
}

@media (max-width: 900px) {
    .sunshine-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .sunshine-product-details {
        flex-direction: column;
    }

    .sunshine-info-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 1024px) {
    .sunshine-info-grid>.sunshine-info-card:nth-child(even) {
        height: 300px;
        margin-bottom: 0;
    }

    .sunshine-gallery-col {
        flex: 1;
        min-width: 100%;
    }

    .sunshine-main-image {
        height: 100%;
    }

    .sunshine-single-wrapper.sunshine-product-details {
        padding-bottom: 10%;
        padding: 5% 5% 10% 5%;
        gap: 15px;
    }

    .sunshine-main-image {
        height: 100%;
    }

    .sunshine-thumb {
        height: 130px;
    }

    .sunshine-thumb img {
        width: 210px;
        height: 100%;
    }

    .sunshine-product-tagline {
        font-size: 16px;
        padding: 5px 0 30px;
    }

    .sunshine-btn {
        padding: 10px 20px 10px 20px;
        font-size: 18px;
    }

    .sunshine-actions {
        display: flex;
        gap: 15px;
        margin-bottom: 0;
        padding-bottom: 30px;
    }

    .sunshine-info-section.product-info-grid {
        padding: 8% 5% 3% 5%;
    }

    .sunshine-section-subtitle {
        padding: 2% 0 0;
        font-size: 14px !important;
    }

    .sunshine-info-grid {
        grid-template-columns: 1fr 1fr 1fr 1fr;
        overflow-x: scroll;
        justify-content: flex-start;
        gap: 20px;
    }

    .sunshine-info-card {
        background: #FCF7ED;
        padding: 30px;
        border-radius: 16px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        min-height: 300px;
        width: 300px;
    }

    .sunshine-info-card h4 {
        font-size: 18px !important;
    }

    .sunshine-info-card p {
        font-size: 14px;
    }

    .sunshine-info-icon {
        width: 25%;
    }

    .hero-title::after {
        margin: 10px auto 0;
        height: 3px;
    }

    .sunshine-info-section.connect-with-us-cta {
        padding: 0 5%;
    }

    .sunshine-single-wrapper .connect-with-us-wrapper p {
        font-size: 14px;
    }

    a.sunshine-btn.sunshine-btn-primary {
        padding: 10px 30px !important;
    }

    .sunshine-section-subtitle {
        margin: 0 auto 40px;
    }

    .sunshine-product-section {
        margin-top: -4%;
    }

    .sunshine-breadcrumbs svg {
        padding-top: 0;
    }

}


@media screen and (max-width: 900px) {
    .sunshine-product-details.wrapper-box {
        grid-template-columns: 1fr;
    }

    .sunshine-info-col {
        flex: 1;
        min-width: 100%;
        padding-top: 5%;
        border-top: 1px solid #00000014;
    }

}

@media screen and (max-width: 768px) {
    .single-product-background-element-wrapper img.single-desktop-background-element {
        display: none;
    }

    .single-product-background-element-wrapper img.single-mobile-background-element {
        display: block;
    }

    .sunshine-variant-label {
        font-size: 14px;
    }

    .sunshine-v-btn {
        font-size: 16px !important;
    }

    .sunshine-desc-toggle {
        font-size: 16px;
        padding: 10px 0 0;
    }

    .sunshine-desc-content {
        padding: 10px 0 30px;
    }

    .sunshine-desc-content p {
        margin: 0;
        font-size: 14px;
        line-height: 150%;
    }

    .sunshine-share span {
        font-size: 16px;
    }

    .sunshine-thumb {
        height: 80px;
    }

    .sunshine-thumb img {
        height: 100%;
    }

    .sunshine-share a svg {
        height: 13px;
    }

    .sunshine-g-arrow {
        width: 25px;
        height: 25px;
    }

    .sunshine-g-arrow>svg {
        width: 15px;
    }


    .sunshine-variant-buttons {
        padding: 5px 0 35px;
    }

    .sunshine-product-tagline {
        font-size: 14px;
        padding: 5px 0 25px;
    }

    .sunshine-breadcrumbs {
        font-size: 12px;
    }

    .sunshine-section-title,
    .hero-title {
        font-size: 25px;
        margin-bottom: 0;
        line-height: 140%;
    }

    .hero-title::after {
        margin: 10px auto 0;
        height: 3px;
    }

    .sunshine-info-section.product-info-grid {
        padding: 12% 5% 15% 5%;
        /*background: #feeed4;*/
    }

    .sunshine-info-section.product-explore {
        padding: 10% 0;
    }

    .sunshine-info-section.product-explore .sunshine-single-wrapper>div {
        padding: 0 5% 4% !important;
    }

    .sunshine-product-details.wrapper-box .sunshine-gallery-col .sunshine-thumbs .sunshine-thumb {
        height: 100px;
    }

}

@media screen and (max-width: 500px) {
    .sunshine-product-details.wrapper-box .sunshine-gallery-col .sunshine-thumbs .sunshine-thumb {
        height: 90px;
    }

    .sunshine-info-icon {
        width: 20%;
    }
}

/* --- SOCIAL SHARE MODAL STYLES --- */
.sunshine-social-wrapper {
    display: flex;
    gap: 1rem;
    justify-content: center;
    /* Center them in the modal */
    margin-top: 20px;
}

.sunshine-social-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: #FDB913;
    border-radius: 50%;
    text-decoration: none;
    overflow: hidden;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.sunshine-social-base-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #292725;
    width: 100%;
    height: 100%;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}

.sunshine-social-slide-icon {
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover States for sliding effect */
.sunshine-social-link:hover .sunshine-social-base-icon {
    transform: translateX(100%);
    opacity: 0;
}

.sunshine-social-link:hover .sunshine-social-slide-icon {
    left: 0;
}

/* Single Hover Background Color for all links */
.sunshine-social-link:hover {
    background-color: #EE344D;
}

/* SVG Inner Styling */
.sunshine-social-svg {
    width: 20px;
    height: 20px;
    display: block;
}

.sunshine-social-svg path {
    fill: currentColor;
}

@media screen and (max-width: 760px) {
    .sunshine-social-link {
        width: 35px;
        height: 35px;
    }

    .sunshine-social-svg {
        width: 15px;
        height: 15px;
        display: block;
    }

    .sunshine-social-wrapper {
        gap: 0.8rem;
    }
}