* {
    font-family:
        "Inter",
        system-ui,
        -apple-system,
        sans-serif;
}

:root {
    --accent: #4361ee;
    --accent-light: #e0e7ff;
    --dark: #1e293b;
    --gray-bg: #f8fafc;
    --border-light: #f1f5f9;
}

body {
    background-color: #ffffff;
    color: #0f172a;
}

.wysiwyg img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 1.5rem 0;
}

.section-padding {
    padding: 5rem 0;
}

.bg-soft {
    background-color: var(--gray-bg);
}

.btn-primary-custom {
    background-color: var(--accent);
    border: none;
    color: white;
    padding: 0.6rem 1.8rem;
    font-weight: 500;
    border-radius: 40px;
    transition: 0.2s;
    box-shadow: 0 8px 18px rgba(67, 97, 238, 0.15);
}

.btn-primary-custom:hover {
    background-color: #2f4ad0;
    transform: translateY(-2px);
    box-shadow: 0 12px 22px rgba(67, 97, 238, 0.25);
}

.btn-outline-custom {
    border: 1px solid var(--accent);
    color: var(--accent);
    border-radius: 40px;
    padding: 0.5rem 1.6rem;
    font-weight: 500;
    background: transparent;
    transition: 0.2s;
}

.btn-outline-custom:hover {
    background-color: var(--accent-light);
    border-color: var(--accent);
    color: #1e3bb3;
}

.cat-card {
    background: white;
    border-radius: 28px;
    padding: 2rem 1rem;
    text-align: center;
    box-shadow: 0 10px 25px -8px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
    border: 1px solid #f1f5f9;
}

.cat-link {
    text-decoration: none;
}

.service-img {
    object-fit: cover;
    height: 12rem;
    width: 100%;
}

.cat-card:hover {
    transform: scale(1.02);
    border-color: var(--accent);
    box-shadow: 0 20px 30px -10px rgba(67, 97, 238, 0.15);
}

.cat-icon {
    font-size: 2.6rem;
    color: var(--accent);
    background: var(--accent-light);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 60px;
    margin: 0 auto 1.2rem;
    display: inline-block;
}

.product-card {
    background: white;
    border-radius: 24px;
    padding: 1rem;
    box-shadow: 0 10px 25px -12px rgba(0, 0, 0, 0.06);
    border: 1px solid #f1f5f9;
    transition: all 0.25s;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 24px 38px -16px rgba(0, 0, 0, 0.12);
}

.product-badge {
    background: var(--accent-light);
    color: var(--accent);
    font-weight: 600;
    font-size: 0.75rem;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    display: inline-block;
}

.rating i {
    color: #fbbf24;
    margin-right: 2px;
    font-size: 0.9rem;
}

.price {
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--dark);
}

.old-price {
    color: #94a3b8;
    text-decoration: line-through;
    font-size: 1rem;
    margin-left: 6px;
}

