/**
 * Product Detail Page Styles - MPP Jewellers
 * Premium Professional Design
 */

/* ========================================
   BREADCRUMB
   ======================================== */
.breadcrumb-nav {
    background: #fff;
    padding: 18px 0;
    border-bottom: 1px solid #eee;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 14px;
}

.breadcrumb li {
    display: flex;
    align-items: center;
}

.breadcrumb li::after {
    content: '/';
    margin: 0 12px;
    color: #999;
    font-size: 14px;
    font-weight: 400;
}

.breadcrumb li:last-child::after {
    display: none;
}

.breadcrumb a {
    color: #1a5276;
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 400;
}

.breadcrumb a:hover {
    color: #d4a853;
    text-decoration: underline;
}

.breadcrumb .current {
    color: #1a5276;
    font-weight: 400;
}

/* ========================================
   PRODUCT DETAIL SECTION
   ======================================== */
.product-detail-section {
    padding: 50px 0 70px;
    background: #fff;
}

.product-detail-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: start;
}

/* ========================================
   PRODUCT GALLERY
   ======================================== */
.product-gallery {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.gallery-layout {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 20px;
}

/* Thumbnails */
.gallery-thumbnails {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 520px;
    overflow-y: auto;
    padding-right: 5px;
}

.gallery-thumbnails::-webkit-scrollbar {
    width: 3px;
}

.gallery-thumbnails::-webkit-scrollbar-thumb {
    background: #d4a853;
    border-radius: 3px;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
    background: #f8f8f8;
}

.thumbnail:hover {
    border-color: #d4a853;
    transform: scale(1.02);
}

.thumbnail.active {
    border-color: #d4a853;
    box-shadow: 0 4px 15px rgba(212, 168, 83, 0.3);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Main Image */
.gallery-main {
    position: relative;
}

.main-image-container {
    position: relative;
    aspect-ratio: 1;
    background: linear-gradient(145deg, #fafafa 0%, #f0f0f0 100%);
    border-radius: 16px;
    overflow: hidden;
    cursor: crosshair;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #eee;
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.2s;
    padding: 30px;
}

.main-image.fading {
    opacity: 0.5;
}

/* Zoom Lens */
.zoom-lens {
    position: absolute;
    width: 120px;
    height: 120px;
    border: 2px solid #d4a853;
    background: rgba(212, 168, 83, 0.15);
    pointer-events: none;
    display: none;
    z-index: 10;
    border-radius: 4px;
}

/* Zoom Result - Overlay above right content */
.zoom-result-container {
    position: absolute;
    width: 100%;
    height: 450px;
    background-repeat: no-repeat;
    border: 2px solid #d4a853;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    z-index: 100;
    display: none;
    border-radius: 16px;
    background-color: #fff;
    top: 0;
    left: 0;
    right: 0;
}

.zoom-result-container.active {
    display: block;
}

/* Wrapper for product info to allow zoom positioning */
.product-info-detail {
    position: relative;
    padding-top: 10px;
}

/* Zoom Hint */
.zoom-hint {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(26, 26, 26, 0.85);
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 500;
    transition: opacity 0.3s;
    pointer-events: none;
    backdrop-filter: blur(5px);
}

/* Product Badge */
.product-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 18px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 25px;
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    color: #fff;
    z-index: 5;
}

.product-badge.new {
    background: linear-gradient(135deg, #0d6334 0%, #0a4d28 100%);
}

.product-badge.trending {
    background: linear-gradient(135deg, #c41e3a 0%, #a01830 100%);
}

.product-badge.bestseller {
    background: linear-gradient(135deg, #d4a853 0%, #c49a47 100%);
    color: #1a1a1a;
}

.product-badge.exclusive {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
}

/* ========================================
   PRODUCT INFO - RIGHT SIDE
   ======================================== */
.product-info-detail {
    padding-top: 10px;
}

.product-category-tag {
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #d4a853;
    margin-bottom: 15px;
    font-weight: 600;
    background: linear-gradient(135deg, #fdf8ed 0%, #fef9f0 100%);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid #f0e6d0;
}

.product-category-tag .separator {
    margin: 0 10px;
    color: #ccc;
}

.product-title {
    font-family: 'Cinzel', serif;
    font-size: 32px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

.product-sku {
    font-size: 13px;
    color: #999;
    margin-bottom: 30px;
    font-weight: 500;
}

/* ========================================
   PRODUCT SPECS - REDESIGNED
   ======================================== */
.product-specs {
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 30px;
    border: 1px solid #eee;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #e8e8e8;
}

.spec-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.spec-item:first-child {
    padding-top: 0;
}

.spec-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    font-weight: 600;
}

.spec-value {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
}

/* ========================================
   PRICE BOX - PROMINENT DISPLAY
   ======================================== */
.product-price-box {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 16px;
    padding: 25px 30px;
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
}

.product-price-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #d4a853 0%, #f0d78c 50%, #d4a853 100%);
}

.product-price-box .price {
    font-family: 'Cinzel', serif;
    font-size: 36px;
    font-weight: 700;
    color: #d4a853;
    display: block;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.product-price-box .price-note {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    margin-top: 8px;
    display: block;
}

.price.price-on-request {
    font-size: 26px;
    color: #fff;
}

/* ========================================
   STOCK STATUS
   ======================================== */
.stock-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 25px;
    margin-bottom: 30px;
}

.stock-status::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.stock-status.in_stock {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    color: #2e7d32;
}

.stock-status.in_stock::before {
    background: #2e7d32;
}

.stock-status.out_of_stock {
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
    color: #c62828;
}

.stock-status.out_of_stock::before {
    background: #c62828;
}

.stock-status.on_demand {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    color: #ef6c00;
}

.stock-status.on_demand::before {
    background: #ef6c00;
}

/* ========================================
   NEW PRODUCT INFO STYLES (Simplified Design)
   ======================================== */
.product-weight-info {
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.product-weight-info strong {
    font-weight: 600;
}

.product-code-info {
    font-size: 14px;
    color: #333;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

.product-code-info strong {
    font-weight: 600;
}

/* Wish to Try at Store Button */
.btn-store-visit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #8B0000;
    color: #fff;
    padding: 16px 40px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-store-visit:hover {
    background: #6B0000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 0, 0, 0.3);
}

/* Virtual Try-On Button */
.btn-virtual-tryon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #c9a84c, #d4b96a);
    color: #1a1a1a;
    padding: 16px 32px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-virtual-tryon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s;
}

.btn-virtual-tryon:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 168, 76, 0.35);
}

.btn-virtual-tryon:hover::before {
    left: 100%;
}

/* ========================================
   ACTION BUTTONS
   ======================================== */
.product-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 35px;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #fff;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    flex: 1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-enquiry {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #fff;
    color: #1a1a1a;
    padding: 16px 32px;
    border: 2px solid #1a1a1a;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    flex: 1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-enquiry:hover {
    background: #1a1a1a;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* ========================================
   TRUST BADGES
   ======================================== */
.product-trust-badges {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: linear-gradient(135deg, #fdf8ed 0%, #fefaf2 100%);
    border-radius: 12px;
    border: 1px solid #f0e6d0;
    margin-bottom: 35px;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #555;
    font-weight: 500;
}

.trust-badge-item svg {
    color: #d4a853;
    flex-shrink: 0;
}

/* ========================================
   PRODUCT DESCRIPTION
   ======================================== */
.product-description {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    border: 1px solid #eee;
}

.product-description h3 {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    margin-bottom: 15px;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-description h3::before {
    content: '';
    width: 4px;
    height: 20px;
    background: #d4a853;
    border-radius: 2px;
}

.description-content {
    font-size: 15px;
    line-height: 1.9;
    color: #555;
}

/* ========================================
   RELATED PRODUCTS SECTION - FIXED!
   ======================================== */
.related-products-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
    position: relative;
}

.related-products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ddd, transparent);
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: 28px;
    text-align: center;
    margin-bottom: 15px;
    color: #1a1a1a;
    letter-spacing: 2px;
}

.section-subtitle {
    text-align: center;
    color: #888;
    font-size: 14px;
    margin-bottom: 50px;
}

.section-subtitle::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #d4a853;
    margin: 20px auto 0;
}

.related-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Related Product Card */
.related-product-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid #eee;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.related-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: #d4a853;
}

.related-product-card .product-image {
    position: relative;
    aspect-ratio: 1;
    background: linear-gradient(145deg, #f8f8f8 0%, #f0f0f0 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
}

.related-product-card .product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.5s;
}

.related-product-card:hover .product-image img {
    transform: scale(1.08);
}

.related-product-card .product-info {
    padding: 22px 20px;
    background: #fff;
    text-align: center;
}

.related-product-card .product-name {
    font-family: 'Cinzel', serif;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
    line-height: 1.4;
    letter-spacing: 0.3px;
}

.related-product-card .product-material {
    font-size: 12px;
    color: #888;
    font-weight: 500;
}

.related-product-card .product-price {
    font-size: 15px;
    font-weight: 700;
    color: #c41e3a;
    margin-top: 8px;
}

/* ========================================
   MODAL STYLES
   ======================================== */
.modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    width: 100%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 1;
    box-shadow: 0 25px 80px rgba(0,0,0,0.3);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: #f5f5f5;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.modal-close:hover {
    background: #1a1a1a;
    color: #fff;
}

