.wwa-widget {
            position: fixed;
            bottom: 25px;
            right: 40px;
            z-index: 999;
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 12px;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .wwa-btn {
            display: flex;
            align-items: center;
            gap: 10px;
            background: #2c2c2c;
            padding: 12px 16px;
            border-radius: 6px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            color: white;
            font-weight: 600;
            font-size: 13px;
            letter-spacing: 0.3px;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        .wwa-btn:hover {
            background: #1a1a1a;
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
        }

        .wwa-txt {
            white-space: nowrap;
            font-size: 13px;
        }

        .wwa-icon-box {
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border-radius: 6px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            cursor: pointer;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .wwa-icon-box:hover {
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
        }

        .wwa-icon {
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .wwa-icon svg {
            width: 100%;
            height: 100%;
            stroke: #e74c3c;
            stroke-width: 2;
            fill: none;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        /* Second Widget */
        .wwa-widget-alt {
            position: fixed;
            bottom: 25px;
            right: 40px;
            z-index: 998;
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 12px;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .wwa-btn-alt {
            display: flex;
            align-items: center;
            gap: 10px;
            background: #2c2c2c;
            padding: 12px 16px;
            border-radius: 6px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            color: white;
            font-weight: 600;
            font-size: 13px;
            letter-spacing: 0.3px;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        .wwa-btn-alt:hover {
            background: #1a1a1a;
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
        }

        .wwa-icon-box-alt {
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #25D366;
            border-radius: 6px;
            box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .wwa-icon-box-alt:hover {
            background: #20BA5E;
            box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
        }

        .wwa-icon-alt {
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .wwa-icon-alt svg {
            width: 100%;
            height: 100%;
            fill: white;
        }

        /* Third Widget */
        .wwa-widget-third {
            position: fixed;
            bottom: 25px;
            right: 40px;
            z-index: 997;
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 12px;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .wwa-btn-third {
            display: flex;
            align-items: center;
            gap: 10px;
            background: #2c2c2c;
            padding: 12px 16px;
            border-radius: 6px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            color: white;
            font-weight: 600;
            font-size: 13px;
            letter-spacing: 0.3px;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        .wwa-btn-third:hover {
            background: #1a1a1a;
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
        }

        .wwa-icon-box-third {
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: transparent;
            border-radius: 6px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            cursor: pointer;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .wwa-icon-box-third:hover {
            background: transparent;
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
        }

        .wwa-icon-third {
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .wwa-icon-third svg {
            width: 100%;
            height: 100%;
            fill: white;
        }

        /* Animations */
        @keyframes wwaToggleFirst {
            0% { opacity: 1; visibility: visible; transform: translateX(0); }
            30% { opacity: 1; visibility: visible; transform: translateX(0); }
            33.3% { opacity: 0; visibility: hidden; transform: translateX(-100px); }
            100% { opacity: 0; visibility: hidden; transform: translateX(-100px); }
        }

        @keyframes wwaToggleSecond {
            0% { opacity: 0; visibility: hidden; transform: translateX(100px); }
            30% { opacity: 0; visibility: hidden; transform: translateX(100px); }
            33.3% { opacity: 1; visibility: visible; transform: translateX(0); }
            63.3% { opacity: 1; visibility: visible; transform: translateX(0); }
            66.6% { opacity: 0; visibility: hidden; transform: translateX(-100px); }
            100% { opacity: 0; visibility: hidden; transform: translateX(-100px); }
        }

        @keyframes wwaToggleThird {
            0% { opacity: 0; visibility: hidden; transform: translateX(100px); }
            63.3% { opacity: 0; visibility: hidden; transform: translateX(100px); }
            66.6% { opacity: 1; visibility: visible; transform: translateX(0); }
            96.6% { opacity: 1; visibility: visible; transform: translateX(0); }
            100% { opacity: 0; visibility: hidden; transform: translateX(-100px); }
        }

        .wwa-widget {
            animation: wwaToggleFirst 9s infinite;
        }

        .wwa-widget-alt {
            animation: wwaToggleSecond 9s infinite !important;
        }

        .wwa-widget-third {
            animation: wwaToggleThird 9s infinite !important;
        }
        
        .discount-container {
            position: fixed;
            width: 400px;
            height: 300px;
            top: 50%;
            right: 50px;
            transform: translateY(-50%);
            z-index: 99999;
        }

        .discount-sinyal {
            position: absolute;
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background-color: rgba(206, 28, 45, 0.15);
            top: 115px;
            left: 315px;
            pointer-events: none;
            z-index: 1;
            animation: discount-sinyal-animation 2s infinite ease-out;
        }

        @keyframes discount-sinyal-animation {
            0% {
                width: 70px;
                height: 70px;
                top: 115px;
                left: 315px;
                opacity: 0;
            }
            50% {
                opacity: 1;
            }
            100% {
                width: 150px;
                height: 150px;
                top: 75px;
                left: 275px;
                opacity: 0;
            }
        }

        .discount-daire {
            position: absolute;
            width: 70px;
            height: 70px;
            background-color: #ce1c2d;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
            transition: all 0.3s ease;
            cursor: pointer;
            overflow: hidden;
            top: 115px;
            left: 315px;
        }

        .discount-daire i {
            color: white;
            font-size: 35px;
            transition: all 0.3s ease;
        }

        .discount-daire-text {
            display: none;
            color: white;
            font-family: Arial, sans-serif;
            font-size: 15px;
            font-weight: bold;
            white-space: nowrap;
            margin-left: 15px;
            line-height: 1.3;
        }

        .discount-daire:hover {
            width: 300px;
            height: 70px;
            border-radius: 35px;
            top: 115px;
            left: 85px;
            padding: 0 25px 0 20px;
            justify-content: flex-start;
        }

        .discount-daire:hover i {
            font-size: 32px;
        }

        .discount-daire:hover .discount-daire-text {
            display: inline;
        }
        
        
        /*Açıklama*/
        
        /* === ANA KONTEYNER === */
#pdp-features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    margin: 30px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter, Arial, sans-serif;
}

/* === KART === */
#pdp-features-container .feature-item {
    background: #ffffff;
    border: 1px solid #ececec;
    border-radius: 14px;
    padding: 18px 18px 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.04);
    transition: all .25s ease;
}

#pdp-features-container .feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(0,0,0,0.07);
}

/* === BAŞLIK === */
#pdp-features-container .feature-item .title {
    font-size: 17px;
    font-weight: 700;
    color: #111;
    padding-bottom: 12px;
    margin-bottom: 14px;
    border-bottom: 1px solid #f0f0f0;
    letter-spacing: -.2px;
}

/* === LİSTE === */
#pdp-features-container .feature-item .list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* === SATIR === */
#pdp-features-container .feature-item .item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px dashed #f1f1f1;
}

#pdp-features-container .feature-item .item:last-child {
    border-bottom: none;
}

/* === ETİKET === */
#pdp-features-container .feature-item .item .t {
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

/* === DEĞER === */
#pdp-features-container .feature-item .item .v {
    font-size: 13px;
    color: #111;
    font-weight: 600;
    text-align: right;
    line-height: 1.4;
}

/* === MOBİL === */
@media (max-width: 768px) {

    #pdp-features-container {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    #pdp-features-container .feature-item {
        padding: 14px;
        border-radius: 12px;
    }

    #pdp-features-container .feature-item .title {
        font-size: 15px;
        margin-bottom: 10px;
    }

    #pdp-features-container .feature-item .item {
        grid-template-columns: 1fr;
        gap: 4px;
        padding: 10px 0;
    }

    #pdp-features-container .feature-item .item .v {
        text-align: left;
        font-weight: 600;
    }
}

/* === KÜÇÜK DOKUNUŞLAR === */
#pdp-features-container .feature-item .item .v:empty {
    display: none;
}

.cube_brand img{
    width: 80px !important;
}
  .oliz_badge {
  position: absolute;
  top: 32px;
  left: 0;
  z-index: 3;
}
  .enerji_badge {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
  }
  .enerjisinificard{
      width: 40px !important;
  }
  
  @media (max-width: 768px) {
  .oliz_badge img {
    width: 30px;
    height: 30px;
    object-fit: contain;
  }
}