/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', Arial, sans-serif;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;

    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
    color: #333;
}

/* Utility classes */
.center {
    text-align: center;
    margin: 20px 0;
}

.centerproducts {
    text-align: center;
    margin: 5%;
}

/* Header Styles */
header {
    background-color: #000;
    color: white;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

@media (max-width: 768px) {
    header{
        position: fixed; /* entire header sticks during scroll */
        top:0;
        width:100%;
        z-index:1000;
    }
    nav {
        position: static;
    }
}

.header-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    position: relative;
    /* Prevent the logo container from shrinking and ensure it stays visible */
    flex-shrink: 0;
}

.logo img {
    /* Responsive height – scales with viewport width but remains within sensible bounds */
    height: clamp(40px, 5vw, 80px);
    width: auto;
    display: block;
    /* Remove horizontal offset so the logo is always visible */
    position: relative;
    right: 0;
    scale: 1.5;
}

nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

nav ul {
    display: flex;
    list-style: none;
    justify-content: center;
}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    color: white;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #ffc107;
}

/* Social Icons */
.social-icons {
    position: relative;
    display: flex;
    gap: 15px;
    
}

.social-icons img {
    margin-top: 10px;
    transform: scale(50%);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.social-icons img:hover {
    transform: scale(1.2);
}

/* Language Switcher */
.language-buttons {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 15px;
}

.lang-btn {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    padding: 6px 10px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lang-btn:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

.lang-btn.active {
    background-color: #007bff;
    color: white;
}

.lang-btn.active:hover {
    background-color: #0056b3;
    opacity: 1 !important;
}

.lang-separator {
    color: #666;
    font-size: 16px;
    font-weight: 300;
    margin: 0 2px;
}

/* Mobile menu */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 5px 10px;
    transition: transform 0.3s ease;
    position: absolute;
    top: 10px;
    left: 85%;
}

.menu-toggle:hover {
    transform: scale(1.1);
}



/* Hero Section */
.hero {
    background-color: #000;
    color: white;
    text-align: center;
    padding: 7% 20px;
    position: relative;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    max-width: 450px;
    margin: 0 auto;
}

/* Banner Section */
.banner {
    background-color: #EEEEEE;
    color: black;
    text-align: center;
    padding: 30px 20px;
}

.banner h2 {
    font-size: 32px;
    max-width: fit-content;
    margin: 0 auto 15px;
    
}

.banner-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.aromaexample {
    display: block;
    float: left;
    width: 40%;
    max-width: 400px;
    margin-right: 20px;
}

.aromaexampletext {
    padding: 20px;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-left: 37%;
    text-align: left;
}

.feature-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 800px;
}

.feature-item h3 {
    font-size: 24px;
    color: #000;
    margin-bottom: 5px;
}

.feature-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

.aromaexampletext ul {
    margin: 0;
    padding: 0;
}
.aromaexampletext h3 {
    font-size: 22.6px;
    margin-right: 50%;
    color: black;
    margin-bottom: 10px;
}

.banner-icons {
    display: flex;
    justify-content: space-around;
    margin-top: 3%;
    width: 100%;
}

.icon-item {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 300px;
}

.icon-item img {
    transform: scale(1.5);
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
}

.icon-item p {
    font-size: 12px;
    text-align: center;
}

.banner-text .cta-button{
    margin-top: 5%;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background-color: #90EC4F;
    color: #000;
    padding: 6px 20px;
    margin-top: 2%;
    border-radius: 10px;
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    border: 2px solid #4caf50;
    cursor: pointer;
    transition: all 0.3s ease;
}
.button-submit{
    display: flex;
    justify-content: center;
    align-items: center;
}
.cta-banner-button {
    display: inline-block;
    background-color: #90EC4F;
    color: #000;
    padding: 3px 50px;
    margin-top: 5%;
    margin-right: 0%;
    border-radius: 10px;
    font-weight: 540;
    font-size: 25px;
    text-align: center;
    border: 2px solid #4caf50;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover , .cta-banner-button:hover {
    background-color: #8ae34d;
    border-color: #3e8e41;
    transform: scale(1.05);
}

/* Products Section */
.products {
    padding: 40px 20px;
    
    max-width: 1200px;
    margin: 0 auto;
}

