/* =========================
   PRODUCT HERO
========================= */

.product-hero{

    padding:5px 25px 20px;
}

.product-hero-content{

    background:#f2dfcf;

    border-radius:30px;

    height:220px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    overflow:hidden;

    padding:0 40px;
}

.product-hero-text{

    width:50%;
}

.hero-small{

    color:#d55c63;

    font-size:13px;

    font-weight:600;

    letter-spacing:2px;

    margin-bottom:10px;
}

.product-hero-text h1{

    font-size:42px;

    line-height:1.1;

    margin-bottom:15px;
}

.product-hero-text p{

    color:#555;

    line-height:1.7;
}

.product-hero-image{

    width:35%;

    height:100%;

    display:flex;

    align-items:flex-end;

    justify-content:center;
}

.product-hero-image img{

    height:110%;

    object-fit:contain;
}

/* =========================
   PRODUCT PAGE
========================= */

.product-page{

    display:flex;

    gap:60px;

    padding:40px 25px;

    align-items:flex-start;
}

/* =========================
   PRODUCT GALLERY
========================= */

.product-gallery{

    width:50%;

    display:flex;

    gap:20px;
}

/* THUMBNAILS */

.gallery-thumbnails{

    display:flex;

    flex-direction:column;

    gap:15px;
}

.gallery-thumbnails img{

    width:80px;

    height:80px;

    object-fit:contain;

    background:#fafafa;

    border-radius:18px;

    padding:8px;

    cursor:pointer;

    border:2px solid transparent;

    transition:0.3s;
}

.gallery-thumbnails img:hover{

    transform:translateY(-2px);
}

.active-thumb{

    border-color:#d55c63 !important;
}

/* MAIN IMAGE */

.gallery-main{

    flex:1;

    position:relative;

    background:#fafafa;

    border-radius:30px;

    overflow:hidden;

    height:650px;

    display:flex;

    align-items:center;

    justify-content:center;
}

.gallery-main img{

    max-width:85%;

    max-height:85%;

    width:auto;

    height:auto;

    object-fit:contain;

    display:block;
}

/* ARROWS */

.gallery-arrow{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    width:42px;

    height:42px;

    border:none;

    border-radius:50%;

    background:white;

    box-shadow:0 4px 15px rgba(0,0,0,0.08);

    cursor:pointer;

    opacity:0;

    transition:0.3s;

    z-index:10;
}

.gallery-main:hover .gallery-arrow{

    opacity:1;
}

.left-arrow{

    left:20px;
}

.right-arrow{

    right:20px;
}

/* =========================
   PRODUCT DETAILS
========================= */

.product-details{

    width:50%;
}

.product-brand{

    color:#d55c63;

    font-size:14px;

    font-weight:600;

    letter-spacing:2px;

    margin-bottom:10px;
}

.product-title{

    font-size:48px;

    line-height:1.1;

    margin-bottom:20px;
}

.product-rating{

    display:flex;

    align-items:center;

    gap:5px;

    color:#ffb400;

    margin-bottom:20px;
}

.product-rating span{

    color:#777;

    margin-left:10px;
}

.product-price{

    font-size:42px;

    font-weight:700;

    margin-bottom:20px;
}

.product-description{

    color:#666;

    line-height:1.8;

    margin-bottom:30px;
}

/* BENEFITS */

.product-benefits{

    display:flex;

    flex-direction:column;

    gap:15px;

    margin-bottom:35px;
}

.benefit{

    display:flex;

    align-items:center;

    gap:12px;
}

.benefit i{

    color:#9fc62b;
}

/* ACTIONS */

.product-actions{

    display:flex;

    gap:20px;

    margin-bottom:35px;
}

.quantity-selector{

    display:flex;

    align-items:center;

    border:1px solid #ddd;

    border-radius:50px;

    overflow:hidden;
}

.quantity-selector button{

    width:45px;

    height:45px;

    border:none;

    background:white;

    cursor:pointer;

    font-size:18px;
}

.quantity-selector span{

    width:40px;

    text-align:center;
}

