/* Product */

/* =========================
   Product section (isolated)
   ========================= */

.product {
    max-width: 1000px;
    margin: 0 auto 40px;
    padding: 0 25px;
}

.product-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Left side */
.product-left img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Right side */
.product-right {
    text-align: left;
    font-family: "Ubuntu", sans-serif;
}

/* Title */
.product-title {
    font-size: 24px;
    /* Independent of global heading size */
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
    color: #fff;
    /* or whatever you need */
}

.ceo-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    vertical-align: middle;
    margin-right: 10px;
}

.ceo-txt {
    text-decoration: underline;
    text-underline-position:under;
}

/* Text */
.product-text {
    font-size: 15px;
    /* Independent of global p size */
    font-weight: 500;
    line-height: 1.5;
    color: #999;
    margin-bottom: 0;
    text-align: left;
}

/* Buttons/links – not using global .btn */
.product-btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    background: linear-gradient(90deg, #b52566 0%, #1baebc 100%);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin: 0 5px;
    box-shadow: 0 4px 16px rgba(181, 37, 102, 0.3);
}

.product-btn:hover{
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(181, 37, 102, 0.5);
}

.product-link {
    display: inline-block;
    margin-left: 15px;
    font-size: 15px;
    color: #f9f9f9;
    text-decoration: underline;
}

.product p {
    font-weight: 500;
}

.product-benefits-1 {
    color: #aaa;
    font-size: 15px;
    word-spacing: 6px;
    padding: 12px 0 0;
}

.product-benefits-2 {
    color: #aaa;
    font-size: 14px;
    word-spacing: 2px;
    padding: 10px 0 0;
}

.product-benefits-1 span {text-decoration:underline; text-underline-position:under;}

.product-benefits-1,
.product-benefits-2 {
    text-align: left;
}


/* Responsive */
@media (max-width: 768px) {
    .product-container {
        grid-template-columns: 1fr;
    }

    .product-right {
        text-align: left;
    }

    /* still make the CTA feel “primary” */
    .product-btn {
        display: block;
        width: 100%;
        text-align: center;
        margin: 0;
    }

    .product-link {
        display: block;
        margin: 10px 0 0;
    }
    
    .product-benefits-2 {
    word-spacing: 0px;
}
}







/* SHARE BAR – centered + responsive */
.product-share-bar {
    margin: 10px auto 0;
    /* centers the whole bar */
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    /* center content in the row */
    gap: 6px;
    font-family: "Ubuntu", sans-serif;
    max-width: 100%;
}

.product-share-label {
    font-size: 15px;
    font-weight: 600;
    color: #ccc;
}

/* Buttons / links */
.product-share-action {
    font-size: 12px;
    font-weight: 600;
    padding: 6px 10px;
    border: 2px solid #222;
    border-radius: 6px;
    background: none;
    color: #ccc;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.1s ease, opacity 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.product-share-action:hover {
    background: #222;
    transform: translateY(-1px);
    opacity: 0.9;
}

.product-share-copy {
    font-weight: 600;
}

/* 📱 Mobile: stack + keep centered */
@media (max-width: 600px) {
    .product-share-bar {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 6px;
        text-align: center;
    }

    .product-share-label {
        margin-bottom: 4px;
        width: 100%;
    }

    .product-share-action {
        width: 80%;
        max-width: 260px;
    }
}
