/* Reset and Container */
.prod-page-pravada {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px;
    color: #4a5568;
    background: #ffffff;
}
.prod-page-pravada * {
    box-sizing: border-box;
}

/* Grid Layout */
.prod-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 80px;
    align-items: start;
    margin-bottom: 80px;
}
@media (max-width: 992px) {
    .prod-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

/* Gallery (Left Column) */
.prod-gallery {
    position: -webkit-sticky;
    position: sticky;
    top: 40px;
}
@media (max-width: 992px) {
    .prod-gallery {
        position: static;
    }
}
.prod-main-img-wrap {
    background: #f7f8f8;
    border: 1px solid #eef0f1;
    border-radius: 16px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1 / 1;
    width: 100%;
    overflow: hidden;
}
.prod-main-img-wrap img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: opacity 0.2s ease, transform 0.4s ease;
}
.prod-main-img-wrap:hover img {
    transform: scale(1.04);
}

/* Gallery Sub-images Thumbnails Strip */
.prod-thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(55px, 1fr));
    gap: 10px;
    margin-top: 16px;
}
.prod-thumb-item {
    background: #f7f8f8;
    border: 2px solid #eef0f1;
    border-radius: 10px;
    padding: 8px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1 / 1;
    transition: all 0.25s ease;
}
.prod-thumb-item:hover {
    border-color: rgba(145, 176, 83, 0.5);
    transform: translateY(-2px);
}
.prod-thumb-item.active {
    border-color: #91b053;
    box-shadow: 0 0 0 2px rgba(145, 176, 83, 0.2);
}
.prod-thumb-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 6px;
}

/* Product Info (Right Column) */
.prod-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}
.prod-cat {
    font-size: 14px;
    font-weight: 700;
    color: #91b053;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.prod-code {
    background: #f1f6eb;
    color: #91b053;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid rgba(145, 176, 83, 0.15);
}
.prod-title {
    font-size: 36px;
    font-weight: 800;
    color: #1d2716;
    line-height: 1.2;
    margin: 0 0 20px 0;
}
@media (max-width: 768px) {
    .prod-title {
        font-size: 30px;
    }
}

/* Bullet points highlights */
.prod-bullets {
    margin: 0 0 35px 0;
    padding: 0;
    list-style: none;
}
.prod-bullets li {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 14px;
    padding-left: 28px;
    position: relative;
}
.prod-bullets li::before {
    content: "";
    position: absolute;
    left: 2px;
    top: 7px;
    width: 8px;
    height: 8px;
    background-color: #91b053;
    border-radius: 50%;
}

/* Call to Actions */
.prod-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 45px;
}
@media (max-width: 480px) {
    .prod-actions {
        flex-direction: column;
    }
}
.prod-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    width: 100%;
}
.prod-actions .btn-primary {
    background: #91b053;
    color: #ffffff !important;
}
.prod-actions .btn-primary:hover {
    background: #7b9942;
    transform: translateY(-2px);
}
.prod-actions .btn-secondary {
    background: #ffffff;
    color: #1d2716 !important;
    border: 1px solid #1d2716;
}
.prod-actions .btn-secondary:hover {
    background: #f7f8f8;
    transform: translateY(-2px);
}

/* Custom Accordion Styling */
.prod-details details {
    border-bottom: 1px solid #eef0f1;
    padding: 20px 0;
    transition: all 0.3s ease;
}
.prod-details details:first-child {
    border-top: 1px solid #eef0f1;
}
.prod-details summary {
    font-size: 16px;
    font-weight: 700;
    color: #1d2716;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    outline: none;
    user-select: none;
}
.prod-details summary::-webkit-details-marker {
    display: none;
}
.prod-details summary::after {
    content: "+";
    font-size: 22px;
    font-weight: 300;
    color: #91b053;
    transition: transform 0.3s ease;
}
.prod-details details[open] summary::after {
    content: "−";
    transform: rotate(180deg);
}
.prod-details .details-content {
    padding-top: 18px;
    font-size: 15px;
    line-height: 1.6;
    color: #4a5568;
}
.prod-details .details-content p {
    margin: 0;
}

/* Ingredients layout inside accordion */
.ingredient-item {
    margin-bottom: 18px;
}
.ingredient-item:last-child {
    margin-bottom: 0;
}
.ingredient-item strong {
    display: block;
    color: #1d2716;
    font-size: 15px;
    margin-bottom: 5px;
}
.ingredient-item p {
    margin: 0;
    color: #606f7b;
    font-size: 14px;
}

/* Tech Specs Table */
.specs-table {
    width: 100%;
    border-collapse: collapse;
}
.specs-table td {
    padding: 12px 14px;
    font-size: 15px;
    color: #4a5568;
    border-bottom: 1px solid #f1f3f4;
    vertical-align: top;
}
.specs-table tr:last-child td {
    border-bottom: none;
}
.specs-table td:first-child {
    font-weight: 600;
    color: #1d2716;
    width: 38%;
}

