/* 
* Parewi-Juceja - Tea Shop
* Colors:
* #E07B9B - Pink Hibiscus
* #647B64 - Deep Tea Green
* #F7F5ED - Tea Cream
* #3B185F - Lavender Purple
* #2C2C2C - Anthracite
*/

/* Base Styles */
:root {
    --color-primary: #E07B9B;
    --color-secondary: #647B64;
    --color-bg: #F7F5ED;
    --color-heading: #3B185F;
    --color-text: #2C2C2C;
    --container-width: 1200px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--color-heading);
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--color-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.75rem;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

h2:after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: var(--color-primary);
    margin: 15px auto 0;
}

h3 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

section {
    padding: 3rem 0;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    text-align: center;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--color-primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--color-heading);
    color: white;
}

.btn-secondary {
    background-color: var(--color-secondary);
    color: white;
}

.btn-secondary:hover {
    background-color: var(--color-heading);
    color: white;
}

/* Header Styles */
.header {
    position: sticky;
    top: 0;
    background-color: rgba(247, 245, 237, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
    padding: 1rem 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__logo a {
    display: flex;
    align-items: center;
    color: var(--color-heading);
    font-weight: 700;
    font-size: 1.25rem;
}

.header__logo svg {
    margin-right: 10px;
}

.header__nav {
    display: none;
}

.header__toggle {
    display: flex;
    flex-direction: column;
    width: 30px;
    cursor: pointer;
}

.header__toggle span {
    height: 3px;
    width: 100%;
    background-color: var(--color-heading);
    margin-bottom: 5px;
    border-radius: 3px;
    transition: var(--transition);
}

.header__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.header__toggle.active span:nth-child(2) {
    opacity: 0;
}

.header__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: 0;
    background-color: var(--color-bg);
    overflow: hidden;
    transition: var(--transition);
    z-index: 99;
    opacity: 0;
}

.mobile-nav.active {
    height: auto;
    padding: 1rem 0;
    opacity: 1;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.mobile-nav ul {
    padding: 0 2rem;
}

.mobile-nav li {
    margin-bottom: 1rem;
}

.mobile-nav a {
    display: block;
    font-size: 1.1rem;
    color: var(--color-heading);
    font-weight: 600;
}

/* Hero Section */
.hero {
    padding: 2rem 0 3rem;
    background: linear-gradient(135deg, var(--color-bg) 0%, #e8e5dd 100%);
}

.hero .container {
    display: flex;
    flex-direction: column;
}

.hero__content {
    order: 2;
    margin-top: 2rem;
}

.hero__image {
    order: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.hero h1 {
    margin-bottom: 1.5rem;
}

.hero p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* About Section */
.about {
    background-color: var(--color-secondary);
    color: white;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 50px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath fill='%23647B64' d='M0,32L80,42.7C160,53,320,75,480,69.3C640,64,800,32,960,21.3C1120,11,1280,21,1360,26.7L1440,32L1440,100L1360,100C1280,100,1120,100,960,100C800,100,640,100,480,100C320,100,160,100,80,100L0,100Z'%3E%3C/path%3E%3C/svg%3E") no-repeat bottom;
    background-size: cover;
}

.about h2 {
    color: white;
}

.about h2:after {
    background: white;
}

.about__content {
    display: flex;
    flex-direction: column;
}

.about__text {
    order: 2;
    margin-top: 1.5rem;
}

.about__image {
    order: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Benefits Section */
.benefits {
    background-color: var(--color-bg);
    position: relative;
}

.benefits::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 50px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath fill='%23F7F5ED' d='M0,64L80,53.3C160,43,320,21,480,16C640,11,800,21,960,32C1120,43,1280,53,1360,58.7L1440,64L1440,100L1360,100C1280,100,1120,100,960,100C800,100,640,100,480,100C320,100,160,100,80,100L0,100Z'%3E%3C/path%3E%3C/svg%3E") no-repeat bottom;
    background-size: cover;
}

.benefits__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.benefit {
    text-align: center;
    padding: 1.5rem;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.benefit:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.benefit__icon {
    margin-bottom: 1rem;
}

/* Products Section */
.products {
    background-color: white;
    position: relative;
}

.products::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 50px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath fill='white' d='M0,32L80,37.3C160,43,320,53,480,48C640,43,800,21,960,16C1120,11,1280,21,1360,26.7L1440,32L1440,100L1360,100C1280,100,1120,100,960,100C800,100,640,100,480,100C320,100,160,100,80,100L0,100Z'%3E%3C/path%3E%3C/svg%3E") no-repeat bottom;
    background-size: cover;
}

.tabs {
    margin-bottom: 2rem;
}

.tabs input[type="radio"] {
    display: none;
}

.tabs label {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin-right: 0.5rem;
    margin-bottom: 1rem;
    cursor: pointer;
    border-radius: 20px;
    background-color: #f0f0f0;
    color: var(--color-text);
    font-weight: 600;
    transition: var(--transition);
}

.tabs input[type="radio"]:checked + label {
    background-color: var(--color-primary);
    color: white;
}

.tabs .content {
    display: none;
}

#tab1:checked ~ #content1,
#tab2:checked ~ #content2,
#tab3:checked ~ #content3 {
    display: block;
}

.products__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.product {
    padding: 1.5rem;
    border-radius: 10px;
    background-color: var(--color-bg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    text-align: center;
}

.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.product__image {
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.product__price {
    font-weight: 700;
    color: var(--color-primary);
    font-size: 1.2rem;
    margin: 0.5rem 0 1rem;
}

/* Reviews Section */
.reviews {
    background-color: var(--color-secondary);
    color: white;
    position: relative;
}

.reviews::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 50px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath fill='%23647B64' d='M0,64L80,64C160,64,320,64,480,58.7C640,53,800,43,960,42.7C1120,43,1280,53,1360,58.7L1440,64L1440,100L1360,100C1280,100,1120,100,960,100C800,100,640,100,480,100C320,100,160,100,80,100L0,100Z'%3E%3C/path%3E%3C/svg%3E") no-repeat bottom;
    background-size: cover;
}

.reviews h2 {
    color: white;
}

.reviews h2:after {
    background: white;
}

.slider {
    position: relative;
    overflow: hidden;
    padding-bottom: 3rem;
}

.slides {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.slides::-webkit-scrollbar {
    display: none;
}

.slide {
    scroll-snap-align: start;
    flex-shrink: 0;
    width: 100%;
    padding: 1rem;
}

.review {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    backdrop-filter: blur(5px);
}

.review__stars {
    color: var(--color-primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.review__author {
    font-weight: 700;
    margin-top: 1rem;
}

.slider__nav {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
}

.slider__dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    margin: 0 5px;
    transition: var(--transition);
}

.slider__dot:hover {
    background-color: white;
}

/* How to Order Section */
.how-to-order {
    background-color: var(--color-bg);
    position: relative;
}

.how-to-order::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 50px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath fill='%23F7F5ED' d='M0,32L80,37.3C160,43,320,53,480,53.3C640,53,800,43,960,37.3C1120,32,1280,32,1360,32L1440,32L1440,100L1360,100C1280,100,1120,100,960,100C800,100,640,100,480,100C320,100,160,100,80,100L0,100Z'%3E%3C/path%3E%3C/svg%3E") no-repeat bottom;
    background-size: cover;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    display: flex;
    align-items: flex-start;
}

.step__number {
    background-color: var(--color-primary);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 1rem;
    flex-shrink: 0;
}

.step__content h3 {
    margin-bottom: 0.5rem;
}

/* Order Form Section */
.order {
    background-color: white;
    position: relative;
}

.order::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 50px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath fill='white' d='M0,64L80,69.3C160,75,320,85,480,80C640,75,800,53,960,48C1120,43,1280,53,1360,58.7L1440,64L1440,100L1360,100C1280,100,1120,100,960,100C800,100,640,100,480,100C320,100,160,100,80,100L0,100Z'%3E%3C/path%3E%3C/svg%3E") no-repeat bottom;
    background-size: cover;
}

.order-form {
    background-color: var(--color-secondary);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    color: white;
    position: relative;
    overflow: hidden;
}

.order-form::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    transform: translate(50%, -50%);
    z-index: 0;
}

.order-form::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 120px;
    height: 120px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    transform: translate(-30%, 30%);
    z-index: 0;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.form-group.checkbox {
    display: flex;
    align-items: center;
}

.form-group.checkbox input {
    width: auto;
    margin-right: 10px;
}

.form-group.checkbox label {
    margin-bottom: 0;
}

::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

select option {
    background-color: var(--color-secondary);
    color: white;
}

/* FAQ Section */
.faq {
    background-color: var(--color-bg);
    position: relative;
}

.faq::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 50px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath fill='%23F7F5ED' d='M0,32L80,32C160,32,320,32,480,37.3C640,43,800,53,960,58.7C1120,64,1280,64,1360,64L1440,64L1440,100L1360,100C1280,100,1120,100,960,100C800,100,640,100,480,100C320,100,160,100,80,100L0,100Z'%3E%3C/path%3E%3C/svg%3E") no-repeat bottom;
    background-size: cover;
}

.accordion {
    margin-top: 2rem;
}

.accordion__item {
    margin-bottom: 1rem;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.accordion__item input {
    display: none;
}

.accordion__title {
    display: block;
    padding: 1rem;
    background-color: white;
    color: var(--color-heading);
    font-weight: 600;
    cursor: pointer;
    position: relative;
}

.accordion__title::after {
    content: '+';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    transition: var(--transition);
}

.accordion__content {
    max-height: 0;
    overflow: hidden;
    background-color: white;
    transition: max-height 0.3s ease;
}

.accordion__content p {
    padding: 1rem;
    margin: 0;
}

.accordion__item input:checked ~ .accordion__title::after {
    content: '-';
}

.accordion__item input:checked ~ .accordion__content {
    max-height: 200px;
}

/* Contact Section */
.contact {
    background-color: var(--color-secondary);
    color: white;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 50px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath fill='%23647B64' d='M0,64L80,64C160,64,320,64,480,69.3C640,75,800,85,960,80C1120,75,1280,53,1360,42.7L1440,32L1440,100L1360,100C1280,100,1120,100,960,100C800,100,640,100,480,100C320,100,160,100,80,100L0,100Z'%3E%3C/path%3E%3C/svg%3E") no-repeat bottom;
    background-size: cover;
}

.contact h2 {
    color: white;
}

.contact h2:after {
    background: white;
}

.contact__content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact__info {
    flex: 1;
}

.contact__item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.contact__icon {
    margin-right: 10px;
    margin-top: 4px;
}

.contact__map {
    margin-top: 1.5rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contact__form {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.contact__form h3 {
    color: white;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Footer Styles */
.footer {
    background-color: var(--color-heading);
    color: white;
    padding: 3rem 0 1rem;
}

.footer__content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer__logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer__logo svg {
    margin-right: 10px;
}

.footer__logo span {
    font-weight: 700;
    font-size: 1.25rem;
}

.footer h3 {
    color: white;
    position: relative;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

.footer h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--color-primary);
}

.footer__links ul li {
    margin-bottom: 0.5rem;
}

.footer__links ul li a {
    color: rgba(255, 255, 255, 0.8);
}

.footer__links ul li a:hover {
    color: var(--color-primary);
}

.footer__bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 44, 44, 0.95);
    color: white;
    padding: 1rem;
    z-index: 1000;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
}

.cookie-popup__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: var(--container-width);
    margin: 0 auto;
    text-align: center;
}

.cookie-popup__text {
    margin-bottom: 1rem;
}

.cookie-popup__buttons {
    display: flex;
    gap: 1rem;
}

/* Thank You Page */
.thank-you {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 0;
}

.thank-you__content {
    max-width: 600px;
    padding: 3rem 2rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
}

.thank-you__icon {
    margin: 0 auto 2rem;
    width: 80px;
    height: 80px;
    background-color: var(--color-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thank-you__icon svg {
    width: 40px;
    height: 40px;
    fill: white;
}

.thank-you h1 {
    margin-bottom: 1.5rem;
    text-align: center;
}

.thank-you p {
    margin-bottom: 2rem;
    text-align: center;
}

.thank-you .btn {
    display: inline-block;
    margin: 0 auto;
}

/* Media Queries */
@media (min-width: 576px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    .benefits__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    section {
        padding: 5rem 0;
    }
    
    .hero .container {
        flex-direction: row;
        align-items: center;
        gap: 2rem;
    }
    
    .hero__content {
        order: 1;
        flex: 1;
    }
    
    .hero__image {
        order: 2;
        flex: 1;
    }
    
    .about__content {
        flex-direction: row;
        align-items: center;
        gap: 2rem;
    }
    
    .about__text {
        order: 1;
        flex: 1;
    }
    
    .about__image {
        order: 2;
        flex: 1;
    }
    
    .products__grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .steps {
        flex-direction: row;
    }
    
    .step {
        flex: 1;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .step__number {
        margin-right: 0;
        margin-bottom: 1rem;
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .contact__content {
        flex-direction: row;
    }
    
    .footer__content {
        flex-direction: row;
    }
    
    .footer__info {
        flex: 2;
    }
    
    .footer__contact, .footer__links {
        flex: 1;
    }
    
    .cookie-popup__content {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .cookie-popup__text {
        margin-bottom: 0;
        text-align: left;
    }
}

@media (min-width: 992px) {
    .header__nav {
        display: block;
    }
    
    .header__nav ul {
        display: flex;
    }
    
    .header__nav li {
        margin-left: 1.5rem;
    }
    
    .header__nav a {
        font-weight: 600;
        color: var(--color-heading);
    }
    
    .header__nav a:hover {
        color: var(--color-primary);
    }
    
    .header__toggle {
        display: none;
    }
    
    .mobile-nav {
        display: none;
    }
    
    .benefits__grid {
        grid-template-columns: repeat(3, 1fr);
    }
} 