/* Section Title - Global Style */
.section-title {
    font-weight: 700;
    color: black;
    font-size: 40px;
    text-align: center;
    margin-bottom: 40px;
}

.product-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.product-item {
    flex: 0 1 300px;
    text-align: center;
    transition: transform 0.3s ease;
}

.product-image-container {
    position: relative;
    width: 100%;
    height: 300px;
    margin-bottom: 15px;
    overflow: hidden;
}

.product-images {
    position: relative;
    width: 100%;
    height: 100%;
    scale: 0.9;
}

.product-images img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-images img.active {
    opacity: 1;
}

.image-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.image-nav-btn:hover {
    background: rgba(0, 0, 0, 0.7);
}

.image-nav-btn.prev {
    left: 10px;
}

.image-nav-btn.next {
    right: 10px;
}

.product-item h3 {
    font-size: 24px;
    margin: 15px 0 10px;
    color: #333;
}

.product-item p {
    color: #333;
    margin: 0;
    font-size: 20px;
}

.centerproducts {
    text-align: center;
    margin-top: 40px;
}

.centerproducts .cta-button {
    text-transform: uppercase;
    font-size: 20px;
    background-color: #90EC4F;
}

@media (max-width: 768px) {
    .product-container {
        gap: 40px;
    }
    
    .product-item {
        flex: 0 1 100%;
        max-width: 400px;
    }
    
    .product-image-container {
        height: 250px;
    }

    .aromaexampletext {
        margin-left: 20px;
        margin-right: 20px;
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .product-item {
        flex: 0 1 100%;
    }
    
    .product-image-container {
        height: 200px;
    }
    
    .product-item h3 {
        font-size: 20px;
    }
    
    .product-item p {
        font-size: 18px;
    }

    .aromaexampletext {
        margin-left: 10px;
        margin-right: 10px;
        padding: 5px;
    }
}

/* Aromatherapy Section */
.aromatherapy-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 60px 20px;
}
.aromatherapy{
    background-color: #F0F0F0;
}

.aroma-icons {
    display: none;
}

.aroma-icon {
    display: none;
}

/* Process Steps */
.process {
    background-image: url('../img/imgetapirobot.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 0.5%;
    max-width: 100%;
    width: 100%;
    margin: 0;
    position: relative;
}

.process-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1000px;
    margin: 60px auto;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 140px;
    margin: 0 10px;
}

.step-number {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 80px;
    font-weight: bold;
    color: #000;
    height: 80px;
}

.step-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 70px;
}

.step-text h3 {
    font-size: 18px;
    margin: 5px 0;
    font-weight: bold;
}

.step-text p {
    font-size: 16px;
    margin: 0;
}

.step-arrow {
    font-size: 24px;
    color: #000;
    display: flex;
    align-items: center;
}

