/*
Theme Name: Hoffmann Handel
Theme URI: https://www.hoffmannhandel.com
Author: Hoffmann Handel Team
Author URI: https://www.hoffmannhandel.com
Description: Custom WordPress theme for Hoffmann Handel with complete Elfbar-style homepage
Version: 1.0.9
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hoffmann-theme
*/

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
}

/* Warning Bar */
.warning-bar {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 20px;
    font-size: 18px;
    font-weight: bold;
}

/* Main Header */
.main-header {
    background-color: #fff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: -60px;
    z-index: 1000;
    transition: top 0.3s ease;
}

.main-header.scrolled {
    top: 30px;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.site-logo {
    flex-shrink: 0;
}

.site-logo img {
    height: 50px;
    width: auto;
}

/* Navigation */
.main-navigation {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.main-navigation a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.main-navigation a:hover {
    color: #FF6B9D;
}

/* Header Icons */
.header-icons {
    display: flex;
    gap: 20px;
    flex-shrink: 0;
}

.header-icons a {
    color: #333;
    font-size: 20px;
    transition: color 0.3s ease;
}

.header-icons a:hover {
    color: #FF6B9D;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .header-container {
        flex-wrap: wrap;
    }

    .mobile-menu-toggle {
        display: block;
        order: 3;
    }

    .main-navigation {
        order: 4;
        width: 100%;
        display: none;
        margin-top: 20px;
    }

    .main-navigation.active {
        display: block;
    }

    .main-navigation ul {
        flex-direction: column;
        gap: 15px;
    }

    .header-icons {
        order: 2;
    }
}

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #000;
    margin: 0;
    padding: 0;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100vh;
    max-height: 700px;
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
  position: absolute;
    right: 10%;
    max-width: 600px;
    color: #fff;
    z-index: 10;
    bottom: 7%;
}

.slide-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    display: none;
}

.slide-subtitle {
    font-size: 24px;
    margin-bottom: 25px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    display: none;
}

.slide-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.slide-button:hover {
    background-color: #a3e84d;
}

/* Slider Navigation */
.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    cursor: pointer;
    z-index: 20;
    transition: background-color 0.3s ease;
    font-size: 20px;
}

.slider-prev:hover,
.slider-next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 20;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.slider-dot.active {
    background-color: #b8ff57;
}

