/* =================================================================
   PRODUCT PAGE - استایل‌های صفحه محصول و لیست محصولات
   ================================================================= */

/* =================================================================
   1. HERO SECTION
   ================================================================= */
.hero-section {
    padding: 8rem var(--spacing-md) var(--spacing-2xl);
    background: radial-gradient(ellipse at top, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    overflow: hidden;
    position: relative;
}

.hero-content {
    max-width: 82.063rem;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: var(--font-weight-extrabold);
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.hero-subtitle {
    display: block;
    color: var(--gray-700);
}

.hero-description {
    font-size: 1.2rem;
    color: var(--gray-600);
    margin-bottom: var(--spacing-xl);
    line-height: 1.6;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-md) var(--spacing-xl);
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: var(--radius-xl);
    font-size: 1.1rem;
    font-weight: var(--font-weight-semibold);
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-lg);
}


.hero-visual {
    position: relative;
    height: 31.25rem;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(1.25rem);
    border: 0.0625rem solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-xl);
    padding: var(--spacing-md);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-weight: var(--font-weight-medium);
    color: var(--gray-700);
    animation: float 6s ease-in-out infinite;
}

.floating-card-1 {
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.floating-card-2 {
    top: 50%;
    right: 20%;
    animation-delay: -2s;
}

.floating-card-3 {
    bottom: 20%;
    right: 5%;
    animation-delay: -4s;
}

.card-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 0 0.625rem rgba(99, 102, 241, 0.3));
}

.hero-gradient-orb {
    position: absolute;
    top: 30%;
    left: 30%;
    width: 18.75rem;
    height: 18.75rem;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.3) 0%, rgba(139, 92, 246, 0.1) 70%, transparent 100%);
    border-radius: 50%;
    filter: blur(2.5rem);
    animation: pulse 4s ease-in-out infinite;
    z-index: -1;
}

/* =================================================================
   2. PAGE TITLE & SECTION HEADERS
   ================================================================= */
.page-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #5C4DFF 0%, #665cec 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 3rem;
}

.section-header {
    position: relative;
    text-align: center;
    max-width: 82.063rem;
}
.section-header hr {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    transform: translateY(50%);
    z-index: 1;
    border: none;
    border-bottom: 2px solid rgba(184, 184, 184, 0.4);
    opacity: 1;
}

.section-title {
    font-size: clamp(1.2rem, 5vw, 2.188rem);
    font-weight: var(--font-weight-semibold);
    color: var(--gray-800);
    position: relative;
    display: inline-block;
    padding: 0 2rem;
    background-color: white;
    z-index: 2;
    margin: 0;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-600);
}
.carousel-inner-padding {
    padding: 0 4rem;
}
/* =================================================================
   3. PRODUCTS GRID & CARDS
   ================================================================= */
.productPageContent {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}
.productMain {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(18.75rem, 1fr));
    gap: var(--spacing-xl);
}

.product-card {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(1.25rem);
    border: 0.0625rem solid rgba(65, 65, 65, 0.2);
    border-radius: 1rem;
    padding: var(--spacing-sm);
    transition: all var(--transition-base);
    overflow: hidden;
    height: 25.13rem;
    max-width: 17rem;
    width: 17rem;

}
.product-badge {
    position: absolute;
    top: var(--spacing-md);
    right: 0;
    background: var(--badge-color);
    color: white;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-md) 0 0 var(--radius-md);
    font-size: 0.85rem;
    font-weight: var(--font-weight-normal);
    z-index: 2;
}

.product-image {
    position: relative;
    border-radius: 0.5rem;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.image-placeholder {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
}

.product-favorite {
    position: absolute;
    top: var(--spacing-sm);
    left: var(--spacing-sm);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    padding: var(--spacing-xs);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-fast);
    color: var(--gray-500);
}

