/* ============================================
   PRODUCT SHOWCASE MODERN
   ============================================ */
.product-showcase-modern {
    padding: 40px 0 80px;
    background: #fafbfc;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.showcase-bg-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 159, 64, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.showcase-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* ============================================
   BREADCRUMB
   ============================================ */
.product-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 14px;
}

.product-breadcrumb a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-breadcrumb a:hover {
    color: #695a53;
}

.breadcrumb-separator {
    color: #ccc;
}

.current-page {
    color: #695a53;
    font-weight: 600;
}

/* ============================================
   SHOWCASE GRID
   ============================================ */
.product-showcase-grid {
    display: grid;
    grid-template-columns: 48% 52%;
    gap: 50px;
}

/* ============================================
   PRODUCT GALLERY SIDE
   ============================================ */
.product-gallery-side {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.gallery-main-wrapper {
    position: relative;
    background: #ffffff;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
    margin-bottom: 25px;
}

.quality-badge-float {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #695a53, #f0efee);
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.quality-badge-float i {
    animation: starSpin 3s linear infinite;
}

@keyframes starSpin {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

.image-zoom-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #f8f9fa;
    cursor: zoom-in;
}

.gallery-main-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.zoom-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(0, 0, 0, 0.4); */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    cursor: default;
    transition: opacity 0.3s ease;
}

.zoom-overlay i {
    color: #ffffff;
    font-size: 32px;
}

.image-zoom-container:hover .gallery-main-image {
    transform: scale(1.1);
}

.image-zoom-container:hover .zoom-overlay {
    opacity: 1;
}

/* Quick Features Panel */
.quick-features-panel {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.quick-feature-item {
    background: #ffffff;
    padding: 20px 10px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.quick-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon-circle {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 159, 64, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #695a53;
    font-size: 20px;
}

.quick-feature-item span {
    font-size: 12px;
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
}

/* ============================================
   PRODUCT DETAILS SIDE
   ============================================ */
.product-details-side {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Product Title Area */
.product-title-area {
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.title-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.availability-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.availability-badge.in-stock {
    background: #d4edda;
    color: #155724;
}

.availability-badge i {
    font-size: 8px;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-btn {
    width: 38px;
    height: 38px;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.share-btn:hover {
    background: #695a53;
    color: #ffffff;
    border-color: #695a53;
}

.product-name-display {
    font-size: 34px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 15px;
}

.product-meta-info {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #666;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.meta-item i {
    color: #695a53;
}

.meta-divider {
    color: #ccc;
}

/* Info Cards */
.info-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.card-header-title {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-bottom: 2px solid #f0f0f0;
}

.header-icon-box {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #695a53, #f0efee);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
}

.card-header-title h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.card-content {
    padding: 25px 30px;
}

.description-content {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin: 0;
}

/* Specifications List */
.specs-list-wrapper ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 15px;
}

.specs-list-wrapper li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 12px;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.specs-list-wrapper li:hover {
    background: rgba(194, 194, 181, 0.05);
    transform: translateX(5px);
}

.spec-bullet {
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #695a53, #f0efee);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 6px;
    box-shadow: 0 0 0 3px rgba(194, 194, 181, 0.2);
}

/* CTA Panel */
.cta-panel-sticky {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.cta-content-wrapper {
    padding: 30px;
}

.cta-text-section {
    margin-bottom: 25px;
}

.cta-heading {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.cta-subtext {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.cta-buttons-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.cta-primary-btn,
.cta-secondary-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 20px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-primary-btn {
    background: linear-gradient(135deg, #695a53, #f0efee);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(194, 194, 181, 0.4);
}

.cta-primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(194, 194, 181, 0.5);
    color: #ffffff;
}

.cta-secondary-btn {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.cta-secondary-btn:hover {
    background: #ffffff;
    color: #1a1a1a;
    border-color: #ffffff;
    transform: translateY(-3px);
}

/* Contact Info Bar */
.contact-info-bar {
    display: flex;
    align-items: center;
    padding: 20px 30px;
    background: rgba(0, 0, 0, 0.3);
    gap: 25px;
}

.info-bar-item {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.info-bar-item i {
    font-size: 24px;
    color: #f0efee;
}

.info-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.info-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    font-size: 13px;
    color: #ffffff;
    font-weight: 600;
}

.info-bar-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .product-showcase-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .product-gallery-side {
        position: static;
    }

    .product-name-display {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .product-showcase-modern {
        padding: 30px 0 60px;
    }

    .quick-features-panel {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-buttons-group {
        grid-template-columns: 1fr;
    }

    .contact-info-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .info-bar-divider {
        width: 100%;
        height: 1px;
    }

    .product-name-display {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .gallery-main-wrapper,
    .product-title-area,
    .info-card,
    .cta-panel-sticky {
        border-radius: 16px;
    }

    .card-header-title,
    .card-content,
    .cta-content-wrapper {
        padding: 20px;
    }

    .product-name-display {
        font-size: 22px;
    }

    .quick-features-panel {
        grid-template-columns: 1fr;
    }
}