/* Slider Mobile Styles */
@media (max-width: 768px) {
    .slider-container {
        height: 70vh;
        max-height: 600px;
    }

    .slide-content {
        left: 5%;
        right: 5%;
        max-width: 90%;
        text-align: center;
    }

    .slide-title {
        font-size: 28px;
    }

    .slide-subtitle {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .slide-button {
        padding: 10px 25px;
        font-size: 14px;
    }

    .slider-prev,
    .slider-next {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .slider-prev {
        left: 5px;
    }

    .slider-next {
        right: 5px;
    }

    .slider-dots {
        bottom: 20px;
    }

    .slider-dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .slider-container {
        height: 60vh;
        max-height: 500px;
    }

    .slide-content {
        left: 3%;
        right: 3%;
    }

    .slide-title {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .slide-subtitle {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .slide-button {
        padding: 8px 20px;
        font-size: 13px;
    }
}

/* Content Grid Section */
.content-grid-section {
    padding: 50px 0;
    margin: 0;
    background-color: #f5f5f5;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.content-grid-item {
    position: relative;
    overflow: hidden;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
}

.grid-item-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.grid-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.full-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.content-grid-item:hover .grid-item-image img {
    transform: scale(1.05);
}

.grid-item-content {
    position: absolute;
    z-index: 10;
    text-align: center;
    color: #fff;
    padding: 40px;
    max-width: 500px;
    right: 0%;
    bottom: 0%;

}

.grid-item-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    display: none;
}

.grid-item-subtitle {
    font-size: 18px;
    margin-bottom: 25px;
    line-height: 1.5;
    text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.5);
}

.grid-item-button {
    display: inline-block;
    padding: 14px 35px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(184, 255, 87, 0.3);
}

.grid-item-button:hover {
    background-color: #a3e84d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 255, 87, 0.4);
}

/* Feature Highlight Section */
.feature-highlight {
    background-color: #ededed;
    padding: 80px 0;
}

.feature-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.feature-title {
    text-align: center;
    margin-bottom: 35px;
    font-size: 24px;
    font-weight: 600;
    color: #000;
}

.feature-card {
    display: flex;
    background: #f8f8f8;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
}

.feature-card-media {
    flex: 1;
    min-height: 360px;
    background: #6d51c7;
    display: flex;
    align-items: stretch;
}

.feature-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.feature-card-placeholder {
    width: 100%;
    background: linear-gradient(135deg, #6d51c7 0%, #5c3ea8 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 14px;
}

.feature-card-content {
    flex: 1;
    padding: 60px 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card-text {
    max-width: 520px;
    color: #2c2c2c;
    font-size: 16px;
    line-height: 1.9;
}

.feature-card-text p {
    margin-bottom: 18px;
    text-decoration: none;
    text-decoration-color: #5e1f1f;
    text-decoration-thickness: 1px;
    text-underline-offset: 6px;
}

@media (max-width: 1024px) {
    .feature-card-content {
        padding: 50px;
    }
}

@media (max-width: 900px) {
    .feature-card {
        flex-direction: column;
    }

    .feature-card-media {
        min-height: 300px;
    }

    .feature-card-content {
        padding: 40px 30px;
    }

    .feature-card-text {
        font-size: 15px;
        line-height: 1.8;
    }
}

@media (max-width: 600px) {
    .feature-highlight {
        padding: 60px 0;
    }

    .feature-title {
        font-size: 20px;
        margin-bottom: 25px;
    }

    .feature-card-content {
        padding: 30px 24px;
    }
}

/* Products Section */
.products-section {
    padding: 60px 0 80px;
    margin: 0;
    background-color: #fff;
}

.products-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-title {
    text-align: center;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #000;
}

.products-slider {
    position: relative;
    overflow: hidden;
    padding: 20px 70px;
    max-width: 100%;
    margin: 0 auto;
}

.products-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease-in-out;
    overflow: visible;
}

.product-item {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}

.product-card {
    background: #ededed;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.4s ease;
    position: relative;
    flex-shrink: 0;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    color: inherit;
    border: none;
}

/* Responsive item widths */
@media (min-width: 1441px) {
    .product-item {
        width: 240px;
    }
}

@media (min-width: 1025px) and (max-width: 1440px) {
    .product-item {
        width: 230px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .product-item {
        width: 220px;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .product-item {
        width: 200px;
    }
}

@media (max-width: 480px) {
    .product-item {
        width: 180px;
    }
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

a.product-card {
    cursor: pointer;
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #FF6B9D 0%, #C86DD7 100%);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: #ededed;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    flex: 1;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-info {
    padding: 0;
    text-align: center;
    background: transparent;
    margin-top: 15px;
}

.product-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #000;
    line-height: 1.3;
}

.product-description {
    font-size: 13px;
    color: #666;
    line-height: 1.3;
    margin-bottom: 0;
}

.product-link {
    display: none;
}

/* Product Slider Navigation */
.products-prev,
.products-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #000;
    color: #fff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s ease;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.products-prev:hover,
.products-next:hover {
    background-color: #333;
    transform: translateY(-50%) scale(1.05);
}

.products-prev {
    left: 10px;
}

.products-next {
    right: 10px;
}

.products-section .section-title + p {
    text-align: center;
    color: #666;
    font-size: 16px;
    margin-bottom: 40px;
}

.products-section .section-title + a {
    display: block;
    text-align: center;
    color: #000;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 40px;
}

.products-section .section-title + a:hover {
    color: #FF6B9D;
}

/* Gradient Section */
.gradient-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-align: center;
}

.gradient-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 30px;
}

.gradient-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.gradient-subtitle {
    font-size: 24px;
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.5;
}

.gradient-text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.9;
}

.gradient-text p {
    margin-bottom: 15px;
}

.gradient-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: #b8ff57;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(184, 255, 87, 0.4);
}

.gradient-button:hover {
    background-color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(255, 255, 255, 0.3);
}

/* Mobile Responsive - Content Grid */
@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0 20px;
    }

    .content-grid-item {
        min-height: 350px;
    }

    .grid-item-title {
        font-size: 28px;
    }

    .grid-item-subtitle {
        font-size: 16px;
    }

    .grid-item-button {
        padding: 12px 28px;
        font-size: 14px;
    }
}

/* Mobile Responsive - Products */
@media (max-width: 1024px) {
    .products-slider {
        padding: 40px 60px;
    }
}

