/* Genel konteyner */
.pdp-features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin: 30px 0;
    font-family: inherit;
}

/* Her özellik grubu */
.pdp-features-container .feature-item {
    background: #ffffff;
    border: 1px solid #e6e6e6;
    border-radius: 12px;
    padding: 20px;
    transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.pdp-features-container .feature-item:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    transform: translateY(-2px);
}

/* Başlık */
.pdp-features-container .feature-item .title {
    font-size: 18px;
    font-weight: 600;
    color: #111;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f2f2f2;
}

/* Liste */
.pdp-features-container .feature-item .list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Satır */
.pdp-features-container .feature-item .item {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #ececec;
}

.pdp-features-container .feature-item .item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/* Özellik adı */
.pdp-features-container .feature-item .item .t {
    font-size: 14px;
    color: #555;
    font-weight: 500;
}

/* Özellik değeri */
.pdp-features-container .feature-item .item .v {
    font-size: 14px;
    color: #000;
    font-weight: 600;
    line-height: 1.4;
}

/* Mobil uyum */
@media (max-width: 768px) {
    .pdp-features-container {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .pdp-features-container .feature-item {
        padding: 16px;
    }

    .pdp-features-container .feature-item .item {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .pdp-features-container .feature-item .item .t {
        font-size: 13px;
        color: #666;
    }

    .pdp-features-container .feature-item .item .v {
        font-size: 14px;
    }
}



 .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;
        }