/*
Theme Name: ISAMAYA
Theme URI: https://isamaya.com
Author: ISAMAYA
Author URI: https://isamaya.com
Description: A minimalist WordPress theme for ISAMAYA beauty brand
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: isamaya

This theme is designed for ISAMAYA beauty brand with a minimalist, high-end aesthetic.
*/

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #000;
    background-color: #fcfcfc;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header styles */
.top-promo {
    background-color: #f0f0f0;
    text-align: center;
    padding: 0.75rem 0;
    font-size: 0.875rem;
    font-weight: 500;
}

.main-nav {
    position: sticky;
    top: 0;
    background-color: #fcfcfc;
    z-index: 1000;
    padding: 1.5rem 0;
    border-bottom: 1px solid #e5e5e5;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: none;
    color: #000;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.search-icon {
    cursor: pointer;
}

/* Hero section */
.hero {
    padding: 8rem 0;
    text-align: center;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #666;
}

.hero-description {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 3rem;
    color: #666;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #333;
}

/* UGC Community section */
.ugc-section {
    padding: 6rem 0;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 4rem;
}

.ugc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.ugc-item {
    text-align: center;
}

.ugc-image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    margin-bottom: 1rem;
}

.ugc-tag {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Membership section */
.membership-section {
    padding: 6rem 0;
    background-color: #f8f8f8;
    text-align: center;
}

.membership-card {
    max-width: 600px;
    margin: 0 auto;
}

/* Featured products section */
.featured-products {
    padding: 6rem 0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.product-card {
    text-align: left;
}

.product-rating {
    margin-bottom: 1rem;
}

.product-image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    margin-bottom: 1.5rem;
}

.product-name {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.product-price {
    font-weight: 600;
    margin-bottom: 1rem;
}

.color-selector {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.color-option {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
    border: 1px solid #e5e5e5;
}

.add-to-cart {
    width: 100%;
    padding: 0.75rem;
    background-color: #000;
    color: #fff;
    border: none;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 0.875rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.add-to-cart:hover {
    background-color: #333;
}

/* Core essentials section */
.core-essentials {
    padding: 6rem 0;
    background-color: #f8f8f8;
}

/* Media endorsements */
.media-endorsements {
    padding: 6rem 0;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 3rem;
    align-items: center;
}

.media-logo {
    width: 100%;
    height: 60px;
    object-fit: contain;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.media-logo:hover {
    opacity: 1;
}

/* Footer */
.footer {
    padding: 6rem 0 2rem;
    background-color: #f8f8f8;
}

.footer-subscribe {
    text-align: center;
    margin-bottom: 4rem;
}

.subscribe-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.subscribe-description {
    max-width: 400px;
    margin: 0 auto 2rem;
    color: #666;
}

.subscribe-form {
    display: flex;
    max-width: 400px;
    margin: 0 auto;
}

.subscribe-input {
    flex: 1;
    padding: 1rem;
    border: 1px solid #e5e5e5;
    border-right: none;
}

.subscribe-btn {
    padding: 1rem 2rem;
    background-color: #000;
    color: #fff;
    border: none;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-column h3 {
    font-weight: 500;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    text-decoration: none;
    color: #666;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #000;
}

.footer-copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #e5e5e5;
    font-size: 0.875rem;
    color: #666;
}

/* Rewards floating button */
.rewards-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: #000;
    color: #fff;
    padding: 1rem;
    border-radius: 50%;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.rewards-float:hover {
    transform: translateY(-5px);
}

/* Shop page styles */
.shop-header {
    padding: 4rem 0;
    text-align: center;
}

.shop-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.shop-description {
    max-width: 600px;
    margin: 0 auto;
    color: #666;
}

.filter-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e5e5;
}

.filter-btn {
    background: none;
    border: 1px solid #000;
    padding: 0.5rem 1rem;
    text-transform: uppercase;
    font-size: 0.875rem;
    cursor: pointer;
}

.product-count {
    margin-left: 1rem;
    color: #666;
}

.sort-select {
    padding: 0.5rem;
    border: 1px solid #e5e5e5;
    text-transform: uppercase;
    font-size: 0.875rem;
}

/* Tutorials page */
.tutorials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.tutorial-card {
    text-align: center;
}

.tutorial-image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    margin-bottom: 1rem;
}

.tutorial-name {
    font-weight: 500;
}

/* About page */
.about-content {
    max-width: 800px;
    margin: 4rem auto;
    text-align: left;
}

.about-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Core Community page */
.community-header {
    padding: 4rem 0;
    text-align: center;
}

.tiers-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 400;
    margin: 4rem 0 2rem;
    text-align: center;
}

.tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.tier-card {
    padding: 2rem;
    border: 1px solid #e5e5e5;
    text-align: center;
}

.tier-name {
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.tier-condition {
    color: #666;
    margin-bottom: 1.5rem;
}

.tier-benefits {
    text-align: left;
}

.tier-benefits li {
    margin-bottom: 0.75rem;
    list-style: none;
    position: relative;
    padding-left: 1.5rem;
}

.tier-benefits li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #000;
}

.earn-points {
    margin: 4rem 0;
}

.points-list {
    max-width: 600px;
    margin: 0 auto;
}

.points-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid #e5e5e5;
}

.redeem-rewards {
    margin: 4rem 0;
    text-align: center;
}

.faq-section {
    margin: 4rem 0;
}

.faq-item {
    max-width: 600px;
    margin: 0 auto 1rem;
    border: 1px solid #e5e5e5;
}

.faq-question {
    width: 100%;
    padding: 1rem;
    background: none;
    border: none;
    text-align: left;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 1rem 1rem;
    display: none;
}

.faq-answer.active {
    display: block;
}

/* Contact page */
.contact-form {
    max-width: 600px;
    margin: 4rem auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e5e5e5;
    font-family: inherit;
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background-color: #000;
    color: #fff;
    border: none;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
}

.captcha-text {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: #666;
    text-align: center;
}

/* Policy pages */
.policy-content {
    max-width: 800px;
    margin: 4rem auto;
}

.policy-content h2 {
    margin: 2rem 0 1rem;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
}

.policy-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.policy-content ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.policy-content li {
    margin-bottom: 0.5rem;
}

/* Responsive styles */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .nav-links {
        display: none;
    }

    .product-grid,
    .ugc-grid,
    .tutorials-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .filter-toolbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
