/** Shopify CDN: Minification failed

Line 1054:13 Expected ":"

**/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400;1,700&display=swap");

:root {
    --brand-pink: #E8C5D8;
    --brand-pink-light: rgba(232, 197, 216, 0.1);
    --brand-pink-medium: rgba(232, 197, 216, 0.2);
    --brand-pink-border: rgba(232, 197, 216, 0.3);
    --text-primary: #222222;
    --text-secondary: #666666;
    --text-muted: #999999;
    --border-color: #e5e5e5;
    --background-white: #ffffff;
    --background-gray: #f8f9fa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--background-white);
    color: var(--text-primary);
    line-height: 1.6;
}

.product-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.mobileonly{
    display: none;
}

@media screen and (max-width: 768px) {
    .mobileonly{
        display: block;
    }

    .mobilegone{
        display: none;
    }
}

@media (min-width: 1024px) {
    .product-container {
        padding: 24px;
    }
    .product-grid {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }
}

.swiper {
    margin-left: unset !important;
    margin-right: unset !important;
    border-radius: 4px;
}

.product-images {
    display: flex;
    flex-direction: row-reverse;
    gap: 16px;
    width: 600px;
}

.thumbnail-swiper .swiper-slide {
    border-radius: 4px !important;
    overflow: hidden !important;
}

.swiper-slide-thumb-active {
    border: 2px solid var(--brand-pink) !important;
}

.main-image-container {
    position: relative;
    width: 100%;
    height: 320px;
    border-radius: 8px;
    overflow: hidden;
}

@media (min-width: 640px) {
    .main-image-container {
        height: 384px;
    }
}

