/* Purchase Buttons */
.purchase_buttons {
    position: fixed;
    top: 110px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
    align-items: flex-end;
}

.purchase-btn {
    background: #606D61;
    color: #ffffff;
    border: none;
    padding: 8px 14px;
    border-radius: 8px 0 0 8px;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    overflow: hidden;
}

.purchase-btn span {
    display: inline-block;
    max-width: 0;
    width: 0;
    opacity: 0;
    transition: max-width 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease-out 0.1s;
    white-space: nowrap;
    vertical-align: baseline;
}

.purchase-btn:hover {
    background: #4d5751;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.retail-purchase:hover span {
    max-width: 200px;
    width: auto;
    opacity: 1;
}

.distributor-purchase:hover span {
    max-width: 200px;
    width: auto;
    opacity: 1;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('images/slider/distributors_slider.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-slider, .pws-section {
    position: relative;
    width: 100%;
    height: 100%;
}

.pws-section {
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.3) 20%, rgba(255, 255, 255, 0.4) 20%, rgba(255, 255, 255, 0.4) 40%, rgba(255, 255, 255, 0.5) 40%, rgba(255, 255, 255, 0.5) 60%, rgba(255, 255, 255, 0.6) 60%, rgba(255, 255, 255, 0.6) 80%, rgba(255, 255, 255, 0.7) 80%), linear-gradient(-45deg, rgba(180, 193, 149,0) 20%, rgba(180, 193, 149,.1) 20%, rgba(180, 193, 149,.1) 40%, rgba(180, 193, 149,.2) 40%, rgba(180, 193, 149,.2) 60%, rgba(180, 193, 149,.4) 60%, rgba(180, 193, 149,.4) 80%, rgba(180, 193, 149,.6) 80%), linear-gradient(180deg, rgba(255, 255, 255,0) 20%, rgba(255, 255, 255,.4) 20%, rgba(255, 255, 255,.4) 40%, rgba(255, 255, 255,.6) 40%, rgba(255, 255, 255,.6) 60%, rgba(255, 255, 255,.8) 60%, rgba(255, 255, 255,.8) 80%, rgba(255, 255, 255,.9) 80%), url('images/slider/distributors_slider.jpg') center/cover no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 40px 70px;
}

