/* Product Details Page - GLAMÓRE Style */
/* Override site.css styles with higher specificity */

/* Force override of site.css styles */
.product-details-page {
    background-color: #ffffff !important;
    min-height: 100vh !important;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
}

/* Override site.css product-container */
.product-details-page .container.product-container,
.product-details-page .product-container {
    padding: 40px 0 60px !important;
    max-width: 1400px !important;
    background: transparent !important;
}

/* Override site.css product-main-row */
.product-details-page .row.product-main-row,
.product-details-page .product-main-row {
    background: transparent !important;
    border-radius: 0 !important;
    padding: 0 !important;
    margin-bottom: 60px !important;
    box-shadow: none !important;
}

/* Breadcrumb */
.product-details-page .breadcrumb-nav {
    background-color: #ffffff !important;
    padding: 20px 0 !important;
    border-bottom: 1px solid #f0f0f0 !important;
}

.product-details-page .breadcrumb-nav .breadcrumb {
    margin-bottom: 0 !important;
    background: transparent !important;
    font-size: 14px !important;
    padding: 0 !important;
}

.product-details-page .breadcrumb-nav .breadcrumb-item {
    color: #666 !important;
}

.product-details-page .breadcrumb-nav .breadcrumb-item a {
    color: #666 !important;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
}

.product-details-page .breadcrumb-nav .breadcrumb-item a:hover {
    color: var(--glamore-gold) !important;
    text-decoration: none !important;
}

.product-details-page .breadcrumb-nav .breadcrumb-item.active {
    color: #000 !important;
    font-weight: 500 !important;
}

.product-details-page .breadcrumb-nav .breadcrumb-item + .breadcrumb-item::before {
    content: "/" !important;
    padding: 0 8px !important;
    color: #999 !important;
}

/* Product Container */
.product-details-page .product-container {
    padding: 40px 0 60px !important;
    max-width: 1400px !important;
}

.product-details-page .product-main-row {
    margin-bottom: 60px !important;
}

/* Product Images Section */
.product-details-page .col-lg-6.product-images-section,
.product-details-page .col-md-6.product-images-section,
.product-details-page .product-images-section {
    padding-right: 40px !important;
    margin-bottom: 40px !important;
}

/* Override site.css sticky positioning */
.product-details-page .product-image-gallery {
    position: relative !important;
    top: auto !important;
}

.product-details-page .main-product-image-wrapper {
    position: relative !important;
    background: #ffffff !important;
    border: 1px solid #f0f0f0 !important;
    border-radius: 8px !important;
    padding: 20px !important;
    margin-bottom: 20px !important;
    text-align: center !important;
    min-height: 500px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
}

.product-details-page .main-product-image {
    max-width: 100% !important;
    max-height: 600px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    transition: transform 0.3s ease !important;
}

.product-details-page .main-product-image:hover {
    transform: scale(1.05) !important;
}

.no-image-placeholder {
    color: #999;
    text-align: center;
    padding: 60px 20px;
}

.no-image-placeholder i {
    font-size: 80px;
    margin-bottom: 15px;
    display: block;
}

.no-image-placeholder p {
    font-size: 16px;
    margin: 0;
}

/* Image Navigation Arrows */
.image-nav-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    pointer-events: none;
    z-index: 10;
}