/* Custom list */
.notes-list {
    margin: 0;
    padding-left: 20px;
}
.notes-list li {
    margin-bottom: 8px;
    line-height: 1.5;
}

/* FAQ Accordions */
.prod-faq-section {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid #eef0f1;
}
.prod-faq-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1d2716;
    margin-bottom: 35px;
    text-align: center;
}
.faq-accordion details {
    background: #f7f8f8;
    border: 1px solid #eef0f1;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 18px 24px;
    transition: all 0.3s ease;
}
.faq-accordion details:hover {
    border-color: rgba(145, 176, 83, 0.25);
    background: #ffffff;
}
.faq-accordion summary {
    font-size: 16px;
    font-weight: 700;
    color: #1d2716;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    outline: none;
}
.faq-accordion summary::-webkit-details-marker {
    display: none;
}
.faq-accordion summary::after {
    content: "+";
    font-size: 20px;
    color: #91b053;
    font-weight: 300;
}
.faq-accordion details[open] summary::after {
    content: "−";
}
.faq-accordion p {
    margin: 0;
    padding-top: 15px;
    color: #4a5568;
    font-size: 15px;
    line-height: 1.6;
    border-top: 1px solid rgba(238, 240, 241, 0.8);
    margin-top: 12px;
}

/* Bottom request form aesthetics styles */
.cond-form-container {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    padding: 45px 35px;
    border-radius: 12px;
    box-shadow: 0 10px 45px rgba(0,0,0,0.08);
}
.cond-form-container input, .cond-form-container textarea {
    transition: border-color 0.3s, box-shadow 0.3s;
}
.cond-form-container input:focus, .cond-form-container textarea:focus {
    border-color: #91b053 !important;
    box-shadow: 0 0 0 3px rgba(145, 176, 83, 0.15) !important;
    outline: none !important;
}

/* B2B Quick Specs Card (Hero Section) */
.b2b-quick-specs {
    background: #f8faf6;
    border: 1px solid rgba(145, 176, 83, 0.28);
    border-radius: 12px;
    padding: 18px 22px;
    margin-bottom: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 20px;
}
@media (max-width: 576px) {
    .b2b-quick-specs {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}
.b2b-spec-item {
    display: flex;
    flex-direction: column;
}
.b2b-spec-item .spec-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #91b053;
    margin-bottom: 3px;
}
.b2b-spec-item .spec-val {
    font-size: 13.5px;
    font-weight: 600;
    color: #1d2716;
    line-height: 1.35;
}

/* Recommended Products Section */
.prod-related-section {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid #eef0f1;
}
.related-header {
    text-align: center;
    margin-bottom: 45px;
}
.related-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1d2716;
    margin: 0 0 10px 0;
}
.related-header p {
    font-size: 15px;
    color: #718096;
    margin: 0;
}
.related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
@media (max-width: 992px) {
    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .related-grid {
        grid-template-columns: 1fr;
    }
}
.related-card {
    background: #ffffff;
    border: 1px solid #eef0f1;
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    text-decoration: none;
}
.related-card:hover {
    border-color: rgba(145, 176, 83, 0.5);
    box-shadow: 0 12px 35px rgba(0,0,0,0.06);
    transform: translateY(-4px);
}
.related-img-wrap {
    background: #ffffff;
    aspect-ratio: 4 / 3;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 12px;
}
.related-img-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}
.related-card:hover .related-img-wrap img {
    transform: scale(1.05);
}
.related-body {
    padding: 20px 24px 24px 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.related-title {
    font-size: 17px;
    font-weight: 700;
    color: #1d2716;
    line-height: 1.35;
    margin: 0;
    transition: color 0.25s ease;
}
.related-card:hover .related-title {
    color: #91b053;
}

/* Category Page Card Grid (Daily Care Conditioners & Categories) */
.cond-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px;
}
.cond-section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #1d2716;
    margin-bottom: 45px;
}
.cond-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}
@media (max-width: 992px) {
    .cond-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .cond-product-grid {
        grid-template-columns: 1fr;
    }
}
.cond-card {
    background: #ffffff;
    border: 1px solid #eef0f1;
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
}
.cond-card:hover {
    border-color: rgba(145, 176, 83, 0.5);
    box-shadow: 0 12px 35px rgba(0,0,0,0.06);
    transform: translateY(-4px);
}
.cond-card-img-wrap {
    background: #ffffff;
    aspect-ratio: 4 / 3;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 12px;
}
.cond-card-img-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 0;
    transition: transform 0.4s ease;
}
.cond-card:hover .cond-card-img-wrap img {
    transform: scale(1.05);
}
.cond-card-body {
    padding: 22px 20px;
    text-align: center;
    border-top: 1px solid #f0f2f3;
    background: #ffffff;
}
.cond-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #1d2716;
    margin: 0;
    line-height: 1.35;
    transition: color 0.25s ease;
}
.cond-card:hover .cond-card-title {
    color: #91b053;
}
