@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;700&display=swap');

body, html{
    height: 100%;
    margin: 0;
    font-family: 'Quicksand', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif
}

.navbar {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 700px;
    background-color: #1a1a1a;
    border-radius: 999px;
    z-index: 1000;
    padding: 0;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 52px;
    padding: 0 20px;
}

.logo img {
    height: 70px;
    width: auto;
    display: block;
    margin: 0;
    padding: 0;
}

.nav-list {
    display: flex;
    justify-content: flex-end;
    list-style-type: none;
    margin: 0;
    padding: 0 10px;
    height: 56px;
    align-items: center;
}

.nav-list li {
    margin-left: 36px;
}

.nav-list a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    padding: 10px 0;
    transition: color 0.2s;
}

.nav-list a:hover {
    color: #ccc;
}

.container{
    min-height: calc(100vh - 56px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 40px 0;
    background-color: #ffffff;
}

.top-text {
    text-align: center;
    margin: 0;
    font-size: 2rem;
    color: #888;
}

.sub-text {
    text-align: center;
    font-size: 1rem;
    color:#888;
}

.center-image {
    max-width: 800px;
    height: auto;
    margin: 40px 0;
}

.bottom-button {
    text-decoration: none;
    background: #888;
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 15px 40px;
    font-size: 1rem;
    cursor: pointer;
    margin-bottom: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: background 0.2s;
}

.bottom-button:hover {
    background: #696969;
}

.contact-section .container {
    width: 100%;
    display: flex;
    justify-content: center;
}

.faq-section {
    width: 100%;
    display: flex;
    justify-content: center;
}

.faq-section .container {
    max-width: 800px;
    width: 100%;
    text-align: center;
}

.faq-item, .faq-items {
    margin-bottom: 20px;
}

.faq-item h3, .faq-items h3 {
    text-align: center;
    margin-bottom: 10px;
    color: #888;
}

.faq-item p, .faq-items p {
    text-align: center;
    margin: 5px 0;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .faq-section h1 {
        font-size: 1.4rem;
    }
    
    .faq-item h3,
    .faq-items h3 {
        font-size: 1rem;
    }
    
    .faq-item p,
    .faq-items p {
        font-size: 0.6rem;
        line-height: 1.6;
    }
}



@media (max-width: 768px) {
    

    .nav-list {
        display: flex;
        padding: 0 5px;
       
    }


    .nav-list li {
        margin-left: 15px;
    }

    .nav-list a {
        font-size: 0.9rem;
    }

}

.form-container {
    max-width: 500px;
    width: 90%;
    margin: 40px auto;
    padding: 40px 30px;
    background-color: #ffffff;
    border-radius: 10px;
    text-align: center;
}

.form-container h2 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 10px;
}

.form-container form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-container label {
    display: block;
    text-align: left;
    width: 100%;
    max-width: 400px;
    margin-bottom: 8px;
    color: #333;
    font-weight: bold;
}