.product-info {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-info > a {
    display: block;
    height: auto;
    min-height: 3em;
}

.product-title {
    text-align: right;
    font-size: 1rem;
    font-weight: var(--font-weight-medium);
    color: var(--gray-800);
    margin-bottom: var(--spacing-xs);
    direction: rtl;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5;
    height: 3em;
    white-space: normal;
    word-wrap: break-word;
}
.product-description {
    color: var(--gray-600);
    margin-bottom: var(--spacing-sm);
    font-size: 0.9rem;
}

.product-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-md);
}

.stars {
    font-size: 1rem;
    font-weight: var(--font-weight-medium);
}

.rating-text {
    color: var(--gray-500);
    font-size: 0.9rem;
}

.product-price {
    display: flex;
    justify-content: space-between;
    gap: var(--spacing-sm);
}

.current-price {
    font-size: 1.225rem;
    font-weight: var(--font-weight-medium);
    color: var(--success);
}

.original-price {
    font-size: 1rem;
    font-weight: var(--font-weight-normal);
    color: var(--error);
    text-decoration: line-through;
}

.customPrices {
    display: flex;
    flex-direction: column;
}

.add-to-cart-icon-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #666;
    transition: all 0.3s ease;
    position: relative;
}

.add-to-cart-icon-image img {
    transition: filter 0.3s ease;
}

.add-to-cart-icon-image.added img {
    filter: hue-rotate(90deg) saturate(5);
}

.customAddToCart {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.addToCartBtnCustomStyle {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #666;
    transition: all 0.3s ease;
    position: relative;
}
.add-to-cart-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm) var(--spacing-lg);
    background: var(--success);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-weight: var(--font-weight-medium);
    cursor: pointer;
    transition: all var(--transition-base);
    justify-content: center;
}

.productsMobileMode {
    padding: var(--spacing-md);
    width: 100%;
    margin: 0 !important;
}
.productsMobileMode hr {
    color: #B8B8B8;
}
.products-section {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.product-card-rowMode {
    display: flex;
    justify-content: start;
    align-items: stretch;
    gap: 1rem;
    padding: 0 1rem;
}
.product-image-rowMode img{
    border: 1px solid #b8b8b8;
    padding: 0.2rem;
    border-radius: 0.5rem;
}
.product-info-rowMode {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    min-width: 0;
}
.product-title-rowMode {
    font-weight: var(--font-weight-medium);
    font-size: 0.875rem;
    line-height: 1.375rem;
    text-align: right;
    color: var(--gray-800);
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.customPrices-rowMode {
    display: flex;
    justify-content: space-between;
    text-align: right;
}
.current-price-rowMode  {
    font-size: 0.875rem;
    font-weight: var(--font-weight-bold);
    color: var(--success);
}

.original-price-rowMode  {
    font-size: 0.75rem;
    font-weight: var(--font-weight-light);
    color: var(--error);
    text-decoration: line-through;
}
.productsCardListCustomStyle {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}
.productListWithGrid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(15.625rem, 1fr));
    gap: 1rem;
}
/* =================================================================
   4. PRODUCT SHOWCASE
   ================================================================= */
.product-showcase {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(1.25rem);
    border: 0.0625rem solid rgba(255, 255, 255, 0.3);
    border-radius: 2rem;
    padding: 2rem;
    box-shadow: 0 1.25rem 2.5rem rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}


.showcase-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.showcase-description {
    color: #6b7280;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.showcase-price {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.showcase-cta {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}


/* =================================================================
   5. INQUIRY BUTTON
   ================================================================= */
.inquiry-btn {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    cursor: pointer;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s ease;
}

/* =================================================================
   6. PRODUCT PAGE ROUTES
   ================================================================= */
.productPageRoutes {
    width: 100%;
    height: 4.375rem;
    background-color: #3A3A3A14;
    display: flex;
    align-items: center;
    justify-content: start;
}

.productPageRoute {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: var(--font-weight-medium);
    text-align: right;
    line-height: 30px;
}

.productPageRoute a {
    text-decoration: none;
    color: #5C4DFF;
}

.productPageRoute span {
    color: grey;
}

/* =================================================================
   7. PRODUCT DETAILS
   ================================================================= */
.productDetails {
    display: flex;
    flex-wrap: wrap;
    gap: 2.25rem;
}

.productImages .main-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: inline-block;
}

