/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors from original site */
    --color-beige: #F3E8D8;
    --color-pink: #F2C8CB;
    --color-dark: #3D3A36;
    --color-black: #000000;
    --color-white: #FFFFFF;
    --color-gray: #7A746C;

    /* Fonts */
    --font-heading: Georgia, 'Times New Roman', serif;
    --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--color-dark);
    background-color: var(--color-white);
}

.container {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    background-color: var(--color-white);
    padding: 18px 0;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo h1 {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--color-black);
    font-weight: normal;
}

.logo img {
    height: 80px;
    width: auto;
}

.cart-btn,
.account-btn {
    background: none;
    border: none;
    color: var(--color-black);
    font-size: 16px;
    cursor: pointer;
    padding: 8px 12px;
    transition: opacity 0.3s ease;
}

.cart-btn:hover,
.account-btn:hover {
    opacity: 0.7;
}

/* Hero Section */
.hero {
    background-color: var(--color-white);
    padding: 80px 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h2 {
    font-family: var(--font-heading);
    font-size: 48px;
    color: var(--color-black);
    margin-bottom: 20px;
    font-weight: normal;
    line-height: 1.4;
}

.hero p {
    font-size: 20px;
    color: var(--color-dark);
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    background-color: var(--color-pink);
    color: var(--color-black);
    padding: 16px 40px;
    text-decoration: none;
    font-size: 18px;
    border: 1px solid var(--color-black);
    transition: all 0.3s ease;
    font-family: var(--font-body);
    letter-spacing: 0.05em;
}

.cta-button:hover {
    background-color: var(--color-black);
    color: var(--color-white);
}

/* Order Info Section */
.order-info-section {
    padding: 60px 0;
    background-color: var(--color-beige);
    text-align: center;
}

.order-info-content {
    max-width: 700px;
    margin: 0 auto;
}

.order-info-content h3 {
    font-family: var(--font-heading);
    font-size: 38px;
    color: var(--color-black);
    margin-bottom: 20px;
    font-weight: normal;
}

.order-info-content .divider {
    margin-bottom: 30px;
}

.order-info-content p {
    font-size: 18px;
    color: var(--color-dark);
    margin-bottom: 20px;
    line-height: 1.6;
}

.order-steps {
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
    padding-left: 20px;
}

.order-steps li {
    font-size: 18px;
    color: var(--color-dark);
    margin-bottom: 15px;
    line-height: 1.6;
}

.email-link {
    color: var(--color-black);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid var(--color-pink);
    transition: all 0.3s ease;
}

.email-link:hover {
    color: var(--color-black);
    border-bottom-color: var(--color-black);
}

/* Products Section */
.products-section {
    padding: 80px 0;
    background-color: var(--color-white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h3 {
    font-family: var(--font-heading);
    font-size: 40px;
    color: var(--color-black);
    margin-bottom: 20px;
    font-weight: normal;
}

.divider {
    width: 30px;
    height: 3px;
    background-color: var(--color-black);
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: var(--color-beige);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    width: 100%;
    padding-top: 100%;
    position: relative;
    background-color: var(--color-beige);
    overflow: hidden;
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.placeholder-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-beige) 0%, var(--color-pink) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-info {
    padding: 20px;
    text-align: left;
}

.product-info h4 {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--color-black);
    margin-bottom: 8px;
    font-weight: normal;
}

.product-description {
    font-size: 14px;
    color: var(--color-gray);
    margin-bottom: 12px;
}

.product-price {
    font-size: 18px;
    color: var(--color-black);
    font-weight: bold;
    margin-bottom: 15px;
}

.add-to-cart {
    width: 100%;
    background-color: var(--color-pink);
    color: var(--color-white);
    border: 1px solid var(--color-black);
    padding: 12px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-to-cart:hover {
    background-color: var(--color-white);
    color: var(--color-pink);
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background-color: var(--color-white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.team-card {
    background-color: var(--color-beige);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-image {
    width: 100%;
    padding-top: 100%;
    position: relative;
    background-color: var(--color-beige);
    overflow: hidden;
}

.team-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-info {
    padding: 20px;
    text-align: center;
}

.team-info h4 {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--color-black);
    margin-bottom: 8px;
    font-weight: normal;
}

.team-name {
    font-size: 18px;
    color: var(--color-dark);
    font-weight: 600;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: var(--color-beige);
}

.about-content {
    max-width: 700px;
    margin: 0 auto;
}

.about-content h3 {
    font-family: var(--font-heading);
    font-size: 38px;
    color: var(--color-black);
    margin-bottom: 20px;
    font-weight: normal;
}

.about-content .divider {
    margin-bottom: 30px;
}

.about-content p {
    font-size: 18px;
    color: var(--color-dark);
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Footer */
.site-footer {
    background-color: var(--color-white);
    padding: 60px 0 20px;
    box-shadow: 0 -1px 4px rgba(0, 0, 0, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--color-black);
    margin-bottom: 15px;
    font-weight: normal;
}

.footer-section p {
    font-size: 16px;
    color: var(--color-gray);
    margin-bottom: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--color-beige);
}

.footer-bottom p {
    font-size: 14px;
    color: var(--color-gray);
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-black);
    text-decoration: none;
    font-size: 16px;
    padding: 8px 16px;
    border: 1px solid var(--color-black);
    background-color: var(--color-pink);
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--color-black);
    color: var(--color-white);
}

.social-link svg {
    flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .hero h2 {
        font-size: 36px;
    }

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

    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 20px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-header h3 {
        font-size: 32px;
    }

    .about-content h3 {
        font-size: 32px;
    }

    .order-info-content h3 {
        font-size: 32px;
    }

    .order-steps li {
        font-size: 16px;
    }

    .social-links {
        flex-direction: column;
        align-items: flex-start;
    }

    .social-link {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 40px 0;
    }

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

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 100%;
        max-width: 280px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .team-section {
        padding: 40px 0;
    }

    .section-header h3,
    .about-content h3,
    .order-info-content h3 {
        font-size: 28px;
    }

    .order-info-section {
        padding: 40px 0;
    }

    .order-steps {
        padding-left: 15px;
    }

    .order-steps li {
        font-size: 15px;
    }
}
