/* Target the logo image directly */
.logo-img {
    width: auto;
    /* Allow width to scale with height */
    height: 85px;
    /* Increased height */
    display: block;
    /* Removes inline spacing */
    transition: transform 0.3s, box-shadow 0.3s;
    margin: 10px 0 5px 0;
    /* Minimize bottom breathing room */
}

/* Ensure the logo link is clickable and not overlapped by the menu */
.logo {
    position: relative;
    z-index: 100;
    display: inline-block;
    cursor: pointer;
}

/* Ensure images inside CKEditor/description content are full width */
.description-content img {
    width: 100% !important;
    height: auto !important;
    display: block;
    margin: 25px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Center the product detail tabs */
.tabs ul {
    justify-content: center;
}

.tabs ul li {
    width: auto !important;
}

.tabs ul li a {
    padding: 20px 40px !important;
}

/* CEO Message Section */
.ceo-message-section {
    padding-top: 120px;
    padding-bottom: 120px;
    background-color: #f9fbfd;
}

.ceo-message-card {
    background: #fff;
    padding: 80px 60px;
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
}

.ceo-photo {
    border: none;
    padding: 0;
    background: none;
    box-shadow: none;
    border-radius: 12px;
    overflow: hidden;
}

.ceo-photo img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.ceo-text {
    margin-top: 0;
    font-size: 17px;
    line-height: 1.9;
    color: #4a4a4a;
}

.ceo-quote {
    font-style: italic;
    color: #1b1d1e;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 35px;
    position: relative;
    padding-left: 25px;
    border-left: 5px solid #d66362;
}

.ceo-signature {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #f0f0f0;
}

.signature-name {
    font-size: 26px;
    font-weight: 700;
    color: #1b1d1e;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.signature-title {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #d66362;
}

@media (max-width: 991px) {
    .ceo-message-card {
        padding: 40px;
    }
}

@media (max-width: 767px) {
    .ceo-photo {
        margin-bottom: 40px;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .ceo-message-card {
        padding: 30px 20px;
    }
}