.g1-wrapper * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.g1-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 13px 20px;
}

.g1-product-review {
    display: flex;
    gap: 24px;
    margin-bottom: 15px;
    align-items: flex-start;
}

.g1-product-image img {
    width: 413px;
    height: 352px;
}

.g1-product-info {
    flex: 1;
    position: relative;
}

.g1-ranking-number {
    font-size: 120px;
    font-weight: 900;
    color: #000;
    line-height: 1;
    margin-bottom: 10px;
}

.g1-badge {
    background-color: #ffd700;
    color: #000;
    font-family: "Poppins";
    font-size: 12px;
    font-weight: 700;
    padding: 6px 10px 4px;
    display: inline-block;
    margin-bottom: 15px;
    letter-spacing: 2.4px;
    line-height: 16.8px;
}

.g1-product-title {
    font-size: 31px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    line-height: 34.1px;
    padding: 5px 0px 0px;
}

.g1-price-button {
    background-color: #4ecdc4;
    color: #000;
    border: none;
    padding: 13px 20px 12px;
    line-height: 14px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    margin: 20px 0px;
    transition: background-color 0.3s ease;
}

.g1-price-button:hover {
    background-color: #088092;
    color: white;
}

.g1-credit {
    font-size: 12px;
    color: #737373;
    font-weight: 400;
    line-height: 11px;
    padding: 0px 5px 0px 0px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.g1-pros-cons-section {
    display: flex;
    margin-bottom: 40px;
}

.g1-pros,
.g1-cons {
    flex: 1;
    padding: 30px 18px;
    border: thin solid #D4D4D4;
}

.g1-pros h3,
.g1-cons h3 {
    font-size: 19px;
    font-weight: 700;
    line-height: 16px;
    color: #000000;
    margin-bottom: 15px;
    letter-spacing: 2.4px;
}

.g1-pros-items {
    display: flex;
    align-items: center;
    gap: 6px;
}

.g1-pros-text {
    color: #000000;
    font-size: 14px;
    font-weight: 700;
    line-height: 19px;
}


.g1-cons li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #ff6b6b;
    font-weight: bold;
}

.g1-product-description {
    margin-bottom: 40px;
}

.g1-product-description p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #444;
}

.g1-specifications-table table {
    width: 100%;
}

.g1-specifications-table th {
    background-color: #CFFAFE;
    color: #000000;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    padding: 12px;
    text-align: center;
}

.g1-specifications-table td {
    padding: 12px;
    font-size: 14px;
    color: #000000;
    text-align: center;
    background-color: #ECFEFF;
}

/* Responsive Design */
@media (max-width: 768px) {
    .g1-container {
        padding: 15px;
    }

    .g1-product-review {
        flex-direction: column;
        gap: 20px;
    }

    .g1-ranking-number {
        font-size: 80px;
    }

    .g1-product-title {
        font-size: 24px;
    }

    .g1-pros-cons-section {
        flex-direction: column;
        gap: 20px;
    }

    .g1-specifications-table {
        overflow-x: auto;
    }

    .g1-specifications-table table {
        max-width: 600px;
    }
}

@media (max-width: 480px) {
    .g1-ranking-number {
        font-size: 60px;
    }

    .g1-container {
        padding: 40px 20px;
    }

    .g1-product-image img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    .g1-product-title {
        font-size: 20px;
    }

    .g1-badge {
        font-size: 10px;
        padding: 4px 8px;
    }

    .g1-price-button {
        padding: 10px 20px;
        font-size: 12px;
    }

    .g1-product-description p {
        font-size: 14px;
    }
}
