/* ================================
   Pookiesells – Luxury Neutral Theme
=================================== */

:root {
    --bg-page: #f2e9e4;
    --bg-section: #f7ede6;
    --card-bg: #ffffff;
    --title: #3b302a;
    --text: #6e5849;
    --muted: #a38874;
    --border-soft: #e0d3c5;
    --btn: #c6a27a;
    --btn-hover: #b08968;
    --radius-lg: 28px;
    --radius-md: 18px;
    --shadow-soft: 0 10px 28px rgba(0,0,0,0.07);
}

/* Global reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", Arial, sans-serif;
    background: var(--bg-page);
    color: var(--text);
}

/* Layout wrapper */
.container {
    width: 92%;
    max-width: 1180px;
    margin: auto;
}

/* =================================
   HEADER / NAV (Center Layout)
=================================== */

.header {
    background: var(--bg-section);
    border-bottom: 1px solid var(--border-soft);
    backdrop-filter: blur(6px);
}

.topbar {
    text-align: center;
    padding: 12px 0;
}

.brand img {
    width: 180px;
    object-fit: contain;
}

.nav {
    margin-top: 8px;
    display: flex;
    justify-content: center;
    gap: 24px;
}

.nav a {
    text-decoration: none;
    color: var(--muted);
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
}

.nav a:hover {
    color: var(--title);
}

/* =================================
   BUTTON
=================================== */

.btn {
    display: inline-block;
    background: var(--btn);
    color: #fff;
    padding: 11px 26px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: 0.2s;
    box-shadow: 0 6px 14px rgba(0,0,0,0.10);
}

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

/* =================================
   HERO SECTION
=================================== */

.hero {
    margin: 26px auto 24px;
    padding: 40px;
    background: var(--bg-section);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 30px;
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-soft);
}

.hero-left {
    flex: 1;
}

.hero-left h1 {
    font-size: 34px;
    color: var(--title);
    margin-bottom: 12px;
    line-height: 1.2;
}

.hero-left p {
    max-width: 400px;
    font-size: 15px;
    margin-bottom: 18px;
    color: var(--muted);
}

/* New Hero Logo */
.hero-logo {
    width: 230px;
    height: auto;
    object-fit: contain;
    margin: auto;
    filter: drop-shadow(0 8px 16px rgba(0,0,0,.16));
}

/* =================================
   PRODUCT GRID
=================================== */

.section-title {
    font-size: 18px;
    margin: 22px 0 12px;
    color: var(--title);
    text-transform: uppercase;
    letter-spacing: .12em;
}

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

.card {
    background: var(--card-bg);
    border-radius: var(--radius-md);
    padding: 12px;
    border: 1px solid var(--border-soft);
    text-align: center;
    cursor: pointer;
    transition: .2s ease;
    box-shadow: var(--shadow-soft);
}

.card img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    border-radius: var(--radius-md);
    background: #e0d9cf;
    margin-bottom: 10px;
}

.card h3 {
    color: var(--title);
    font-size: 16px;
    margin-bottom: 4px;
}

.card p {
    font-size: 13px;
    color: var(--muted);
}

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

/* =================================
   FORM CARDS (Customizer/Contact etc.)
=================================== */

.form-card {
    max-width: 700px;
    margin: 30px auto;
    background: var(--card-bg);
    border-radius: var(--radius-md);
    padding: 22px;
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-soft);
}

label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    margin: 18px 0 6px;
    color: var(--muted);
    letter-spacing: .1em;
    text-transform: uppercase;
}

input,select,textarea {
    width: 100%;
    border-radius: 10px;
    padding: 10px;
    border: 1px solid var(--border-soft);
    background: #fbf6f1;
    color: var(--text);
    font-size: 14px;
}

textarea { resize: vertical; }

/* =================================
   CUSTOMIZER (Mobile Case Preview)
=================================== */

.preview-frame {
    width: 260px;
    height: 440px;
    margin: 18px auto;
    border-radius: 32px;
    border: 2px solid var(--border-soft);
    background: #e9dfd4;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-soft);
}

.preview-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.preview-name {
    position: absolute;
    bottom: 24px;
    width: 100%;
    text-align: center;
    color: white;
    font-size: 18px;
    font-weight: 600;
    text-shadow: 0 3px 8px rgba(0,0,0,.6);
}

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

.footer {
    margin-top: 44px;
    padding: 16px 0;
    text-align: center;
    background: #e9ddd0;
    color: var(--muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .12em;
}

/* =================================
   RESPONSIVE
=================================== */

@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        padding: 28px;
        text-align: center;
    }
}