.mainCustomImage {
    border: 1px solid rgba(65, 65, 65, 0.12);
    padding: 1.25rem;
    border-radius: 1rem !important;
    width: 39.375rem;
    height: 39.375rem;
}
.productPageSmallImages {
    display: flex;
    width: 100%;
    justify-content: space-between;
    margin-top: 1rem;
}
.productPageSmallImage {
    width: 9.25rem;
    height: 9.25rem;
}
.productPageSmallImage img{
    border: 1px solid rgba(65, 65, 65, 0.12) !important;
}
.productPageSmallImage img.border-primary {
    border: 1px solid var(--base-color) !important;
}
.productDetail {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.productName {
    font-weight: var(--font-weight-medium);
    font-size: 1.5rem;
    line-height: 2.25rem;
}
.productPageOriginalPrice {
    font-weight: var(--font-weight-normal);
    font-size: 1.125rem;
    line-height: 2rem;
    text-decoration: line-through;
    color: var(--danger-color);
}
.productPageCurrentPrice {
    font-weight: var(--font-weight-bold);
    font-size: 1.5rem;
    line-height: 2rem;
    color: var(--success-color);
}
.productBrands,
.productStore {
    font-weight: var(--font-weight-medium);
    font-size: 1.125rem;
    line-height: 1.75rem;
    text-align: right;
    text-decoration: none;
    color: var(--gray-800);
}
.productBrands span,
.productStore span {
    color: var(--base-color);
}
.productPageHr {
    border: none;
    border-top: 1px solid #B8B8B8;
    width: 100%;
    margin: 0;
}
.add-to-cart {
    display: flex;
    flex-direction: column;
}


.productPageAddToCartBtn {
    background-color: #43A048;
    font-weight: var(--font-weight-bold);
    font-size: 1rem;
    line-height: 2rem;
}

/* =================================================================
   8. CERTIFICATES
   ================================================================= */
.certificates {
    padding: 2.5rem 0;
    text-align: center;
}

.col-cert {
    padding: 1.25rem;
}

.cert-box {
    background: #e8e6e6;
    border-radius: 0.75rem;
    padding: 1.875rem 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 10rem;
}

.cert-box i {
    color: #7065ec;
    font-size: 2.5rem;
    margin-bottom: 0.625rem;
}

.cert-box span {
    font-size: 0.875rem;
    font-weight: 500;
    color: #333;
}

/* =================================================================
   9. ATTRIBUTES
   ================================================================= */
.attributes ul li {
    margin-right: 1rem;
}

.attributes ul li::marker {
    color: red;
    font-size: 1.2em;
}

/* =================================================================
   10. ACTION BUTTONS
   ================================================================= */
.circle-btn {
    background-color: #3A3A3A14;
    display: flex;
    justify-content: center;
    border-radius: 999px;
    padding: 0.616rem;
    border: none;
}
.productPageFavouriteBtn {
    position: unset;
    background-color: #3A3A3A14;
    display: flex;
    justify-content: center;
    border-radius: 999px;
    padding: 0.616rem;
    border: none;
}


/* =================================================================
   11. NAV TABS
   ================================================================= */
.navTabsCustomStyle {
    width: 100%;
    height: 4.375rem;
    background-color: #3A3A3A14;
    display: flex;
    align-items: center;
    justify-content: start;
    margin-bottom: 1rem;
}
.productPageUl {
    display: flex;
    gap: 5rem;
}
.navTabsCustomStyle li {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    font-size: 1rem;
    font-weight: var(--font-weight-medium);
}

.navTabsCustomStyle li button {
    color: black;
}
.navTabsCustomStyle li .nav-link {
    padding: 1.2rem 0 !important;
}
.nav-link:focus, .nav-link:hover,.nav-link.active{
    color: black !important;
    border-bottom: 0.3rem solid var(--base-color);
}
.text-justify-custom {
    text-align: justify;
}


/* =================================================================
   12. DROPDOWN SECTIONS
   ================================================================= */
.dropdown-section {
    background: #f8f9fa;
    border: 0.0625rem solid #e0e0e0;
    border-radius: 0.5rem;
    overflow: hidden;
}

.dropdown-header {
    background: #F3F3F3;
    padding: 0.9375rem 1.25rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.dropdown-title {
    color: var(--base-color);
    margin: 0;
    font-weight: var(--font-weight-medium);
    font-size: 1.25rem;
    line-height: 1.875rem;
    text-align: right;
}

.dropdown-arrow {
    color: #6a5df8;
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.dropdown-arrow.rotated {
    transform: rotate(180deg);
}

.dropdown-content {
    background: #F3F3F3;
    padding: 0;
    overflow: hidden;
}

.dropdown-content.show {
    padding: 1.25rem;
}

/* =================================================================
   13. SPEC TABLE
   ================================================================= */
.spec-table {
    width: 100%;
    border-collapse: collapse;
}

.spec-table tr {
    border-bottom: 0.0625rem solid #f0f0f0;
}

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

.spec-table td {
    padding: 0.75rem 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.spec-label {
    color: var(--gray-800);
    text-align: right;
    padding-left: 1.25rem;
    font-weight: var(--font-weight-medium);
    font-size: 0.875rem;
    line-height: 1.625rem;
    opacity: 0.5;
}

.spec-value {
    color: var(--gray-800);
    text-align: right;
    font-weight: var(--font-weight-normal);
    font-size: 0.875rem;
    line-height: 1.625rem;
}

.spec-description {
    color: #888;
    font-size: 0.75rem;
    line-height: 1.6;
    text-align: justify;
}

/* =================================================================
   14. SELLER CARD
   ================================================================= */
.seller-card {
    background: #fff;
    padding: 1rem 0;
    margin-bottom: 0.9375rem;
}

.seller-content {
    display: flex;
    gap: 0.9375rem;
    align-items: flex-start;
}

.seller-logo {
    flex-shrink: 0;
    width: 9.375rem;
    height: 9.375rem;
    border-radius: 0.5rem;
}

.seller-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 0.5rem;
    border: 1px solid #b8b8b8;
    padding: 0.5rem;
}

.seller-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.seller-name {
    color: var(--gray-800);
    font-weight: var(--font-weight-medium);
    font-size: 1.5rem;
    line-height: 2.25rem;
}

.seller-warranty {
    color: var(--gray-800);
    margin: 0;
    font-weight: var(--font-weight-medium);
    font-size: 1.5rem;
    line-height: 2.25rem;

}

.seller-satisfaction {
    color: var(--gray-800);
    margin: 0;
    font-weight: var(--font-weight-normal);
    font-size: 1rem;
    line-height: 1.875rem;
    text-align: right;

}
.seller-satisfaction span {
    color: var(--success-color);
    font-weight: var(--font-weight-bold);
    font-size: 1rem;
    line-height: 1.5rem;
    text-align: right;

}
.price-and-cart {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.3125rem;
}

.price-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.productPagePriceContainerForDesktop {
    display: flex;
    flex-direction: row;
    gap: 2rem;
}
/* =================================================================
   15. REVIEWS
   ================================================================= */
.review-card {
    padding: 1.25rem 0;
    margin-bottom: 1rem;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.9375rem;
}

.reviewer-name {
    color: var(--gray-800);
    font-weight: var(--font-weight-normal);
    font-size: 1rem;
    line-height: 1.875rem;
    text-align: right;
}
.reviewer-name-head {
    color: var(--gray-800);
    font-weight: var(--font-weight-bold);
    font-size: 1.5rem;
    line-height: 2.25rem;
    text-align: right;
    margin: 0;
}

.review-badge {
    background-color: #28a745;
    color: white;
    padding: 0.1875rem 0.5rem;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    font-weight: var(--font-weight-normal);
    line-height: 1.625;
    vertical-align: middle;

}

.review-stars {
    margin-bottom: 0.75rem;
}

.star {
    color: #ffc107;
    font-size: 0.875rem;
    margin-left: 0.125rem;
}

.review-text {
    color: #5A5A5A;
    margin-bottom: 0.9375rem;
    font-weight: var(--font-weight-normal);
    font-size: 1rem;
    line-height: 1.875rem;
    text-align: justify;
    text-justify: inter-word;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.625rem;
    font-weight: var(--font-weight-normal);
    font-size: 1.125rem;
    line-height: 2rem;
    text-align: right;
    color: var(--gray-800);
}

.review-date span{
    font-weight: var(--font-weight-medium);
    font-size: 1.125rem;
    line-height: 1.75rem;
    text-align: right;
    color: var(--base-color);
}

.review-actions {
    display: flex;
    gap: 0.9375rem;
}

.review-action-btn {
    background: none;
    border: none;
    color: #666;
    font-size: 0.75rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.3125rem;
    padding: 0;
}
.dislike-btn span {
    font-weight: var(--font-weight-medium);
    font-size: 1.125rem;
    line-height: 1.75rem;
    vertical-align: middle;
    color: var(--danger-color);

}
.like-btn span {
    font-weight: var(--font-weight-medium);
    font-size: 1.125rem;
    line-height: 1.75rem;
    vertical-align: middle;
    color: var(--success-color);
}
.review-action-btn:hover {
    color: #5C4DFF;
}

.review-action-btn.active {
    color: #5C4DFF;
}

.like-btn.active {
    color: #28a745;
}

.dislike-btn.active {
    color: #dc3545;
}

/* =================================================================
   16. BRANDS SECTION
   ================================================================= */
.brands-section {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(1.25rem);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(9.375rem, 1fr));
    gap: var(--spacing-lg);
}

.brand-card {
    background-color: #F3F3F3;
    border: 0.0625rem solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg);
    text-align: center;
    transition: all var(--transition-base);
    cursor: pointer;
    backdrop-filter: blur(0.625rem);
}


.brand-logo {
    font-size: 1.1rem;
    font-weight: var(--font-weight-semibold);
    min-width: 12.5rem !important;
    width: 12.5rem !important;
    height: 7.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* =================================================================
   17. CATEGORY SECTION
   ================================================================= */
.category-section {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(1.25rem);
}

.category-link {
    text-decoration: none;
}

.category-card {
    background: rgba(255, 255, 255, 0.9);
    border: 0.0625rem solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg);
    text-align: center;
    transition: all var(--transition-base);
    cursor: pointer;
    backdrop-filter: blur(0.625rem);
    min-width: 12.5rem !important;
    width: 12.5rem !important;
    height: 7.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.1);
    margin: 0.5rem auto;
}