.image-nav-arrow {
    width: 44px;
    height: 44px;
    background-color: rgba(255, 255, 255, 0.95);
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.image-nav-arrow:hover {
    background-color: #ffffff;
    border-color: var(--glamore-gold);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: scale(1.1);
}

.image-nav-arrow i {
    color: #333;
    font-size: 18px;
}

.image-nav-arrow:hover i {
    color: var(--glamore-gold);
}

.image-nav-arrow.prev {
    left: 10px;
}

.image-nav-arrow.next {
    right: 10px;
}

/* Thumbnail Images */
.product-thumbnails {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-start;
    overflow-x: auto;
    padding: 10px 0;
}

.thumbnail-item {
    width: 90px;
    height: 90px;
    border: 2px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    background: #f9f9f9;
}

.thumbnail-item:hover {
    border-color: var(--glamore-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.thumbnail-item.active {
    border-color: var(--glamore-gold);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Product Information Section */
.product-details-page .product-info-section {
    padding-left: 40px !important;
}

.product-details-page .product-header {
    margin-bottom: 20px !important;
}

.product-details-page .product-title {
    font-size: 32px !important;
    font-weight: 600 !important;
    color: #000 !important;
    margin: 0 0 15px 0 !important;
    line-height: 1.3 !important;
    letter-spacing: -0.5px !important;
}

/* Social Share Buttons */
.product-details-page .social-share-buttons {
    display: flex !important;
    gap: 12px !important;
    margin: 20px 0 25px 0 !important;
    align-items: center !important;
}

.social-share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.social-share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.facebook-share {
    background-color: #1877F2;
    color: white;
}

.twitter-share {
    background-color: #000000;
    color: white;
}

.linkedin-share {
    background-color: #0077B5;
    color: white;
}

.instagram-share {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

/* Product Category */
.product-category {
    margin: 0 0 20px 0;
    font-size: 14px;
}

.product-category a {
    color: var(--glamore-gold);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.product-category a:hover {
    color: #b8941f;
    text-decoration: underline;
}

/* Price Section */
.product-details-page .product-price-section {
    margin: 25px 0 !important;
}

.product-details-page .price-with-discount {
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    flex-wrap: wrap !important;
}

.product-details-page .price-single {
    display: flex !important;
    align-items: center !important;
}

.product-details-page .current-price {
    font-size: 36px !important;
    font-weight: 700 !important;
    color: #000 !important;
    line-height: 1 !important;
}

.product-details-page .compare-price {
    font-size: 24px !important;
    color: #999 !important;
    text-decoration: line-through !important;
    font-weight: 400 !important;
}

.product-details-page .discount-badge {
    background-color: #ff4444 !important;
    color: #ffffff !important;
    padding: 6px 12px !important;
    border-radius: 4px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

/* Stock Status */
.stock-status {
    margin: 20px 0;
}

.stock-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.stock-badge.in-stock {
    background-color: #e8f5e9;
    color: #2e7d32;
}

.stock-badge.out-of-stock {
    background-color: #ffebee;
    color: #c62828;
}

.stock-badge i {
    font-size: 16px;
}

/* Product SKU */
.product-sku {
    margin: 15px 0;
    font-size: 14px;
    color: #666;
}

.product-sku strong {
    color: #000;
    margin-right: 8px;
}

/* Key Features */
.key-features-section {
    margin: 30px 0;
    padding: 25px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.key-features-section h3 {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin: 0 0 15px 0;
}

.key-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.key-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 0;
    font-size: 14px;
    color: #333;
}

.key-features-list li i {
    color: var(--glamore-gold);
    font-size: 16px;
    margin-top: 3px;
    flex-shrink: 0;
}

.key-features-list li strong {
    display: block;
    font-weight: 600;
    color: #000;
    margin-bottom: 4px;
}

.benefits-subtitle {
    font-size: 14px;
    color: #666;
    margin: 0 0 20px 0;
    font-style: italic;
}

.benefit-description {
    font-size: 13px;
    color: #555;
    margin: 4px 0 0 0;
    line-height: 1.5;
    display: block;
}

/* Product Addons */
.product-addons-section {
    margin: 30px 0;
}

.product-addons-section h4 {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin: 0 0 20px 0;
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 15px;
}

.addon-card {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    background: #fff;
}

.addon-card:hover {
    border-color: var(--glamore-gold);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.addon-card.selected {
    border-color: var(--glamore-gold);
    background-color: #fffbf0;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.addon-card.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.addon-image {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 10px;
}

.addon-info h5 {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin: 0 0 8px 0;
}

.addon-detail {
    font-size: 13px;
    color: #666;
    margin: 4px 0;
}

.addon-price {
    font-size: 16px;
    font-weight: 600;
    color: var(--glamore-gold);
    margin: 10px 0;
}

/* Price Summary */
.price-summary {
    margin: 25px 0;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.price-breakdown {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    color: #333;
}

.price-row.total-price-row {
    padding-top: 12px;
    border-top: 2px solid #e0e0e0;
    margin-top: 8px;
}

.price-row.total-price-row span {
    font-size: 20px;
}

/* Quantity Selector */
.quantity-selector {
    margin: 25px 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.quantity-selector label {
    font-weight: 600;
    color: #000;
    margin: 0;
    font-size: 15px;
}

.quantity-controls {
    display: flex;
    align-items: center;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    background: #fff;
}

.quantity-btn {
    background: #f9f9f9;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 16px;
    color: #333;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
}

.quantity-btn:hover:not(:disabled) {
    background: var(--glamore-gold);
    color: #fff;
}

.quantity-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.quantity-controls input[type="number"] {
    width: 60px;
    text-align: center;
    border: none;
    padding: 10px;
    font-size: 16px;
    font-weight: 600;
    outline: none;
    background: #fff;
    appearance: textfield;
    -moz-appearance: textfield;
}

.quantity-controls input[type="number"]::-webkit-outer-spin-button,
.quantity-controls input[type="number"]::-webkit-inner-spin-button {
    appearance: none;
    -webkit-appearance: none;
    margin: 0;
}

/* Product Actions */
.product-details-page .product-actions {
    display: flex !important;
    gap: 15px !important;
    margin: 30px 0 !important;
    flex-wrap: wrap !important;
}

.product-details-page .btn-add-to-cart {
    flex: 1 !important;
    min-width: 200px !important;
    padding: 16px 32px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    border-radius: 4px !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
}

.product-details-page .btn-add-to-cart.btn-primary {
    background-color: #000 !important;
    border-color: #000 !important;
    color: #fff !important;
}

.product-details-page .btn-add-to-cart.btn-primary:hover {
    background-color: #333 !important;
    border-color: #333 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
}

.btn-wishlist {
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-wishlist:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Warranty Info */
.warranty-info {
    margin: 30px 0;
    padding: 20px;
    background-color: #f0f7ff;
    border-left: 4px solid var(--glamore-gold);
    border-radius: 4px;
}

.warranty-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin: 0 0 10px 0;
}

.warranty-info p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Product Tabs Section */
.product-tabs-section {
    margin: 60px 0 40px;
    border-top: 1px solid #e0e0e0;
    padding-top: 40px;
}

.product-tabs {
    border-bottom: 2px solid #e0e0e0;
    margin-bottom: 30px;
}

.product-tabs .nav-item {
    margin-right: 30px;
}

.product-tabs .nav-link {
    border: none;
    border-bottom: 3px solid transparent;
    padding: 12px 0;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: transparent;
    transition: all 0.3s ease;
}

.product-tabs .nav-link:hover {
    color: #000;
    border-bottom-color: #e0e0e0;
}

.product-tabs .nav-link.active {
    color: #000;
    border-bottom-color: var(--glamore-gold);
    background: transparent;
}

.product-tab-content {
    padding: 30px 0;
}

.tab-content-inner h3 {
    font-size: 24px;
    font-weight: 600;
    color: #000;
    margin: 0 0 20px 0;
}

.product-description {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.product-description p {
    margin-bottom: 15px;
}

.product-description ul,
.product-description ol {
    margin: 15px 0;
    padding-left: 30px;
}

.product-description li {
    margin-bottom: 8px;
}

/* Specifications */
.specifications-table {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.spec-row {
    display: grid;
    grid-template-columns: 200px 1fr;
    border-bottom: 1px solid #e0e0e0;
    padding: 15px 20px;
    background: #fff;
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-row:nth-child(even) {
    background: #f9f9f9;
}

.spec-label {
    font-weight: 600;
    color: #000;
    font-size: 14px;
}

.spec-value {
    color: #666;
    font-size: 14px;
}

/* Vendor Info */
.vendor-info {
    margin-top: 30px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.vendor-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin: 0 0 10px 0;
}

.vendor-info p {
    font-size: 14px;
    color: #666;
    margin: 5px 0;
}

/* FAQ Accordion */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: #fff;
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: #000;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: #f9f9f9;
}

.faq-question.active {
    background-color: #f9f9f9;
    color: var(--glamore-gold);
}

.faq-question i {
    transition: transform 0.3s ease;
    color: #666;
}

.faq-question.active i {
    transform: rotate(180deg);
    color: var(--glamore-gold);
}

.faq-answer {
    padding: 0 20px 20px;
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}

/* Hair Growth Progress Section */
.hair-growth-progress-section {
    margin: 60px 0 40px;
    padding: 60px 0;
    background-color: #ffffff;
}

.progress-main-title {
    font-size: 32px;
    font-weight: 600;
    color: #000;
    text-align: center;
    margin: 0 0 40px 0;
    letter-spacing: -0.5px;
}

.progress-statistics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.stat-box {
    background-color: #f5e6d3;
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.stat-percentage {
    font-size: 48px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
    line-height: 1;
}

.stat-text {
    font-size: 15px;
    color: #333;
    line-height: 1.6;
    font-weight: 400;
}

.progress-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
}

.timeline-item {
    text-align: center;
    background: #ffffff;
}

.timeline-image-wrapper {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
}

.timeline-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.timeline-item:hover .timeline-image {
    transform: scale(1.05);
}

.timeline-title {
    font-size: 24px;
    font-weight: 600;
    color: #000;
    margin: 0 0 15px 0;
    letter-spacing: -0.5px;
}

.timeline-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0 0 20px 0;
    min-height: 45px;
}

.timeline-cta {
    background-color: #000;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.timeline-cta:hover {
    background-color: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* How To Use Section */
.how-to-use-section {
    margin: 60px 0 40px;
    padding: 60px 0;
    background-color: #ffffff;
}

.how-to-use-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

.how-to-use-title {
    font-size: 32px;
    font-weight: 600;
    color: #000;
    text-align: center;
    margin: 0 0 50px 0;
    letter-spacing: -0.5px;
}

.how-to-use-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    width: 100%;
}

.how-to-use-item {
    text-align: center;
    padding: 35px 25px;
    background-color: #f5e6d3;
    border-radius: 12px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 280px;
    justify-content: flex-start;
}

.how-to-use-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    background-color: #f0dcc0;
}

.how-to-use-icon {
    width: 80px;
    height: 80px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.how-to-use-item:hover .how-to-use-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.how-to-use-icon i {
    font-size: 36px;
    color: var(--glamore-gold);
}

.how-to-use-item-title {
    font-size: 22px;
    font-weight: 600;
    color: #000;
    margin: 0 0 15px 0;
    letter-spacing: -0.3px;
}

.how-to-use-description {
    font-size: 15px;
    color: #333;
    line-height: 1.7;
    margin: 0;
    font-weight: 400;
    max-width: 100%;
}

/* Related Products */
.related-products-section {
    margin: 60px 0 40px;
    padding-top: 40px;
    border-top: 1px solid #e0e0e0;
}

.section-title {
    font-size: 28px;
    font-weight: 600;
    color: #000;
    margin: 0 0 30px 0;
    text-align: center;
}

.related-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.related-product-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.related-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: inherit;
}

.product-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.related-product-image {
    width: 100%;
    padding-top: 100%;
    position: relative;
    overflow: hidden;
    background: #f9f9f9;
}

.related-product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-product-card:hover .related-product-image img {
    transform: scale(1.1);
}

.related-product-info {
    padding: 20px;
}

.related-product-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.related-product-category {
    font-size: 13px;
    color: var(--glamore-gold);
    margin: 0 0 12px 0;
    font-weight: 500;
}

.related-product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.related-product-price .current-price {
    font-size: 20px;
    font-weight: 700;
    color: #000;
}

.related-product-price .compare-price {
    font-size: 16px;
    color: #999;
    text-decoration: line-through;
}

/* Responsive Design */
@media (max-width: 991px) {
    .product-details-page .product-images-section {
        padding-right: 0 !important;
        margin-bottom: 30px !important;
    }

    .product-details-page .product-info-section {
        padding-left: 0 !important;
    }

    .product-details-page .product-container {
        padding: 30px 15px 40px !important;
    }

    .product-details-page .product-title {
        font-size: 28px !important;
    }

    .product-details-page .current-price {
        font-size: 32px !important;
    }

    .main-product-image-wrapper {
        min-height: 400px;
    }

    .addons-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }

    .how-to-use-section {
        margin: 50px 0 35px;
        padding: 50px 0;
    }

    .how-to-use-section .container {
        padding: 0 20px;
    }

    .how-to-use-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .how-to-use-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .how-to-use-item {
        padding: 30px 20px;
        min-height: 260px;
    }

    .how-to-use-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }

    .how-to-use-icon i {
        font-size: 30px;
    }

    .how-to-use-item-title {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .how-to-use-description {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .product-details-page .product-container {
        padding: 20px 15px 30px !important;
    }

    .product-details-page .product-title {
        font-size: 24px !important;
    }

    .product-details-page .current-price {
        font-size: 28px !important;
    }

    .product-details-page .compare-price {
        font-size: 20px !important;
    }

    .product-details-page .main-product-image-wrapper {
        min-height: 350px !important;
        padding: 15px;
    }

    .thumbnail-item {
        width: 70px;
        height: 70px;
    }

    .product-actions {
        flex-direction: column;
    }

    .btn-add-to-cart {
        width: 100%;
        min-width: auto;
    }

    .product-tabs .nav-item {
        margin-right: 15px;
    }

    .product-tabs .nav-link {
        font-size: 12px;
        padding: 10px 0;
    }

    .spec-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .spec-label {
        font-weight: 600;
        margin-bottom: 4px;
    }

    .related-products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
    }

    .section-title {
        font-size: 24px;
    }

    .progress-main-title {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .progress-statistics {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        margin-bottom: 40px;
    }

    .stat-box {
        padding: 25px 20px;
    }

    .stat-percentage {
        font-size: 42px;
    }

    .progress-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .timeline-title {
        font-size: 20px;
    }

    .how-to-use-section {
        margin: 40px 0 30px;
        padding: 40px 0;
    }

    .how-to-use-section .container {
        padding: 0 15px;
    }

    .how-to-use-title {
        font-size: 26px;
        margin-bottom: 35px;
    }

    .how-to-use-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .how-to-use-item {
        padding: 25px 18px;
        min-height: 240px;
    }

    .how-to-use-icon {
        width: 65px;
        height: 65px;
        margin-bottom: 18px;
    }

    .how-to-use-icon i {
        font-size: 28px;
    }

    .how-to-use-item-title {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .how-to-use-description {
        font-size: 14px;
        line-height: 1.6;
    }
}

@media (max-width: 576px) {
    .breadcrumb-nav {
        padding: 15px 0;
    }

    .breadcrumb-nav .breadcrumb {
        font-size: 12px;
    }

    .product-container {
        padding: 15px 10px 25px;
    }

    .product-title {
        font-size: 22px;
    }

    .social-share-buttons {
        gap: 8px;
    }

    .social-share-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .current-price {
        font-size: 24px;
    }

    .compare-price {
        font-size: 18px;
    }

    .main-product-image-wrapper {
        min-height: 300px;
        padding: 10px;
    }

    .image-nav-arrow {
        width: 36px;
        height: 36px;
    }

    .image-nav-arrow i {
        font-size: 14px;
    }

    .thumbnail-item {
        width: 60px;
        height: 60px;
    }

    .key-features-section {
        padding: 20px;
    }

    .addons-grid {
        grid-template-columns: 1fr;
    }

    .product-tabs-section {
        margin: 40px 0 30px;
        padding-top: 30px;
    }

    .product-tabs .nav-item {
        margin-right: 10px;
    }

    .product-tabs .nav-link {
        font-size: 11px;
        padding: 8px 0;
    }

    .tab-content-inner h3 {
        font-size: 20px;
    }

    .related-products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-title {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .hair-growth-progress-section {
        margin: 40px 0 30px;
        padding: 40px 0;
    }

    .progress-main-title {
        font-size: 20px;
        margin-bottom: 25px;
        padding: 0 15px;
    }

    .progress-statistics {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 30px;
        padding: 0 15px;
    }

    .stat-box {
        padding: 20px 15px;
    }

    .stat-percentage {
        font-size: 36px;
        margin-bottom: 12px;
    }

    .stat-text {
        font-size: 14px;
    }

    .progress-timeline {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }

    .timeline-image-wrapper {
        margin-bottom: 15px;
    }

    .timeline-title {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .timeline-description {
        font-size: 13px;
        margin-bottom: 15px;
        min-height: auto;
    }

    .timeline-cta {
        padding: 10px 20px;
        font-size: 13px;
        width: 100%;
    }

    .how-to-use-section {
        margin: 30px 0 20px;
        padding: 30px 0;
    }

    .how-to-use-section .container {
        padding: 0 15px;
    }

    .how-to-use-title {
        font-size: 22px;
        margin-bottom: 25px;
    }

    .how-to-use-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .how-to-use-item {
        padding: 30px 20px;
        min-height: auto;
    }

    .how-to-use-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }

    .how-to-use-icon i {
        font-size: 30px;
    }

    .how-to-use-item-title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .how-to-use-description {
        font-size: 15px;
        line-height: 1.7;
    }
}