.form-container input[type="text"],
.form-container input[type="email"],
.form-container input[type="tel"],
.form-container input[type="time"],
.form-container textarea,
.form-container select {
    width: 100%;
    max-width: 400px;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.form-container input:focus,
.form-container textarea:focus,
.form-container select:focus {
    outline: none;
    border-color: #4eff2a;
}

.form-container textarea {
    resize: vertical;
    min-height: 80px;
    font-family: Arial, Helvetica, sans-serif;
}

.delivery-group {
    width: 100%;
    max-width: 400px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.delivery-group select {
    flex: 1;
}


input[type="time"] {
    width: 100%;
    max-width: 400px;
}


.bottom-btn {
    background: #888;
    color: #fff;
    border: none;
    border-radius: 25px;
    padding: 15px 40px;
    font-size: 1.1rem;
    cursor: pointer;
    margin-top: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: background 0.2s;
    width: auto;
}

.bottom-btn:hover {
    background: #696969;
}


@media (max-width: 768px) {
    .form-container {
        margin: 20px auto;
        padding: 30px 20px;
        width: 95%;
    }
    
    .delivery-group {
        flex-direction: column;
        gap: 10px;
    }
    
    .delivery-group select,
    input[type="time"] {
        max-width: 100%;
    }
}

.hero-header {
    position: relative;
    height: 100vh;
    min-height: 500px;
    background-image:
                      url(IMG_1030-01-01.jpeg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #e6e6e6;
    padding: 20px;
}

.hero-header-B {
    position: relative;
    height: 100vh;
    min-height: 100px;
    background-image:
                      url(Aesop_Category_Page_Skin_Care_Subcat_Menu_Eye_Lip_Care_1080x1080px.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #e6e6e6;
    padding: 20px;
}

.hero-header-C {
    position: relative;
    height: 130vh;
    min-height: 100px;
    background-image:
                      url(1774806429505.png);
    background-size: 500px;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #e6e6e6;
    padding: 20px;
}

.header-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding-bottom: 50px;
}

.header-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.header-subtitle {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.proceed-btn {
    background: #4eff2a;font-weight: bold;
    color: #fff;
    border: none;
    border-radius: 25px;
    padding: 15px 40px;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    width: auto;
}


.proceed-button:hover {
    background: #4eff2a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}


@media (max-width: 768px) {
    .hero-header {
        height: 60vh;
        min-height: 400px;
    }

    .hero-header-C {
        background-size: 300px;
        height: 130vh;
        min-height: 100px;
    }
    
    .header-title {
        font-size: 1rem;
    }
    
    .header-subtitle {
        font-size: 0.5rem;
    }
    
    .bottom-button {
        padding: 12px 25px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-header {
        height: 50vh;
        min-height: 300px;
    }
    
    .header-title {
        font-size: 1rem;
    }
    
    .header-subtitle {
        font-size: 0.5rem;
    }
}

.footer {
    background-color: #fff;
    color:#000;
    padding: 40px 0 0 0;
    margin-top: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 0 40px;
}

.footer-section h3 {
    color: #4eff2a;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.footer-section h4 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.footer-section p {
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #4eff2a;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #4eff2a;
}

.footer-bottom {
    background-color: #ffffff;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
    width: 100vw;
    
}

.footer-bottom p {
    color: #ccc;
    margin: 0;
    font-size: 0.9rem;
}

.container {
    min-height: calc(100vh - 56px - 200px); 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 40px 0;
    background-color: #ffffff;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
        text-align: center;
    }
    
    .social-links {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
    }
    
    .footer-section {
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 30px 0 0 0;
    }
    
    .footer-content {
        padding: 0 15px;
    }
    
    .footer-bottom {
        padding: 15px 0;
    }
}

.product-gallery {
    padding: 60px 20px;
    background-color: #f8f8f8; 
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 20px;
}

.product-image {
    overflow: hidden;
    border-radius: 10px; 
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); 
}

.product-image img {
    width: 100%;
    height: 300px; 
    object-fit: cover; 
    display: block;
    transition: transform 0.3s ease;
}

.product-image img:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .gallery-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 550px) {
    .gallery-container {
        grid-template-columns: 1fr;
    }
    
    .product-image img {
        height: 320px;
    }
}

.product-detail-container {
    /* Ensures centering and a clean canvas */
    min-height: calc(100vh - 56px); 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff; 
}

.product-image-large {
    /* Defines the FIXED SIZE for the container on desktop */
    width: 400px; 
    height: 450px; /* <-- FIXED HEIGHT for uniformity */
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
}

.product-image-large img {
    width: 100%;
    height: 100%; /* <-- Takes the FIXED HEIGHT from the container */
    display: block;
    object-fit: cover; /* <-- CRUCIAL: Ensures image fills the space without stretching, cropping if necessary */
}

.product-content {
    text-align: center; 
    max-width: 700px;
}

/* Styling for the 3-line description text */
.product-description-text {
    list-style: none; 
    color: #888;
    padding: 0;
    margin: 20px 0 30px 0;
}

.product-description-text li {
    font-size: 0.8rem;
    line-height: 1.8;
    color: #555;
    margin: 5px 0;
}

/* --- Media Query for Mobile (max-width: 768px) --- */
@media (max-width: 768px) {
    .product-detail-container {
        padding: 20px 10px;
    }
    
    .product-image-large {
        width: 100%; 
        max-width: 300px; 
        height: 350px; /* <-- FIXED HEIGHT for mobile uniformity */
        margin-bottom: 20px;
    }

    .product-description-text li {
        font-size: 0.3rem;
        line-height: 1.6;
    }
}

.rd-page {
    margin: 0;
    padding: 0;
    height: 100vh;
    background: url('_1775120890066.jpeg') no-repeat center center / cover;
    display: flex;
    justify-content: flex-start; /* text begins from left */
    align-items: center; /* vertical center */
    color: rgb(121, 121, 121);
    font-family: 'Quicksand', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.rd-content {
    max-width: 600px;
    margin-left: 40px; /* spacing from left */
    padding: 20px 30px;
    border-radius: 10px;
    backdrop-filter: blur(4px);
}

.rd-content h1 {
    margin: 0 0 10px 0;
    font-size: 48px;
    font-weight: 700;
}

.rd-content p {
    font-size: 18px;
    line-height: 1.6;
}

.rd-caption {
    text-align: center;
    padding: 32px 20px;
    font-size: 1rem;
    color:#000 ;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;  
}

@media (max-width: 768px) {

    .rd-page {
        justify-content: center; /* center text on small screens */
        text-align: center; /* easier reading on phones */
    }

    .rd-content {
        margin-left: 0; /* remove left spacing */
        max-width: 90%;
    }

    .rd-content h1 {
        font-size: 32px; /* reduce title size */
    }

    .rd-content p {
        font-size: 16px;
        line-height: 1.5;
    }
}

.terms-page {
    width: 100%;
    display: flex;
    justify-content: center;
    text-align: center;
    background-color: #ffffff;
}

.terms-page .terms-container {
    max-width: 900px;
    width: 100%;
    padding: 40px 20px;
    color: #222;
}

.terms-page h1 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #000;
}

.terms-page .updated {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 30px;
}

.terms-page h2 {
    margin-top: 36px;
    font-size: 1.4rem;
    color: #000;
}

.terms-page h3 {
    margin-top: 20px;
    font-size: 1.1rem;
    color: #555;
}

.terms-page p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #333;
    margin: 10px 0;
}

.terms-page ul {
    padding-left: 20px;
    margin: 10px 0;
}

.terms-page li {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 6px;
    color: #333;
}

.terms-page footer {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #e5e5e5;
    font-size: 0.85rem;
    color: #888;
    text-align: center;
}

/* Mobile */
@media (max-width: 768px) {
    .terms-page .terms-container {
        padding: 25px 16px;
    }

    .terms-page h1 {
        font-size: 1.6rem;
    }

    .terms-page h2 {
        font-size: 1.2rem;
    }

    .terms-page p,
    .terms-page li {
        font-size: 0.9rem;
    }
}

/* ==============================================
   SHOP PAGE (Shop.html) — scoped to body.product-page
   These styles do not affect any other page.
   ============================================== */

body.product-page {
    background: #ffffff;
    color: #1a1a1a;
    font-family: 'Quicksand', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    min-height: 100vh;
}

body.product-page .navbar {
    background-color: #1a1a1a;
}

body.product-page .pdp-wrapper {
    padding-top: 88px;
    padding-bottom: 120px;
    max-width: 480px;
    margin: 0 auto;
}

body.product-page .pdp-info {
    padding: 28px 20px 0;
}

body.product-page .pdp-name {
    font-size: 1.35rem;
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 1.3;
    color: #1a1a1a;
}

body.product-page .pdp-price {
    font-size: 0.95rem;
    color: #1a1a1a;
    margin-top: 6px;
    font-family: Quicksand, sans-serif;
}

body.product-page .pdp-desc {
    font-size: 0.82rem;
    color: #555;
    line-height: 1.65;
    margin-top: 10px;
    font-family: Quicksand, sans-serif;
}

body.product-page .pdp-image-wrap {
    position: relative;
    margin: 24px 20px 0;
    border-radius: 4px;
    overflow: hidden;
    background: #ffffff;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

body.product-page .pdp-image-wrap img {
    width: 100%;
    height: 520px;
    object-fit: contain;
    display: block;
}

body.product-page .pdp-bookmark {
    position: absolute;
    top: 14px;
    right: 16px;
    width: 22px;
    height: 22px;
    opacity: 0.55;
    cursor: pointer;
}

body.product-page .pdp-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 16px;
}

body.product-page .pdp-dots span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #bbb;
}

body.product-page .pdp-dots span.active {
    background: #1a1a1a;
}

body.product-page .pdp-size {
    margin: 28px 20px 0;
    border: 1px solid #c8c2b8;
    border-radius: 3px;
    padding: 14px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: transparent;
    transition: border-color 0.2s;
}

body.product-page .pdp-size:hover {
    border-color: #1a1a1a;
}

body.product-page .pdp-size-label {
    font-family: Quicksand, sans-serif;
    font-size: 0.88rem;
    color: #1a1a1a;
}

body.product-page .pdp-size-price {
    font-family: Quicksand, sans-serif;
    font-size: 0.88rem;
    color: #555;
}

body.product-page .pdp-size-picker {
    display: none;
    margin: 0 20px;
    border: 1px solid #c8c2b8;
    border-top: none;
    border-radius: 0 0 3px 3px;
}

body.product-page .pdp-size-picker.open {
    display: block;
}

body.product-page .size-option {
    padding: 13px 18px;
    cursor: pointer;
    font-family: system-ui, sans-serif;
    font-size: 0.88rem;
    border-bottom: 1px solid #ede8df;
    transition: background 0.15s;
}

body.product-page .size-option:last-child {
    border-bottom: none;
}

body.product-page .size-option:hover {
    background: #ede8df;
}

body.product-page .pdp-accordion {
    margin: 24px 20px 0;
    border-top: 1px solid #c8c2b8;
}

body.product-page .pdp-accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    cursor: pointer;
    border-bottom: 1px solid #c8c2b8;
}