.category-card .category-logo {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
}

.adverb-card {
    background: #F3F3F3;
    backdrop-filter: blur(1.25rem);
    border: 0.0625rem solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-2xl);
    width: 100%;
    text-align: center;
    transition: all var(--transition-base);
    height: 15rem;
    padding: 7.5rem 13.3rem;
}
.adverb-section-two {
    display: flex;
    justify-content: start;
    gap: 1rem;
}
.customAd {
    padding: 0;
}

.adverb-card img {
    width: 100%;
    max-width: 26.5rem;
}
/* =================================================================
   19. NEWSLETTER SECTION
   ================================================================= */

.newsletter-content {
    background: var(--base-color);
    padding: var(--spacing-xl) var(--spacing-md);
    color: white;
    border-radius: 6.25rem;
    max-width: 82.063rem;
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin: 0 auto;
}

.newsletter-text h3 {
    font-size: 2.5rem;
    font-weight: var(--font-weight-medium);
    margin-bottom: var(--spacing-xs);
}

.newsletter-text p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: var(--spacing-xs);
    flex: 1;
    max-width: 25rem;
}

.email-input {
    flex: 1;
    padding: var(--spacing-sm) var(--spacing-md);
    border: none;
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    font-size: 1rem;
    background: white;
    backdrop-filter: blur(0.625rem);
    color: black;
    outline: none;
}