@media (max-width: 768px) {
    .products-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 32px;
        margin-bottom: 10px;
    }

    .products-slider {
        padding: 30px 50px;
    }

    .product-image {
        height: 280px;
        padding: 20px;
    }

    .product-info {
        padding: 15px 20px 20px;
    }

    .product-title {
        font-size: 16px;
    }

    .product-description {
        font-size: 12px;
    }

    .products-prev,
    .products-next {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .products-slider {
        padding: 30px 45px;
    }

    .section-title {
        font-size: 26px;
        margin-bottom: 8px;
    }

    .product-image {
        height: 240px;
        padding: 15px;
    }

    .products-prev,
    .products-next {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }

    .products-prev {
        left: 5px;
    }

    .products-next {
        right: 5px;
    }
}

/* Mobile Responsive - Gradient Section */
@media (max-width: 768px) {
    .gradient-section {
        padding: 70px 0;
    }

    .gradient-title {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .gradient-subtitle {
        font-size: 18px;
        margin-bottom: 25px;
    }

    .gradient-text {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .gradient-button {
        padding: 14px 35px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .gradient-section {
        padding: 50px 0;
    }

    .gradient-title {
        font-size: 26px;
    }

    .gradient-subtitle {
        font-size: 16px;
    }

    .gradient-button {
        padding: 12px 30px;
        font-size: 15px;
    }
}

/* Inner Pages */
.site-main.inner-page {
    background-color: #fff;
}

.page-header {
    background: #5d46bb;
    padding: 80px 0 60px;
    margin: 0;
}

.page-header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.page-title {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    margin: 0;
    text-align: center;
}

.page-content-wrapper {
    padding: 60px 0;
    margin: 0;
}

.page-content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.entry-content {
    line-height: 1.8;
    color: #333;
}

.entry-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #000;
}

.entry-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #000;
}

.entry-content p {
    margin-bottom: 20px;
    font-size: 16px;
}

.entry-content ul,
.entry-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.entry-content li {
    margin-bottom: 10px;
}

.entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

/* Page Mobile Styles */
@media (max-width: 768px) {
    .page-header {
        padding: 60px 0 40px;
    }

    .page-title {
        font-size: 32px;
    }

    .page-content-wrapper {
        padding: 40px 0;
    }

    .entry-content h2 {
        font-size: 26px;
        margin-top: 30px;
    }

    .entry-content h3 {
        font-size: 20px;
        margin-top: 25px;
    }

    .entry-content p {
        font-size: 15px;
    }
}

/* Footer */
.site-footer {
    background-color: #000;
    color: #fff;
    padding: 60px 0 30px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

/* Footer Left Section */
.footer-left {
    flex: 1;
    max-width: 400px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 170px;
    width: auto;
}

.footer-description {
    color: #fff;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.footer-subscription h4 {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 600;
}

.subscription-form {
    display: flex;
    gap: 0;
}

.subscription-form input[type="email"] {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 0;
    font-size: 14px;
}

.subscription-form button {
    background-color: #b8ff57;
    color: #000;
    border: none;
    padding: 12px 25px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.subscription-form button:hover {
    background-color: #a3e84d;
}

/* Footer Divider */
.footer-divider {
    width: 1px;
    background-color: #333;
    align-self: stretch;
}

/* Footer Right Section */
.footer-right {
    flex: 2;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
}

.footer-menu h4 {
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: uppercase;
}

.footer-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu ul li {
    margin-bottom: 12px;
}

.footer-menu ul li a {
    color: #999;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-menu ul li a:hover {
    color: #fff;
}

/* Footer Images */
.footer-images {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-images img {
    width: 100%;
    max-width: 110px;
    height: auto;
}

/* Footer Bottom */
.footer-bottom {
    max-width: 1400px;
    margin: 40px auto 0;
    padding: 20px 30px 0;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-bottom p {
    color: #666;
    font-size: 13px;
    margin: 0;
}

/* Footer Mobile Styles */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 40px;
    }

    .footer-divider {
        display: none;
    }

    .footer-left {
        max-width: 100%;
    }

    .footer-right {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Wavi Template */
.wavi-page {
    background: #f2f2fb;
}

.wavi-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    min-height: 520px;
}

.wavi-hero-overlay {
    background: linear-gradient(90deg, rgba(44, 36, 97, 0.92) 0%, rgba(44, 36, 97, 0.75) 50%, rgba(44, 36, 97, 0.6) 100%);
    width: 100%;
    height: 100%;
}

.wavi-hero-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 80px 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    align-items: center;
}

.wavi-hero-copy h1 {
    color: #fff;
    font-size: 42px;
    margin-bottom: 10px;
}

.wavi-hero-copy .subtitle {
    color: #e2e1ff;
    font-size: 18px;
    margin-bottom: 20px;
}

.wavi-hero-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.wavi-hero-list li {
    color: #fff;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.wavi-hero-list li::before {
    content: '•';
    color: #b8ff57;
    font-size: 20px;
}

.wavi-hero-visual img {
    width: 100%;
    height: auto;
    display: block;
}

.wavi-black-grid {
    background: #000;
    padding: 60px 0 40px;
}

.wavi-black-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.wavi-black-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.wavi-black-card {
    background: #111;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wavi-black-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wavi-battery-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
    align-items: center;
}

.wavi-battery-item {
    background: #0f0f0f;
    border-radius: 12px;
    padding: 12px;
    text-align: center;
}

.wavi-battery-item img {
    max-height: 100px;
    margin: 0 auto;
    display: block;
}

.wavi-section-header {
    text-align: center;
    margin-bottom: 30px;
}

.wavi-section-header h2 {
    color: #2f2fb6;
    font-size: 30px;
    font-weight: 700;
}

.wavi-colors {
    background: #f2f2fb;
    padding: 70px 0 50px;
}

.wavi-colors-row {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 24px;
    justify-items: center;
}

.wavi-color-item img {
    max-height: 220px;
    width: auto;
    display: block;
}

.wavi-flavors {
    background: #fff;
    padding: 70px 0 80px;
}

.wavi-flavor-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
}

.wavi-flavor-card {
    background: #f7f7ff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.wavi-flavor-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.wavi-block-content {
    background: #f2f2fb;
    padding: 50px 0 30px;
    display: none;
}

.wavi-block-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.wavi-block-inner > * {
    margin-bottom: 24px;
}

.wavi-block-inner img {
    border-radius: 12px;
}

.wavi-block-inner .alignfull {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    border-radius: 0;
}

.wavi-block-inner .alignwide {
    width: min(1200px, 100vw);
    max-width: 100vw;
    margin-left: auto;
    margin-right: auto;
}

.page-template-page-wavi .wp-block-image {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.page-template-page-wavi .wp-block-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
}

.wavi-customizer-stack {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    display: flex;
    flex-direction: column;
    padding: 0 0 30px;
}

.wavi-customizer-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
}

.neramax-customizer-stack {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    display: flex;
    flex-direction: column;
    padding: 0 0 30px;
}

.neramax-customizer-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
}

