/* ===========================
   BRAND VARIABLES
=========================== */

:root {
    --brand-pink: #e8a0a2;
    --brand-pink-light: #f4d1d2;
    --brand-brown: #2d2424;
    --brand-bg: #fcf9f9;

    --white: #ffffff;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

/* ===========================
   GLOBAL RESET
=========================== */

*, *::before, *::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    background: var(--brand-bg);
    color: var(--brand-brown);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

/* ===========================
   HEADER (clean, mobile-first)
=========================== */

.site-header {
    background: var(--brand-pink-light);
    padding: 10px 0; /* tighter vertical height */
    text-align: center;
    border-bottom: 1px solid var(--brand-pink);
}

.header-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Dynamic, responsive logo scaling */
.site-logo {
    display: block;
    margin: 0 auto;
    height: auto;

    /* Dynamic scaling */
    width: clamp(180px, 40vw, 420px);
    /* 
       - Minimum: 180px (small phones)
       - Scales with viewport width (40vw)
       - Maximum: 420px (large desktop)
    */

    margin-bottom: 8px;
}

/* Navigation */
.main-nav {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.main-nav a {
    text-decoration: none;
    color: var(--brand-brown);
    font-weight: 600;
}

.main-nav a:hover {
    color: var(--brand-pink);
}

/* Mobile refinement */
@media (max-width: 480px) {
    .site-header {
        padding: 6px 0; /* tighter header on small screens */
    }

    .site-logo {
        width: clamp(200px, 60vw, 300px); /* bigger on mobile */
    }
}


/* ===========================
   HERO (mobile-first)
=========================== */

.hero {
    background: var(--brand-pink-light);
    padding: 40px 20px;
    text-align: center;
    border-radius: 12px;
    margin-top: 20px;
}

.hero h2 {
    font-family: var(--font-heading);
    font-size: 1.9rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1rem;
    color: #5a4f4f;
    margin-bottom: 20px;
}

/* ===========================
   BUTTONS
=========================== */

.btn-primary {
    display: inline-block;
    background: var(--brand-pink);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s ease;
}

.btn-primary:hover {
    background: var(--brand-brown);
    transform: translateY(-2px);
}

/* ===========================
   ABOUT
=========================== */

.about-section {
    background: var(--white);
    border: 1px solid var(--brand-pink-light);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    margin-top: 40px;
}

.about-section h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
}

/* ===========================
   PRODUCT GRID (mobile-first)
=========================== */

.category-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    border-bottom: 2px solid var(--brand-pink-light);
    padding-bottom: 10px;
    margin: 40px 0 20px;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.product-card {
    background: var(--white);
    border: 1px solid #f0e6e6;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.03);
}

.product-image-placeholder {
    width: 100%;
    height: 140px;
    background: #fceeed;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-pink);
    font-weight: 600;
    margin-bottom: 15px;
}

.price {
    font-weight: 600;
    margin-bottom: 15px;
}

/* ===========================
   FOOTER
=========================== */

.site-footer {
    background: var(--brand-brown);
    color: var(--white);
    text-align: center;
    padding: 40px 20px;
    margin-top: 60px;
}

.site-footer a {
    color: var(--brand-pink-light);
}

.footer-brand {
    margin-top: 20px;
}

.soretech-icon {
    height: 40px;
    opacity: 0.9;
}

.footer-copy {
    font-size: 0.85rem;
    color: #d8d8d8;
}
.soretech-icon {
    height: 40px; /* current */
}

/* Reduce size on all screens */
.soretech-icon {
    height: 12px; /* ~30% of original */
    opacity: 0.9;
}
.footer-brand {
    margin-top: 20px;
}

.footer-inline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.85rem;
    color: #d8d8d8;
}

.footer-separator {
    opacity: 0.7;
}

.soretech-icon {
    height: 12px; /* your new size */
    opacity: 0.9;
}


/* ===========================
   TABLET BREAKPOINT
=========================== */

@media (min-width: 600px) {
    .hero h2 {
        font-size: 2.2rem;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }

    .site-logo {
        max-width: 160px;
    }
}

/* ===========================
   DESKTOP BREAKPOINT
=========================== */

@media (min-width: 900px) {
    .header-inner {
        flex-direction: row;
        gap: 12px;
    }

    .hero h2 {
        font-size: 2.6rem;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }

    .site-logo {
        max-width: 180px;
    }
}
