body {
    overflow-x: hidden;
    font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto,
        Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif;
}

:root {
    --sci_pri: #232323;
    --grey: #f0f1f4;
    --white: #fff;
    --text: #000000;
    --border-color-title-style: ;
    --heading_font_size: 40px;
    --heading_font_size_mb: 24px;
    --heading_color: #232323;
    --heading_font_weight: 600;
}

.sl-header-top {
    background-color: #fff;
    padding: 10px 0;
}

.sl-header-logo img {
    max-height: 120px;
}

.sl-header-contact {
    font-size: 14px;
    color: var(--sci_pri);
    text-align: right;
}

.sl-header-contact a {
    color: var(--sci_pri);
    text-decoration: none;
}

.sl-cart-login {
    font-size: 14px;
    color: var(--sci_pri);
}

.sl-cart-login a {
    color: var(--sci_pri);
    text-decoration: none;
    margin-left: 10px;
}

.sl-navbar {
    background-color: #000;

}

.sl-navbar .nav-link {
    color: #fff !important;
    font-weight: bold;
    text-transform: uppercase;
    margin: 0 10px;
    font-size: 14px;
}

.sl-navbar .nav-link:hover {
    color: #ddd !important;
}

.scent-container {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
}

.scent-card img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    transition: transform 0.5s ease, filter 0.5s ease;
    margin-bottom: 15px;
}

.scent-btn {
    background-color: var(--sci_pri);
    color: #fff;
    border: none;
    padding: 8px 20px;
    font-weight: 600;
    text-transform: uppercase;
    transition: 0.3s;
}

.scent-btn:hover {
    background-color: var(--sci_pri);
    color: #fff;
}

.whatsapp-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    z-index: 1000;
}

.heading {
    color: var(--sci_pri);
}

.side_img {
    max-width: 800px;
    transition: transform 0.5s ease, filter 0.5s ease;
}

.para-txt {
    font-size: 16px;
    color: #000;
}


/* Section styles */
.earn-journey-section {
    margin: 50px 0;
}

/* Left side */
.earn-ways {
    background: #fff;
    padding: 40px;
    text-align: center;
}

.earn-ways h2 {
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 25px;
    font-size: 40px;
}

.earn-ways ol {
    padding-left: 15px;
    margin-bottom: 30px;
    text-align: center;
}

.earn-ways li {
    margin-bottom: 12px;
    font-size: 18px;
    line-height: 1.6;
    list-style-type: none;
}

.earn-btn {
    background: var(--sci_pri);
    color: #fff;
    padding: 15px 80px;
    text-transform: uppercase;
    font-weight: 600;
    border: none;
}

.earn-btn:hover {
    background: var(--grey);
    color: #000;
}

/* Right side */
.journey-start {
    background: #f8f6f2;
    padding: 40px;
    text-align: center;
}

