
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    color: #E3CEB7;
    background-color: #161717;
}

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

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}



.site-header {
    position: sticky;            
    top: 0;
    z-index: 10;
    background-color: #111111;
    border-bottom: 1px solid #333333;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.75rem 0;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.logo-area img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #E3CEB7;
}

.logo-area h1 {
    font-size: 1.4rem;
    margin: 0;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #E3CEB7;
}


.main-nav {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.main-nav a {
    text-decoration: none;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    font-size: 0.95rem;
    border: 1px solid transparent;
    color: #E3CEB7;
    transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
    background-color: #242723;
    color: #E3CEB7;
    border-color: #E3CEB7;
    box-shadow: 0 2px 8px rgba(0,0,0,0.5); 
}




.main-nav .etsy-btn {
    background-color: #F1641E; 
    color: #FFFFFF;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0,0,0,0.6);
    border-color: transparent;
}

.main-nav .etsy-btn:hover {
    background-color: #FFFFFF;
    color: #F1641E;
    border-color: #F1641E;
    box-shadow: 0 6px 16px rgba(0,0,0,0.8);
}



section {
    padding: 2rem 0;
}

.section-heading {
    text-align: center;
    margin-bottom: 1.5rem;
}

.section-heading h2 {
    margin: 0;
    font-size: 1.6rem;
}



.hero {
    background: radial-gradient(circle at top, #242723, #161717 60%);
    padding: 2.5rem 0;
}

.hero-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
}

.hero-text {
    flex: 1 1 280px;
}

.hero-text h2 {
    font-size: 2.1rem;
    margin-top: 0;
}

.hero-text p {
    max-width: 32rem;
}

.hero-image {
    flex: 1 1 260px;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.6);
}



.btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.6rem 1.4rem;
    border-radius: 999px;
    background-color: #E3CEB7;
    color: #161717;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(0,0,0,0.6);
    transition: transform 0.1s ease, box-shadow 0.1s ease, background-color 0.2s ease;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 7px 18px rgba(0,0,0,0.8);
    background-color: #E3D7C5;
}



.feature-grid,
.category-grid,
.review-grid,
.news-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.card {
    flex: 1 1 250px;
    background-color: #1E1F1F;
    border-radius: 0.75rem;
    padding: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.7);
    border: 1px solid #2b2c2c;
}

.card h3,
.card h4 {
    margin-top: 0;
    color: #E3D7C5;
}



.info-strip {
    background-color: #242723;
    color: #E3CEB7;
    padding: 1.5rem 0;
}

.info-strip-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.info-strip h3 {
    margin-top: 0;
}



.page-hero {
    background-color: #1E1F1F;
    padding: 1.8rem 0;
    border-bottom: 1px solid #333333;
}

.page-hero h2 {
    margin: 0 0 0.5rem;
}



.two-column-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}



.table-section table {
    width: 100%;
    border-collapse: collapse;
    background-color: #1E1F1F;
}

.table-section th,
.table-section td {
    border: 1px solid #333333;
    padding: 0.75rem;
    text-align: left;
    font-size: 0.95rem;
}

.table-section th {
    background-color: #242723;
}



.review-grid .review-item {
    display: flex;
    gap: 0.5rem;
}

.review-grid img {
    width: 90px;
    height: 90px;
    border-radius: 0.5rem;
    object-fit: cover;
    border: 1px solid #444;
}



.news-card img {
    border-radius: 0.5rem;
    margin-bottom: 0.5rem;
}



.join-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.join-layout img {
    border-radius: 0.75rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.7);
}

.newsletter-form {
    background-color: #1E1F1F;
    padding: 1.25rem;
    border-radius: 0.75rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.8);
    border: 1px solid #333333;
}

.newsletter-form label {
    display: block;
    margin-top: 0.75rem;
    font-weight: 600;
}

.newsletter-form input,
.newsletter-form select,
.newsletter-form textarea {
    width: 100%;
    padding: 0.5rem;
    margin-top: 0.25rem;
    border-radius: 0.4rem;
    border: 1px solid #555555;
    font: inherit;
    background-color: #161717;
    color: #E3CEB7;
}



.site-footer {
    background-color: #0D0D0D;
    color: #B8B1A5;
    text-align: center;
    padding: 1rem 0;
    margin-top: 2rem;
    font-size: 0.9rem;
}



@media (max-width: 768px) {
    .header-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav ul {
        justify-content: flex-start;
    }

    .hero-inner,
    .two-column-inner,
    .info-strip-inner,
    .join-layout {
        flex-direction: column;
    }
}
.footer-shop-block h3 {
    margin-bottom: 0.25rem;        
}

.footer-shop-block .shop-etsy-footer {
    background-color: #F1641E !important;  
    color: #ffffff !important;
    margin-top: 0.25rem;
}


.footer-shop-block .shop-etsy-footer:hover {
    background-color: #ffffff !important;
    color: #F1641E !important;
    border: 2px solid #F1641E !important;
}
