.lp-header {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 15px 30px;
}

.lp-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lp-nav ul {
    display: flex;
    align-items: center;
    gap: 25px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.lp-nav li {
    margin: 0;
    padding: 0;
}

.lp-nav a {
    color: #222;
    text-decoration: none;
}

.lp-nav a:hover {
    opacity: 0.65;
}

.lp-logo a {
    font-size: 20px;
    font-weight: 600;
    color: #222;
    text-decoration: none;
}

.lp-search-icon {
    cursor: pointer;
    font-size: 20px;
    color: #444;
}

#lp-search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 0;
    background: rgba(255,255,255,0.95);
    overflow: hidden;
    transition: height 0.3s ease;
    z-index: 9999;
}

#lp-search-overlay.lp-open {
    height: 100%;
}

.lp-search-overlay-inner {
    margin-top: 150px;
    text-align: center;
}

.lp-search-input {
    width: 60%;
    padding: 12px;
    font-size: 18px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.lp-search-submit {
    padding: 12px 20px;
    margin-left: 10px;
    background: #222;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.lp-footer {
    padding: 30px;
    text-align: center;
    color: #666;
    font-size: 14px;
    border-top: 1px solid #eee;
    background: #fff;
}

.lp-product-card {
    display: block;
    text-align: center;
    padding: 20px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 6px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lp-product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.lp-product-image img {
    border-radius: 6px;
}

.lp-product-title {
    margin-top: 15px;
    font-size: 16px;
    color: #222;
}

.lp-product-price {
    display: block;
    margin-top: 8px;
    font-size: 15px;
    color: #444;
}

.lp-single-product {
    display: flex;
    gap: 40px;
    padding: 40px;
}

.lp-single-images img {
    border-radius: 6px;
}

.lp-single-summary {
    max-width: 400px;
}

.lp-404 {
    text-align: center;
    padding: 120px 30px;
}

.lp-404-inner h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.lp-button {
    display: inline-block;
    padding: 12px 24px;
    background: #222;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
}

.lp-contact-inner {
    max-width: 600px;
    margin: 40px auto;
    padding: 20px;
}

.lp-contact-form input,
.lp-contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.lp-contact-form textarea {
    height: 150px;
}

.lp-dark-toggle {
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    margin-left: 20px;
    user-select: none;
    transition: opacity 0.2s ease;
}

.lp-dark-toggle:hover {
    opacity: 0.6;
}


body.lp-dark {
    background: var(--color-bg-dark);
    color: var(--color-text-dark);
}

body.lp-dark .lp-header,
body.lp-dark .lp-footer {
    background: var(--color-bg-dark);
    border-color: var(--color-border-dark);
}

body.lp-dark .lp-product-card {
    background: #1a1a1a;
    border-color: #333;
}

body.lp-dark .lp-masonry-item img {
    box-shadow: none;
}