/* Delivery Section */
.delivery {
    background-color: #fff;
    padding: 60px 20px;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.delivery-content {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.delivery-left {
    flex: 1;
    max-width: 50%;
}

.delivery-right {
    flex: 1;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.delivery-options {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10%;
    margin-left: 30%;
}

.delivery-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100px;
}

.delivery-optionDHL {
    flex-direction: column;
    align-items: center;
    width: 100px;
    display: flex;
}

.DHLBOX {
    position: relative;
    width: 99.58px;
    height: 52.98px;
    background-color: #f6d300;
}

.delivery-option img {
    margin-bottom: 10px;
}

.delivery-optionDHL img {
    position: sticky;
    bottom: 100%;
}

.delivery-map {
    width: 100%;
    text-align: left;
}

.delivery-map img {
    max-width: 100%;
    height: auto;
}

.delivery-article {
    font-size: 18px;
    line-height: 1.6;
}

.delivery-article p {
    margin-bottom: 15px;
}

.delivery-link {
    display: block;
    background: none;
    color: #FF0000;
    padding: 5px 0;
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 16px;
    text-align: left;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    width: auto;
    box-sizing: border-box;
}

.delivery-link:hover {
    color: #CC0000;
    text-decoration: none;
}

.delivery-link:active {
    color: #990000;
}

.delivery-links {
    display: block;
    width: 100%;
}

/* About Us Section */
.about_us {
    position: relative;
    padding: 60px 20px 25%;
    margin: 0 auto;
    overflow: hidden;
}

.abtusback {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.abtusback img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about_us-items {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.about_us-item {
    max-width: 600px;
    width: 100%;
    text-align: center;
    padding: 20px;
    background-color: rgba(245, 245, 245, 0.85);
    border-radius: 5px;
    margin: 0 auto;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
    scale: 1.5;
}

.about_us-item h3 {
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: bold;
}

.about_us-item p {
    line-height: 1.6;
    font-size: 16px;
    text-align: left;
    margin-top: 2%;
}

/* FAQ Section */
.faq {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
}

.faq h2 {
    font-weight: 700;
    color: black;
    font-size: 40px;
    text-align: center;
    margin-bottom: 30px;
}

.faq-container {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.faq article {
    border-bottom: 1px solid #ddd;
    position: relative;
}

.faq article:last-child {
    border-bottom: none;
}

.faq article h3 {
    background-color: #fff;
    padding: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    position: relative;
}

.faq article h3::after {
    content: "▼";
    position: absolute;
    right: 15px;
    font-size: 18px;
    color: #333;
}

.faq article.active h3::after {
    content: "▲";
}

.faq article p {
    padding: 15px;
    border-top: 1px solid #eee;
    background-color: #fff;
    display: none;
}

.faq article.active p {
    display: block;
}

.faq-ask-button {
    display: block;
    width: 250px;
    background-color: #90EC4F;
    color: #000;
    padding: 12px 20px;
    margin: 30px auto 0;
    border-radius: 30px;
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-ask-button:hover {
    background-color: #8ae34d;
    transform: scale(1.05);
}

/* Contact Form */
.contact {
    background-color: #f9f9f9;
    padding-bottom: 50px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.success-message {
    margin-top: 20px;
    padding: 15px;
    background-color: #dff0d8;
    color: #3c763d;
    border-radius: 4px;
    text-align: center;
}

.success-message p {
    margin: 0;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 40px 20px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo {
    scale: 0.6;
    height: auto;
    margin-left: -40%;
}
.footer-contact{
    text-align: right;
    margin-right:-25%;
}
.footer-contact p {
    margin-top: 5px;
}

.footer-bottom {
    flex-basis: 100%;
    width: 100%;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    margin-top:20px;
}


.textagreements {
    color: white;
    transition: color 0.3s;
}

.textagreements:hover {
    color: #ffc107;
}

/* Mobile Responsive Design - Updated for horizontal sections */
@media (max-width: 480px) {
    html, body {
        overflow-x: hidden;
        max-width: 100%;
    }
    
    * {
        box-sizing: border-box;
    }
    .language-buttons {
        margin-left: 10px;
        gap: 6px;
    }
    
    .lang-btn {
        font-size: 12px;
        padding: 4px 8px;
    }
    
    .lang-separator {
        font-size: 14px;
    }

    .delivery-link {
        font-size: 13px;
    }

    .header-container {
        padding: 10px;
    }

    .logo {
        transform: scale(1.5);
        padding-left: 20%;
        margin-left: 15%;
    }
    .logo img{
        right: 0%;
        scale:1;
    }
    .logo{
        padding-left: 0%;
        margin-left: 0%;
        left:5%;
    }

    nav ul {
        flex-direction: column;
        width: 100%;
        text-align: center;
        padding: 10px 0;
    }

    nav ul li {
        margin: 8px 0;
    }

    .social-icons {
        justify-content: center;
        position: absolute;
        margin-top: 55%;

    }

    .hero {
        padding: 120px 15px 40px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 16px;
    }

    .banner-content {
        flex-direction: column;
    }

    .aromaexample {
        float: none;
        width: 90%;
        margin: 0 auto 20px;
    }

    .aromaexampletext {
        margin-left: 0;
        text-align: center;
    }
    

    .aromaexampletext h3 {
        margin-right: 0;
        text-align: center;
        
    }

    .banner-icons {
        flex-direction: column;
        align-items: center;
    }

    .icon-item {
        margin-bottom: 15px;
    }

    .cta-button {
        padding: 5px 40px;
        font-size: 18px;
    }

    /* Products Section - Horizontal Mobile Layout */
    .product-slider {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        gap: 20px;
        padding: 20px 10px;
        -webkit-overflow-scrolling: touch;
    }

    .product-item {
        flex: 0 0 auto;
        min-width: 220px;
        width: 250px;
        margin-left: 0;
        padding: 20px 10px;
        transform: scale(1);
        margin-bottom: 0;
        scroll-snap-align: start;
        text-align: center;
        background: white;
        border-radius: 10px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    .product-item img {
        width: 100%;
        height: 180px;
        object-fit: contain;
        border-radius: 5px;
        padding: 10px;
        background: white;
    }

    .product-item h3 {
        font-size: 16px;
        margin: 10px 0 5px;
        color: #333;
    }

    .product-item p {
        font-size: 14px;
        color: #666;
        margin: 0;
    }

    /* Aromatherapy Section - Horizontal Mobile Layout with Slider */
    .aromatherapy {
        position: relative;
    }
/*
    .aroma-slider-container {
        position: relative;
        overflow: hidden;
        margin: 0 auto;
        max-width: 100%;
    }*/

    .aroma-icons {
        display: flex;
        flex-direction: row;
        transition: transform 0.3s ease;
        gap: 20px;
        padding: 20px 10px;
    }

    .aroma-icon {
        flex: 0 0 auto;
        min-width: 100px;
        width: 120px;
        transform: scale(1);
        margin-bottom: 0;
        text-align: center;
        background: white;
        border-radius: 10px;
        padding: 15px 10px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    .aroma-icon img {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        margin-bottom: 10px;
        object-fit: cover;
    }

    .aroma-icon p {
        font-size: 14px;
        margin: 0;
        color: #333;
        font-weight: 500;
    }

    /* Slider navigation - show on mobile */
    .slider-nav {
        display: flex;
        justify-content: center;
        margin-top: 20px;
        gap: 10px;
    }

    .slider-dot {
        width: 12px;
        height: 12px;
        background-color: #ddd;
        border-radius: 50%;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

    .slider-dot.active {
        background-color: #333;
    }

    /* Add scrollbar styling for better UX */
    .product-slider::-webkit-scrollbar,
    .aroma-icons::-webkit-scrollbar {
        height: 4px;
    }

    .product-slider::-webkit-scrollbar-track,
    .aroma-icons::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .product-slider::-webkit-scrollbar-thumb,
    .aroma-icons::-webkit-scrollbar-thumb {
        background: #888;
        border-radius: 10px;
    }

    .product-slider::-webkit-scrollbar-thumb:hover,
    .aroma-icons::-webkit-scrollbar-thumb:hover {
        background: #555;
    }

    .process-steps {
        flex-direction: column;
    }

    .step-arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    }

    .step-item {
        width: 100%;
        margin-bottom: 10px;
    }

    .delivery-content {
        flex-direction: column;
    }

    .delivery-left, .delivery-right {
        max-width: 100%;
    }

    .delivery-options {
        justify-content: center;
        margin-left: 0;
        gap: 20px;
    }

    .about_us {
        padding-bottom: 50%;
    }
    .about_us-item{
        scale: 1;
    }

    .faq {
        padding: 10px;
    }

    .faq h2 {
        font-size: 28px;
    }

    .faq article h3 {
        font-size: 16px;
        padding: 12px 30px 12px 15px;
    }

    .contact-form {
        padding: 0 10px;
    }

    .footer-logo{
        margin-left: 10px;
    }
    .footer-contact {
        text-align: center;
        margin-right: 0;
    }

    .aroma-slider {
        gap: 15px;
        padding: 10px;
    }

    .aroma-item {
        width: 120px;
        padding: 10px;
    }

    .aroma-item img {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 768px) {
    .language-buttons {
        margin-left: 10px;
        gap: 6px;
    }
    
    .lang-btn {
        font-size: 12px;
        padding: 4px 8px;
    }
    
    .lang-separator {
        font-size: 14px;
    }

    .delivery-link {
        font-size: 14px;
    }

    .header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }

    .menu-toggle {
        display: block;
        z-index: 101;
    }

    nav {
        flex-direction: column;
        position: static; /* inside fixed header */
        width: 100%;
        background-color: #000;
        padding: 15px 0;
        box-shadow: 0 5px 10px rgba(0,0,0,0.2);
    }

    nav ul {
        justify-content: center;
        margin-bottom: 10px;
    }

    .banner-content {
        flex-wrap: wrap;
    }

    .aromaexample {
        width: 80%;
        margin: 0 auto 20px;
        float: none;
    }

    .aromaexampletext {
        margin-left: 0;
    }

    .aromaexampletext h3 {
        margin-right: 0;
    }

    /* Products Section - Horizontal Tablet Layout */
    .product-slider {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 15px;
        gap: 20px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .product-item {
        flex: 0 0 auto;
        min-width: 220px;
        scroll-snap-align: start;
        background: white;
        border-radius: 10px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        padding: 15px;
    }

    .product-item img {
        width: 100%;
        height: 180px;
        object-fit: contain;
        padding: 10px;
        background: white;
    }

    /* Aromatherapy Section - Horizontal Tablet Layout */
    .aroma-slider-container {
        position: relative;
        overflow: hidden;
        margin: 0 auto;
        max-width: 100%;
    }

    .aroma-icons {
        display: flex;
        flex-direction: row;
        transition: transform 0.3s ease;
        gap: 20px;
        padding: 20px 10px;
        justify-content: flex-start;
    }

    .aroma-icon {
        flex: 0 0 auto;
        min-width: 100px;
        background: white;
        border-radius: 10px;
        padding: 15px 10px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    .aroma-icon img {
        object-fit: cover;
    }

    .slider-nav {
        display: flex;
        justify-content: center;
        margin-top: 20px;
        gap: 10px;
    }

    .process-steps {
        flex-wrap: wrap;
        justify-content: center;
    }

    .delivery-content {
        flex-direction: column;
    }

    .delivery-options {
        margin-left: 0;
        justify-content: center;
    }

    .about_us {
        padding-bottom: 40%;
    }

    .footer-container {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .aroma-slider {
        scroll-padding: 0 20px;
        margin: 0;
        padding: 15px;
    }

    .aroma-item {
        width: 120px;
        padding: 10px;
    }

    .aroma-item img {
        width: 50px;
        height: 50px;
    }
}




@media (max-width: 768px) {
    .aroma-item {
        width: 150px;
        padding: 10px;
        transform: scale(1.2);
        margin: 20px 15px;
    }

    .aroma-item img {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 480px) {
    .aroma-item {
        width: 120px;
        padding: 8px;
        transform: scale(1);
        margin: 10px;
    }

    .aroma-item img {
        width: 100px;
        height: 100px;
    }
}

/* Remove old styles */
.slider-nav,
.slider-dot,
.slider-dot.active {
    display: none;
}

.aroma-icons,
.aroma-icon {
    display: none;
}

/* Benefits Section Slider Controls */


.slider-btn {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    font-size: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}



/* Hide scrollbar for aroma slider *//*
.aroma-slider::-webkit-scrollbar{display:none;}*/

/*
.aroma-slider{
    width: 625px;
}
    */

.aroma-item{
    border-radius:50%;
    transition:transform 0.3s ease;
    
}
.aroma-item img{
    width:232px;
    height:232px;
}
.aroma-item:hover{transform:translateY(-6px);}


/* Ensure exactly 5 items are visible on desktop */

/* Tablet-specific optimizations */
@media (min-width: 600px) and (max-width: 1024px) {
    /* General */
    body {
        font-size: 1.05rem; /* slightly larger text for readability */
    }

    /* Header */
    header {
        position: sticky;
    }
    .menu-toggle {
        display: none; /* use full nav on tablets */
    }
    nav {
        flex-direction: row;
        position: static;
        width: auto;
        background: transparent;
        box-shadow: none;
        padding: 0;
    }
    nav ul {
        flex-direction: row;
        gap: 25px;
    }

    /* Products grid – two per row */
    .product-container {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(45%, 1fr));
        gap: 40px;
    }
    .product-item {
        max-width: 100%;
        flex: none;
    }

    /* Banner icons layout */
    .banner-icons {
        justify-content: space-between;
        gap: 40px;
    }

    /* Delivery section two-column layout */
    .delivery-content {
        flex-direction: row;
        gap: 40px;
    }
    .delivery-left,
    .delivery-right {
        max-width: 50%;
    }

    /* About us items */
    .about_us-item {
        scale: 1.2;
        max-width: 45%;
    }

    /* FAQ wider text */
    .faq {
        max-width: 90%;
    }
}