.lm800-customizer-stack {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    display: flex;
    flex-direction: column;
    padding: 0 0 30px;
}

.lm800-customizer-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
}

.nicsalt-page {
    background: #dddddd;
}

.nicsalt-customizer-stack {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    display: flex;
    flex-direction: column;
    padding: 0 0 30px;
}

.nicsalt-customizer-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
}

.bm600-customizer-stack {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    display: flex;
    flex-direction: column;
    padding: 0 0 30px;
    background: #dddddd;
}

.bm600-customizer-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
}

.qm600-customizer-stack {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    display: flex;
    flex-direction: column;
    padding: 0 0 30px;
}

.qm600-customizer-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
}

.contact-page {
    background: #dddddd;
}

.contact-hero {
    padding: 60px 0 20px;
    text-align: center;
}

.contact-hero-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.contact-hero h1 {
    font-size: 36px;
    margin-bottom: 12px;
}

.contact-hero p {
    color: #555;
    font-size: 16px;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px 24px 40px;
}

.contact-card {
    background: #f1f1f1;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #6047bb;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
}

.contact-card h3 {
    font-size: 18px;
    margin: 0;
}

.contact-card p {
    margin: 0;
    color: #555;
    line-height: 1.5;
}

.contact-card a {
    color: inherit;
    text-decoration: none;
}

.contact-card a:hover {
    text-decoration: underline;
}

.contact-map {
    max-width: 1300px;
    margin: 0 auto 50px;
    padding: 0 24px;
}

.contact-map-inner {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
    .wavi-customizer-stack,
    .neramax-customizer-stack,
    .lm800-customizer-stack,
    .nicsalt-customizer-stack,
    .bm600-customizer-stack,
    .qm600-customizer-stack {
        gap: 12px;
    }
}

.wavi-stack {
    background: #f2f2fb;
    padding: 60px 0;
}

.wavi-stack-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    gap: 18px;
}

.wavi-stack-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

/* LM800 Template */
.lm800-page {
    background: #0c3f9c;
}

.lm800-hero {
    min-height: 420px;
    background-size: cover;
    background-position: center;
    color: #fff;
    position: relative;
}