@media (min-width: 1024px) {
    .main-image-container {
        height: 500px;
    }
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.limited-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: var(--brand-pink);
    color: var(--text-primary);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

@media (min-width: 640px) {
    .limited-badge {
        top: 16px;
        right: 16px;
        font-size: 14px;
    }
}

.wishlist-btn {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

@media (min-width: 640px) {
    .wishlist-btn {
        top: 16px;
        left: 16px;
        width: 40px;
        height: 40px;
    }
}

.wishlist-btn:hover {
    background: var(--brand-pink-medium);
}

.heart-icon {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: var(--brand-pink);
    stroke-width: 2;
}

@media (min-width: 640px) {
    .heart-icon {
        width: 20px;
        height: 20px;
    }
}

.thumbnails {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 8px;
}

.thumbnail {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.2s ease;
}

@media (min-width: 640px) {
    .thumbnail {
        width: 80px;
        height: 80px;
    }
}

.thumbnail.active {
    border-color: var(--brand-pink);
}

.thumbnail:hover {
    border-color: rgba(232, 197, 216, 0.5);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product Information Section */
.product-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.brand-title {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.brand {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (min-width: 640px) {
    .brand {
        font-size: 14px;
    }
}

.title {
    font-family: scotch-display, sans-serif;
    font-size: 28px;
    font-weight: 400;
    font-style: normal;
    line-height: 1.11111111;
    color: var(--text-primary);
    letter-spacing: -.8px;
    /* text-transform: uppercase; */
}

.product-type-text{
    margin-top: 5px;
}

@media (min-width: 640px) {
    .title {
        font-size: 28px;
    }
}

@media (min-width: 1024px) {
    .title {
        font-size: 35px;
    }
}

.reviews {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

@media (min-width: 640px) {
    .reviews {
        flex-direction: row;
        align-items: center;
        gap: 12px;
    }
}

.rating-section {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stars {
    display: flex;
    gap: 2px;
}

.star {
    width: 16px;
    height: 16px;
    fill: var(--brand-pink);
}

@media (min-width: 640px) {
    .star {
        width: 20px;
        height: 20px;
    }
}

.rating-number {
    font-size: 16px;
    font-weight: 600;
}

@media (min-width: 640px) {
    .rating-number {
        font-size: 18px;
    }
}

.review-link {
    color: var(--text-primary);
    text-decoration: underline;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.2s ease;
}

.review-link:hover {
    color: var(--brand-pink);
}

.viewing-count {
    display: none;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    color: #000;
    position: relative;
    top: 3px;
    font-weight: 500;
    text-transform: uppercase;
}

@media (min-width: 640px) {
    .viewing-count {
        font-size: 14px;
        position: relative;
        top: 3px;
    }
}

.users-icon {
    width: 12px;
    height: 12px;
    fill: var(--brand-pink);
}

@media (min-width: 640px) {
    .users-icon {
        width: 16px;
        height: 16px;
    }
}

.color-selection {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.color-label {
    font-size: 16px;
    font-weight: 600;
}

@media (min-width: 640px) {
    .color-label {
        font-size: 18px;
    }
}

.color-swatches {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.color-swatch {
    padding: 4px;
    border-radius: 4px;
    cursor: pointer;
    border: 1px solid #e1e1e1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    width: 80px;
}

.color-swatch:hover {
    border-color: #8b8b8b;
}

.color-swatch.active {
    border-color: #222222;
}

.color-swatch img {
    width: 100%;
    height: auto;
    border-radius: 3px;
}

.color-swatch span {
    text-align: center;
}

.color-swatch.active span{
    font-weight: 500;
}

.bundle-selection {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bundle-label {
    font-size: 16px;
    font-weight: 600;
}

@media (min-width: 640px) {
    .bundle-label {
        font-size: 18px;
    }
}

.bundle-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
} 

.bundle-option {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

@media (min-width: 640px) {
    .bundle-option {
        padding: 16px;
    }
}

.bundle-option.active {
    border-color: var(--brand-pink);
    background-color: var(--brand-pink-light);
}

.bundle-option:hover {
    border-color: rgba(232, 197, 216, 0.5);
}

.popular-badge {
    position: absolute;
    top: -8px;
    left: 12px;
    background-color: var(--brand-pink);
    color: var(--text-primary);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

@media (min-width: 640px) {
    .popular-badge {
        left: 16px;
    }
}

.bundle-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

@media (min-width: 640px) {
    .bundle-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
}

.bundle-info {
    flex: 1;
}

.bundle-header {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 8px;
}

@media (min-width: 640px) {
    .bundle-header {
        flex-direction: row;
        align-items: center;
        gap: 8px;
    }
}

.bundle-name {
    font-size: 14px;
    font-weight: 600;
    max-width: 200px;
}

@media (min-width: 640px) {
    .bundle-name {
        font-size: 16px;
    }
}

.savings-badge {
    background-color: var(--brand-pink-medium);
    border: 1px solid var(--brand-pink-border);
    color: var(--text-primary);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 12px;
    width: fit-content;
}

.bundle-items {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.bundle-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
}

@media (min-width: 640px) {
    .bundle-item {
        font-size: 14px;
    }
}

.bullet {
    width: 4px;
    height: 4px;
    background-color: var(--brand-pink);
    border-radius: 50%;
    margin-top: 6px;
    flex-shrink: 0;
}

.bundle-pricing {
    text-align: left;
}

@media (min-width: 640px) {
    .bundle-pricing {
        text-align: right;
    }
}

.price-info {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.original-price {
    font-size: 12px;
    color: var(--text-muted);
    text-decoration: line-through;
}

@media (min-width: 640px) {
    .original-price {
        font-size: 14px;
    }
}

.current-price {
    font-size: 18px;
    font-weight: 700;
}

@media (min-width: 640px) {
    .current-price {
        font-size: 20px;
    }
}

.payment-option {
    font-size: 12px;
    color: var(--text-muted);
}

.trust-signals {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 12px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

@media (min-width: 640px) {
    .trust-signals {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        padding: 16px 0;
    }
}

.trust-signal {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-muted);
}

@media (min-width: 640px) {
    .trust-signal {
        font-size: 14px;
    }
}

.trust-icon {
    width: 12px;
    height: 12px;
    fill: none;
    stroke: var(--brand-pink);
    stroke-width: 2;
}

@media (min-width: 640px) {
    .trust-icon {
        width: 16px;
        height: 16px;
    }
}

.quantity-cart {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.quantity-section {
    display: flex;
    align-items: center;
    gap: 16px;
}

.quantity-label {
    font-weight: 500;
    font-size: 14px;
}

@media (min-width: 640px) {
    .quantity-label {
        font-size: 16px;
    }
}

.quantity-controls {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

.quantity-btn {
    padding: 8px 12px;
    background: none;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
    font-size: 14px;
}

@media (min-width: 640px) {
    .quantity-btn {
        padding: 8px 16px;
        font-size: 16px;
    }
}

.quantity-btn:hover {
    background-color: var(--brand-pink-light);
}

.quantity-display {
    padding: 8px 12px;
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    font-size: 14px;
}

@media (min-width: 640px) {
    .quantity-display {
        padding: 8px 16px;
        font-size: 16px;
    }
}

.cart-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn {
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 44px;
}

.suggested-product-info-wrapper {
    display: flex;
    align-items: center;
    height: 40px;
    gap: 12px;
    width: 100%;
}

.suggested-product-info-wrapper img {
    height: 54px;
    border-radius: 4px;
}

.accordion-item-accordion {
    display: flex;
    flex-direction: column;
}

.accordion-item-accordion .item-accordion {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.accordion-item-accordion .item-accordion div:first-of-type{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

@media (min-width: 640px) {
    .btn {
        font-size: 16px;
        height: 48px;
    }
}

.btn-primary {
    background-color: var(--text-primary);
    color: var(--background-white);
    border: none;
    border-radius: 24px;
    height: 47px !important;
    font-weight: 300;
    text-transform: uppercase;
    font-size: 20px;
    letter-spacing: 1.5px;

}

.join-waitlist-btn{
    margin:  0px !important;
}

.btn-primary:hover {
    background-color: rgba(34, 34, 34, 0.9);
}

.btn-secondary {
    background-color: transparent;
    color: var(--brand-pink);
    border: 1px solid var(--brand-pink);
}

.btn-secondary:hover {
    background-color: var(--brand-pink-light);
}

.cart-icon {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

@media (min-width: 640px) {
    .cart-icon {
        width: 20px;
        height: 20px;
    }
}

.highlights-card {
    border: 1px solid var(--brand-pink-border);
    border-radius: 8px;
    padding: 12px;
}

@media (min-width: 640px) {
    .highlights-card {
        padding: 16px;
    }
}

.highlights-title {
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 14px;
}

@media (min-width: 640px) {
    .highlights-title {
        font-size: 16px;
    }
}

.highlights-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.highlights-card li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
}

@media (min-width: 640px) {
    .highlights-card li {
        font-size: 14px;
    }
}

.highlight-bullet {
    width: 6px;
    height: 6px;
    background-color: var(--brand-pink);
    border-radius: 50%;
    margin-top: 6px;
    flex-shrink: 0;
}

.btn-text-mobile {
    display: inline;
}

.btn-text-desktop {
    display: none;
}

@media (min-width: 640px) {
    .btn-text-mobile {
        display: none;
    }
    .btn-text-desktop {
        display: inline;
    }
}

.bundle-radio {
    display: none;
}

.loader {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    position: relative;
    animation: rotate 1s linear infinite
}
.loader::before {
    content: "";
    box-sizing: border-box;
    position: absolute;
    inset: 0px;
    border-radius: 50%;
    border: 3px solid #FFF;
    animation: prixClipFix 2s linear infinite ;
}

@keyframes rotate {
    100%   {transform: rotate(360deg)}
}

@keyframes prixClipFix {
    0%   {clip-path:polygon(50% 50%,0 0,0 0,0 0,0 0,0 0)}
    25%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 0,100% 0,100% 0)}
    50%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,100% 100%,100% 100%)}
    75%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,0 100%,0 100%)}
    100% {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,0 100%,0 0)}
}

.main-product-badge {
    background-color: var(--brand-pink);
    width: fit-content;
    padding: 0 8px;
    border-radius: 10px;
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 2;
}

@media screen and (min-width: 1024px) {
    .product-images-wrapper {
        height: fit-content;
        position: sticky;
        top: 120px;
    }
}

@media screen and (min-width: 1438px) {
    .product-images-wrapper {
        top: 170px;
    }
}

.ruk_rating_snippet i {
    color: var(--text-primary) !important;
}

#scrollLink {
    width: fit-content;   
}

#scrollLink .sr-only {
    display: none;
    width: fit-content;
    height: fit-content;
    position: static;
    font-size: 16px;
    margin-left: 8px;
    font-weight: 500;
    text-transform: uppercase;
}   

.ruk_rating_snippet.ruk_snippet-desktop {
    align-items: center;
}

.ruk_rating_snippet i {
    font-size: 16px !important;
    line-height: 20px !important;
}

.essentials-suggestions{
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.suggestion-card{
    display: flex;
    padding: 10px 10px;
    border: 2px solid lightgray;
    flex-direction: column;
    gap: 20px;
    overflow-y: hidden;
    transition: 0.2s;
    border-radius: 6px;
    cursor: pointer;
}

.suggestion-header {
    display: flex;
    align-items: center;
    height: 60px;
    gap: 12px;
}

.accordion-info{
    display: flex;
    gap: 15px;
    justify-content: space-between;
    align-items: center;
    min-height: 60px;
}

.accordion-info img{
    cursor: pointer;
}


.accordion-info p{
    line-height: 18px;
    font-weight: 600;
    text-wrap: nowrap;
}

.suggestion-price{
    width: 30%;
    text-align: end;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: end;
    padding-right: 12px;
    line-height: 24px;
    gap: 4px;
    font-size: 14px;
}

.suggestion-price span{
    color: #C91C74;
    font-size 15px;
}

.product-accordion{
    display: flex;
    gap: 4px;
    position: relative;
    bottom: 10px;
}

.product-accordion img{
    width: 80px;
    height: 80px;
    cursor: pointer;
}

.item-accordion div{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.item-accordion{
    border-bottom: 1px solid #000;
    padding: 18px;
    padding-bottom: 8px;
    cursor: pointer;
    padding-left: 0px;
}

.item-accordion div :first-of-type{
    margin-bottom: 8px;
}

.item-accordion.active {
    padding-bottom: 18px;
}

.item-accordion p {
    font-weight: 500;
}

.items-accordion-wrapper {
    margin-top: 24px;
}

/* CSS: coloque no seu new-product-page.css */
.items-accordion-wrapper .item-accordion > div:nth-child(2) {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

/* Gira o chevron quando estiver ativo */
.items-accordion-wrapper .item-accordion.active svg.icon--chevron-next {
  transition: transform 0.3s ease;
}

.item-accordion-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start !important;
}

.item-accordion:last-of-type{
    border-bottom: none;
}

.accordion-toggle-icon {
  transition: transform 0.2s ease;
  cursor: pointer;
}

.btn-secondary .loader:before {
    border-color: var(--brand-pink) !important;
}

.suggested-variant {
    padding: 4px;
}

.suggested-variant img {
    border-radius: 4px;
}

.suggested-variant.active {
    outline: 1px solid black;
    border-radius: 4px;
}

.new-pdp-prod-description p {
    font-weight: 500;
    font-size: 10px;
}

.accordions-essentials-container h3 {
    margin-bottom: 12px;
}

.new-pdp-product-header {
    display: flex;
    justify-content: space-between;
    gap: 48px;
}

#new-pdp-item-price {
    font-size: 20px;
    font-weight: 500;
}

.swiper-button-prev,
.swiper-button-next{
    color: black !important;
    border-radius: 5px;
    padding: 12px;
    width: fit-content !important;
}

.swiper-button-prev,
.swiper-button-next svg{
    width: fit-content !important;
}

/* 
.swiper-button-prev::after,
.swiper-button-next::after {
  display: none;
} */

.custom-progress {
  display: flex;
  gap: 0px;
  margin-top: 10px;
  justify-content: center;
}

.progress-elem {
  flex: 1;
  height: 4px;
  background-color: #ccc;
  transition: background-color 0.3s ease;
}

.progress-elem.active {
  background-color: #000;
}

.pdp-bullet-points {
    display: flex;
    flex-direction: column;
    align-items: flex-start !important;
}

shopify-payment-terms {
    text-align: center;
}

.suggestion-card.open .accordion-toggle-icon{
    transform: rotate(225deg);
}

img.accordion-toggle-icon.check-icon {
    display: none;
    min-width: 25px;
    margin-right: 5px;
    position: relative;
    left: 2px;
}

.suggestion-card.active {
    border-color: #000;
}

.swiper-thumbs {
    min-width: 80px !important;
    height: 500px;
}

.swiper-thumbs .swiper-slide {
    width: 80px !important;
    height: 80px !important;
}

.suggested-product-info-wrapper p {
    font-size: 13px;
}

@media screen and (max-width: 1024px) {
    .product-images {
        width: calc(100vw - 32px);
    }
    .accordion-info p{
        text-wrap: wrap;
    }
    .brand-title, .product-info {
        max-width: calc(100vw - 32px);
    }
    .color-swatches {
        flex-wrap: wrap;
    }
    .color-swatch {
        width: 60px;
    }
    .swiper-thumbs{
        display: none !important;
    }
}

@media screen and (min-width: 850px) and (max-width: 1024px) {
    .swiper-slide {
        width: fit-content !important;
    }
}

@media screen and (min-width: 1024px) {
    .brand-title {
        margin-bottom: -24px;
    }
}

@media (min-width: 1000px) {
  .swiper-button-prev,
  .swiper-button-next {
        opacity: 0;
        width: 30% !important;
        top: 0 !important;
        height: 100% !important;
  }
}

@media screen and (max-width: 768px) {
    .suggested-product-info-wrapper p{
        font-size: 11px;
    }

    .suggestion-price {
        min-width: 120px;
        justify-content: end;
    }
}