.pws-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.pws-header {
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.pws-welcome-text {
    font-size: 2rem;
    font-weight: 700;
    color: #000;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.pws-flag-icon {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 4px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.pws-title {
    font-size: 2rem;
    font-weight: 700;
    color: #000;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.pws-content {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    justify-content: center;
    flex-wrap: wrap;
}

.pws-avatar-container {
    flex: 0 0 auto;
}

.pws-avatar {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: #606D61;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: relative;
}

.pws-avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.pws-avatar i {
    font-size: 100px;
    color: #ffffff;
}

.pws-info {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pws-info-item {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.pws-label {
    font-size: 1.25rem;
    font-weight: 700;
    color: #000;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
}

.pws-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #000;
    font-family: 'Inter', sans-serif;
}

.pws-social-bar {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.pws-social-link {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    border: none;
    padding: 0;
    background: transparent;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.pws-social-link.fb { background: #3b5998; }
.pws-social-link.ig {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
.pws-social-link.blog { background: #f57c00; }
.pws-social-link.wa { background: #25D366; }
.pws-social-link.tg { background: #0088cc; }
.pws-social-link.wechat { background: #09b83e; }

.pws-social-link i {
    font-size: 24px;
}

.pws-social-link:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    opacity: 0.9;
}

.pws-distributor-btn {
    background: #606D61;
    color: #fff;
    border: none;
    padding: 12px 40px;
    border-radius: 28px;
    font-size: 1.25rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    align-self: flex-start;
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
    margin-top: 10px;
}

.pws-distributor-btn:hover {
    background: #4d5751;
    box-shadow: 0 10px 24px rgba(0,0,0,0.25);
    transform: translateY(-2px);
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    pointer-events: none; /* prevent blocking interactions when hidden */
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    pointer-events: auto; /* allow interactions on active slide */
    z-index: 2;
}

/* Specific slide backgrounds */
.hero-slide.slide-1 { background: url('images/slider/distributors_slider.jpg') center/cover no-repeat; }
.hero-slide.slide-2 { background: url('images/slider/opportunities_slider.jpg') center/cover no-repeat; }
.hero-slide.slide-3 { background: url('images/slider/company_slider.jpg') center/cover no-repeat; }

.hero-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 51%;
    height: 100%;
    /*background: rgba(44, 62, 80, 0.8);*/
    display: flex;
    align-items: center;
    padding: 0 60px;
}

.hero-content {
    color: black;
    margin-top: 3rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 1.2;
    position: relative;
    padding-left: 40px;
    display: inline-block;
}

.hero-title::before,
.hero-title::after {
    content: '"';
    font-size: 4rem;
    position: absolute;
    top: -10px;
}

.hero-title::before {
    left: 0;
}

.hero-title::after {
    position: relative;
    margin-left: 10px;
}

.shop-now-btn {
    background: #6c757d;
    color: #ffffff;
    border: none;
    padding: 12px 40px;
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
    text-decoration: none;
    display: inline-block;
    margin-left: 40px;
}

.shop-now-btn:hover {
    background: #5a6268;
    box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.25);
    transform: translateY(-2px);
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.8);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 1);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

/* Promotional Bar */
.promo-bar {
    /*background: #2c3e50;*/
    background: #606D61;
    padding: 10px 0;
    text-align: center;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
}

.promo-bar .container {
    display: flex;
    animation: scroll-left 20s linear infinite;
    width: max-content;
}

.promo-bar span {
    color: white;
    text-decoration: none;
    margin: 0 40px;
    font-size: 1rem;
    font-weight: 500;
    white-space: nowrap;
}

@keyframes scroll-left {
    0% {
        transform: translateX(50%);
    }
    30% {
        transform: translateX(0);
    }
    60% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Welcome Section */
.welcome {
    background: #f8f9fa;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.welcome::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/background/welcome_background.jpg') center/cover no-repeat;
    z-index: -1;
}

.welcome-title {
    font-size: 3rem;
    color: #ff0000;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
}

.welcome-subtitle {
    font-size: 2.5rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 700;
}

.welcome-text {
    font-size: 1.1rem;
    color: #2c3e50;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

.features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.feature-item {
    text-align: center;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    filter: drop-shadow(4px 4px 3px rgba(0, 0, 0, 0.3));
}

.feature-icon.globe {
    background-image: url('images/icon/welcome icon-01.png');
}

.feature-icon.trophy {
    background-image: url('images/icon/welcome icon-02.png');
}

.feature-icon.leaf {
    background-image: url('images/icon/welcome icon-03.png');
}

.feature-icon.community {
    background-image: url('images/icon/welcome icon-04.png');
}

.feature-item p {
    color: #2c3e50;
    font-weight: 500;
}

/* Why Choose Us Section */
.why-choose-us {
    background: white;
    padding: 80px 0;
}

.section-title {
    font-size: 3rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.feature-image-link {
    display: block;
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
    order: 0; /* default: image first */
}

.feature-image {
    width: 100%;
    height: 100%; /* let image natural height drive layout */
    object-fit: cover; /* protect aspect if constrained by container */
    display: block;
    transition: transform 0.3s ease;
}

.feature-image-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 75%; /* 3/4 of the image height */
    background: linear-gradient(to top, rgba(96, 109, 97, 0.85), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-image-link:hover .feature-image {
    transform: scale(1.05);
}

.feature-image-link:hover::after {
    opacity: 1;
}

/* Alternate layout by column: even columns (2,4) show text first, image last */
.features-grid .feature-card:nth-child(2n) h3 { order: 1; }
.features-grid .feature-card:nth-child(2n) p { order: 2; }
.features-grid .feature-card:nth-child(2n) .feature-image-link {
    order: 3;
    margin-top: 15px;
    margin-bottom: 0;
}

.feature-card h3 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 600;
}

.feature-card p {
    color: #2c3e50;
    line-height: 1.6;
    text-align: justify;
}

/* Top Products Section */
.top-products {
    background: url('images/background/top_products_background.jpg') top center/cover no-repeat;
    padding: 80px 0;
}

.products-content {
    text-align: center;
    margin-bottom: 30px;
}

.products-title {
    color: #000;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.products-subtitle {
    color: #000;
    font-size: 2rem;
    font-weight: 500;
    opacity: 0.9;
}

/* Products grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 30px;
    justify-items: center;
}

.product-card {
    background: #ffffff;
    padding: 12px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0,0,0,0.08);
    width: 100%;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.product-image {
    display: block;
    width: 100%;
    height: auto;
}

.products-cta {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.view-products-btn {
    background: #6c757d;
    color: #ffffff;
    border: none;
    padding: 12px 40px;
    border-radius: 28px;
    font-size: 1.25rem;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.view-products-btn:hover {
    background: #5a6268;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.25);
}

/* Become a Member Section */
.become-member {
    height: 500px;
    background: url('images/background/become_member_background.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    position: relative;
}

.member-content {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 0 60px;
}

.member-title {
    font-size: 3rem;
    color: #ff0000;
    margin-bottom: 20px;
    font-weight: 700;
}

.member-description {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 30px;
    line-height: 1.6;
    text-shadow: 1px 1px 2px white, -1px -1px 2px white;
}

.member-btn {
    background: #ff0000;
    color: white;
    border: none;
    padding: 12px 40px;
    border-radius: 25px;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.member-btn:hover {
    background: #cc0000;
    transform: translateY(-2px);
    box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.25);
}

/* Responsive Design */

/* Extra Large Desktop (1400px and below) */
@media (max-width: 1400px) {
    .container {
        max-width: 1320px;
    }
    
    .hero-overlay {
        width: 50%;
        padding: 0 60px;
    }
    
    .hero-title {
        font-size: 3.2rem;
    }
    
    .hero-title::before,
    .hero-title::after {
        font-size: 4.2rem;
    }
    
    .shop-now-btn {
        font-size: 1.6rem;
        padding: 13px 45px;
    }
}

/* Large Desktop (1200px and below) */
@media (max-width: 1200px) {
    .container {
        max-width: 1140px;
        padding: 0 20px;
    }
    
    .hero-overlay {
        width: 55%;
        padding: 0 50px;
    }
    
    .hero-title {
        font-size: 2.8rem;
        padding-left: 35px;
    }
    
    .hero-title::before,
    .hero-title::after {
        font-size: 3.5rem;
    }
    
    .shop-now-btn {
        font-size: 1.4rem;
        padding: 11px 35px;
        margin-left: 35px;
    }
    
    .welcome-title {
        font-size: 2.8rem;
    }
    
    .welcome-subtitle {
        font-size: 2.3rem;
    }
    
    .section-title {
        font-size: 2.8rem;
    }
    
    .products-title {
        font-size: 2.8rem;
    }
    
    .member-title {
        font-size: 2.8rem;
    }
    
    .member-content {
        width: 55%;
        padding: 0 50px;
    }
}

/* Desktop (992px and below) */
@media (max-width: 992px) {
    .container {
        max-width: 960px;
        padding: 0 20px;
    }

    .pws-section {
        padding: 120px 40px 60px;
    }
    
    .hero-overlay {
        width: 60%;
        padding: 0 40px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        padding-left: 30px;
    }
    
    .hero-title::before,
    .hero-title::after {
        font-size: 3rem;
    }
    
    .shop-now-btn {
        font-size: 1.3rem;
        padding: 10px 30px;
        margin-left: 30px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .features {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
    
    /* Adjust image sizes for responsive */
    .feature-image-link {
        max-height: 300px;
        overflow: hidden;
    }
    
    .feature-image {
        height: 300px;
    }
    
    .product-image {
        max-height: 250px;
        object-fit: cover;
    }
    
    .welcome-title {
        font-size: 2.5rem;
    }
    
    .welcome-subtitle {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .products-title {
        font-size: 2.5rem;
    }
    
    .member-title {
        font-size: 2.5rem;
    }
    
    .member-content {
        width: 60%;
        padding: 0 40px;
    }
    
    .become-member {
        height: 450px;
    }
}

/* Tablet (768px and below) */
@media (max-width: 768px) {
    .container {
        max-width: 720px;
        padding: 0 20px;
    }
    
    .pws-section {
        padding: 100px 40px 50px;
    }
    
    .pws-header {
        margin-bottom: 40px;
        gap: 10px;
    }
    
    .pws-welcome-text {
        font-size: 1.5rem;
    }
    
    .pws-title {
        font-size: 1.5rem;
    }
    
    .pws-flag-icon {
        width: 30px;
        height: 30px;
    }
    
    .pws-content {
        gap: 30px;
    }
    
    .pws-avatar {
        width: 150px;
        height: 150px;
    }
    
    .pws-avatar i {
        font-size: 80px;
    }
    
    .pws-info-item {
        gap: 5px;
    }
    
    .pws-label,
    .pws-value {
        font-size: 1.1rem;
    }
    
    .pws-distributor-btn {
        font-size: 1.1rem;
        padding: 12px 35px;
    }
    
    .purchase_buttons {
        top: 100px;
        gap: 9px;
    }
    
    .purchase-btn {
        font-size: 0.85rem;
    }
    
    .hero {
        height: 90vh;
    }
    
    .hero-overlay {
        width: 100%;
        padding: 0 30px;
        background: rgba(255, 255, 255, 0.9);
    }
    
    .hero-content {
        margin-top: 2rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
        padding-left: 25px;
        margin-bottom: 30px;
    }
    
    .hero-title::before,
    .hero-title::after {
        font-size: 2.5rem;
    }
    
    .shop-now-btn {
        font-size: 1.2rem;
        padding: 10px 25px;
        margin-left: 25px;
    }
    
    .slider-dots {
        bottom: 20px;
    }
    
    .promo-bar span {
        font-size: 0.9rem;
        margin: 0 30px;
    }
    
    .welcome {
        padding: 60px 0;
    }
    
    .welcome-title {
        font-size: 2.2rem;
    }
    
    .welcome-subtitle {
        font-size: 1.8rem;
    }
    
    .welcome-text {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 15px;
    }
    
    .why-choose-us {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 50px;
    }
    
    /* Adjust image sizes for tablet */
    .feature-image-link {
        max-height: 200px;
        overflow: hidden;
    }
    
    .feature-image {
        height: 200px;
        object-fit: cover;
    }
    
    .product-image {
        max-height: 200px;
        object-fit: cover;
    }
    
    .feature-card h3 {
        font-size: 1.1rem;
    }
    
    .top-products {
        padding: 60px 0;
    }
    
    .products-title {
        font-size: 2.2rem;
    }
    
    .products-subtitle {
        font-size: 1.7rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        margin-top: 25px;
    }
    
    .view-products-btn {
        font-size: 1.1rem;
        padding: 10px 30px;
    }
    
    .become-member {
        height: 400px;
    }
    
    .member-content {
        width: 100%;
        padding: 0 30px;
    }
    
    .member-title {
        font-size: 2.2rem;
    }
    
    .member-description {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .member-btn {
        font-size: 1.1rem;
        padding: 10px 30px;
    }
}

/* Mobile Large (576px and below) */
@media (max-width: 576px) {
    .container {
        max-width: 540px;
        padding: 0 15px;
    }
    
    .pws-section {
        padding: 84px 20px 42px;
    }
    
    .pws-header {
        margin-bottom: 30px;
        gap: 8px;
    }
    
    .pws-flag-icon {
        width: 25px;
        height: 25px;
    }
    
    .pws-content {
        gap: 20px;
    }
    
    .pws-avatar {
        width: 120px;
        height: 120px;
    }
    
    .pws-avatar i {
        font-size: 60px;
    }
    
    .pws-distributor-btn {
        font-size: 1rem;
        padding: 10px 30px;
    }
    
    .purchase_buttons {
        top: 95px;
    }
    
    .purchase-btn {
        font-size: 0.8rem;
    }
    
    .hero-overlay {
        padding: 0 20px;
    }
    
    .hero-content {
        margin-top: 1.5rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
        padding-left: 20px;
        margin-bottom: 25px;
    }
    
    .hero-title::before,
    .hero-title::after {
        font-size: 2rem;
    }
    
    .shop-now-btn {
        font-size: 1.1rem;
        padding: 8px 20px;
        margin-left: 20px;
    }
    
    .slider-dots {
        bottom: 15px;
        gap: 10px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .promo-bar {
        padding: 8px 0;
    }
    
    .promo-bar span {
        font-size: 0.8rem;
        margin: 0 20px;
    }
    
    .welcome {
        padding: 50px 0;
    }
    
    .welcome-title {
        font-size: 1.8rem;
    }
    
    .welcome-subtitle {
        font-size: 1.5rem;
    }
    
    .welcome-text {
        font-size: 0.95rem;
        margin-bottom: 35px;
    }
    
    .features {
        gap: 25px;
        margin-top: 35px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 12px;
    }
    
    .feature-item p {
        font-size: 0.9rem;
    }
    
    .why-choose-us {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }
    
    .features-grid {
        gap: 20px;
    }
    
    .feature-card h3 {
        font-size: 1rem;
    }
    
    .feature-card p {
        font-size: 0.9rem;
    }
    
    .top-products {
        padding: 50px 0;
    }
    
    .products-title {
        font-size: 1.8rem;
    }
    
    .products-subtitle {
        font-size: 1.4rem;
    }
    
    /* Adjust image sizes for mobile */
    .feature-image-link {
        max-height: 160px;
        overflow: hidden;
    }
    
    .feature-image {
        height: 160px;
        object-fit: cover;
    }
    
    .product-image {
        max-height: 140px;
        object-fit: cover;
    }
    
    .product-card {
        padding: 10px;
    }
    
    .view-products-btn {
        font-size: 1rem;
        padding: 8px 25px;
    }
    
    .become-member {
        height: 350px;
    }
    
    .member-content {
        padding: 0 20px;
    }
    
    .member-title {
        font-size: 1.8rem;
    }
    
    .member-description {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .member-btn {
        font-size: 1rem;
        padding: 8px 25px;
    }
}

/* Mobile Small (480px and below) */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .pws-section {
        padding: 80px 10px 40px;
    }

    .pws-header {
        margin-bottom: 15px;
    }
    
    .pws-welcome-text {
        font-size: 1.2rem;
    }
    
    .pws-title {
        font-size: 1.2rem;
    }

    .pws-content {
        gap: 15px;
    }

    .pws-info {
        gap: 10px;
    }
    
    .pws-label,
    .pws-value {
        font-size: 1rem;
    }
    
    .pws-distributor-btn {
        font-size: 0.95rem;
        padding: 9px 25px;
    }
    
    .purchase_buttons {
        gap: 6px;
    }
    
    .purchase-btn {
        font-size: 0.75rem;
    }
    
    .hero-overlay {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.6rem;
        padding-left: 15px;
        margin-bottom: 20px;
    }
    
    .hero-title::before,
    .hero-title::after {
        font-size: 1.8rem;
    }
    
    .shop-now-btn {
        font-size: 1rem;
        padding: 7px 18px;
        margin-left: 15px;
    }
    
    .promo-bar span {
        font-size: 0.75rem;
        margin: 0 15px;
    }
    
    .welcome-title {
        font-size: 1.6rem;
    }
    
    .welcome-subtitle {
        font-size: 1.3rem;
    }
    
    .welcome-text {
        font-size: 0.9rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .feature-item p {
        font-size: 0.85rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .feature-card h3 {
        font-size: 0.95rem;
    }
    
    .feature-card p {
        font-size: 0.85rem;
    }
    
    /* Adjust image sizes for small mobile */
    .feature-image-link {
        max-height: 140px;
        overflow: hidden;
    }
    
    .feature-image {
        height: 140px;
        object-fit: cover;
    }
    
    .product-image {
        max-height: 120px;
        object-fit: cover;
    }
    
    .products-title {
        font-size: 1.6rem;
    }
    
    .products-subtitle {
        font-size: 1.2rem;
    }
    
    .member-title {
        font-size: 1.6rem;
    }
}
    
/* Mobile Extra Small (360px and below) */
@media (max-width: 360px) {
    .container {
        padding: 0 8px;
    }
    
    .pws-section {
        padding: 20px 8px;
    }
    
    .pws-welcome-text {
        font-size: 1.2rem;
    }
    
    .pws-title {
        font-size: 1rem;
    }
    
    .pws-avatar {
        width: 120px;
        height: 120px;
    }
    
    .pws-avatar i {
        font-size: 60px;
    }
    
    .pws-label,
    .pws-value {
        font-size: 0.9rem;
    }
    
    .pws-distributor-btn {
        font-size: 0.9rem;
        padding: 8px 20px;
    }
    
    .hero {
        height: 60vh;
    }
    
    .hero-overlay {
        padding: 0 12px;
    }
    
    .hero-title {
        font-size: 1.4rem;
        padding-left: 12px;
        margin-bottom: 15px;
    }
    
    .hero-title::before,
    .hero-title::after {
        font-size: 1.6rem;
    }
    
    .shop-now-btn {
        font-size: 0.9rem;
        padding: 6px 15px;
        margin-left: 12px;
    }
    
    .promo-bar span {
        font-size: 0.7rem;
        margin: 0 12px;
    }
    
    .welcome-title {
        font-size: 1.4rem;
    }
    
    .welcome-subtitle {
        font-size: 1.1rem;
    }
    
    .welcome-text {
        font-size: 0.85rem;
    }
    
    .feature-icon {
        width: 45px;
        height: 45px;
    }
    
    .feature-item p {
        font-size: 0.8rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .feature-card h3 {
        font-size: 0.9rem;
    }
    
    .feature-card p {
        font-size: 0.8rem;
    }
    
    /* Adjust image sizes for extra small mobile */
    .feature-image-link {
        max-height: 120px;
        overflow: hidden;
    }
    
    .feature-image {
        height: 120px;
        object-fit: cover;
    }
    
    .product-image {
        max-height: 100px;
        object-fit: cover;
    }
    
    .products-title {
        font-size: 1.4rem;
    }
    
    .products-subtitle {
        font-size: 1.1rem;
    }
    
    .member-title {
        font-size: 1.4rem;
    }
    
    .member-description {
        font-size: 0.85rem;
    }
    
    .member-btn {
        font-size: 0.9rem;
        padding: 6px 20px;
    }
}

/* Landscape Mobile (max-height: 500px) */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        height: 100vh;
    }
    
    .hero-content {
        margin-top: 1rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .shop-now-btn {
        font-size: 1rem;
        padding: 6px 20px;
    }
    
    .become-member {
        height: 300px;
    }
    
    .member-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .member-description {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
}