/* ============================================
   LANDING.CSS – HARD FIXED DESKTOP VERSION
   Full Website locked to 1200px
   ============================================ */

/* ===============================
   GLOBAL RESET
=================================*/
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    background: #000;                 /* Schwarze Seitenränder */
    font-family: 'Inter', sans-serif;
    color: #ffffff;
}

/* ===============================
   PAGE WRAPPER (FIXED WIDTH)
=================================*/
.page-wrapper {
    width: 1200px;
    margin: 0 auto;
    background: #5a0f0f;              /* Dunkles Rot für den Inhalt */
    min-height: 100vh;
}

/* ===============================
   NAVBAR
=================================*/
.navbar {
    width: 1200px;
    margin: 0 auto;
    background: #000;
    padding: 15px 40px;
}

.navbar-brand {
    font-weight: 700;
    font-size: 20px;
    color: #fff;
}

.navbar .btn {
    margin-left: 10px;
}

/* Navbar-Logo vergrößern */
.navbar-brand img {
    height: 80px !important;
    width: auto !important;
}

/* ===============================
   SECTIONS
=================================*/
section {
    width: 1200px;
    margin: 0 auto;
    padding: 100px 60px;
}

/* ===============================
   FEATURED PRODUCTS HEADING
=================================*/
.featured-products {
    text-align: center;
}
.featured-products h2 {
    font-size: 42px;
    margin-bottom: 70px;
}

/* ===============================
   BUTTONS (allgemein)
=================================*/
.btn-primary {
    background: linear-gradient(135deg, #ff4d4d, #cc0000);
    border: none;
    padding: 14px 40px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 0, 0, 0.4);
}

/* ===============================
   FOOTER
=================================*/
footer {
    width: 1200px;
    margin: 0 auto;
    background: #000;
    padding: 50px;
    text-align: center;
}
footer p {
    margin: 0;
    color: #888;
}
/* Footer-Logo vergrößern */
footer img {
    height: 70px !important;
    width: auto !important;
}
/* "Powered by"-Zeile ausblenden */
footer p:last-child {
    display: none !important;
}

/* ===============================
   PRODUKTKARTEN (PTEROCA THEME)
   – 1200px Breite, 180px Höhe
   – Button rechts, ohne Hintergrund, rote Schrift "ORDER NOW"
=================================*/
/* Container auf 1200px begrenzen */
section .container {
    max-width: 1200px !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 0 !important;
}

/* Spalten auf volle Breite setzen (Karten untereinander) */
section .col-lg-4 {
    width: 100% !important;
    flex: 0 0 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin-bottom: 20px;
}

/* Die Karte selbst */
section .custom-card {
    width: 1200px !important;
    height: 180px !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 20px;
    padding: 0 40px !important;
    background-size: cover !important;
    background-position: center !important;
    border-radius: 20px;
    box-shadow: 0 30px 70px rgba(0,0,0,0.6);
    position: relative;
    overflow: hidden;
}

/* Dunkler Verlaufs-Overlay */
section .custom-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(15,23,42,0.95) 40%, rgba(15,23,42,0.7) 70%, rgba(15,23,42,0.2) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Alle Inhalte über dem Overlay */
section .custom-card > * {
    position: relative;
    z-index: 2;
    display: inline-block !important;
    white-space: nowrap !important;
    margin: 0 !important;
    vertical-align: middle;
}

/* Überschrift (h4) */
section .custom-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: white;
    margin-right: 10px;
}

/* Doppelten Titel (p) ausblenden */
section .custom-card p.text-muted.small {
    display: none !important;
}

/* Preis-Container */
section .custom-card .product-price {
    font-size: 26px;
    font-weight: 800;
    color: #ff4d4d;
    margin-right: 10px;
    display: flex !important;
    align-items: center;
    gap: 3px;
}
section .custom-card .product-price small {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255,255,255,0.7);
}

/* "Click to view the offer" ausblenden */
section .custom-card .flex-grow-1 {
    display: none !important;
}

/* Dekorativen Strich oben ausblenden */
section .custom-card .position-absolute.top-0.start-50 {
    display: none !important;
}

/* Button – Originaltext ausblenden, durch "ORDER NOW" ersetzen */
section .custom-card a.btn-primary {
    padding: 0;
    width: auto !important;
    font-size: 0 !important;               /* Originaltext verstecken */
    background: transparent !important;
    border: none !important;
    color: #ff4d4d !important;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
    margin-left: auto;                      /* Button nach rechts schieben */
    flex-shrink: 0;
    white-space: nowrap;
    position: relative;
    min-width: 1200px;
    text-align: center;
}
section .custom-card a.btn-primary:hover {
    transform: translateY(-2px);
    text-decoration: underline;
    box-shadow: none;
}
section .custom-card a.btn-primary::after {
    content: "ORDER NOW";
    font-size: 18px !important;
    font-weight: 600;
    color: #ff4d4d !important;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
}

/* ===============================
   LOGIN-SEITE (basierend auf finalem HTML)
   – Logo zentriert
   – "Welcome Back" und Beschreibung ausgeblendet
   – Felder und Button kleiner, Button zentriert
=================================*/
/* Linke Spalte – Logo zentrieren (ultimative Regel) */
.login-split-left .login-logo {
    text-align: center !important;
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}
.login-split-left .login-logo img {
    display: block !important;
    margin: 0 auto !important;
    max-width: 100% !important;
    height: auto !important;
    float: none !important;
}

/* "Welcome Back" und Beschreibungstext ausblenden */
.login-split-left .login-brand-title,
.login-split-left .login-brand-subtitle {
    display: none !important;
}

/* Feature-Liste ausblenden (Secure & Protected etc.) */
.login-split-left .login-features {
    display: none !important;
}

/* Rechte Spalte – Eingabefelder kleiner */
.login-split-right .form-control.form-control-lg {
    padding: 0.5rem 1rem !important;
    font-size: 0.9rem !important;
    height: auto !important;
}

/* Login-Button kleiner und zentriert */
.login-split-right button[type="submit"].btn.primary {
    padding: 0.6rem 1rem !important;
    font-size: 1rem !important;
    line-height: 1.5 !important;
    border-radius: 5px !important;
    width: auto !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: inline-block !important;
}
.login-split-right .d-grid {
    display: flex !important;
    justify-content: center !important;
}