.lm800-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(7, 46, 116, 0.95) 0%, rgba(7, 46, 116, 0.7) 60%, rgba(7, 46, 116, 0.5) 100%);
}

.lm800-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 70px 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    align-items: center;
}

.lm800-hero-copy h1 {
    font-size: 38px;
    margin-bottom: 8px;
    font-weight: 800;
}

.lm800-hero-copy .subtitle {
    font-size: 18px;
    margin-bottom: 16px;
    color: #d7e7ff;
}

.lm800-hero-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
}

.lm800-hero-list li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 6px 12px;
    font-size: 14px;
}

.lm800-hero-list li::before {
    content: '•';
    color: #b8ff57;
    font-size: 18px;
}

.lm800-hero-visual img {
    width: 100%;
    height: auto;
    display: block;
}

.lm800-card-grid {
    background: #0c3f9c;
    padding: 50px 0;
}

.lm800-card-grid-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 14px;
}

.lm800-card {
    background: #0e4bb3;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

.lm800-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lm800-feature {
    min-height: 360px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.lm800-feature::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(5, 44, 108, 0.85) 0%, rgba(5, 44, 108, 0.65) 60%, rgba(5, 44, 108, 0.4) 100%);
}

.lm800-feature-overlay {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    padding: 70px 30px;
    display: flex;
    align-items: center;
}

.lm800-feature-copy {
    max-width: 460px;
    color: #fff;
}

.lm800-feature-copy h3 {
    font-size: 30px;
    margin-bottom: 14px;
    background: rgba(255, 200, 200, 0.85);
    color: #3a1717;
    display: inline-block;
    padding: 6px 10px;
    border-radius: 4px;
}

.lm800-feature-copy p {
    font-size: 15px;
    line-height: 1.7;
    color: #e4edff;
}

.lm800-params {
    background: #f7f7f7;
    padding: 70px 0 60px;
}

.lm800-section-header {
    text-align: center;
    margin-bottom: 30px;
}

.lm800-section-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #4a2b2b;
    display: inline-block;
    background: rgba(255, 200, 200, 0.9);
    padding: 8px 12px;
    border-radius: 4px;
}

.lm800-params-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.lm800-param-card {
    background: #fff;
    border: 1px solid #e2e2e2;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
}

.lm800-param-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lm800-flavors {
    background: #fafafa;
    padding: 60px 0 70px;
}

.lm800-flavor-grid {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
}

.lm800-flavor-card {
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
}

.lm800-params-secondary {
    background: #f7f7f7;
    padding-top: 40px;
}