.subscribe-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.subscribe-btn {
    padding: var(--spacing-xs) var(--spacing-sm);
    background: white;
    color: grey;
    border: none;
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
    font-weight: var(--font-weight-normal);
    cursor: pointer;
    transition: all var(--transition-base);
}


/* =================================================================
   21. ADS SECTION
   ================================================================= */
.ads-section {
    width: 90%;
    margin: auto;
}

/* =================================================================
   22. BLOG SECTION
   ================================================================= */
.blog-section {
    background: white;
}

.blog-post {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    border: 0.063rem solid #E8E8E8;
    transition: all var(--transition-base);
    width: 100%;
    max-width: 26.125rem;
}


.blog-image {
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.blog-image img {
    width: 100%;
    max-width: 24.125rem;
}
.blog-content {
    padding: 1.5625rem;
}

.blog-title {
    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
    color: #3A3A3A;
    margin-bottom: 0.625rem;
    line-height: 2rem;
    text-align: right;
}

.blog-excerpt {
    color: var(--gray-800);
    font-size: 1rem;
    font-weight: var(--font-weight-normal);
    line-height: 1.875rem;
    margin-bottom: 0.9375rem;
    text-align: justify;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #999;
    font-size: 0.875rem;
}

.blog-date {
    color: var(--gray-800);
    font-weight: var(--font-weight-normal);
    font-size: 0.875rem;
    line-height: 1.625rem;
    text-align: justify;

}
.newsletter-section {
    background-color: #F3F3F3;
    margin-top: 4rem;
    padding-bottom: 4rem;
}
/* =================================================================
   23. PRICE CHART
   ================================================================= */
.productPageChartContainer {
    background-color: #F3F3F3;
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin: 1rem 0;
    height: 31.25rem;
}

#productPriceChart {
    font-family: var(--font-primary);
    font-size: 0.8rem;
}
/* =================================================================
   24. LOAD PRODUCT LAZY MODE
   ================================================================= */


