/* ============================================
   BREADCRUMBS
   ============================================ */

.breadcrumbs {
    padding: 40px 0;
    background-color: #fff;
}

.breadcrumbs__inner {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Actay', sans-serif;
    font-size: 14px;
}

.breadcrumbs__link {
    color: #bdc3ce;
}

.breadcrumbs__link:hover {
    color: #4778f5;
}

.breadcrumbs__separator {
    color: #bdc3ce;
}

.breadcrumbs__current {
    color: #0b0c0e;
}

.breadcrumbs__link,
.breadcrumbs__current {
    font-weight: 500;
    font-size: 14px;
    line-height: 120%;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

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

.product {
    padding: 60px 0 80px 0;
    background-color: #fff;
}

.product__title {
    margin-bottom: 24px;
}

.product hr {
    background: #0b0c0e;
    opacity: 0.1;
    height: 1px;
    margin-bottom: 32px;
}

.product__content {
    display: flex;
    gap: 52px;
}

.product__image {
    width: 680px;
    height: 680px;
    background: #F7F7F8;
    padding: 32px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product__image img {
    max-width: 100%;
    object-fit: contain;
    max-width: 397px;
    height: 534px;
    width: 100%;
}

.product__wrapper {
    display: flex;
    flex-direction: column;
    gap: 32px;
    flex: 1;
    padding: 32px;
}

.product__info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.product__description {
    font-size: 16px;
    font-weight: 600;
    line-height: 140%;
    color: #0B0C0E;
}

.product__specs {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.product__spec-item {
    display: flex;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #E7E7E7;
}

.product__spec-label {
    font-size: 16px;
    font-weight: 600;
    line-height: 140%;
    color: #0b0c0e66;
    width: 50%;
}

.product__spec-value {
    font-size: 16px;
    font-weight: 600;
    line-height: 140%;
    color: #0B0C0E;
}

.product__order {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 30px;
}

.product__price-block {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product__price {
    font-family: 'Actay Wide', sans-serif;
    font-style: italic;
    font-weight: 700;
    font-size: 32px;
    line-height: 120%;
    color: #0B0C0E;
}

.product__price-note {
    font-size: 14px;
    font-weight: 500;
    line-height: 140%;
    color: #6B7280;
}

.product__actions {
    display: flex;
    gap: 16px;
    flex-direction: column;
    max-width: 410px;
}

.product__btn {
    width: 195px;
}

.product__add-to-cart {
    width: 100%;
    max-width: 100%;
}

.product__add-more {
    max-width: 100%;
}

.btn--secondary {
    background: #fff;
    color: #0B0C0E;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn--secondary:hover {
    background: #0B0C0E;
    color: #fff;
}

.product__btn-consultation {
    max-width: 100%;
    height: 51px;
}

/* ============================================
   PRODUCT TABS
   ============================================ */

.product-tabs {
    padding-top: 40px;
    background-color: #fff;
}

/* Tabs Navigation */
.product-tabs__nav {
    display: flex;
    margin-bottom: 56px;
    border-bottom: 1px solid #E7E7E7;
}

.product-tabs__tab {
    font-family: 'Actay Wide', sans-serif;
    font-style: italic;
    font-weight: 700;
    font-size: 16px;
    line-height: 120%;
    text-transform: uppercase;
    color: #0B0C0E;
    padding-bottom: 16px;
    border-bottom: 2px solid #000;
    cursor: pointer;
    transition: color 0.3s ease, border-color 0.3s ease;
    width: 100%;
}

.product-tabs__tab:hover {
    color: #4778f5;
    border-bottom: 2px solid #2463EB;
}

.product-tabs__tab--active {
    color: #2463EB;
    border-bottom: 2px solid #2463EB;
}

/* Tabs Content */
.product-tabs__content {
    position: relative;
}

.product-tabs__panel {
    display: none;
}

.product-tabs__panel--active {
    display: block;
}

/* Tabs Header (Title + Description) */
.product-tabs__header {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 24px;
    max-width: 680px;
}

.product-tabs__title {
    font-family: 'Actay Wide', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 120%;
    color: #0B0C0E;
}

.product-tabs__description {
    max-width: 100%;
}

/* Characteristics Grid */
.product-tabs__grid {
    display: flex;
    gap: 32px;
}

.product-tabs__column {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-tabs__item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid #E7E7E7;
}

.product-tabs__item:first-child {
    padding: 16px 0;
}

.product-tabs__label {
    font-size: 16px;
    font-weight: 600;
    line-height: 140%;
    color: #0b0c0e66;
    flex-shrink: 0;
    max-width: 50%;
    width: 100%;
}

.product-tabs__value {
    font-size: 16px;
    font-weight: 600;
    line-height: 140%;
    color: #0B0C0E;
    text-align: right;
}

/* Delivery Tab Styles */
.product-tabs__delivery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;

}

.product-tabs__delivery-block {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 671px;
    width: 100%;
}

/* Universal Subtitle for Tabs */
.product-tabs__subtitle {
    font-family: 'Actay Wide', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 120%;
    text-transform: uppercase;
    color: #BDC3CE;
}

.product-tabs__delivery-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-tabs__delivery-content p {
    font-size: 16px;
    font-weight: 500;
    line-height: 140%;
    color: #0B0C0E;
}

.product-tabs__delivery-content ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-tabs__delivery-content ul li {
    font-size: 16px;
    font-weight: 500;
    line-height: 140%;
    color: #0B0C0E;
}

/* Application Tab Styles */
.product-tabs__header--application {
    max-width: 100%;
}

.product-tabs__application-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.product-tabs__application-block {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: calc(50% - 16px);
}

.product-tabs__application-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-tabs__application-list li {
    font-size: 16px;
    font-weight: 600;
    line-height: 140%;
    color: #0B0C0E;
}

.product-tabs__application-text p {
    font-size: 16px;
    font-weight: 500;
    line-height: 140%;
    color: #0B0C0E;
}

/* ============================================
   MEDIA QUERIES
   ============================================ */

/* Desktop - Large (1310px - 1200px) */
@media (max-width: 1310px) {
    .product__image {
        width: 470px;
        max-height: 470px;
    }

    .product__image img {
        object-fit: contain;
        max-width: 397px;
        height: 420px;
    }

    .product__order {
        gap: 15px;
        margin-top: 15px;
    }
}

/* Tablet - Large (1200px - 1100px) */
@media (max-width: 1200px) {
    .product {
        padding: 50px 0 70px 0;
    }

    .product__content {
        gap: 40px;
    }

    .product__image {
        width: 380px;
        height: 460px;
        padding: 24px;
    }

    .product__wrapper {
        gap: 24px;
    }

    .product__info {
        gap: 24px;
    }

    .product__order {
        gap: 24px;
    }

    .product__price {
        font-size: 24px;
    }

    .product__spec-label,
    .product__spec-value {
        font-size: 15px;
    }

    .product-tabs {
        padding: 50px 0;
    }

    .product-tabs__nav {
        gap: 28px;
        margin-bottom: 40px;
    }

    .product-tabs__title {
        font-size: 26px;
    }

    .product-tabs__description {
        margin-bottom: 32px;
    }

    .product-tabs__grid {
        gap: 50px;
    }

    .product-tabs__label,
    .product-tabs__value {
        font-size: 15px;
    }

    .product-tabs__delivery-grid {
        gap: 28px;
    }

    .product-tabs__delivery-block {
        width: calc(50% - 14px);
    }

    .product-tabs__delivery-content p,
    .product-tabs__delivery-content ul li {
        font-size: 15px;
    }

    .product-tabs__application-grid {
        gap: 28px;
    }

    .product-tabs__application-block {
        width: calc(50% - 14px);
    }

    .product-tabs__application-list li,
    .product-tabs__application-text p {
        font-size: 15px;
    }
}

/* Tablet - Medium (1100px - 900px) */
@media (max-width: 1100px) {
    .product {
        padding: 50px 0 70px 0;
    }

    .product__content {
        gap: 40px;
    }

    .product__image {
        width: 320px;
        height: 460px;
        padding: 24px;
    }

    .product__wrapper {
        gap: 24px;
        padding: 0;
    }

    .product__info {
        gap: 24px;
    }

    .product__specs {
        max-width: 100%;
    }

    .product__order {
        gap: 24px;
    }

    .product__price {
        font-size: 24px;
    }

    .product__spec-label,
    .product__spec-value {
        font-size: 15px;
    }

    .product-tabs {
        padding: 50px 0;
    }

    .product-tabs__nav {
        gap: 28px;
        margin-bottom: 40px;
    }

    .product-tabs__title {
        font-size: 26px;
    }

    .product-tabs__description {
        margin-bottom: 32px;
    }

    .product-tabs__grid {
        gap: 50px;
    }

    .product-tabs__label,
    .product-tabs__value {
        font-size: 15px;
    }

    .product-tabs__delivery-grid {
        gap: 24px;
    }

    .product-tabs__delivery-block {
        width: calc(50% - 12px);
    }

    .product-tabs__delivery-content p,
    .product-tabs__delivery-content ul li {
        font-size: 15px;
    }

    .product-tabs__application-grid {
        gap: 24px;
    }

    .product-tabs__application-block {
        width: calc(50% - 12px);
    }

    .product-tabs__application-list li,
    .product-tabs__application-text p {
        font-size: 15px;
    }

    .product__btn-consultation {
        font-size: 13px;
    }
}

/* Mobile (≤900px) */
@media (max-width: 900px) {
    .product {
        padding: 40px 0 60px 0;
    }

    .product__content {
        flex-direction: column;
        gap: 40px;
    }

    .product__image {
        width: 100%;
        max-width: 500px;
        height: 500px;
        margin: 0 auto;
    }

    .product__wrapper {
        gap: 32px;
    }

    .product__info {
        gap: 28px;
    }

    .product__order {
        gap: 28px;
    }

    .product__price {
        font-size: 28px;
    }

    .product-tabs {
        padding: 50px 0;
    }

    .product-tabs__nav {
        gap: 24px;
        margin-bottom: 36px;
        overflow-x: auto;
    }

    .product-tabs__title {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .product-tabs__description {
        margin-bottom: 28px;
    }

    .product-tabs__grid {
        flex-direction: column;
        gap: 0;
    }

    .product-tabs__item {
        padding: 20px 0;
    }

    .product-tabs__delivery-grid {
        gap: 24px;
    }

    .product-tabs__delivery-block {
        width: 100%;
    }

    .product-tabs__application-grid {
        gap: 24px;
    }

    .product-tabs__application-block {
        width: 100%;
    }
}

/* Mobile - Small (≤600px) */
@media (max-width: 600px) {
    .product {
        padding: 32px 0 50px 0;
    }

    .product__content {
        gap: 32px;
    }

    .product__image {
        height: 450px;
        padding: 20px;
    }

    .product__wrapper {
        gap: 32px;
    }

    .product__info {
        gap: 20px;
    }

    .product__order {
        gap: 20px;
    }

    .product__actions {
        flex-direction: column;
    }

    .product__btn {
        width: 228px;
    }

    .product__btn-consultation {
        height: 42px;
    }

    .product__description {
        font-size: 14px;
    }

    .product__specs {
        gap: 12px;
    }

    .product__spec-item {
        padding-bottom: 12px;
    }

    .product__spec-label,
    .product__spec-value {
        font-size: 14px;
    }

    .product__price {
        font-size: 24px;
    }

    .product__price-note {
        font-size: 13px;
    }

    .product-tabs {
        padding: 40px 0;
    }

    .product-tabs__nav {
        gap: 20px;
        margin-bottom: 32px;
    }

    .product-tabs__tab {
        font-size: 14px;
        padding-bottom: 12px;
        width: auto;
    }

    .product-tabs__title {
        font-size: 22px;
    }

    .product-tabs__description {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .product-tabs__item {
        padding: 16px 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .product-tabs__label,
    .product-tabs__value {
        font-size: 14px;
    }

    .product-tabs__value {
        text-align: left;
    }

    .product-tabs__delivery-grid {
        gap: 20px;
    }

    .product-tabs__delivery-block {
        width: 100%;
    }

    .product-tabs__delivery-content p,
    .product-tabs__delivery-content ul li {
        font-size: 14px;
    }

    .product-tabs__application-grid {
        gap: 20px;
    }

    .product-tabs__application-block {
        width: 100%;
    }

    .product-tabs__application-list li,
    .product-tabs__application-text p {
        font-size: 14px;
    }
}

/* Mobile - Extra Small (≤400px) */
@media (max-width: 400px) {
    .product {
        padding: 28px 0 40px 0;
    }

    .product__content {
        gap: 28px;
    }

    .product__image {
        height: 400px;
        padding: 16px;
    }

    .product__wrapper {
        gap: 28px;
    }

    .product__info {
        gap: 20px;
    }

    .product__order {
        gap: 24px;
    }

    .product__price {
        font-size: 22px;
    }

    .product-tabs {
        padding: 32px 0;
    }

    .product-tabs__nav {
        gap: 16px;
        margin-bottom: 28px;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .product-tabs__nav::-webkit-scrollbar {
        display: none;
    }

    .product-tabs__tab {
        font-size: 12px;
        padding-bottom: 10px;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .product-tabs__title {
        font-size: 20px;
    }

    .product-tabs__item {
        padding: 14px 0;
    }

    .product-tabs__delivery-grid {
        gap: 20px;
    }

    .product-tabs__delivery-block {
        width: 100%;
    }

    .product-tabs__application-grid {
        gap: 20px;
    }

    .product-tabs__application-block {
        width: 100%;
    }
}

/* ============================================
   PRODUCT CONTACT FORM SECTION
   ============================================ */

.product-contact {
    position: relative;
    padding: 80px 0;
    background: #132042;
    overflow: hidden;
    margin-top: 88px;
}

.product-contact__pattern {
    position: absolute;
    top: 0;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.1;
    pointer-events: none;
    z-index: 1;
}

.product-contact__pattern--1,
.product-contact__pattern--2 {
    width: 280px;
    height: 145px;
}

.product-contact__pattern--1 {
    right: 0;
    background-position: top right;
}

.product-contact__pattern--2 {
    right: 280px;
    background-position: top left;
}

.product-contact__inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 56px;
}

.product-contact__header {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.product-contact__title {
    max-width: 100%;
}

.product-contact__body {
    display: flex;
    gap: 56px;
    align-items: start;
}

.product-contact__image {
    width: 660px;
    height: 405px;
    overflow: hidden;
    flex-shrink: 0;
}

.product-contact__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-contact__content {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* Product Form Styles */
.product-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.product-form__group {
    width: 100%;
}

.product-form__input,
.product-form__textarea {
    width: 100%;
    padding: 16px 12px;
    background: #ffffff0d;
    border: none;
    outline: none;
    font-size: 16px;
    font-weight: 500;
    line-height: 140%;
    color: #fff;
    height: 51px;
}

.product-form__input::placeholder,
.product-form__textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.product-form__textarea {
    resize: vertical;
    min-height: 100px;
}

/* Product Checkbox */
.product-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    user-select: none;
}

.product-checkbox__input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.product-checkbox__box {
    position: relative;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background: #ffffff0d;
    border: none;
    transition: background 0.3s ease;
}

.product-checkbox__box::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 12px;
    height: 12px;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 3L4.5 8.5L2 6' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.2s ease;
}

.product-checkbox__input:checked+.product-checkbox__box {
    background: #4778f5;
    border: none;
}

.product-checkbox__input:checked+.product-checkbox__box::after {
    transform: translate(-50%, -50%) scale(1);
}

.product-checkbox__text {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.product-form__submit {
    align-self: flex-start;
}

/* ============================================
   PRODUCT CONTACT FORM - MEDIA QUERIES
   ============================================ */

/* Tablet - Large (1310px - 1200px) */
@media (max-width: 1310px) {
    .product-contact {
        padding: 80px 0;
    }

    .product-contact__inner {
        gap: 50px;
    }

    .product-contact__body {
        gap: 60px;
    }

    .product-contact__image {
        width: 580px;
        height: 360px;
    }
}

/* Tablet - Medium (1200px - 1100px) */
@media (max-width: 1200px) {
    .product-contact {
        padding: 70px 0;
    }

    .product-contact__inner {
        gap: 40px;
    }

    .product-contact__body {
        gap: 50px;
    }

    .product-contact__image {
        width: 520px;
        height: 320px;
    }
}

/* Tablet - Small (1100px - 900px) */
@media (max-width: 1100px) {
    .product-contact {
        padding: 60px 0;
    }

    .product-contact__inner {
        gap: 36px;
    }

    .product-contact__body {
        gap: 40px;
    }

    .product-contact__image {
        width: 480px;
        height: 300px;
    }
}

/* Mobile (≤900px) */
@media (max-width: 900px) {
    .product-contact {
        padding: 50px 0;
    }

    .product-contact__inner {
        gap: 36px;
    }

    .product-contact__body {
        flex-direction: column;
        gap: 36px;
    }

    .product-contact__image {
        width: 100%;
        height: 300px;
    }

    .product-form {
        gap: 14px;
    }
}

/* Mobile - Small (≤600px) */
@media (max-width: 600px) {
    .product-contact {
        padding: 40px 0;
    }

    .product-contact__inner {
        gap: 32px;
    }

    .product-contact__body {
        gap: 32px;
    }

    .product-contact__image {
        width: 100%;
        height: 250px;
    }

    .product-form__input,
    .product-form__textarea {
        padding: 14px 16px;
        font-size: 15px;
    }

    .product-checkbox__text {
        font-size: 13px;
    }
}

/* Mobile - Extra Small (≤400px) */
@media (max-width: 400px) {
    .product-contact {
        padding: 32px 0;
    }

    .product-contact__inner {
        gap: 28px;
    }

    .product-contact__body {
        gap: 28px;
    }

    .product-contact__image {
        width: 100%;
        height: 220px;
    }

    .product-form__input,
    .product-form__textarea {
        padding: 12px 14px;
        font-size: 14px;
    }

    .product-form__submit {
        width: 100%;
    }

    .product-checkbox__text {
        font-size: 12px;
    }
}

/* ============================================
   PRODUCT SIMILAR SECTION
   ============================================ */

.product-similar {
    padding-top: 120px;
    background-color: #fff;
}

.product-similar__header {
    display: flex;
    margin-bottom: 80px;
    gap: 143px;
}

.product-similar__header-top {
    width: auto;
}

.product-similar__header-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.product-similar__title {
    max-width: 850px;
}

.product-similar__description {
    max-width: 688px;
    margin-bottom: 16px;
}

.product-similar__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Product Similar Card */
.product-similar-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #F7F7F8;
    overflow: hidden;
    cursor: pointer;
}

.product-similar-card__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 24px 24px 0px;
}

.product-similar-card__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    line-height: 120%;
    color: #0B0C0E;

    border: 1px solid #d9d9d9;
    border-radius: 30px;
    padding: 4px 8px;

}

.product-similar-card__image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    padding: 44px 50px;
}

.product-similar-card__image img {
    height: auto;
    object-fit: contain;
}

.product-similar-card__info {
    font-family: "Actay Wide", sans-serif;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0 24px 24px 24px;
}

.product-similar-card__title {
    transition: color 0.3s ease;
    font-size: 16px;
    font-weight: 700;
    line-height: 120%;
    color: #0B0C0E;
    text-transform: uppercase;
}

.product-similar-card__price {
    font-style: italic;
    font-weight: 700;
    font-size: 16px;
    line-height: 120%;
    transition: color 0.3s ease;
    color: rgba(11, 12, 14, 0.5);
}

.product-similar-card:hover .product-similar-card__title {
    color: #4778f5;
}

.product-similar-card:hover .product-similar-card__price {
    color: rgba(71, 120, 245, 0.5);
}

/* ============================================
   PRODUCT SIMILAR - MEDIA QUERIES
   ============================================ */

/* Desktop - Large (1310px - 1200px) */
@media (max-width: 1310px) {
    .product-similar {
        padding: 80px 0;
    }

    .product-similar__header {
        margin-bottom: 50px;
    }

    .product-similar__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tablet - Medium (1200px - 1100px) */
@media (max-width: 1200px) {

    .product-similar-card__image {
        min-height: 260px;
    }

    .product-similar-card__title {
        font-size: 17px;
    }
}

/* Mobile (≤900px) */
@media (max-width: 900px) {

    .product-similar__header {
        margin-bottom: 36px;
        flex-direction: column;
        gap: 16px;
    }

    .product-similar__header-left {
        gap: 20px;
    }

    .product-similar__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .product-similar-card__image {
        min-height: 240px;
        padding: 32px 20px;
    }

    .product-similar-card__info {
        padding: 20px;
    }
}

/* Mobile - Small (≤600px) */
@media (max-width: 600px) {

    .product-similar__header {
        margin-bottom: 32px;
    }

    .product-similar-card__image {
        min-height: 220px;
        padding: 24px 16px;
    }

    .product-similar-card__info {
        padding: 16px;
    }
}

/* Mobile - Extra Small (≤400px) */
@media (max-width: 400px) {

    .product-similar__header-left {
        gap: 16px;
    }

    .product-similar-card__image {
        min-height: 200px;
        padding: 20px 12px;
    }

    .product-similar-card__title {
        font-size: 15px;
    }
}

/* ============================================
   PRODUCT - MEDIA QUERIES
   ============================================ */

.products__title--product {
    max-width: 100%;
}

@media (max-width: 900px) {
    .faq__item-number {
        max-width: auto;
        width: auto;
    }
}

/* ============================================
   ADD TO CART SECTION
   ============================================ */

.product__cart-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.product__quantity-controls {
    display: flex;
    align-items: center;
    gap: 16px;
}

.product__quantity-controls .quantity-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    padding: 4px;
    background: #fff;
}

.product__quantity-controls .quantity-controls__btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    color: #111;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.product__quantity-controls .quantity-controls__btn:hover {
    background: #F5F5F5;
    color: #21759b;
}

.product__quantity-controls .quantity-controls__btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.product__quantity-controls .quantity-controls__input {
    width: 60px;
    text-align: center;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: #111;
    -moz-appearance: textfield;
}

.product__quantity-controls .quantity-controls__input::-webkit-outer-spin-button,
.product__quantity-controls .quantity-controls__input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.product__add-more {
    white-space: nowrap;
}

.product__cart-message {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    text-align: center;
    animation: slideDown 0.3s ease;
}

.product__cart-message--success {
    background: #E8F5E9;
    color: #2E7D32;
    border: 1px solid #81C784;
}

.product__cart-message--error {
    background: #FFEBEE;
    color: #C62828;
    border: 1px solid #E57373;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .product__quantity-controls {
        flex-direction: column;
        align-items: stretch;
    }

    .product__quantity-controls .quantity-controls {
        justify-content: center;
    }
}