.section-title {
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.vendor-badge {
    background: rgba(67, 97, 238, 0.1);
    color: var(--accent);
    border-radius: 100px;
    padding: 0.25rem 1rem;
    font-weight: 500;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(67, 97, 238, 0.2);
}

.section-subhead {
    color: #475569;
    margin-bottom: 3rem;
}

.footer-link {
    color: #cbd5e1;
    text-decoration: none;
    transition: 0.2s;
}

.footer-link:hover {
    color: white;
}

.hero {
    background: linear-gradient(145deg, #ffffff 0%, #f4f9ff 100%);
    border-bottom: 1px solid #e2e8f0;
}

@media (max-width: 767px) {
    .section-padding {
        padding: 3rem 0;
    }

    .display-4 {
        font-size: 2.4rem;
    }
}

/* Product page specific styles */
.product-title-wrapper {
    background: linear-gradient(145deg, #ffffff 0%, #f4f9ff 100%);
    border-bottom: 1px solid var(--border-light);
    padding: 3rem 0 2rem;
}

.product-title-wrapper h1 {
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--dark);
    margin: 0;
}

/* Image slider customization */
.service-images {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.service-images img {
    width: 100%;
    height: auto;
}

.slick-prev,
.slick-next {
    z-index: 10;
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.slick-prev:hover,
.slick-next:hover {
    background: white;
}

.slick-prev:before,
.slick-next:before {
    color: var(--accent);
    font-size: 24px;
}

.slick-prev {
    left: 20px;
}

.slick-next {
    right: 20px;
}

/* Product details card */
.service-description {
    background: white;
    border-radius: 28px;
    padding: 2rem;
    border: 1px solid var(--border-light);
    box-shadow: 0 15px 30px -12px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.service-description h5 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dark);
    font-size: 1.25rem;
}

.wysiwyg {
    color: #475569;
    line-height: 1.7;
}

.wysiwyg h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

/* Price sidebar card */
.price-details-card {
    background: white;
    border-radius: 28px;
    padding: 2rem;
    border: 1px solid var(--border-light);
    box-shadow: 0 15px 30px -12px rgba(0, 0, 0, 0.05);
    margin-bottom: 1.5rem;
}

.price-large {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.price-large small {
    font-size: 1rem;
    font-weight: 500;
    color: #64748b;
    margin-left: 0.5rem;
}

.delivery-badge {
    display: inline-flex;
    align-items: center;
    background: var(--accent-light);
    color: var(--accent);
    padding: 0.6rem 1.2rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.95rem;
    margin: 1rem 0 1.5rem;
}

.delivery-badge i {
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

.purchase-button .btn-purchase {
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 60px;
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 1.1rem;
    width: 100%;
    transition: all 0.2s;
    box-shadow: 0 10px 25px -5px rgba(67, 97, 238, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-decoration: none;
}

.purchase-button .btn-purchase:hover {
    background: #2f4ad0;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgba(67, 97, 238, 0.4);
}

/* Contact form */
.service-contact {
    background: white;
    border-radius: 28px;
    padding: 2rem;
    border: 1px solid var(--border-light);
    box-shadow: 0 15px 30px -12px rgba(0, 0, 0, 0.05);
}

.service-contact h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.form-label {
    font-weight: 500;
    color: #334155;
    margin-bottom: 0.5rem;
}

.form-label span {
    color: #ef4444;
}

.form-control {
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 0.75rem 1rem;
    transition: all 0.2s;
}

.form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(67, 97, 238, 0.1);
    outline: none;
}

.btn-secondary {
    background: #f1f5f9;
    border: none;
    color: #334155;
    border-radius: 60px;
    padding: 0.8rem 2rem;
    font-weight: 600;
    transition: all 0.2s;
    width: 100%;
}

.btn-secondary:hover {
    background: #e2e8f0;
    color: var(--dark);
}

/* Share buttons */
.service-share {
    background: white;
    border-radius: 28px;
    padding: 2rem;
    border: 1px solid var(--border-light);
    margin-top: 1.5rem;
}

.service-share h5 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.rrssb-buttons {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.rrssb-buttons li {
    flex: 1;
    min-width: 45px;
}

.rrssb-buttons li a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--gray-bg);
    border-radius: 60px;
    padding: 0.6rem 1rem;
    color: #475569;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s;
    border: 1px solid var(--border-light);
}

.rrssb-buttons li a:hover {
    background: var(--accent-light);
    color: var(--accent);
    border-color: var(--accent);
}

.rrssb-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Related services */
.related-services {
    background: var(--gray-bg);
    padding: 4rem 0;
}

.block-title h3 {
    font-weight: 700;
    font-size: 1.8rem;
    letter-spacing: -0.02em;
    margin-bottom: 2.5rem;
}

.service-card {
    background: white;
    border-radius: 24px;
    padding: 1rem;
    border: 1px solid var(--border-light);
    transition: all 0.25s;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 24px 38px -16px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.service-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 18px;
    margin-bottom: 1rem;
}

.service-title {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.service-title a {
    color: var(--dark);
    text-decoration: none;
}

.service-title a:hover {
    color: var(--accent);
}

.service-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-light);
}

.service-meta .price {
    font-weight: 700;
    color: var(--accent);
    font-size: 1.2rem;
}

.service-meta .price small {
    font-size: 0.8rem;
    font-weight: 500;
    color: #64748b;
    margin-left: 0.25rem;
}

.service-meta .delivery {
    color: #64748b;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

/* Vendor badge */
.vendor-badge {
    background: rgba(67, 97, 238, 0.1);
    color: var(--accent);
    border-radius: 100px;
    padding: 0.25rem 1rem;
    font-weight: 500;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(67, 97, 238, 0.2);
}

@media (max-width: 991px) {
    .product-title-wrapper h1 {
        font-size: 2rem;
    }

    .price-large {
        font-size: 2.5rem;
    }
}