.journey-start h2 {
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.journey-start p {
    margin-bottom: 40px;
    font-size: 16px;
}

.journey-step {
    text-align: center;
    padding: 15px;
}

.step-number {
    background: #c5a059;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px auto;
    font-size: 20px;
    font-weight: bold;
}

.journey-step h5 {
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.journey-step p {
    font-size: 15px;
    line-height: 1.5;
}

.marquee-container {

    color: #fff;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 10px 0;
}

/* Inner scrolling flex row */
.marquee-content {
    display: inline-flex;
    align-items: center;
    gap: 40px;
    animation: marquee-scroll 15s linear infinite;

}

/* Keyframes for scrolling */
@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Icon style */
.marquee-icon {
    width: 24px;
    height: 24px;
    fill: #232323;
    margin-right: 10px;
}

/* Text style */
.marquee-text {
    font-size: 30px;
    font-weight: 600;
    border-radius: 15px;
    margin: 0;
    color: #fff;
    padding: 15px 25px;
    background-color: #3c3c3c;
}

.marquee-text:hover {
    animation-play-state: paused;
    /* stops on hover */
}

.marquee-container:hover .marquee-content {
    animation-play-state: paused;
}

.mid_banner img {
    max-width: 100%;
    object-fit: contain;
}



.pack-title {
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
}

/* Card Design */
.pack-card {
    border: 6px solid var(--grey);
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    padding: 1rem;
    background: #fff;
    height: 100%;
}

.pack-card p {
    font-size: 11px;
}

.pack-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.pack-card img {
    max-height: 220px;
    margin: 0 auto 1rem;
    display: block;
}

.pack-price {
    font-weight: bold;
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

/* Footer */
.custom-footer {
    background-color: #1e1e1e;
    color: #fff;
    padding: 2rem 0;
    font-size: 0.9rem;
}

.custom-footer h6 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.custom-footer a {
    display: block;
    color: #ddd;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.custom-footer a:hover {
    color: #fff;
}

.newsletter-input {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    padding: 0.5rem;
    width: 100%;
}

.newsletter-btn {
    background-color: #fff;
    color: #000;
    font-weight: 600;
    border: none;
    padding: 0.5rem 1.2rem;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background-color: #f0f0f0;
}

.footer-payments {
    display: flex;
    justify-content: flex-end;
}

/* Payment icons container */
.list-payment {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    /* spacing between icons */
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Each payment item */
.list-payment__item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    /* consistent width */
    height: 40px;
    /* consistent height */
    border-radius: 4px;
    background-color: #fff;
    /* white background for all icons */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

/* SVG styling inside each item */
.list-payment__item svg {
    width: 38px;
    /* ensures all icons are the same size */
    height: 24px;
    display: block;
}

/* Hover effect */
.list-payment__item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.product_disclaimer h2 {
    font-weight: bold;
    text-align: center;
}

.product_disclaimer {
    margin-bottom: 80px;
}

.product_disclaimer p {
    font-weight: bold;
    text-align: center;
    margin: 10px 200px;
}

/* Optional: Responsive adjustments */
@media (max-width: 480px) {
    .list-payment__item {
        width: 50px;
        height: 32px;
    }

    .list-payment__item svg {
        width: 32px;
        height: 20px;
    }
}

@media (max-width: 820px) {
    .side_img {
        width: 100%;
    }

    .product_disclaimer p {
        margin: 0px;
    }
}



.scent-card:hover img {
    transform: scale(1.05);
    /* zoom in */
    filter: brightness(1.05);
    /* optional: slight highlight effect */
}

.side_img:hover {
    transform: scale(1.05);
    /* subtle zoom */
    filter: brightness(1.05);
    /* optional highlight */
}

.breadcrumb-item a {
    color: var(--white);
}

.breadcrumb-item.active {
    color: var(--white);
    text-decoration: underline;
}

.aboutus-header {
    background-color: #908b8b;
    /* same grey as screenshot */
    color: #fff;
    padding: 80px 15px;
    text-align: center;
}

.aboutus-header h1 {
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.aboutus-header p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 0.95rem;
    line-height: 1.6;
}

.breadcrumb-custom {
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.behind-scene-section {
    padding: 80px 15px;
    text-align: center;
    position: relative;
}

.behind-scene-section {
    padding: 80px 15px;
    position: relative;
}

.behind-scene-section h2 {
    font-weight: 700;
    margin-bottom: 50px;
    text-transform: uppercase;
    text-align: center;
}

.scene-content {
    display: flex;
    align-items: stretch;
    /* ✅ make both equal height */
    justify-content: center;
    position: relative;
    flex-wrap: wrap;
    gap: 0;
    margin-top: 80px;
}

/* Image block */
.scene-image {
    flex: 1 1 50%;
    max-width: 50%;
    position: relative;
    z-index: 2;
    /* on top */
}

.scene-image img {
    width: 100%;
    height: 100%;
    /* ✅ take full height */
    object-fit: cover;
    /* ✅ ensures no distortion */
    border-radius: 0;
    display: block;
}

/* Text block with grey bg */
.scene-text {
    flex: 1 1 50%;
    max-width: 50%;
    background: #f4f4f4;
    padding: 60px;
    text-align: left;
    position: relative;
    z-index: 1;
    /* behind image */
    margin-left: -10px;
    /* ✅ overlap effect */
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* center text vertically */

}

/* Titles + paragraphs */
.scene-text h3 {
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    color: var(--text);
}

.scene-text p {
    line-height: 1.7;
    margin-bottom: 30px;
    text-align: center;
    color: var(--text);
}

/* Button */
.scene-text .btn-custom {
    background-color: #111;
    color: #fff;
    padding: 10px 25px;
    text-transform: uppercase;
    font-weight: 600;
    border: none;
    border-radius: 0;
}

.btn {min-width:130px;
    background-color: #111;
    color: #fff;
    padding: 10px 25px;
    text-transform: uppercase;
    font-weight: 600;
    border: none;
    border-radius: 0;
}

/* Zoom effect on image inside scene-image */
.scene-image img {
    transition: transform 0.4s ease, filter 0.4s ease;
}

.scene-image:hover img {
    transform: scale(1.05);
    /* zoom in */
    filter: brightness(1.05);
    /* slight highlight */
}

/* Mobile view: stack */
@media (max-width: 991px) {
    .scene-content {
        flex-direction: column;
    }

    .scene-image,
    .scene-text {
        max-width: 100%;
        margin-left: 0;
    }

    .scene-text {
        text-align: center;
        padding: 40px 20px;
    }
}


.wsu-section {
    text-align: center;
    padding: 60px 20px;
    background-color: #fff;
}

.wsu-title {
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #000;
}

.wsu-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.wsu-list li {
    font-size: 1rem;
    color: #000;
    line-height: 1.8;
}

.wsu-btn {
    background-color: #000;
    color: #fff;
    border: none;
    font-weight: 700;
    padding: 12px 40px;
    border-radius: 0;
    transition: 0.3s ease;
    text-transform: uppercase;
}

.wsu-btn:hover {
    background-color: #333;
}

button .btn:hover {
    background-color: var(--white) !important;
    border: 1px solid #000 !important;
    color: #000 !important;
}

.no-bg-color {
    background-color: #fff !important;
}


.faq-title {
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.faq-subtext {
    font-size: 0.95rem;
    color: #444;
}

.faq-link a {
    color: #198754;
    text-decoration: none;
}

.faq-link a:hover {
    text-decoration: underline;
}

.faq-filter {
    margin-top: 2rem;
}

.faq-filter select {
    border-radius: 0.25rem;
    border-color: #dee2e6;
}

.faq-help-title,
.faq-topic-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.faq-help-title::after,
.faq-topic-title::after {
    content: "";
    display: block;
    width: 70px;
    height: 3px;
    background-color: #72c29e;
    margin-top: 6px;
}

.faq-accordion .accordion-item {
    border: none;
    border-radius: 0;
    margin-bottom: 8px;
    background-color: #f9f9f9;
}

.faq-accordion .accordion-button {
    background-color: #f9f9f9;
    color: #212529;
    font-weight: 500;
    box-shadow: none !important;
    border: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background-color: #f9f9f9;
    color: #000;
}

.faq-help-text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
}


.faq-contact {
    margin-top: 30px;
    text-align: right;
    font-size: 14px;
}

.faq-btn-support {
    background-color: #f25f4c;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 15px;
    border-radius: 3px;
    margin-left: 10px;
}

.faq-btn-support:hover {
    background-color: #d94a39;
}

.contact-section {
    padding: 60px 0;
}

.contact-heading {
    text-align: center;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 1px;
}

.contact-subtext {
    text-align: center;
    margin-bottom: 50px;
    font-size: 14px;
    color: #555;
}

.touch-heading {
    text-align: center;
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 50px;
}

/* ==== FORM SIDE ==== */
#contact_form .form-label {
    font-weight: 600 !important;
    color: #111 !important;
}

#contact_form .form-input {
    border-radius: 0 !important;
    border: 1px solid #ccc !important;
    box-shadow: none !important;
    padding: 10px !important;
}

#contact_form .form-input {
    position: static !important;
    width: 100% !important;
    text-align: left !important;
}

#contact_form .form-input:focus {
    border-color: #000 !important;
    box-shadow: none !important;
}

#contact_form .form-btn {
    background-color: #000 !important;
    color: #fff !important;
    padding: 10px 25px !important;
    border-radius: 0 !important;
    transition: 0.3s !important;
}