.load-more-container {
    text-align: center;
    padding: 20px 0;
}

.load-more-btn {
    background: var(--base-color);
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}


.load-more-btn:disabled {
    background: #bdc3c7;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.loading-spinner {
    display: none;
    text-align: center;
    padding: 20px;
    color: #685bf3;
    font-size: 1rem;
}

.spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top: 4px solid #685bf3;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    margin: 0 auto 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.no-more-products {
    text-align: center;
    padding: 20px;
    color: #7f8c8d;
    font-size: 1rem;
    display: none;
}

.products-count {
    text-align: center;
    margin-bottom: 15px;
    color: #7f8c8d;
    font-size: 0.9rem;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}
.productCardCustomStyle {
    display: flex;
}
.sectionContent {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}
.mainPageContent {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}
.tabContent > div {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
/* =================================================================
   25. RESPONSIVE DESIGN
   ================================================================= */

@media (max-width: 82.063rem) {

    .productPageRoutes,.productPageUl, .tabContent {
        padding: 0 var(--spacing-md);
    }
    .newsletter-section, .productDetails{
        padding: var(--spacing-2xl) var(--spacing-md) 0 var(--spacing-md);
    }
    .newsletter-section{
        padding: var(--spacing-2xl) var(--spacing-md) var(--spacing-2xl) var(--spacing-md);
    }
}
/* Large Screens */
@media (max-width: 75rem) {
    .section-header {
        width: auto;
    }
}
@media (max-width: 61.9375rem) {
    .sectionContent {
        gap: 2rem;
    }
    .mainPageContent {
        gap: 2rem;
    }
    .blog-excerpt , .blog-meta {
        display: none !important;
    }
    .blog-post {
        max-width: 19.063rem !important;
        height: 100%;
    }
    .productImages {
        display: none !important;
    }
    .productPageImagesInMobile {
        display: block !important;
        width: 100%;
    }
    #carouselExampleCaptions .carousel-indicators button {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background-color: rgba(92, 77, 255, 0.3);
        border: none;
        margin: 0 4px;
    }
    #carouselExampleCaptions .carousel-indicators button.active {
        background-color: #5C4DFF;
    }
    .productDetails {
        padding: 0;
    }
    .productDetail {
        display: flex;
        flex-direction: column;
        align-items: start;
        padding: 0 var(--spacing-md);
        gap: 0.5rem;
    }
    .productName {
        font-size: 1.125rem;
        width: 100%;
        display: block;
        min-height: 2.8em;
        line-height: 1.4;
        word-break: break-word;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }
    .productBrands ,.productStore{
        font-size: 1rem;
    }
    .productBrands span,.productStore span{
        font-size: 1.125rem;;
    }
    .productRating {
        display: flex;
        justify-content: space-between;
        width: 100%;
    }
    .mobileHr,
    .productPrice,
    .add-to-cart,
    .attributes,
    .productPageRoutes,
    .seller-content,
    .showMeShopingCard{
        display: none;
    }
    .mobileAddToCartSection{
        display: flex !important;
        width: 100%;
        background-color: #F3F3F3;
        justify-content: space-between;
        flex-direction: row;
        padding: 1rem 1.4rem;
        margin-top: 1rem;
        align-items: center;
    }
    .mobileAddToCartSection .productPageDetailsFooter .productPageAddToCartBtn {
        font-size: 1rem;
    }
    .featuresSectionProductPageMobileMode {
        padding: var(--spacing-md) var(--spacing-md) 0 var(--spacing-md);
    }
    .MobileProductPrice .productPageOriginalPrice {
        font-size: 0.875rem;
    }
    .MobileProductPrice .productPageOriginalPrice {
        font-size: 1rem;
    }
    .productPageHr {
        margin: 1rem 0;
    }
    .MobileProductPrice {
        display: flex !important;
        flex-direction: column;
        text-align: left;
        justify-content: end;
    }
    .productPageAddToCartBtn {
        padding: var(--spacing-xs) var(--spacing-lg);
        font-size: 0.8rem;
        width: 100%;
    }
    .productPageCurrentPrice {
        font-size: 1.3rem;
    }
    .action-buttons {
        position: absolute;
        top: 28%;
        right: var(--spacing-md);
        display: flex;
        flex-direction: column;

    }
    .action-buttons button{
        border: none;
        background-color: #5C4DFF;
        padding: 0.5rem !important;
    }
    .showMeShopingCardMobileMode {
        display: flex !important;
        justify-content: end;
        font-size: 0.75rem;
        cursor: pointer;
    }
    .reviewTextMobileMode {
        display: -webkit-box;
        -webkit-line-clamp: 6;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        text-align: justify;
        line-height: 1.8;
        transition: all 0.3s ease;
    }

    .showMeShopingCardMobileMode i {
        transition: transform 0.3s ease;
        margin-right: 5px;
    }

    .reviewTextMobileMode.expanded {
        display: block;
        -webkit-line-clamp: unset;
    }
    .reviewer-name-head {
        font-weight: var(--font-weight-medium);
        font-size: 1.125rem;
        line-height: 1.75rem;
    }
    .adverbSectionForDisplayNone {
        display: none !important;
    }
    .adverbSectionMobileMode {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        gap: 2rem;

    }
    .adverbCardMobileMode{
        background: #F3F3F3;
        backdrop-filter: blur(1.25rem);
        border: 0.0625rem solid rgba(255, 255, 255, 0.3);
        border-radius: var(--radius-2xl);
        width: 100%;
        text-align: center;
        transition: all var(--transition-base);
        height: 10rem;
    }

    .sellerContentMobileMode {
        display: flex !important;
        flex-direction: column;
    }
    .sellerDetailsMobileMode {
        display: flex;
        flex-direction: row;
    }
    .sellerDetailMobileMode {
        display: flex;
        flex-direction: column;
    }
    .sellerDetailsLogoMobileMode {
        width: 5rem !important;
        height: 5rem !important;
        padding: 0.5rem;
    }
    .sellerNameMobileMode {
        font-weight: var(--font-weight-medium);
        font-size: 1rem;
        line-height: 1.5rem;
        color: var(--gray-800);
    }
    .sellerSatisfactionMobileMode {
        font-weight: var(--font-weight-bold);
        font-size: 0.875rem;
        line-height: 1.375rem;
        text-align: right;
    }
    .sellerWarrantyMobileMode {
        font-weight: var(--font-weight-medium);
        font-size: 1rem;
        line-height: 1.5rem;
        color: var(--gray-800);

    }
    .priceAndCartMobileMode {
        display: flex;
        flex-direction: row;
        width: 100%;
    }
    .priceAndCartMobileMode div {
        width: 100%;
        display: flex;
        justify-content: space-between;
    }
    .newsletter-content {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-lg);
        border-radius: 0;
        width: 100%;
        padding: var(--spacing-md) var(--spacing-md);
    }

    .newsletter-form {
        max-width: none;
    }
    .newsletter-section {
        padding: 0;
        margin-top: 1rem;
    }
    .seller-logo {
        width: auto !important;
        height: auto !important;
    }
    .desktopPaginatorShow {
        display: none !important;
    }
}
@media (max-width: 48rem) {
    .section-header {
        width: auto;
    }
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-xl);
    }
    .hero-title {
        font-size: 2.5rem;
    }

    .floating-card {
        display: none;
    }

    .hero-ad {
        flex-direction: column;
        text-align: center;
        height: auto;
        padding: 2rem;
    }

    .hero-ad h2 {
        font-size: 2rem;
    }

    .product-showcase {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .products-grid,
    .brands-grid
    {
        grid-template-columns: 1fr;
    }


    .productPageRoute {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.375rem;
        font-size: 0.8125rem;
        text-align: center;
    }

    .productImages .main-image img {
        max-width: 100%;
        height: auto;
    }


    .adverb-card , .adverb-card img {
        width: 32rem !important;
        align-content: center;
    }

    .blog-excerpt , .blog-meta {
        display: none !important;
    }

    .blog-post {
        max-width: 19.063rem !important;
        height: 100%;
    }
    .adverb-section-two {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    .customAd {
        width: 100% !important;
    }
    .scrollNavTabsForMobileMode {
        display: flex !important;
    }
}
/* Small Mobile Devices */
@media (max-width: 36rem) {
    .section-header {
        width: auto;
    }
    .adverb-card , .adverb-card img {
        width: 18.75rem !important;
        align-content: center;
    }
    .newsletter-section {
        padding: 0;
    }
    .blog-excerpt , .blog-meta {
        display: none !important;
    }

    .blog-post {
        max-width: 19.063rem !important;
        height: 100%;
    }
    .featuresItemsMobileMode {
        display: flex;
        flex-direction: column;
    }
    .featureCardMobileMode {
        display: flex;
        flex-direction: row;
        aspect-ratio: auto !important;
        border-radius: 0.5rem;
        gap: 1rem;
        justify-content: start;
        padding: var(--spacing-xs) var(--spacing-sm);
    }
    .featureCardMobileMode img {
        width: clamp(2rem, 10vw, 5rem);
    }
    .adverb-section-two {
        padding: 0 1.5rem;
    }
    .customAd {
        width: 100% !important;
    }
}
/* Mobile Devices */
@media (max-width: 30rem) {
    .section-header {
        width: auto;
    }


    .hero-title {
        font-size: 2rem;
    }

    .floating-card {
        display: none;
    }

    .brand-logo,
    .category-card {
        min-width: 7.5rem !important;
        width: 100% !important;
    }

    .productPageRoutes {
        margin-top: 30%;
    }

    .productPageRoute {
        font-size: 0.75rem;
        gap: 0.25rem;
    }

    .productImages .main-image img {
        max-width: 100%;
        height: auto;
    }



    .productCardCustomStyle {
        max-width: 17rem !important;
    }

    .blog-post {
        max-width: 19.063rem !important;
        height: 100%;
    }
}

