@import url('developer.css');
@import url('color.css');
@import url('fonts.css');
@import url('style.css');

.fixed-header .bottom-header {
    background: #1e1e1e;
}

.fixed-header .light-header .bottom-header {
    background: #fff;
}

.product-card:hover .heart-btn {
    opacity: 1;
}

.modal {
    padding: 0 15px;
}

.modal-box .form-group label {
    color: var(--black-white-black);
}


/* Custom styling for the main image area to ensure a good aspect ratio */
.swiper-container-main {
    width: 100%;
    /* height: 650px; */
    /* max-width: 600px; */
}

/* Styling for the thumbnail slider */
.swiper-container-thumbs {
    width: 100%;
    max-width: 600px;
    height: 140px;
    box-sizing: border-box;
    padding: 10px 65px;
    margin-top: 10px;
}


/* Thumbnail image styling */
.thumbnail-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0px;
    cursor: pointer;
}

/* Styling for Swiper navigation buttons */
.swiper-button-prev,
.swiper-button-next {
    color: #000;
    background: #fff;
    width: 44px;
    border: solid 1px #E2E8F0;
    height: 44px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 14px !important;
}

/* Adjusting font size for product title */
.product-title {
    font-size: 2.5rem;
    /* 40px */
    line-height: 1;
    word-break: normal;
    overflow-wrap: break-word;
}

.swiper-container-thumbs .swiper-slide {
    padding: 8px;
    border: solid 1px var(--color-slate-200);
}

.swiper-container-thumbs .swiper-slide.swiper-slide-thumb-active {
    border-color: var(--black-white-black);
}

@media (min-width: 768px) {
    .product-title {
        font-size: 3rem;
        /* 48px */
    }
}


/* Custom scrollbar to match dark inquiry button */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-thumb {
    background: #000;
    border-radius: 4px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}


.wishlist-status-text,
.detail-button-text {
    white-space: nowrap;
    /* font-size: 0.65rem; */
    letter-spacing: 0.12em;
    line-height: 1;
    display: inline-block;
}

/* Rich Text / CMS Content Styles */
.cms-content {
    color: var(--color-zinc-600);
    font-size: 1rem;
    line-height: 1.75;
    word-break: normal;
    overflow-wrap: break-word;
}

.cms-content h1,
.cms-content h2 {
    font-size: 1.875rem;
    font-weight: 600;
    color: #000;
    margin-top: 2rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.cms-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #000;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.cms-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #000;
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
}

.cms-content p {
    margin-bottom: 1.25rem;
    line-height: 1.75;
    color: var(--color-zinc-600);
}

.cms-content ul,
.cms-content ol {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
    color: var(--color-zinc-600);
}

.cms-content ul {
    list-style-type: disc;
}

.cms-content ol {
    list-style-type: decimal;
}

.cms-content li {
    margin-bottom: 0.5rem;
    line-height: 1.75;
}

.cms-content strong {
    font-weight: 600;
    color: #000;
}

.cms-content em {
    font-style: italic;
}

.cms-content a {
    color: #CF9F71;
    text-decoration: underline;
    transition: color 0.3s;
}

.cms-content a:hover {
    color: #560101;
}

.cms-content blockquote {
    border-left: 4px solid #CF9F71;
    padding-left: 1rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: var(--color-zinc-600);
}

.cms-content img {
    max-width: 100%;
    height: auto;
    margin: 1.5rem 0;
    border-radius: 0.5rem;
}

.cms-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.cms-content table th,
.cms-content table td {
    padding: 0.75rem;
    border: 1px solid #e5e7eb;
    text-align: left;
}

.cms-content table th {
    background-color: #f9fafb;
    font-weight: 600;
    color: #000;
}

.cms-content--policy {
    font-size: 0.95rem;
    line-height: 1.6;
}

.cms-content--policy h1,
.cms-content--policy h2,
.cms-content--policy h3,
.cms-content--policy h4 {
    font-size: 1.15rem;
}