/* ============================
   AlbertsFinds Style Theme
   ============================ */

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

/* Typography */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    background-color: #fafafa;
    color: #222;
    line-height: 1.6;
}

/* Layout */
header {
    background-color: #fff;
    border-bottom: 1px solid #ddd;
    padding: 25px 10px;
    text-align: center;
}

header img {
    max-width: 200px;
    margin-bottom: 12px;
}

header h1 {
    font-size: 2rem;
    margin-bottom: 4px;
}

header p {
    font-size: 1.05rem;
    color: #555;
}

/* Navigation */
nav {
    background-color: #f2f2f2;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding-left: 0;
}

nav li {
    margin: 5px 18px;
    position: relative;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    padding: 6px 3px;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #000;
}

/* Dropdown Styling */
nav li ul {
    display: none;
    position: absolute;
    top: 28px;
    left: 0;
    background-color: #fff;
    border: 1px solid #ccc;
    list-style: none;
    padding: 8px 0;
    min-width: 170px;
    z-index: 999;
}

nav li:hover ul {
    display: block;
}

nav li ul li {
    margin: 0;
}

nav li ul li a {
    padding: 8px 15px;
    display: block;
    color: #333;
    background-color: #fff;
}

nav li ul li a:hover {
    background-color: #f7f7f7;
}

/* Main Content */
main {
    padding: 40px 20px;
    text-align: center;
}

main h2 {
    font-size: 1.9rem;
    margin-bottom: 15px;
}

main p {
    font-size: 1.15rem;
    color: #444;
    max-width: 750px;
    margin: 0 auto 20px auto;
}

/* Footer */
footer {
    padding: 25px;
    text-align: center;
    font-size: 0.95rem;
    color: #555;
    border-top: 1px solid #ddd;
    margin-top: 40px;
}

/* Buttons (future use) */
.button {
    background-color: #333;
    color: #fff;
    padding: 10px 18px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: #000;
}

/* Responsive */
@media (max-width: 768px) {
    header h1 {
        font-size: 1.7rem;
    }

    nav li {
        margin: 5px 10px;
    }

    main h2 {
        font-size: 1.6rem;
    }

    main p {
        font-size: 1.05rem;
    }
}
/* Poshmark Closet Widget fix */
.poshmark-widget-container {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}

.poshmark-closet-widget {
    text-align: center;
}

.poshmark-closet-widget .shop-more {
    text-align: center;
    background: #fff;
    border: 2px solid #f5f2ee;
    padding: 10px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #000;
    margin-top: 10px;
}