body.product-page .pdp-accordion-header span {
    font-family: system-ui, sans-serif;
    font-size: 0.88rem;
    color: #1a1a1a;
    letter-spacing: 0.02em;
}

body.product-page .pdp-accordion-header .chevron {
    font-size: 1rem;
    color: #888;
    transition: transform 0.25s;
}

body.product-page .pdp-accordion-header.open .chevron {
    transform: rotate(90deg);
}

body.product-page .pdp-accordion-body {
    display: none;
    padding: 14px 0 18px;
    font-family: system-ui, sans-serif;
    font-size: 0.82rem;
    color: #555;
    line-height: 1.65;
    border-bottom: 1px solid #c8c2b8;
}

body.product-page .pdp-accordion-body.open {
    display: block;
}

body.product-page .pdp-buy-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    padding: 12px 20px;
    background: #ffffff;
    border-top: 1px solid #d9d3c8;
    padding-bottom: calc(12px + env(safe-area-inset-bottom));
}

body.product-page .pdp-buy-btn {
    display: block;
    width: auto;
    background: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 3px;
    padding: 18px 20px;
    font-family: system-ui, sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}

body.product-page .pdp-buy-btn:hover {
    background: #333;
}

body.product-page .pdp-buy-btn:active {
    transform: scale(0.98);
}