.add-cart-button{

    height:45px;

    padding:0 35px;

    border:none;

    border-radius:50px;

    background:#d9ef7a;

    font-weight:600;

    cursor:pointer;

    transition:0.3s;
}

.add-cart-button:hover{

    transform:translateY(-2px);
}

/* DELIVERY */

.delivery-box{

    display:flex;

    flex-direction:column;

    gap:15px;
}

.delivery-item{

    display:flex;

    gap:15px;

    align-items:center;

    background:#fafafa;

    border-radius:20px;

    padding:18px;
}

.delivery-item i{

    font-size:22px;

    color:#9fc62b;
}

/* =========================
   EXTRA INFO
========================= */

.product-extra-info{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:25px;

    padding:0 25px 50px;
}

.info-card{

    background:#fafafa;

    border-radius:25px;

    padding:30px;
}

.info-card h2{

    margin-bottom:20px;

    font-size:24px;
}

.info-card p{

    color:#666;

    line-height:1.8;
}

/* CATEGORY MOCKUP STYLE */

.category-page {
    max-width: 1440px;
    margin: 0 auto;
    padding: 28px 56px 80px;
}

.category-header {
    display: grid;
    grid-template-columns: 0.75fr 1.45fr;
    gap: 48px;
    align-items: end;
    margin-bottom: 34px;
}

.breadcrumb {
    color: #777;
    font-size: 13px;
    margin-bottom: 28px;
}

.category-info h1 {
    color: #111;
    font-size: 34px;
    line-height: 1.15;
    margin-bottom: 14px;
}

.category-info p {
    color: #555;
    font-size: 15px;
    line-height: 1.8;
    max-width: 420px;
    margin-bottom: 48px;
}

#productCount {
    color: #333;
    font-size: 13px;
}

.category-banner {
    height: 220px;
    background: #eef2e6;
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 42px;
}

.category-banner-text {
    width: 42%;
    position: relative;
    z-index: 2;
}

.category-banner-text h2 {
    color: #111;
    font-size: 25px;
    line-height: 1.25;
    margin-bottom: 24px;
}

.category-banner-text a {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: white;
    border-radius: 999px;
    padding: 13px 22px;
    font-size: 12px;
    font-weight: 600;
}

.category-banner img {
    width: 55%;
    height: 100%;
    object-fit: contain;
    object-position: right bottom;
    transform: translateY(12px);
}

.category-content {
    display: grid;
    grid-template-columns: 230px 1fr;
    gap: 48px;
    align-items: start;
}

.category-filters {
    position: sticky;
    top: 20px;
}

.filters-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e8e8e8;
    padding-bottom: 14px;
    margin-bottom: 16px;
}

.filters-top h3 {
    font-size: 13px;
}

.filters-top button {
    border: none;
    background: transparent;
    color: #e85b63;
    font-family: inherit;
    font-size: 12px;
    cursor: pointer;
}

.filter-group {
    border-bottom: 1px solid #e8e8e8;
    padding: 16px 0;
}

.filter-group h4 {
    font-size: 12px;
    margin-bottom: 12px;
}

.filter-group label {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #444;
    font-size: 13px;
    margin-bottom: 10px;
    cursor: pointer;
}

.filter-group input {
    width: 14px;
    height: 14px;
    accent-color: #9fc62b;
}

.category-toolbar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.category-toolbar label {
    color: #555;
    font-size: 13px;
}

.category-toolbar select {
    height: 38px;
    min-width: 170px;
    border: 1px solid #e2e2e2;
    border-radius: 8px;
    background: white;
    padding: 0 12px;
    font-family: inherit;
    font-size: 13px;
}

.category-products-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.category-product-card {
    position: relative;
    background: white;
    border: 1px solid #ededed;
    border-radius: 16px;
    min-height: 370px;
    padding: 18px;
    transition: 0.25s;
}

.category-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.07);
}

.product-heart {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 34px;
    height: 34px;
    border: none;
    background: transparent;
    font-size: 20px;
    cursor: pointer;
    z-index: 2;
}