.lm800-params-grid-secondary {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

@media (max-width: 768px) {
    .lm800-hero-inner {
        padding: 50px 24px;
    }

    .lm800-feature-copy h3 {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .wavi-hero-inner {
        padding: 60px 24px;
    }

    .wavi-hero-copy h1 {
        font-size: 32px;
    }

    .wavi-black-inner {
        padding: 0 20px;
    }
}

/* ==============================
   Products Page Styles
   ============================== */

.products-page {
    background: #ededed;
}

/* Products Page Header */
.products-page-header {
    background: #ededed;
    padding: 60px 0 30px;
    text-align: center;
}

.products-header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.products-page-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Products Tabs Section */
.products-tabs-section {
    background: #fff;
    padding: 30px 0;
}

.products-tabs-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.products-tabs-wrapper {
    background: #ededed;
    border-radius: 70px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.products-tabs-nav {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.products-tab-button {
    border: none;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    color: #959595;
    cursor: pointer;
    border-radius: 30px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.products-tab-button:hover {
    background: #f5f5f5;
    border-color: #999;
}

.products-tab-button.active {
    background: #1a1a1a;
    color: #fff;
    border-color: #1a1a1a;
}

.products-search {
    position: relative;
    display: flex;
    align-items: center;
}

.products-search input {
    width: 280px;
    padding: 12px 40px 12px 16px;
    border: 2px solid #00000075;
    border-radius: 30px;
    font-size: 15px;
    background: #fff;
    transition: border-color 0.3s ease;
}

.products-search input:focus {
    outline: none;
    border-color: #1a1a1a;
}

.products-search i {
    position: absolute;
    right: 14px;
    color: #666;
    pointer-events: none;
}

/* Tab Content */
.products-tab-content {
    display: none;
    background: #fff;
}

.products-tab-content.active {
    display: block;
}

/* Products Content Wrapper */
.products-content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 30px 60px;
}

/* Products Rows */
.products-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.products-col {
    display: flex;
    flex-direction: column;
}

.products-col-3 {
    flex: 0 0 calc(25% - 15px);
    max-width: calc(25% - 15px);
}

.products-col-6 {
    flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
}

.products-col-9 {
    flex: 0 0 calc(75% - 5px);
    max-width: calc(75% - 5px);
}

.products-col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

/* Product Grid Item */
.product-grid-item {
    background: transparent;
    height: 100%;
}

.product-grid-card {
    background: #ededed;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    height: 100%;
    color: inherit;
}

.product-grid-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.product-grid-image {
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ededed;
    padding: 20px;
}

.product-grid-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-grid-info {
    padding: 0 12px 12px;
}

.product-grid-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 6px 0;
    text-align: center;
}

.product-grid-description {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
    margin: 0;
    text-align: center;
}

/* Product Grid Info - Alt yazılar için */
.product-grid-info {
    padding: 12px;
    background: transparent;
}

.product-grid-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 6px 0;
    text-align: center;
    line-height: 1.3;
}

.product-grid-description {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
    margin: 0;
    text-align: center;
}

/* Products Image Areas */
.products-image-area {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.products-image-large {
    min-height: 280px;
}

.products-image-full {
    min-height: 200px;
}

.products-image-medium {
    min-height: 280px;
}

.products-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.products-banner-placeholder {
    color: #999;
    font-size: 16px;
    font-weight: 600;
    padding: 40px;
    text-align: center;
}

/* Products Carousel (Category Tabs) */
.products-tab-content .products-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 50px 30px 60px;
}

.products-tab-content .products-slider {
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 20px;
    scrollbar-width: thin;
    scrollbar-color: #ddd transparent;
}

.products-tab-content .products-slider::-webkit-scrollbar {
    height: 8px;
}

.products-tab-content .products-slider::-webkit-scrollbar-track {
    background: transparent;
}

.products-tab-content .products-slider::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 4px;
}

.products-tab-content .products-slider::-webkit-scrollbar-thumb:hover {
    background: #bbb;
}

.products-tab-content .products-track {
    display: flex;
    gap: 20px;
    flex-wrap: nowrap;
}

.products-tab-content .product-item {
    flex: 0 0 auto;
    width: calc(20% - 16px);
    min-width: 220px;
}

.products-tab-content .product-card {
    background: #ededed;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    height: 100%;
    color: inherit;
}

.products-tab-content .product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.products-tab-content .product-image {
    width: 100%;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ededed;
    padding: 20px;
}

.products-tab-content .product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.products-tab-content .product-info {
    padding: 0 4px 12px;
}

.products-tab-content .product-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px 0;
    text-align: center;
}

.products-tab-content .product-description {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin: 0;
    text-align: center;
}

/* Carousel ok butonlarını gizle */
.products-tab-content .products-prev,
.products-tab-content .products-next {
    display: none !important;
}

/* Product Badge */
.product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #ff4444;
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 5;
}

/* Feature Highlight on Products Page */


/* Responsive Design */
@media (max-width: 1440px) {
    .products-tab-content .product-item {
        width: calc(25% - 15px);
    }
}

@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 24px;
    }

    .products-tab-content .product-item {
        width: calc(33.333% - 14px);
    }

    .products-page-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .products-tabs-wrapper {
        flex-direction: column;
        align-items: stretch;
    }

    .products-tabs-nav {
        justify-content: center;
    }

    .products-tab-button {
        padding: 10px 16px;
        font-size: 14px;
    }

    .products-search {
        width: 100%;
    }

    .products-search input {
        width: 100%;
    }

    .products-col-3,
    .products-col-6,
    .products-col-9 {
        flex: 0 0 calc(50% - 10px);
        max-width: calc(50% - 10px);
    }

    .products-tab-content .product-item {
        width: calc(50% - 10px);
    }

    .products-page-title {
        font-size: 28px;
    }

    .products-content-wrapper,
    .products-tab-content .products-container {
        padding: 30px 20px 40px;
    }

    .product-grid-image {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .products-col-3,
    .products-col-6,
    .products-col-9,
    .products-col-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .products-tab-content .product-item {
        width: 100%;
    }

    .products-tabs-nav {
        flex-direction: column;
        width: 100%;
    }

    .products-tab-button {
        width: 100%;
    }

    .products-page-title {
        font-size: 24px;
    }

    .product-grid-image {
        height: 180px;
    }
}