@media (min-width: 600px) {
    body.product-page .pdp-wrapper {
        max-width: 520px;
    }
}

@media (max-width: 480px) {
    body.product-page .pdp-image-wrap img {
        height: 380px;
    }
}

/* Inline buy bar — one per product, sits below its own wrapper */
body.product-page .pdp-buy-bar--inline {
    position: static;
    bottom: auto;
    left: auto;
    right: auto;
    z-index: auto;
    margin: 24px 20px 40px;
    padding: 0;
    border-top: none;
    background: transparent;
    padding-bottom: 0;
}

/* Scoped styles using a unique ID container to prevent conflicts */
#hiring-page-wrapper {
    all: initial; /* Reset styles for the container */
    display: block;
    font-family: Quicksand, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #ffffff;
    color: #1a1a1a;
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

#hiring-page-wrapper * {
    box-sizing: border-box;
    font-family: inherit;
}

#hiring-page-wrapper .header-section {
    text-align: center;
    margin-bottom: 60px;
}

#hiring-page-wrapper h1 {
    font-size: 32px;
    font-weight: 500;
    color: #000;
    margin-bottom: 40px;
    letter-spacing: -0.5px;
    display: block;
}

#hiring-page-wrapper .roles-list {
    display: block;
}

#hiring-page-wrapper .role-item {
    margin-bottom: 48px;
    position: relative;
    display: block;
}

#hiring-page-wrapper .role-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

#hiring-page-wrapper h2 {
    font-size: 18px;
    font-weight: 500;
    margin: 0;
    color: #1a1a1a;
    display: block;
}

#hiring-page-wrapper .description {
    font-size: 16px;
    font-style: italic;
    color: #707070;
    margin: 0;
    max-width: 500px;
    line-height: 1.4;
    display: block;
}

#hiring-page-wrapper .arrow-icon {
    width: 24px;
    height: 24px;
    background-color: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 10px;
}

#hiring-page-wrapper .apply-link-container {
    margin-top: 40px;
    display: flex;
    align-items: center;
}

#hiring-page-wrapper .apply-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #1a1a1a;
    font-size: 18px;
    font-weight: 500;
    gap: 10px;
}

#hiring-page-wrapper .link-icon {
    color: #007AFF;
    font-size: 20px;
}

#hiring-page-wrapper .apply-link:hover {
    opacity: 0.7;
}

@media (max-width: 600px) {
    #hiring-page-wrapper {
        padding: 40px 24px;
    }
    #hiring-page-wrapper h1 {
        font-size: 28px;
    }
}
