/* Rudraksha Details Section Styles */
.rudraksha-details-section {
    padding: 60px 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"><text x="10" y="15" text-anchor="middle" font-size="12" fill="%23ffc107" opacity="0.1">ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¥ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â</text></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: #5e4f77;
    margin-bottom: 0rem;
    text-align: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.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-family: 'Times New Roman', serif;
    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-family: 'Times New Roman', serif;
    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 #ffc107;
}

/* 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: 1.5rem;
}

.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: #ffc107 !important;
    opacity: 0.5;
}

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

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

    .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: 30px;
}

.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: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    text-align: center;
}

.content-box .box-content {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* 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 */
.content-box .box-content > * {
    columns: 2;
    column-gap: 30px;
    column-rule: 1px solid rgba(0, 0, 0, 0.1);
    break-inside: avoid;
}

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

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

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

.content-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, #e3f2fd 0%, #bbdefb 50%, #90caf9 100%);
    border: 1px solid rgba(33, 150, 243, 0.2);
}

.about-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2196f3, #1976d2, #1565c0);
    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: #1976d2;
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.1), 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: 20px;
    margin: 30px 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: 40px;
    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;
    align-items: center;
}

.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;
    font-family: 'Dancing Script', cursive, serif;
    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(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.benefits-column-header {
    background: linear-gradient(135deg, #d9cde9 0%, #47009754 100%);
    color: white;
    padding: 10px 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;
}

/* 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;
    }
}