/* Rudraksha Details Section Styles */
.rudraksha-details-section {
    padding: 0px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.rudraksha-details-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="om" patternUnits="userSpaceOnUse" width="20" height="20"><circle cx="10" cy="10" r="2" fill="%23ffc107" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23om)"/></svg>') repeat;
    opacity: 0.1;
    pointer-events: none;
}

.rudraksha-details-wrapper {
    position: relative;
    z-index: 1;
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #470097c9;
    margin-bottom: 0rem;
    text-align: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.section-title::before, .section-title::after {
    content: '';
    flex: 1;
    height: 3px;
    background: linear-gradient(90deg, transparent, #470097, transparent);
    border-radius: 2px;
}

.section-title i {
    color: #8c6eae;
    font-size: 2rem;
}

/* Specifications List */
.rudraksha-specifications {
    margin-bottom: 4rem;
}

.specifications-list {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef00 100%);
    border-radius: 15px;
    padding: 15px;
    margin-top: 1rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.spec-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.spec-item {
    display: flex;
    align-items: center;
    padding: 5px 5px;
    /* border-bottom: 1px solid rgba(0, 0, 0, 0.1); */
    transition: none;
}

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

.spec-item:hover {
    /* background: rgb(255 255 255 / 27%); */
    /* border-radius: 8px; */
    /* padding-left: 10px; */
    /* padding-right: 10px; */
}

.spec-icon {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    flex-shrink: 0;
}

.spec-icon i {
    color: white;
    font-size: 16px;
}

.spec-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.spec-label {
    font-weight: 600;
    color: #2c3e50;
    font-size: 14px;
    margin-bottom: 0px;
}

.spec-value {
    color: #6c757d;
    font-size: 16px;
}

.mantra-section {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid rgba(139, 92, 246, 0.2);
}

.mantra-item {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.mantra-item .spec-icon {
    margin-right: 20px;
    margin-top: 5px;
}

.mantra-text {
    font-size: 18px;
    color: #2c3e50;
    font-weight: 600;
    text-align: center;
    line-height: 1.6;
    background: rgba(255, 255, 255, 0.8);
    padding: 15px;
    border-radius: 8px;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.spec-card {
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 50%, #c084fc 100%);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.2);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    min-height: 140px;
}

.spec-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffffff, #f3e8ff, #ffffff);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.spec-card:hover::before {
    transform: scaleX(1);
}

.spec-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.3);
    border-color: #ffffff;
}

.spec-card .spec-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 3px 10px rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.spec-card .spec-icon i {
    font-size: 1.2rem;
    color: #ffffff;
}

.spec-card .spec-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.spec-card .spec-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.mantra-text {
    font-size: 1.2rem !important;
    color: #2c3e50 !important;
    font-weight: 600;
    text-align: center;
    padding: 1rem;
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    border-radius: 10px;
    border: 2px solid #ffffff;
}

/* Content Tabs */
.rudraksha-content {
    margin-bottom: 4rem;
}

.content-tabs {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.nav-tabs {
    border: none;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    padding: 0;
    margin: 0;
}

.nav-tabs .nav-item {
    margin: 0;
}

.nav-tabs .nav-link {
    border: none;
    border-radius: 0;
    padding: 1.5rem 2rem;
    color: #ffffff;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.nav-tabs .nav-link:hover {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
}

.nav-tabs .nav-link.active {
    /* background: linear-gradient(135deg, #ffc107, #ff6b35); */
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

.nav-tabs .nav-link i {
    font-size: 1.1rem;
}

.tab-content {
    padding: 3rem;
}

.content-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2c3e50;
}

.content-body h1, .content-body h2, .content-body h3, .content-body h4, .content-body h5, .content-body h6 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;
}

.content-body p {
    margin-bottom: 1.5rem;
}

.content-body ul, .content-body ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.content-body li {
    margin-bottom: 0.5rem;
}

/* Specification Table */
.rudraksha-specification-table {
    margin-bottom: 2rem;
}

.table-responsive {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.table-responsive table {
    margin: 0;
    border: none;
}

.table-responsive th, .table-responsive td {
    padding: 1rem 1.5rem;
    border: none;
    border-bottom: 1px solid #e9ecef;
}

.table-responsive th {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.table-responsive tr:hover {
    background: rgba(255, 193, 7, 0.05);
}

/* Related Products Section */
.rudraksha-related-products {
    padding: 60px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ffffff;
}

.rudraksha-related-products .section-title {
    color: #ffffff;
}

.rudraksha-related-products .section-title::before, .rudraksha-related-products .section-title::after {
    background: linear-gradient(90deg, transparent, #ffc107, transparent);
}

.section-title-wrapper {
    text-align: center;
    margin-bottom: 3rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #bdc3c7;
    margin-top: 1rem;
}

.mukhi-info {
    text-align: center;
    margin-bottom: 2rem;
}

.current-mukhi {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 193, 7, 0.1);
    padding: 1rem 2rem;
    border-radius: 50px;
    border: 2px solid #ffc107;
}

.mukhi-badge {
    background: linear-gradient(135deg, #ffc107, #ff6b35);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
}

.mukhi-label {
    color: #ffc107;
    font-weight: 500;
}

.related-products-slider {
    margin-bottom: 3rem;
}

.product-item {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-thumb {
    position: relative;
    overflow: hidden;
}

.product-thumb img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-item:hover .product-thumb img {
    transform: scale(1.05);
}

.mukhi-badge-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
}

.mukhi-count {
    background: linear-gradient(135deg, #ffc107, #ff6b35);
    color: #ffffff;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(255, 193, 7, 0.3);
}

.product-badges {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
}

.product-content {
    padding: 10px;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.product-title a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-title a:hover {
    color: #ffc107;
}

.mukhi-type {
    color: #ffc107;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.product-price {
    margin-bottom: 1rem;
}

.price-regular {
    color: #6c757d;
    text-decoration: line-through;
    font-size: 0.9rem;
    margin-right: 0.5rem;
}

.price-sale {
    color: #e74c3c;
    font-weight: 600;
    font-size: 1.1rem;
}

.product-actions {
    margin-top: 1rem;
}

.add-to-cart-btn {
    background: linear-gradient(135deg, #ffc107, #ff6b35);
    border: none;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    width: 100%;
}

.add-to-cart-btn:hover {
    background: linear-gradient(135deg, #ff6b35, #ffc107);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

/* Mukhi Categories Navigation */
.mukhi-categories-nav {
    text-align: center;
    margin-top: 3rem;
}

.mukhi-categories-nav h4 {
    color: #ffffff;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.mukhi-categories-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.mukhi-category-link {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.mukhi-category-link:hover {
    background: linear-gradient(135deg, #ffc107, #ff6b35);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

.mukhi-category-link.active {
    background: linear-gradient(135deg, #ffc107, #ff6b35);
    border-color: #ffc107;
}

/* Swiper Navigation */
.swiper-button-next, .swiper-button-prev {
    color: #ffc107 !important;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 50px !important;
    height: 50px !important;
    margin-top: -25px !important;
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 20px !important;
}

.swiper-pagination-bullet {
    background: #470097a6 !important;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .rudraksha-details-section {
        padding: 10px 0px;
    }

    .section-title {
        font-size: 2rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .section-title::before, .section-title::after {
        display: none;
    }

    .specifications-list {
        padding: 20px;
    }

    .spec-item {
        padding: 12px 0;
    }

    .spec-icon {
        width: 35px;
        height: 35px;
    }

    .spec-icon i {
        font-size: 14px;
    }

    .spec-label {
        font-size: 13px;
    }

    .spec-value {
        font-size: 15px;
    }

    .mantra-text {
        font-size: 16px;
        padding: 12px;
    }
}

.specifications-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.spec-card {
    padding: 1.2rem;
    min-height: 120px;
}

.nav-tabs .nav-link {
    padding: 1rem;
    font-size: 0.9rem;
}

.tab-content {
    padding: 2rem 1.5rem;
}

.mukhi-categories-grid {
    gap: 0.5rem;
}

.mukhi-category-link {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
}

@media (max-width: 480px) {
    .specifications-grid {
        grid-template-columns: 1fr;
    }

    .spec-card {
        padding: 1rem;
        min-height: 100px;
    }

    .spec-card .spec-icon {
        width: 35px;
        height: 35px;
    }

    .spec-card .spec-icon i {
        font-size: 1rem;
    }

    .nav-tabs .nav-link {
        padding: 0.8rem;
        font-size: 0.8rem;
    }

    .tab-content {
        padding: 1.5rem 1rem;
    }
}

/* Rudraksha Content Boxes - Full Width with Horizontal Layout */
.rudraksha-content .content-boxes {
    margin-top: 10px;
}

.rudraksha-content .content-boxes .row {
    display: flex !important;
    flex-direction: column !important;
    margin: 0 !important;
}

.rudraksha-content .content-boxes .col-lg-12 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin-bottom: 20px !important;
}

/* Horizontal layout within each content box */
.content-box {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
    min-height: 200px;
}

.content-box .box-header {
    flex: 0 0 250px;
    min-width: 250px;
    padding: 5px;
    background: rgb(255 255 255 / 0%);
    border-radius: 10px;
    text-align: center;
}

.content-box .box-content {
    flex: 1;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: justify;
}

/* Content box - Full size display */
.content-box {
    position: relative;
    overflow: visible;
    transition: all 0.3s ease;
    min-height: 200px;
}

/* Content area - Full display */
.content-box .box-content {
    position: relative;
    transition: all 0.3s ease;
    overflow: visible;
}

/* Two-column layout for content text - except about box */
.content-box:not(.about-box) .box-content > * {
    columns: 2;
    column-gap: 30px;
    column-rule: 1px solid rgba(0, 0, 0, 0.1);
    break-inside: avoid;
}

/* About box stays single column */
.about-box .box-content > * {
    columns: 1;
    column-gap: 0;
    column-rule: none;
}

/* Hide column rule for lists and numbered content - except about box */
.content-box:not(.about-box) .box-content ul, .content-box:not(.about-box) .box-content ol {
    columns: 2;
    column-gap: 30px;
    column-rule: none;
    break-inside: avoid;
}

/* Hide column rule for content with numbers or lists - except about box */
.content-box:not(.about-box) .box-content:has(ul), .content-box:not(.about-box) .box-content:has(ol), .content-box:not(.about-box) .box-content:has([class*="number"]), .content-box:not(.about-box) .box-content:has([class*="list"]) {
    columns: 2;
    column-gap: 30px;
    column-rule: none;
}

/* Fallback for browsers that don't support :has() */
.content-box:not(.about-box) .box-content > ul, .content-box:not(.about-box) .box-content > ol {
    column-rule: none;
}

.content-box:not(.about-box) .box-content > p:not(:has(ul)):not(:has(ol)) {
    column-rule: 1px solid rgba(0, 0, 0, 0.1);
}

/* Ensure lists and paragraphs break properly */
.content-box .box-content ul, .content-box .box-content ol, .content-box .box-content p {
    break-inside: avoid;
    margin-bottom: 15px;
}

/* Responsive: single column on mobile */
@media (max-width: 768px) {
    .content-box .box-content > * {
        columns: 1;
        column-gap: 0;
        column-rule: none;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .content-box {
        flex-direction: column;
        gap: 15px;
    }

    .content-box .box-header {
        flex: none;
        min-width: auto;
        width: 100%;
    }

    .content-box .box-content {
        flex: none;
        width: 100%;
    }
}

.content-box {
    border-radius: 15px;
    padding: 0;
    height: 100%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    min-height: 200px;
    position: relative;
    overflow: hidden;
    width: 100%;
}

/* About This Rudraksha - Blue Gradient */
.about-box {
    background: linear-gradient(135deg, #ffffff 0%, #f0e0f694 50%, #e9dbf9a1 100%);
    border: 1px solid rgb(221 197 247);
}

.about-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient( 357deg, #ffffff, #0c0b0c7d, #490398);
    border-radius: 15px 15px 0 0;
}

/* Astrological Properties - Purple Gradient */
.astrological-box {
    background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 50%, #ce93d8 100%);
    border: 1px solid rgba(156, 39, 176, 0.2);
}

.astrological-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #9c27b0, #7b1fa2, #6a1b9a);
    border-radius: 15px 15px 0 0;
}

/* Healing Benefits - Green Gradient */
.healing-box {
    background: linear-gradient(135deg, #e8f5e8 0%, #c8e6c9 50%, #a5d6a7 100%);
    border: 1px solid rgba(76, 175, 80, 0.2);
}

.healing-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4caf50, #388e3c, #2e7d32);
    border-radius: 15px 15px 0 0;
}

/* How to Use - Orange Gradient */
.usage-box {
    background: linear-gradient(135deg, #fff3e0 0%, #ffcc80 50%, #ffb74d 100%);
    border: 1px solid rgba(255, 152, 0, 0.2);
}

.usage-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff9800, #f57c00, #ef6c00);
    border-radius: 15px 15px 0 0;
}

/* Maintenance & Cleaning - Teal Gradient */
.maintenance-box {
    background: linear-gradient(135deg, #e0f2f1 0%, #b2dfdb 50%, #80cbc4 100%);
    border: 1px solid rgba(0, 150, 136, 0.2);
}

.maintenance-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #009688, #00796b, #00695c);
    border-radius: 15px 15px 0 0;
}

.content-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.box-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    min-height: 120px;
    border-bottom: none;
}

.box-header i {
    font-size: 24px;
    margin-right: 0;
    margin-bottom: 10px;
    padding: 15px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* About box - Blue theme */
.about-box .box-header i {
    color: #6a2baf;
    background: linear-gradient(135deg, rgb(71 0 151 / 0%), rgba(25, 118, 210, 0.1));
    border: 1px solid rgba(33, 150, 243, 0.2);
}

/* Astrological box - Purple theme */
.astrological-box .box-header i {
    color: #7b1fa2;
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.1), rgba(123, 31, 162, 0.1));
    border: 1px solid rgba(156, 39, 176, 0.2);
}

/* Healing box - Green theme */
.healing-box .box-header i {
    color: #388e3c;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(56, 142, 60, 0.1));
    border: 1px solid rgba(76, 175, 80, 0.2);
}

/* Usage box - Orange theme */
.usage-box .box-header i {
    color: #f57c00;
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.1), rgba(245, 124, 0, 0.1));
    border: 1px solid rgba(255, 152, 0, 0.2);
}

/* Maintenance box - Teal theme */
.maintenance-box .box-header i {
    color: #00796b;
    background: linear-gradient(135deg, rgba(0, 150, 136, 0.1), rgba(0, 121, 107, 0.1));
    border: 1px solid rgba(0, 150, 136, 0.2);
}

.box-header h4 {
    color: #2c3e50;
    font-weight: 700;
    font-size: 16px;
    margin: 0;
    line-height: 1.3;
    text-align: center;
}

.box-content {
    color: #2c3e50;
    line-height: 1.7;
    font-size: 15px;
}

.box-content h4, .box-content h5 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 16px;
}

.box-content ul {
    margin: 15px 0;
    padding-left: 20px;
}

.box-content li {
    margin-bottom: 10px;
    color: #2c3e50;
    line-height: 1.6;
}

.box-content p {
    margin-bottom: 15px;
    color: #2c3e50;
    line-height: 1.7;
}

/* ===========================================
   BENEFITS CONTENT BOX - NEW UI DESIGN
   =========================================== */
.benefits-content-box {
    background: radial-gradient(circle at 20% 80%, rgba(71, 0, 151, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(217, 119, 6, 0.1) 0%, transparent 50%);
    border-radius: 20px;
    padding: 10px;
    margin: 10px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefits-content-box::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    right: -50px;
    bottom: -50px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="rudraksha-pattern" patternUnits="userSpaceOnUse" width="60" height="60"><circle cx="30" cy="30" r="8" fill="%23a855f7" opacity="0.05"/><circle cx="70" cy="70" r="6" fill="%238b5cf6" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23rudraksha-pattern)"/></svg>') repeat;
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

.benefits-header {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.benefits-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #5e4f77;
    letter-spacing: 2px;
    margin: 0 0 10px 0;
    text-transform: uppercase;
}

.benefits-product-info {
    display: flex;
    gap: 20px;
    flex-direction: row;
    flex-wrap: nowrap;
}

.benefits-product-image {
    flex-shrink: 0;
}

.product-thumbnail {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #8b5cf6;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-thumbnail:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

.product-thumbnail-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #8b5cf6;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.product-thumbnail-placeholder i {
    color: white;
    font-size: 24px;
}

.benefits-product-name {
    font-size: 2.8rem;
    font-weight: 500;
    color: #24024a;
    margin: 0;
 
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    flex: 1;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.benefits-column {
    /* background: rgba(255, 255, 255, 0.7); */
    border-radius: 30px;
    padding: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefits-column:hover {
    transform: translateY(1px);
    box-shadow: 0 10px 25px rgb(0 0 0 / 7%);
}

.benefits-column-header {
    background: linear-gradient(135deg, #d9cde9 0%, #47009754 100%);
    color: white;
    padding: 5px 10px;
    border-radius: 30px 30px 30px 30px;
    text-align: center;
    position: relative;
}

.benefits-column-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #5e4f77, transparent);
}

.benefits-column-header h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.3;
}

.benefits-list {
    list-style: none;
    padding: 10px;
    margin: 0;
}

.benefits-list li {
    color: #2c3e50;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 5px;
    padding-left: 10px;
    position: relative;
    font-weight: 500;
}

.benefits-list li::before {
    content: '' !important;
    width: 8px !important;
    height: 8px !important;
    background-color: #8b5cf6 !important;
    border-radius: 50% !important;
    position: absolute !important;
    left: 0 !important;
    top: 8px !important;
    display: block !important;
}

.benefits-list li:last-child {
    margin-bottom: 0;
}

/* Mobile Responsive Design */
@media (max-width: 1200px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .benefits-product-name {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .benefits-content-box {
        padding: 25px 20px;
        margin: 20px 0;
    }

    .benefits-header {
        margin-bottom: 10px;
    }

    .benefits-title {
        font-size: 1rem;
        letter-spacing: 1px;
    }

    .benefits-product-info {
        flex-direction: row;
        align-items: center;
        gap: 8px;
        justify-content: flex-start;
        text-align: left;
        padding: 0 10px;
    }

    .benefits-product-image {
        flex-shrink: 0;
    }

    .product-thumbnail {
        width: 50px;
        height: 50px;
        border: 2px solid #8b5cf6;
    }

    .product-thumbnail-placeholder {
        width: 50px;
        height: 50px;
        border: 2px solid #8b5cf6;
    }

    .product-thumbnail-placeholder i {
        font-size: 20px;
    }

    .benefits-product-name {
        font-size: 1.8rem;
        text-align: left;
        flex: 1;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefits-column-header h4 {
        font-size: 0.9rem;
    }

    .benefits-list li {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .benefits-content-box {
        padding: 10px 10px;
    }

    .benefits-product-info {
        gap: 8px;
        padding: 0 5px;
    }

    .product-thumbnail {
        width: 45px;
        height: 45px;
        border: 2px solid #8b5cf6;
    }

    .product-thumbnail-placeholder {
        width: 45px;
        height: 45px;
        border: 2px solid #8b5cf6;
    }

    .product-thumbnail-placeholder i {
        font-size: 18px;
    }

    .benefits-product-name {
        font-size: 1.6rem;
    }

    .benefits-column-header {
        padding: 12px 15px;
    }

    .benefits-list {
        padding: 10px;
    }
}

/* Fix bullet points with more specific selectors */
.benefits-content-box .benefits-list li {
    color: #1e2a36 !important;
    font-size: 0.9rem !important;
    line-height: 1.6 !important;
    margin-bottom: 5px !important;
    padding-left: 20px !important;
    position: relative !important;
    font-weight: 500 !important;
    list-style: none !important;
    border-bottom: none !important;
    display: block !important;
    align-items: unset !important;
    margin-right: 0 !important;
}

.benefits-content-box .benefits-list li::before {
    content: '' !important;
    width: 8px !important;
    height: 8px !important;
    background-color: #4a0599 !important;
    border-radius: 50% !important;
    position: absolute !important;
    left: 0 !important;
    top: 13px !important;
    display: block !important;
}

/* Mobile Slider Functionality */
@media (max-width: 768px) {
    .benefits-grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 20px !important;
        padding: 15px 10px !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
    }

    .benefits-grid::-webkit-scrollbar {
        display: none !important;
    }

    .benefits-column {
        flex: 0 0 280px !important;
        width: 280px !important;
        scroll-snap-align: start !important;
        margin-bottom: 0 !important;
    }

    .benefits-column-header {
        position: sticky !important;
        top: 0 !important;
        z-index: 10 !important;
    }
}

@media (max-width: 480px) {
    .benefits-column {
        flex: 0 0 256px !important;
        width: 250px !important;
    }
}

.box-content strong {
    color: #8b5cf6;
    font-weight: 600;
}

/* ===========================================
   ASTROLOGICAL PROPERTIES CONTENT BOX - NEW DESIGN
   =========================================== */
.astrological-content-box {
    background: linear-gradient(135deg, #f0f4ff 0%, #47009714 50%, #47009714 100%);
    border-radius: 20px;
    padding: 20px;
    margin: 20px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    /* width: max-content; */
}

.astrological-content-box::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    right: -50px;
    bottom: -50px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars-pattern" patternUnits="userSpaceOnUse" width="60" height="60"><circle cx="15" cy="15" r="1" fill="%235e4f77" opacity="0.1"/><circle cx="45" cy="45" r="1.5" fill="%238b5cf6" opacity="0.1"/><circle cx="30" cy="50" r="1" fill="%235e4f77" opacity="0.08"/></pattern></defs><rect width="100" height="100" fill="url(%23stars-pattern)"/></svg>') repeat;
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
}

.astrological-header {
    text-align: center;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.astrological-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #5e4f77;
    letter-spacing: 1.5px;
    margin: 0;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.astrological-title i {
    color: #8b5cf6;
    font-size: 1.6rem;
    animation: rotateStar 4s linear infinite;
}

@keyframes rotateStar {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.astrological-grid {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x proximity;
    gap: 20px;
    position: relative;
    z-index: 1;
    margin-bottom: 25px;
    padding: 10px 5px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #8b5cf6 #f0f0f0;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    /* Ensure partial visibility of next card */
    width: 100%;
    max-width: 100%;
}

.astrological-grid:active {
    cursor: grabbing;
    user-select: none;
}

.astrological-grid * {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.astrological-grid::-webkit-scrollbar {
    height: 8px;
}

.astrological-grid::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 10px;
}

.astrological-grid::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #8b5cf6 0%, #a855f7 100%);
    border-radius: 10px;
}

.astrological-grid::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(90deg, #7c4dff 0%, #9c27b0 100%);
}

.astrological-grid .astro-card {
    flex: 0 0 260px;
    max-width: 260px;
    min-width: 260px;
    scroll-snap-align: start;
}

.astro-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 5px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: row;
}

.astro-card:hover {
    transform: translateY(0px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.2);
    border-color: #8b5cf62e;
}

.astro-card-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
    display: flex;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
    align-items: center;
}

.astro-card-icon i {
    color: white;
    font-size: 24px;
}

.astro-card-content {
    flex: 1;
}

.astro-card-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #5e4f77;
    margin: 0px 0 4px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.astro-card-value {
    font-size: 0.9rem !important;
    font-weight: 500;
    color: #2c3e50;
    margin: 0;
    line-height: 1.5;
    text-align: left;
}

.astro-benefits-text {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    padding: 25px;
    position: relative;
    z-index: 1;
    border-left: 4px solid #8b5cf6;
}

.astro-benefits-content {
    color: #2c3e50;
    line-height: 1.7;
    font-size: 15px;
}

.astro-benefits-content p {
    margin-bottom: 12px;
}

.astro-benefits-content ul, .astro-benefits-content ol {
    margin: 15px 0;
    padding-left: 25px;
}

.astro-benefits-content li {
    margin-bottom: 8px;
    color: #2c3e50;
}

.astro-benefits-content strong {
    color: #8b5cf6;
    font-weight: 600;
}

/* Responsive Design for Astrological Box */
@media (max-width: 1200px) {
    .astrological-grid .astro-card {
        flex: 0 0 calc(17% - 10px);
        max-width: calc(33% - 10px);
        min-width: 200px;
        display: flex;
        flex-direction: row;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .astrological-content-box {
        padding: 25px 20px;
        margin: 20px 0;
    }

    .astrological-header {
        margin-bottom: 25px;
    }

    .astrological-title {
        font-size: 1.4rem;
        letter-spacing: 1px;
    }

    .astrological-title i {
        font-size: 1.3rem;
    }

    .astrological-grid {
        gap: 15px;
        padding: 0 10px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .astrological-grid::-webkit-scrollbar {
        display: none;
    }

    .astro-card {
        flex: 0 0 280px;
        max-width: 280px;
        min-width: 280px;
    }

    .astro-card-icon {
        width: 50px;
        height: 50px;
    }

    .astro-card-icon i {
        font-size: 22px;
    }

    .astro-card-label {
        font-size: 0.85rem;
    }

    .astro-card-value {
        font-size: 1rem;
    }

    .astro-benefits-text {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .astrological-content-box {
        padding: 10px 5px;
    }

    .astrological-title {
        font-size: 1.2rem;
        gap: 8px;
    }

    .astro-card {
        flex: 0 0 250px;
        width: 250px;
        padding-top: 10px;
    }

    .astro-card-icon {
        width: 45px;
        height: 45px;
    }

    .astro-card-icon i {
        font-size: 20px;
    }

    .astro-benefits-text {
        padding: 18px;
    }
}

/* ===========================================
   HOW TO USE CONTENT BOX - STEP-BY-STEP DESIGN
   =========================================== */
.howto-content-box {
    background: linear-gradient( 135deg, #ffffff 0%, #f0e0f6 50%, #e9dbf9 100%);
    border-radius: 20px;
    padding: 15px;
    margin: 15px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.howto-content-box::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    right: -50px;
    bottom: -50px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="lotus-pattern" patternUnits="userSpaceOnUse" width="50" height="50"><circle cx="25" cy="25" r="2" fill="%23ff6b9d" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23lotus-pattern)"/></svg>') repeat;
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

.howto-header {
    text-align: center;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.howto-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #6f4999;
    letter-spacing: 1.5px;
    margin: 0;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.howto-title i {
    color: #470097b0;
    font-size: 1.6rem;
}

.howto-steps-grid {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x proximity;
    gap: 25px;
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
    padding: 10px 5px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #9360ce #f0f0f0;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    /* Ensure partial visibility of next card */
    width: 100%;
    max-width: 100%;
}

.howto-steps-grid:active {
    cursor: grabbing;
    user-select: none;
}

.howto-steps-grid * {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.howto-steps-grid::-webkit-scrollbar {
    height: 8px;
}

.howto-steps-grid::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 10px;
}

.howto-steps-grid::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #ff6b9d 0%, #ff8fab 100%);
    border-radius: 10px;
}

.howto-steps-grid::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(90deg, #e91e63 0%, #ff4081 100%);
}

.howto-step-card {
    flex: 0 0 260px;
    max-width: 260px;
    min-width: 260px;
    scroll-snap-align: start;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 8px;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
    overflow: hidden;
}

.howto-step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #00000000 0%, #47009700 100%);
}

.howto-step-card:hover {
    transform: translateY(0px);
    box-shadow: 0 15px 35px rgb(71 0 151 / 4%);
    border-color: #d8cbe721;
}

.step-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00000026 0%, #470097d1 100%);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

.step-icon {
    width: 40px;
    height: 40px;
    border-radius: 15px;
    background: linear-gradient(135deg, #00000026 0%, #470097d1 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.3);
}

.step-icon i {
    color: white;
    font-size: 25px;
}

/* New header layout: icon left, title right */
.howto-step-card .step-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.howto-step-card .step-icon {
    margin-bottom: 0;
}

.howto-step-card .step-title {
    margin: 0;
    font-size: 18px;
}

/* Hide old step number badge if present */
.howto-step-card .step-number {
    display: none;
}

.step-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #3e3e3e;
    margin: 0 0 15px 0;
}

.step-description {
    color: #2c3e50;
    line-height: 1.7;
    font-size: 15px;
}

.step-description ul, .step-description ol {
    margin: 10px 0;
    padding-left: 20px;
}

.step-description li {
    margin-bottom: 8px;
    color: #2c3e50;
}

.step-description p {
    margin-bottom: 10px;
}

.howto-important-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.important-notes {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 25px;
    border-left: 5px solid #7447a7;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.notes-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.notes-header i {
    color: #7a44b6;
    font-size: 24px;
}

.notes-header h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #3e3e3e;
    margin: 0;
}

.notes-content {
    color: #2c3e50;
    line-height: 1.7;
}

.notes-content ul, .notes-content ol {
    margin: 10px 0;
    padding-left: 20px;
}

.notes-content li {
    margin-bottom: 8px;
}

.remember-box {
    background: linear-gradient(135deg, #ffffff 0%, #d9cde9 100%);
    border-radius: 15px;
    padding: 15px 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border: 2px solid #c6b9d4;
    box-shadow: 0 5px 15px rgb(71 0 151 / 24%);
}

.remember-icon {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d3d3d3 0%, #470097 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.remember-icon i {
    color: white;
    font-size: 22px;
}

.remember-content {
    flex: 1;
    color: #000000;
    font-size: 16px;
    line-height: 1.6;
    padding-top: 10px;
}

.remember-content strong {
    color: #29272c;
    font-weight: 700;
}

/* Responsive Design for How to Use Box */
@media (max-width: 1200px) {
    .howto-step-card {
        flex: 0 0 calc(50% - 13px);
        max-width: calc(50% - 13px);
        min-width: 300px;
    }
}

@media (max-width: 768px) {
    .howto-content-box {
        padding: 25px 20px;
        margin: 20px 0;
    }

    .howto-header {
        margin-bottom: 20px;
    }

    .howto-title {
        font-size: 1.4rem;
        letter-spacing: 1px;
    }

    .howto-title i {
        font-size: 1.3rem;
    }

    .howto-steps-grid {
        gap: 15px;
        padding: 0 10px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .howto-steps-grid::-webkit-scrollbar {
        display: none;
    }

    .howto-step-card {
        flex: 0 0 280px;
        max-width: 280px;
        min-width: 280px;
        padding: 25px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
        top: 15px;
        right: 15px;
    }

    .step-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }

    .step-icon i {
        font-size: 28px;
    }

    .step-title {
        font-size: 1.1rem;
    }

    .important-notes, .remember-box {
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .howto-content-box {
        padding: 20px 15px;
    }

    .howto-title {
        font-size: 1.2rem;
        gap: 8px;
    }

    .howto-step-card {
        flex: 0 0 280px;
        width: 280px;
        padding: 10px;
    }

    .step-icon {
        width: 55px;
        height: 55px;
    }

    .step-icon i {
        font-size: 26px;
    }
}

/* ===========================================
   MAINTENANCE & CLEANING CONTENT BOX - TEAL THEME
   =========================================== */
.maintenance-content-box {
    background: linear-gradient(135deg, #ffffff 0%, #f0e0f6 50%, #e9dbf9 100%);
    border-radius: 20px;
    padding: 15px;
    margin: 15px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.maintenance-content-box::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    right: -50px;
    bottom: -50px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="water-pattern" patternUnits="userSpaceOnUse" width="50" height="50"><circle cx="25" cy="25" r="2" fill="%2300acc1" opacity="0.1"/><circle cx="40" cy="40" r="1.5" fill="%2326c6da" opacity="0.08"/></pattern></defs><rect width="100" height="100" fill="url(%23water-pattern)"/></svg>') repeat;
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

.maintenance-header {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.maintenance-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #434343;
    letter-spacing: 1.5px;
    margin: 0;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.maintenance-title i {
    color: #531797;
    font-size: 1.6rem;
}

.maintenance-cards-grid {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x proximity;
    gap: 25px;
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
    padding: 10px 5px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #9360ce #f0f0f0;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    width: 100%;
    max-width: 100%;
}

.maintenance-cards-grid:active {
    cursor: grabbing;
    user-select: none;
}

.maintenance-cards-grid * {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.maintenance-cards-grid::-webkit-scrollbar {
    height: 8px;
}

.maintenance-cards-grid::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 10px;
}

.maintenance-cards-grid::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #00acc1 0%, #26c6da 100%);
    border-radius: 10px;
}

.maintenance-cards-grid::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(90deg, #00838f 0%, #00acc1 100%);
}

.maintenance-card {
    flex: 0 0 300px;
    max-width: 300px;
    min-width: 300px;
    scroll-snap-align: start;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.maintenance-card:hover {
    transform: translateY(0px);
    box-shadow: 0 15px 35px rgb(0 0 0 / 0%);
    border-color: #10191a17;
}

.maintenance-card-icon {
    width: 45px;
    height: 45px;
    border-radius: 15px;
    background: linear-gradient(135deg, #e7ddf3 0%, #470097 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgb(71 0 151 / 26%);
}

.maintenance-card-icon i {
    color: white;
    font-size: 30px;
}

.maintenance-card-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #222323;
    margin: 0;
}

/* New header layout: icon left, title right for maintenance cards */
.maintenance-card .maintenance-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 5px;
}

.maintenance-card-description {
    color: #2c3e50;
    line-height: 1.7;
    font-size: 15px;
}

.maintenance-card-description ul, .maintenance-card-description ol {
    margin: 10px 0;
    padding-left: 20px;
}

.maintenance-card-description li {
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #3e3c3c;
}

.maintenance-card-description p {
    margin-bottom: 10px;
}

.maintenance-full-width-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.professional-care-box {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 10px;
    border-left: 5px solid #882feb;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: justify;
}

.professional-care-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.professional-care-header i {
    color: #672ca9;
    font-size: 28px;
}

.professional-care-header h5 {
    font-size: 1.4rem;
    font-weight: 500;
    color: #282828;
    margin: 0;
}

.professional-care-content {
    color: #2c3e50;
    line-height: 1.7;
    font-size: 15px;
}

.maintenance-remember-box {
    background: linear-gradient(135deg, #ffffff 0%, #d9cde9 100%);
    border-radius: 15px;
    padding: 20px 25px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    border: 2px solid #bca4d6;
    box-shadow: 0 5px 15px rgb(71 0 151 / 16%);
}

.maintenance-remember-icon {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #dbd5e1 0%, #490398 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.maintenance-remember-icon i {
    color: white;
    font-size: 22px;
}

.maintenance-remember-content {
    flex: 1;
    color: #36332d;
    font-size: 1rem;
    line-height: 1.7;
}

.maintenance-remember-content strong {
    color: #232323;
    font-weight: 700;
}

/* Responsive Design for Maintenance Box */
@media (max-width: 1200px) {
    .maintenance-card {
        flex: 0 0 280px;
        max-width: 280px;
        min-width: 280px;
    }
}

@media (max-width: 768px) {
    .maintenance-content-box {
        padding: 25px 20px;
        margin: 20px 0;
    }

    .maintenance-header {
        margin-bottom: 30px;
    }

    .maintenance-title {
        font-size: 1.4rem;
        letter-spacing: 1px;
    }

    .maintenance-title i {
        font-size: 3.3rem;
    }

    .maintenance-cards-grid {
        gap: 15px;
        padding: 0 10px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .maintenance-cards-grid::-webkit-scrollbar {
        display: none;
    }

    .maintenance-card {
        flex: 0 0 260px;
        max-width: 260px;
        min-width: 260px;
        padding: 20px;
    }

    .maintenance-card-icon {
        width: 55px;
        height: 55px;
    }

    .maintenance-card-icon i {
        font-size: 26px;
    }

    .maintenance-card-title {
        font-size: 1.1rem;
    }

    .professional-care-box {
        padding: 25px 20px;
    }

    .professional-care-header h5 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .maintenance-content-box {
        padding: 20px 15px;
    }

    .maintenance-title {
        font-size: 1.2rem;
        gap: 8px;
    }

    .maintenance-card {
        flex: 0 0 300px;
        max-width: 300px;
        min-width: 300px;
        padding: 10px;
    }

    .professional-care-box {
        padding: 10px 20px;
    }

    .maintenance-remember-box {
        padding: 18px 20px;
    }
}

/* ===========================================
   RUDRAKSHA QUICK SPECIFICATIONS - PRODUCT DETAIL PAGE
   =========================================== */
.rudraksha-quick-specs {
    /* background: linear-gradient(135deg, #fff9e6 0%, #c5b1db 100%); */
    border-radius: 12px;
    padding-top: 5px;
    /* border: 2px solid #ffc107; */
    /* box-shadow: 0 4px 15px rgba(255, 193, 7, 0.15); */
}

.quick-spec-item {
    background: white;
    border-radius: 10px;
    padding: 5px 5px;
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 10px;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid rgb(0 0 0 / 0%);
}

.quick-spec-item:hover {
    /* transform: translateY(0px); */
    /* box-shadow: 0 6px 20px rgb(232 225 240); */
    /* border-color: #ffc107; */
}

.quick-spec-icon {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #ececec 0%, #470097 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}

.quick-spec-icon i {
    color: white;
    font-size: 22px;
}

.quick-spec-content {
    display: flex;
    flex-direction: column;
    gap: 0px;
    flex: 1;
    min-width: 0;
}

.quick-spec-label {
    font-size: 12px;
    font-weight: 600;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.quick-spec-value {
    font-size: 13px;
    font-weight: 500;
    color: #2c3e50;
    line-height: 1;
}

/* Responsive adjustments for quick specs */
@media (max-width: 768px) {
    .rudraksha-quick-specs {
        padding: 5px;
        margin-bottom: 15px !important;
    }

    .quick-spec-item {
        padding: 8px 6px;
    }

    .quick-spec-icon {
        width: 38px;
        height: 38px;
    }

    .quick-spec-icon i {
        font-size: 18px;
    }

    .quick-spec-label {
        font-size: 10px;
    }

    .quick-spec-value {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .rudraksha-quick-specs .row {
        gap: -1px !important;
    }

    .rudraksha-quick-specs .col-4 {
        padding: 0 4px;
    }

    .quick-spec-item {
        padding: 0px 5px;
        gap: 4px;
    }

    .quick-spec-icon {
        width: 20px;
        height: 20px;
    }

    .quick-spec-icon i {
        font-size: 0.6rem;
    }

    .quick-spec-label {
        font-size: 0.6rem;
        margin-bottom: -0.3rem;
    }

    .quick-spec-value {
        font-size: 11px;
    }
}

/* ===========================================
   PRODUCT DETAIL PAGE SALE BADGE
   =========================================== */
.product-sale-detail-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #4baa51 0%, #085b0a 100%);
    color: white;
    font-size: 14px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    line-height: 1;
    white-space: nowrap;
    box-shadow: 0 3px 12px rgba(255, 107, 107, 0.4);
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}

.product-sale-detail-badge:hover {
    transform: scale(1);
    box-shadow: 0 4px 16px rgba(255, 107, 107, 0.5);
}

/* Responsive adjustments for detail page badge */
@media (max-width: 576px) {
    .product-sale-detail-badge {
        font-size: 12px;
        padding: 5px 12px;
    }
}

/* ===========================================
   TOP RIGHT SALE PERCENTAGE BADGE
   =========================================== */
.tp-product-sale-badge-action {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.product-sale-top-right {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #62a00c 0%, #3a9506 100%);
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
    line-height: 1;
    white-space: nowrap;
    box-shadow: 0 3px 10px rgba(255, 107, 107, 0.4);
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}

.product-sale-top-right:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.5);
}

/* Responsive adjustments for top right sale badge */
@media (max-width: 576px) {
    .product-sale-top-right {
        font-size: 11px;
        padding: 5px 10px;
    }
}

/* ===========================================
   SKU AND AVAILABILITY INLINE LAYOUT
   =========================================== */
.product-availability-inline {
    display: flex;
    align-items: center;
}

.product-availability-inline .number-items-available {
    margin: 0;
}

.product-availability-inline .number-items-available span {
    font-size: 14px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 4px;
    display: inline-block;
}

.product-availability-inline .number-items-available .text-success {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.product-availability-inline .number-items-available .text-danger {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

.product-availability-inline .number-items-available .text-warning {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
}

/* Responsive adjustments for SKU and availability */
@media (max-width: 576px) {
    .product-availability-inline .number-items-available span {
        font-size: 13px;
        padding: 3px 10px;
    }
}

/* ===========================================
   STICKY PRODUCT GALLERY - LEFT COLUMN ONLY
   =========================================== */
/* Override the default has-sticky on right column */
.tp-product-details-top .tp-product-details-wrapper.has-sticky {
    position: static !important;
    top: auto !important;
}

/* Override default sticky on thumb wrapper and make it properly sticky */
.tp-product-details-top .col-lg-6 .tp-product-details-thumb-wrapper.product-gallery-sticky, .tp-product-details-thumb-wrapper.product-gallery-sticky {
    position: sticky !important;
    top: 80px !important;
    align-self: flex-start !important;
    z-index: 10 !important;
    max-height: calc(100vh - 100px) !important;
    overflow-y: auto !important;
}


/* Adjust sticky position when admin bar is present */
body.admin-bar .product-gallery-sticky {
    top: 130px !important;
}

/* Disable sticky on mobile and tablet */
@media (max-width: 991px) {
    .tp-product-details-top .col-lg-6 .tp-product-details-thumb-wrapper.product-gallery-sticky, .tp-product-details-thumb-wrapper.product-gallery-sticky, .product-gallery-sticky {
        position: static !important;
        top: auto !important;
        max-height: none !important;
        overflow-y: visible !important;
    }

    /* Re-enable default sticky for right column on mobile if needed */
    .tp-product-details-wrapper.has-sticky {
        position: static !important;
    }
}

/* ===========================================
   PROMOTIONAL DISCOUNT MESSAGE
   =========================================== */
.product-discount-message {
    background: linear-gradient(135deg, #fdfdfd 0%, #d4e6c2 100%);
    border: 1px solid #e3e3e3;
    border-radius: 8px;
    padding: 0;
    box-shadow: 0 3px 12px rgb(197 197 197 / 29%);
}

.product-message__inner {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 9px 10px;
}

.product-message__inner svg.icon--price_tag {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    fill: #ff6f00;
}

.product-message__inner .rte {
    flex: 1;
    margin: 0;
}

.product-message__inner .rte p {
    margin: 0;
    font-size: 18px;
    color: #2c3e50;
    line-height: 1.5;
}

.product-message__inner .rte strong {
    color: #155a17;
    font-weight: 700;
    font-size: 16px;
    padding: 2px 6px;
    background: rgba(255, 193, 7, 0.2);
    border-radius: 4px;
}

/* Responsive adjustments for discount message */
@media (max-width: 576px) {
    .product-message__inner {
        padding: 10px 12px;
        gap: 10px;
    }

    .product-message__inner svg.icon--price_tag {
        width: 24px;
        height: 24px;
    }

    .product-message__inner .rte p {
        font-size: 14px;
    }

    .product-message__inner .rte strong {
        font-size: 14px;
    }
}

/* ===========================================
   DIAGONAL LINE-THROUGH FOR OLD PRICE
   =========================================== */
.tp-product-details-price.old-price, .tp-product-price.old-price, .old-price {
    position: relative;
    text-decoration: none !important;
    display: inline-block;
}

.tp-product-details-price.old-price::before, .tp-product-price.old-price::before, .old-price::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient( to bottom right, transparent 0%, transparent calc(50% - 1px), currentColor calc(50% - 1px), currentColor calc(50% + 1px), transparent calc(50% + 1px), transparent 100% );
    pointer-events: none;
}

/* Alternative method with transform for better browser support */
.tp-product-details-price.old-price::after, .tp-product-price.old-price::after, .old-price::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -2px;
    width: calc(100% + 2px);
    height: 1.5px;
    background: rgb(94 86 86);
    transform: translateY(-54%) rotate(-10deg);
    transform-origin: center;
    pointer-events: none;
}

/* Hide the default ::after for cleaner look, keep only ::after with rotation */
.tp-product-details-price.old-price::before, .tp-product-price.old-price::before, .old-price::before {
    display: none;
}

/* Responsive adjustments for content boxes */
@media (max-width: 768px) {
    .content-box {
        padding: 20px;
    }

    .box-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .box-header i {
        margin-right: 0;
    }
}

@media (max-width: 480px) {
    .content-box {
        padding: 15px;
    }

    .box-header h4 {
        font-size: 16px;
    }

    .box-header i {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

.tp-product-price-wrapper-5 {
    justify-self: anchor-center;
}
