/*
Theme Name: Claimedresell
Author: BekBekBek
Version: 1.0
*/

/* ── Reset & Base ── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background: #FFFFFF;
    color: #3E342C;
    font-size: 15px;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

/* ── Typografi ── */
h1 {
    font-size: 50px;
    color: #3E342C;
}

h2 {
    font-size: 35px;
    color: #3E342C;
}

h3 {
    font-size: 25px;
    color: #3E342C;
}

p {
    font-size: 18px;
    color: #3E342C;
}

/* ── Header ── */
.site-header {
    background: #1a1a1a;
    border-bottom: 1px solid #e8e8e8;
    padding: 0 40px;
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    height: 70px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    margin: 0;
    padding: 0;
}

.nav-menu a:hover {
    opacity: 0.6;
}

.header-kurv a:hover {
    opacity: 0.6;
}

.header-logo a {
    color: #ffffff;
}

.nav-menu a {
    color: #ffffff;
}

.header-kurv a {
    color: #ffffff;
}

/* ── Main ── */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* ── Kategori grid ── */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 30px;
}

.category-grid a {
    display: block;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.category-grid a:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.category-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.category-grid p {
    padding: 15px;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    color: #3E342C;
}

/* ── Produkt grid ── */
ul.products {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)) !important;
    gap: 30px !important;
    list-style: none !important;
    padding: 0 !important;
}

ul.products li.product {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    overflow: hidden;
    transition: box-shadow 0.2s;
}

ul.products li.product:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

ul.products li.product img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

ul.products li.product h2,
ul.products li.product .woocommerce-loop-product__title {
    font-size: 13px !important;
    letter-spacing: 0.5px;
    padding: 15px 15px 5px !important;
    font-weight: 600;
}

ul.products li.product .price {
    padding: 0 15px 15px;
    font-size: 13px;
    color: #555;
}

li.product {
    width: 100% !important;
}

/* ── Footer ── */
footer {
    border-top: 1px solid #e8e8e8;
    padding: 30px 40px;
    text-align: center;
    font-size: 12px;
    color: #999;
    letter-spacing: 1px;
    margin-top: 60px;
}