/* Start custom CSS for html, class: .elementor-element-c76a21f *//* ============================================= */
/* PDP: Bamboo Cross Cutter - Custom Styles      */
/* Only classes starting with .pdp-* are used    */
/* ============================================= */

/* ---------- General Container ---------- */
.pdp-main-wrapper {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: 'Poppins', sans-serif;
    color: #333;
}

/* ---------- Breadcrumb & Badge ---------- */
.pdp-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
}
.pdp-breadcrumb {
    font-size: 0.9rem;
    color: #777;
}
.pdp-breadcrumb a {
    color: #2d6a4f;
    text-decoration: none;
}
.pdp-breadcrumb a:hover {
    text-decoration: underline;
}
.pdp-badge {
    background: #2d6a4f;
    color: #fff;
    padding: 4px 14px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ---------- Main Row: Gallery + Summary ---------- */
.pdp-content-row {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

/* --- Gallery Column --- */
.pdp-gallery-col {
    flex: 1 1 45%;
    min-width: 300px;
}
.pdp-main-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    margin-bottom: 15px;
    border: 1px solid #e8f0e4;
}
.pdp-main-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}
.pdp-main-image:hover .pdp-main-img {
    transform: scale(1.02);
}
.pdp-zoom-icon {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(255,255,255,0.9);
    padding: 8px 12px;
    border-radius: 40px;
    font-size: 1.1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    pointer-events: none;
}

.pdp-thumbnails {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.pdp-thumb {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
}
.pdp-thumb:hover {
    border-color: #85b87a;
}
.pdp-thumb.active {
    border-color: #2d6a4f;
    box-shadow: 0 0 0 3px rgba(45,106,79,0.2);
}

/* --- Summary Column --- */
.pdp-summary-col {
    flex: 1 1 45%;
    min-width: 300px;
}
.pdp-product-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1b3b2b;
    margin-bottom: 10px;
    line-height: 1.2;
}
.pdp-sku {
    font-size: 0.95rem;
    color: #5a7a5a;
    margin-bottom: 20px;
}
.pdp-sku span {
    font-weight: 600;
    color: #2d6a4f;
}

.pdp-mini-specs {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}
.pdp-mini-specs li {
    padding: 8px 0;
    border-bottom: 1px solid #eef3e9;
    font-size: 0.95rem;
}
.pdp-spec-label {
    font-weight: 600;
    color: #1b3b2b;
    min-width: 140px;
    display: inline-block;
}

.pdp-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}
.pdp-btn {
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
}
.pdp-btn-primary {
    background: #2d6a4f;
    color: #fff;
    box-shadow: 0 4px 12px rgba(45,106,79,0.25);
}
.pdp-btn-primary:hover {
    background: #1b3b2b;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(45,106,79,0.35);
}
.pdp-btn-secondary {
    background: transparent;
    color: #2d6a4f;
    border: 2px solid #2d6a4f;
}
.pdp-btn-secondary:hover {
    background: #f0f8ec;
}

.pdp-share {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
}
.pdp-share a {
    font-size: 1.2rem;
    text-decoration: none;
    color: #5a7a5a;
    transition: color 0.2s;
}
.pdp-share a:hover {
    color: #2d6a4f;
}

/* ---------- Details Row (Tabs) ---------- */
.pdp-details-row {
    margin: 50px 0;
    border-top: 1px solid #e0ecd9;
    padding-top: 40px;
}

.pdp-tabs {
    display: flex;
    gap: 5px;
    border-bottom: 2px solid #e0ecd9;
    margin-bottom: 30px;
    flex-wrap: wrap;
}
.pdp-tab-link {
    padding: 12px 24px;
    background: transparent;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    color: #777;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
}
.pdp-tab-link:hover {
    color: #1b3b2b;
}
.pdp-tab-link.active {
    color: #2d6a4f;
    border-bottom-color: #2d6a4f;
}

.pdp-tab-content {
    display: none;
    padding: 10px 0 30px 0;
}
.pdp-tab-content.active {
    display: block;
}
.pdp-tab-content h2 {
    font-size: 1.6rem;
    color: #1b3b2b;
    margin-bottom: 15px;
}
.pdp-tab-content h3 {
    font-size: 1.2rem;
    color: #1b3b2b;
    margin: 25px 0 10px 0;
}
.pdp-tab-content p {
    line-height: 1.7;
    color: #4a5a4a;
    margin-bottom: 15px;
}

.pdp-feature-list {
    list-style: none;
    padding: 0;
}
.pdp-feature-list li {
    padding: 8px 0;
    border-bottom: 1px solid #eef3e9;
    font-size: 0.95rem;
    color: #3a5a4a;
}

/* Specifications Grid */
.pdp-specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.pdp-specs-table {
    background: #f9fbf7;
    border-radius: 16px;
    padding: 20px;
    border: 1px solid #e0ecd9;
}
.pdp-spec-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #e8f0e4;
}
.pdp-spec-row:last-child {
    border-bottom: none;
}
.pdp-spec-key {
    font-weight: 600;
    color: #1b3b2b;
}
.pdp-spec-value {
    color: #2d6a4f;
    font-weight: 500;
}

.pdp-specs-notes {
    background: #f9fbf7;
    border-radius: 16px;
    padding: 20px;
    border: 1px solid #e0ecd9;
}
.pdp-specs-notes h4 {
    color: #1b3b2b;
    margin-bottom: 12px;
}
.pdp-specs-notes ul {
    list-style: none;
    padding: 0;
}
.pdp-specs-notes li {
    padding: 6px 0;
    padding-left: 22px;
    position: relative;
    color: #4a5a4a;
}
.pdp-specs-notes li::before {
    content: '•';
    color: #2d6a4f;
    font-size: 1.4rem;
    position: absolute;
    left: 0;
    top: 2px;
}
.pdp-note {
    font-size: 0.8rem;
    color: #888;
    margin-top: 20px;
    font-style: italic;
}

/* Reviews Tab */
#tab-reviews p {
    padding: 20px 0;
    color: #777;
}

/* ---------- Related Products ---------- */
.pdp-related-row {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #e0ecd9;
}
.pdp-related-row h3 {
    font-size: 1.4rem;
    color: #1b3b2b;
    margin-bottom: 20px;
}
.pdp-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}
.pdp-related-item {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid #e8f0e4;
    transition: transform 0.2s ease;
}
.pdp-related-item:hover {
    transform: translateY(-4px);
}
.pdp-related-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}
.pdp-related-item h4 {
    padding: 12px 15px;
    margin: 0;
    font-size: 0.95rem;
    color: #1b3b2b;
    text-align: center;
}

/* ---------- Responsive Adjustments ---------- */
@media (max-width: 768px) {
    .pdp-content-row {
        flex-direction: column;
        gap: 30px;
    }
    .pdp-product-title {
        font-size: 1.8rem;
    }
    .pdp-specs-grid {
        grid-template-columns: 1fr;
    }
    .pdp-tab-link {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    .pdp-thumb {
        width: 60px;
        height: 60px;
    }
    .pdp-title-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .pdp-main-wrapper {
        padding: 0 12px;
        margin: 20px auto;
    }
    .pdp-actions {
        flex-direction: column;
    }
    .pdp-btn {
        justify-content: center;
    }
    .pdp-related-grid {
        grid-template-columns: 1fr;
    }
}/* End custom CSS */