#contact_form .form-btn:hover {
    background-color: #333 !important;
}

/* ==== INFO SIDE ==== */
.help-box {
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 5px;
}

.help-title {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 15px;
}

.help-text {
    font-size: 14px;
    margin-bottom: 25px;
    color: #444;
}

.help-btn {
    background-color: transparent;
    border: 1px solid #000;
    color: #000;
    padding: 1px 25px;
    border-radius: 0;
    transition: 0.3s;margin-bottom:12px;
}

.help-btn:hover {
    background-color: #000;
    color: #fff;
}

.help-contact p {
    margin-bottom: 10px;
    font-size: 14px;
    color: #333;
}

.help-contact i {
    margin-right: 8px;
    color: #000;
}

.gro-heading {
    font-size: var(--heading_font_size);
    color: var(--heading_color);
    line-height: 1.3 !important;
    font-weight: var(--heading_font_weight);
}

.scent-section {
    background-color: #fff;
    color: #000;
}

.scent-btn {
    background-color: #fff;
    color: #000;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
    box-shadow: none;
    border: none;
}

.scent-btn:focus {
    box-shadow: none;
}

.scent-body {
    background-color: #fff;
    font-size: 1rem;
    color: #333;
    line-height: 1.7;
    padding: 35px 12px;
}
.scent-body p{
    font-size: 13px;
}
.scent-body ul>li{
    font-size: 13px;
margin-left: 15px;
    list-style-type: disc;
}
.scent-image {
    max-width: 400px;
}

.scent-accordion .accordion-item {
    border-top: 2px solid #000000;
    border-bottom: 2px solid #000000;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    border-radius: 0;
}

.scent-accordion .accordion-button::after {
    transform: scale(1.5);
    filter: invert(0);
}

.scent-accordion .accordion-button:not(.collapsed)::after {
    transform: rotate(180deg) scale(1.5);
}

.bounce-animation {
  animation: bounceUpDown 2.5s ease-in-out infinite;
}

@keyframes bounceUpDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px); /* controls how high it bounces */
  }
}

.bounce-animation {
  animation: bounceUpDown 2s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite;
}
