/* ---------------------------------------------------
   RESET + GLOBAL
--------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    font-family: 'Inter', sans-serif;
    background: #f5f5f7;
    color: #111;
    line-height: 1.5;
}

a {
    text-decoration: none;
    cursor: pointer;
    color: inherit;
}

/* ---------------------------------------------------
   HEADER + NAVIGATION
--------------------------------------------------- */

header {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10, 15, 30, 0.85);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #1a1a1a;
}

.laser-nav {
    max-width: 1250px;
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
}

.logo span {
    color: #f59e0b;
}

.main-nav {
    display: flex;
    list-style: none;
    gap: 20px;
}

.main-nav a {
    color: #ccc;
    font-weight: 500;
    transition: color 0.2s;
}

.main-nav a:hover,
.main-nav a.active {
    color: #f59e0b;
}

/* ---------------------------------------------------
   MAIN CONTENT WRAPPER
--------------------------------------------------- */

.page-content {
    width: 100%;
    max-width: 1450px;
    margin: 0 auto 60px auto;
    padding: 0 20px;
}

/* ---------------------------------------------------
   STARTSEITE / KATEGORIEN
--------------------------------------------------- */

.container {
    max-width: 1250px;
    margin: 40px auto;
}

.page-header {
    margin-bottom: 24px;
}

.page-header h1 {
    font-size: 1.8rem;
    margin-bottom: 6px;
}

.page-header p {
    color: #555;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 18px;
}

.category-card {
    background: #fff;
    border-radius: 12px;
    padding: 18px;
    border: 1px solid #eee;
    transition: box-shadow .2s, transform .2s;
}

.category-card:hover {
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    transform: translateY(-2px);
}

.category-title {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.category-meta {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 12px;
}

.category-btn {
    display: inline-block;
    background: #0f172a;
    color: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
}

.category-btn:hover {
    background: #1e293b;
}

/* ---------------------------------------------------
   FOOTER
--------------------------------------------------- */

.laser-footer {
    background: #fff;
    padding: 30px 20px;
    text-align: center;
    border-top: 1px solid #eee;
}

.footer-links {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.footer-links a {
    color: #0f172a;
    font-weight: 600;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-note {
    font-size: 0.85rem;
    color: #666;
}

/* ---------------------------------------------------
   MOBILE FIXES
--------------------------------------------------- */

@media (max-width: 900px) {

    .laser-nav {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .main-nav {
        justify-content: center;
        flex-wrap: wrap;
    }

    .page-content {
        padding: 0 12px;
    }

    img {
        max-width: 100%;
        height: auto;
        display: block;
    }
}


/* ---------------------------------------------------
   KATEGORIESEITE
--------------------------------------------------- */

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 18px;
    margin-top: 20px;
}

.category-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    transition: box-shadow .2s, transform .2s;
}

.category-card:hover {
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    transform: translateY(-2px);
}

.category-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    border-radius: 8px;
    background: #fafafa;
    margin-bottom: 10px;
}

.category-title {
    font-size:
}

/* ---------------------------------------------------
   BREADCRUMBS
--------------------------------------------------- */

.breadcrumbs {
    font-size: 0.85rem;
    color: #555;
    margin: 12px 0 20px 0;
}

.breadcrumbs a {
    color: #0f172a;
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.breadcrumbs span {
    margin: 0 6px;
}

/* ---------------------------------------------------
   PRODUKTSEITE LAYOUT
--------------------------------------------------- */

.product-page h1 {
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 30px;
    align-items: start;
}

/* ---------------------------------------------------
   PRODUKTBILD
--------------------------------------------------- */

.product-image {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 16px;
}

.product-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    aspect-ratio: 1 / 1;
}

/* ---------------------------------------------------
   BUY BOX
--------------------------------------------------- */

.product-box {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 18px;
    position: sticky;
    top: 90px;
}

.product-price {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.product-uvp {
    font-size: 0.95rem;
    color: #888;
    text-decoration: line-through;
    margin-bottom: 12px;
}

.product-meta {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 16px;
}

.product-cta {
    display: block;
    text-align: center;
    background: #f59e0b;
    color: #111;
    padding: 12px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    margin-bottom: 10px;
}

.product-cta:hover {
    background: #fbbf24;
}

.affiliate-note {
    font-size: 0.75rem;
    color: #666;
    text-align: center;
}

/* ---------------------------------------------------
   DETAILS & BESCHREIBUNG
--------------------------------------------------- */

.product-details,
.product-description {
    margin-top: 30px;
    max-width: 900px;
}

.product-details h2,
.product-description h2 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.product-details ul {
    list-style: none;
    padding: 0;
}

.product-details li {
    padding: 6px 0;
    border-bottom: 1px solid #eee;
    font-size: 0.95rem;
}

.product-description p {
    font-size: 0.95rem;
    color: #444;
}

/* ---------------------------------------------------
   HÄNDLERHINWEIS
--------------------------------------------------- */

.merchant-info {
    margin-top: 40px;
    font-size: 0.85rem;
    color: #666;
    max-width: 900px;
}

/* ---------------------------------------------------
   MOBILE
--------------------------------------------------- */

@media (max-width: 900px) {

    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-box {
        position: static;
    }

    .product-page h1 {
        font-size: 1.4rem;
    }
}


html, body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
}

main {
  flex: 1; /* schiebt den Footer nach unten */
}

.laser-footer {
  background: #fff;
  border-top: 1px solid #e5e7eb;
  padding: 20px 12px;
  text-align: center;
}