.product-image-wrap {
    height: 210px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.product-image-wrap img {
    max-width: 82%;
    max-height: 200px;
    object-fit: contain;
}

.product-card-info {
    padding-right: 30px;
}

.product-brand {
    color: #777;
    font-size: 11px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.product-card-info h3 {
    color: #111;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 600;
    margin-bottom: 10px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #222;
    font-size: 13px;
    margin-bottom: 10px;
}

.product-rating i {
    color: #ffb400;
    font-size: 12px;
}

.product-rating small {
    color: #777;
}

.product-price-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-price-row strong {
    font-size: 17px;
}

.product-price-row del {
    color: #999;
    font-size: 13px;
}

.product-cart {
    position: absolute;
    right: 16px;
    bottom: 16px;
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background: var(--green);
    color: #111;
    cursor: pointer;
    font-size: 15px;
}

@media (max-width: 1000px) {
    .category-page {
        padding: 24px 20px 60px;
    }

    .category-header {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .category-content {
        grid-template-columns: 1fr;
    }

    .category-filters {
        position: static;
    }

    .category-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .category-banner {
        height: auto;
        padding: 28px;
    }

    .category-banner img {
        display: none;
    }

    .category-banner-text {
        width: 100%;
    }

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


.breadcrumb-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.breadcrumb-links a {
    color: #555;
    transition: 0.2s;
}

.breadcrumb-links a:hover {
    color: #e85b63;
}

.product-breadcrumb {
    max-width: 1400px;
    margin: 28px auto 0;
    padding: 0 40px;
}

/* PRODUCT DETAIL MOCKUP STYLE */

.product-breadcrumb {
    max-width: 1440px;
    margin: 22px auto 0;
    padding: 0 56px;
    font-size: 13px;
}

.product-page {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.92fr);
    gap: 56px;
    padding: 22px 56px 34px;
    align-items: start;
}

.product-gallery {
    width: 100%;
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 14px;
}

.gallery-thumbnails {
    gap: 12px;
}

.gallery-thumbnails img {
    width: 88px;
    height: 88px;
    border-radius: 12px;
    background: #f7f2ea;
    border: 2px solid transparent;
    padding: 7px;
}

.active-thumb {
    border-color: var(--green) !important;
    box-shadow: 0 0 0 2px rgba(217, 239, 122, 0.35);
}

.gallery-main {
    height: min(68vh, 620px);
    min-height: 500px;
    border-radius: 16px;
    background: linear-gradient(135deg, #f8efe4 0%, #fbf7ef 100%);
}

.gallery-main img {
    max-width: 78%;
    max-height: 88%;
}

.gallery-arrow {
    width: 46px;
    height: 46px;
    opacity: 1;
    color: #111;
}

.left-arrow {
    left: 24px;
}

.right-arrow {
    right: 24px;
}

.product-details {
    width: 100%;
    padding-top: 4px;
}

.product-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 16px;
}

.product-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 28px;
    border-radius: 999px;
    padding: 0 12px;
    background: var(--green);
    color: #111;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.product-badge.secondary {
    background: #e8f4dd;
    color: #2f6d35;
}

.product-brand {
    color: #111;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.product-title {
    color: #111;
    font-size: 34px;
    line-height: 1.15;
    font-weight: 500;
    margin-bottom: 14px;
    max-width: 640px;
}

.product-description {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 14px;
    max-width: 620px;
}

.product-rating {
    gap: 4px;
    color: #ffb400;
    margin-bottom: 18px;
    font-size: 14px;
}

.product-rating span {
    color: #555;
    margin-left: 8px;
}

.product-rating::after {
    content: "| 12K+ ventes";
    color: #777;
    margin-left: 12px;
}

.product-price {
    color: #111;
    font-size: 30px;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 12px;
}

.product-size-note {
    color: #777;
    font-size: 13px;
    margin-bottom: 18px;
}

.product-benefits {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    border-top: 1px solid #ececec;
    border-bottom: 1px solid #ececec;
    margin: 20px 0 22px;
}

.benefit {
    min-height: 72px;
    align-items: flex-start;
    gap: 10px;
    padding: 15px 14px;
    border-right: 1px solid #ececec;
    font-size: 12px;
    line-height: 1.45;
}

.benefit:last-child {
    border-right: none;
}

.benefit i {
    color: #9fc62b;
    font-size: 18px;
    margin-top: 2px;
}

.product-actions {
    display: grid;
    grid-template-columns: 126px minmax(220px, 1fr) 58px;
    gap: 18px;
    align-items: center;
    margin-bottom: 18px;
}

.quantity-selector {
    order: 1;
    height: 50px;
    border-radius: 12px;
    background: white;
}

.quantity-selector button {
    width: 42px;
    height: 50px;
    font-size: 18px;
}

.quantity-selector span {
    width: 42px;
    font-weight: 600;
}

.add-cart-button {
    order: 2;
    height: 50px;
    border-radius: 12px;
    background: #f45261;
    color: white;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.add-cart-button i {
    margin-right: 10px;
}

.favorite-button {
    order: 3;
    width: 58px;
    height: 50px;
    border-radius: 12px;
    border-color: #e4e4e4;
}

.delivery-box {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    background: #eef8d7;
    border-radius: 14px;
    padding: 0;
    overflow: hidden;
}

.delivery-item {
    background: transparent;
    border-radius: 0;
    padding: 16px 20px;
}

.delivery-item + .delivery-item {
    border-top: 1px solid rgba(120, 150, 55, 0.16);
}

.delivery-item i {
    color: #8bb328;
}

.delivery-item h4 {
    font-size: 14px;
    margin-bottom: 3px;
}

.delivery-item p {
    color: #666;
    font-size: 13px;
}

.product-extra-info {
    max-width: 1440px;
    margin: 0 auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    padding: 18px 56px 70px;
}

.product-tabs {
    max-width: 1440px;
    margin: 8px auto 0;
    padding: 0 56px;
    display: flex;
    gap: 44px;
    border-bottom: 1px solid #e6e6e6;
}

.product-tab-button {
    border: none;
    background: transparent;
    padding: 18px 0 13px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
}

.product-tab-button.is-active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 3px;
    background: #111;
}

.info-card {
    border-radius: 14px;
    background: white;
    border: 1px solid #ececec;
    padding: 24px;
}

.info-card h2 {
    font-size: 18px;
}

.info-card p {
    font-size: 14px;
    line-height: 1.75;
}

@media (max-width: 1100px) {
    .product-page {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .product-details {
        max-width: none;
    }
}

@media (max-width: 720px) {
    .product-breadcrumb,
    .product-tabs,
    .product-page,
    .product-extra-info {
        padding-left: 20px;
        padding-right: 20px;
    }

    .product-gallery {
        grid-template-columns: 1fr;
    }

    .gallery-thumbnails {
        order: 2;
        flex-direction: row;
        overflow-x: auto;
    }

    .gallery-main {
        min-height: 390px;
        height: 420px;
    }

    .product-title {
        font-size: 28px;
    }

    .product-benefits {
        grid-template-columns: 1fr 1fr;
    }

    .benefit:nth-child(2n) {
        border-right: none;
    }

    .product-actions {
        grid-template-columns: 1fr 58px;
    }

    .quantity-selector {
        grid-column: 1 / 3;
        width: 128px;
    }

    .add-cart-button {
        grid-column: 1;
    }

    .favorite-button {
        grid-column: 2;
    }

    .product-extra-info {
        grid-template-columns: 1fr;
    }
}


html[dir="rtl"] .product-price,
html[dir="rtl"] .cart-line-price,
html[dir="rtl"] .header-cart-total,
html[dir="rtl"] #cart-total,
html[dir="rtl"] #checkout-total-price {
    direction: ltr;
    unicode-bidi: isolate;
}


/* RTL CATEGORY CARD ACTIONS */
html[dir="rtl"] .product-heart {
    left: 18px;
    right: auto;
}

html[dir="rtl"] .product-card-info {
    padding-left: 52px;
    padding-right: 0;
    text-align: right;
}

html[dir="rtl"] .product-rating,
html[dir="rtl"] .product-price-row {
    justify-content: flex-end;
    direction: ltr;
}

html[dir="rtl"] .product-price-row {
    padding-left: 0;
    padding-right: 0;
}

html[dir="rtl"] .product-cart {
    left: 16px;
    right: auto;
}

html[dir="rtl"] .category-toolbar {
    justify-content: flex-start;
}

@media (max-width: 720px) {
    html[dir="rtl"] .product-card-info {
        padding-left: 46px;
    }
}

/* =========================
   MOBILE CATEGORY + PRODUCT MOCKUP
========================= */

@media (max-width: 760px) {
    .category-page {
        padding: 0 16px 84px;
    }

    .category-header {
        display: block;
        margin-bottom: 18px;
    }

    .breadcrumb-links,
    .category-banner {
        display: none;
    }

    .category-info h1 {
        font-size: 21px;
        text-align: center;
        margin: 0 0 18px;
    }

    .category-info p {
        max-width: none;
        margin: 0 0 20px;
        color: #333;
        font-size: 13px;
        line-height: 1.7;
    }

    #productCount {
        display: block;
        margin: 14px 0 18px;
    }

    .category-content {
        display: block;
    }

    .category-filters {
        display: none;
        position: fixed;
        left: 16px;
        right: 16px;
        top: 122px;
        z-index: 85;
        max-height: calc(100vh - 180px);
        overflow: auto;
        background: white;
        border: 1px solid #eeeeee;
        border-radius: 18px;
        padding: 18px;
        box-shadow: 0 22px 54px rgba(0, 0, 0, 0.16);
    }

    .category-filters.is-mobile-open {
        display: block;
    }

    .category-toolbar {
        display: grid;
        grid-template-columns: 1fr 1fr 48px;
        gap: 10px;
        align-items: center;
        margin-bottom: 18px;
    }

    .category-toolbar label {
        display: none;
    }

    .mobile-filter-toggle,
    .mobile-grid-toggle,
    .category-toolbar select {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        height: 46px;
        border-radius: 12px;
        border: 1px solid #eeeeee;
        background: white;
        color: #111;
        font-family: inherit;
        font-size: 13px;
    }

    .category-toolbar select {
        width: 100%;
        min-width: 0;
        padding: 0 12px;
    }

    .category-products-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .category-product-card {
        min-height: 222px;
        display: grid;
        grid-template-columns: 38% 1fr;
        gap: 14px;
        align-items: center;
        padding: 18px;
        border-radius: 14px;
    }

    .category-product-card::before {
        content: "BEST-SELLER";
        position: absolute;
        left: 18px;
        top: 18px;
        z-index: 3;
        height: 24px;
        border-radius: 999px;
        padding: 0 10px;
        display: inline-flex;
        align-items: center;
        background: var(--green);
        font-size: 10px;
        font-weight: 700;
    }

    .product-heart {
        top: 18px;
        right: 14px;
    }

    .product-image-wrap {
        height: 170px;
        margin: 0;
    }

    .product-image-wrap img {
        max-height: 162px;
    }

    .product-card-info {
        padding-right: 0;
        padding-bottom: 34px;
    }

    .product-card-info h3 {
        font-size: 13px;
        margin-bottom: 9px;
    }

    .product-brand {
        font-size: 10px;
    }

    .product-rating {
        margin-bottom: 12px;
    }

    .product-price-row strong {
        font-size: 17px;
    }

    .product-cart {
        right: 14px;
        bottom: 18px;
        width: 38px;
        height: 38px;
    }

    .product-breadcrumb {
        display: none;
    }

    .product-page {
        display: block;
        padding: 0 16px 24px;
    }

    .product-gallery {
        display: block;
        margin-bottom: 18px;
    }

    .gallery-thumbnails {
        display: none;
    }

    .gallery-main {
        height: 448px;
        min-height: 448px;
        border-radius: 14px;
        background: #f7efe4;
    }

    .gallery-main img {
        max-width: 82%;
        max-height: 86%;
    }

    .gallery-arrow {
        width: 38px;
        height: 38px;
        background: rgba(255, 255, 255, 0.88);
    }

    .left-arrow {
        left: 14px;
    }

    .right-arrow {
        right: 14px;
    }

    .mobile-image-count {
        position: absolute;
        right: 12px;
        bottom: 12px;
        z-index: 3;
        min-width: 38px;
        height: 24px;
        border-radius: 999px;
        background: rgba(17, 17, 17, 0.75);
        color: white;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 11px;
        font-weight: 700;
    }

    .product-details {
        padding: 0;
    }

    .product-badges {
        margin-bottom: 12px;
    }

    .product-badge {
        height: 24px;
        font-size: 10px;
    }

    .product-brand {
        margin-bottom: 8px;
    }

    .product-title {
        font-size: 22px;
        line-height: 1.28;
        margin-bottom: 12px;
    }

    .product-description {
        font-size: 13px;
        line-height: 1.7;
    }

    .product-rating {
        font-size: 13px;
        margin-bottom: 14px;
    }

    .product-price {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .product-benefits {
        grid-template-columns: repeat(4, 1fr);
        border: 1px solid #eeeeee;
        border-radius: 12px;
        overflow: hidden;
        margin: 18px 0 22px;
    }

    .benefit {
        min-height: 74px;
        padding: 10px 6px;
        align-items: center;
        text-align: center;
        border-right: 1px solid #eeeeee;
        font-size: 9px;
    }

    .benefit i {
        font-size: 15px;
    }

    .product-tabs {
        display: none;
    }

    .product-extra-info {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 0 16px 20px;
    }

    .info-card {
        border: none;
        border-bottom: 1px solid #eeeeee;
        border-radius: 0;
        padding: 18px 0;
    }

    .info-card h2 {
        font-size: 14px;
        text-transform: uppercase;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .info-card h2::after {
        content: "+";
        font-size: 20px;
        font-weight: 400;
    }

    .info-card:first-child h2::after {
        content: "";
    }

    .info-card p {
        font-size: 13px;
        line-height: 1.75;
        margin-top: 12px;
    }

    .info-card:not(:first-child) p {
        display: none;
    }

    .product-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .quantity-selector {
        grid-column: auto;
        width: 100%;
        height: 48px;
        border-radius: 10px;
    }

    .quantity-selector button,
    .quantity-selector span {
        width: 33.333%;
        height: 48px;
    }

    .add-cart-button {
        grid-column: auto;
        width: 100%;
        height: 52px;
    }

    .product-actions .favorite-button {
        display: none;
    }

    .delivery-box {
        margin-top: 20px;
        border-radius: 12px;
    }

    html[dir="rtl"] .category-product-card {
        grid-template-columns: 1fr 38%;
    }

    html[dir="rtl"] .category-product-card::before {
        left: auto;
        right: 18px;
    }

    html[dir="rtl"] .product-heart {
        left: 14px;
        right: auto;
    }

    html[dir="rtl"] .product-card-info {
        padding-left: 0;
        padding-right: 0;
    }

    html[dir="rtl"] .product-cart {
        left: 14px;
        right: auto;
    }

    html[dir="rtl"] .mobile-image-count {
        left: 12px;
        right: auto;
    }
}

@media (max-width: 760px) {
    .info-card h2 {
        cursor: pointer;
        user-select: none;
    }

    .info-card h2::after {
        content: "+";
    }

    .info-card.is-open h2::after {
        content: "−";
    }

    .info-card:first-child h2::after {
        content: "+";
    }

    .info-card:first-child.is-open h2::after {
        content: "−";
    }

    .info-card p,
    .info-card:not(:first-child) p {
        display: none;
    }

    .info-card.is-open p,
    .info-card.is-open:not(:first-child) p {
        display: block;
    }
}