.modal-content h3 {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.modal-product-name {
    font-size: 14px;
    color: #d4a853;
    margin-bottom: 30px;
    font-weight: 500;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.2s;
    background: #fafafa;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4a853;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(212,168,83,0.1);
}

.btn-block {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #d4a853 0%, #c49a47 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.btn-block:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212,168,83,0.4);
}

/* ========================================
   APPOINTMENT MODAL STYLES
   ======================================== */
.appointment-modal {
    max-width: 450px;
}

.appointment-modal h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.appointment-modal .form-group label {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.appointment-modal .form-group label .required {
    color: #dc3545;
}

.appointment-modal .form-group input,
.appointment-modal .form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    background: #fff;
    transition: border-color 0.2s;
}

.appointment-modal .form-group input:focus,
.appointment-modal .form-group select:focus {
    outline: none;
    border-color: #333;
}

.appointment-modal .form-group input::placeholder {
    color: #999;
}

.form-actions-row {
    display: flex;
    gap: 12px;
    margin-top: 25px;
    justify-content: flex-end;
}

.form-actions-row .btn {
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
}

.form-actions-row .btn-outline {
    background: #f5f5f5;
    color: #333;
    border: 1px solid #ddd;
}

.form-actions-row .btn-outline:hover {
    background: #eee;
}

.form-actions-row .btn-primary {
    background: #8B0000;
    color: #fff;
    border: none;
}

.form-actions-row .btn-primary:hover {
    background: #6B0000;
}

/* ========================================
   LIGHTBOX
   ======================================== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.97);
    z-index: 100000;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 35px;
    background: rgba(255,255,255,0.1);
    border: none;
    color: #fff;
    font-size: 35px;
    cursor: pointer;
    z-index: 10;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.lightbox-close:hover {
    background: rgba(255,255,255,0.2);
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255,255,255,0.2);
    color: #fff;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
}

.lightbox-prev { left: 30px; }
.lightbox-next { right: 30px; }

.lightbox-prev:hover,
.lightbox-next:hover {
    background: #d4a853;
    border-color: #d4a853;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1200px) {
    .related-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .product-detail-layout {
        gap: 50px;
    }
}

@media (max-width: 1024px) {
    .product-detail-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .product-gallery {
        position: static;
    }
    
    .zoom-lens,
    .zoom-result-container,
    .zoom-hint {
        display: none !important;
    }
    
    .main-image-container {
        cursor: zoom-in;
    }
    
    .related-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .product-detail-section {
        padding: 30px 0 50px;
    }
    
    .gallery-layout {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .gallery-thumbnails {
        flex-direction: row;
        max-height: none;
        order: 2;
        overflow-x: auto;
        padding-bottom: 10px;
        padding-right: 0;
    }
    
    .thumbnail {
        flex-shrink: 0;
        width: 70px;
        height: 70px;
    }
    
    .gallery-main {
        order: 1;
    }
    
    .product-title {
        font-size: 24px;
    }
    
    .product-price-box {
        padding: 20px;
    }
    
    .product-price-box .price {
        font-size: 28px;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .btn-whatsapp,
    .btn-enquiry,
    .btn-virtual-tryon {
        width: 100%;
    }
    
    .product-trust-badges {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .related-products-section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .related-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 45px;
        height: 45px;
    }
    
    .lightbox-prev { left: 15px; }
    .lightbox-next { right: 15px; }
    
    .modal-content {
        padding: 30px 25px;
    }
}

@media (max-width: 480px) {
    .product-specs {
        padding: 20px;
    }
    
    .spec-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .product-category-tag {
        font-size: 11px;
        padding: 6px 12px;
    }
    
    .product-title {
        font-size: 20px;
    }
    
    .related-products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .breadcrumb {
        font-size: 12px;
    }
}

/* ========================================
   M.P.P. PROMISE SECTION
   ======================================== */
.mpp-promise-section {
    background: #fff;
    padding: 80px 0;
    border-top: 1px solid #eee;
}

.promise-title {
    font-family: 'Cinzel', serif;
    font-size: 36px;
    font-weight: 500;
    color: #1a1a4e;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 1px;
}

.promise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.promise-item {
    text-align: center;
    padding: 0 20px;
}

.promise-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: 0.3px;
}

.promise-text {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    font-weight: 400;
}

@media (max-width: 992px) {
    .promise-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .promise-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .promise-item {
        padding: 0;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .mpp-promise-section {
        padding: 50px 0;
    }
    
    .promise-title {
        font-size: 24px;
    }
}
