/* ==================== Video ============== */
.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: #000;
    overflow: hidden;
    margin-bottom: 1rem;
}
.video-thumbnail {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
}
.video-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.7);
    padding: 1rem;
    text-align: center;
    color: white;
    border-radius: 0.5rem;
}
.play-video-btn {
    background-color: #007bff;
    border: none;
    padding: 0.5rem 1.2rem;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 0.25rem;
}

/* ==================== Produktsterne ============== */
.product-stars {
    display: inline-block;
    font-size: 1.2rem;
    font-family: Arial, sans-serif;
}
.product-stars .star-full {
    color: #ffcc00;
}
.product-stars .star-empty {
    color: #ccc;
}

/* ==================== Footer & Cards ============== */
.footer-widget {
    min-height: 120px;
}
.product-card {
    min-height: 480px;
}
.product-card img {
    display: block;
    max-width: 100%;
    height: auto;
}
.btn-add-cart {
    min-height: 38px;
    display: inline-block;
    white-space: nowrap;
}
.cart-btn {
    min-height: 35px;
    font-size: 13px;
}

/* ==================== Mobile Header ============== */
.mob-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    background-color: #131921;
    color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 8px 12px;
}
.mob-header .header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.mob-logo img {
    height: 32px;
}
.mob-search {
    display: flex;
    flex-grow: 1;
    background: white;
    border-radius: 4px;
    overflow: hidden;
    height: 38px;
    margin: 0 10px;
}
.mob-search input {
    flex: 1;
    border: none;
    padding: 0 10px;
    font-size: 14px;
    outline: none;
}
.mob-search button {
    background: #febd69;
    border: none;
    padding: 0 12px;
    cursor: pointer;
}
.mob-icons {
    display: flex;
    gap: 8px;
    align-items: center;
    position: relative;
    font-size: 24px;
    color: white;
}
.cart-count {
    position: absolute;
    top: -6px;
    right: -10px;
    background: #ff9900;
    color: #131921;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 12px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ==================== Nav Tabs (Amazon Style) ============== */
.nav-tabs-bar {
    background-color: #232f3e;
    padding: 8px 0;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.nav-tabs-bar::-webkit-scrollbar {
    display: none;
}
.nav-tabs-bar a {
    display: inline-block;
    color: white;
    text-decoration: none;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.2s ease, color 0.2s ease;
    margin: 0 2px;
}
.nav-tabs-bar a:hover {
    background-color: #ffb84d;
    color: #131921;
    font-weight: bold;
}
.nav-tabs-bar a.active {
    background-color: #ff9900;
    color: #131921;
    font-weight: 600;
    padding-bottom: 11px;
    margin-bottom: -1px;
}
.nav-tabs-bar a.active,
.nav-tabs-bar a:hover {
    border-radius: 0;
}

/* ==================== Banner ============== */
.deals-banner {
    background: linear-gradient(135deg, #ff9900, #ffb84d);
    color: #131921;
    padding: 14px;
    text-align: center;
}
.deals-banner h2 {
    font-size: 17px;
    margin-bottom: 4px;
    font-weight: bold;
}
.deals-banner p {
    font-size: 13px;
    opacity: 0.9;
    margin: 0;
}

/* ==================== Diverses ============== */
.govalshape {
    border-radius: 10px;
}
