:root {
/* Основной акцентный цвет (желто-оранжевый) */
--color-primary: #ffb41f;

/* Основной акцентный цвет (желто-оранжевый) */
--color-primary-dark: #b68015;

/* Средний фиолетовый цвет */
--color-secondary: #7e34af;

/* Темно-фиолетовый цвет */
--color-dark: #500078;

/* Градиент от среднего фиолетового до темно-фиолетового */
--gradient-base: linear-gradient(to right, #7e34af, #500078);

--font-dela-gothic: 'Dela Gothic One', sans-serif;
--font-prosto-one: 'Prosto One', sans-serif;
}

.color-primary{
    color: var(--color-primary);
}

/* Подключение шрифта */
@font-face {
    font-family: 'Dela Gothic One';
    src: url('../fonts/DelaGothicOne-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Prosto One';
    src: url('../fonts/ProstoOne-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

.background-dark {
    background-color: #2b303a;
    opacity: 0.85;
    backdrop-filter: blur(5px);
    border-radius: 8px;
    padding: 15px;
}

.header-logo img {
    width: 75%;
    height: auto;
}


/*********************/
/* Hero Slider */
/*********************/

/* Основной контейнер слайдера - 100vh */
.hero-single-slider-item {
    min-height: 100vh; /* 100% высоты экрана */
    position: relative;
    display: flex;
    align-items: center;
}

@media (max-width: 991px) {
    .hero-single-slider-item {
        min-height: 100vh;
        align-items: flex-start;
    }
}

@media (max-width: 767px) {
    .hero-single-slider-item {
        min-height: 100vh;
    }
}

/* Фоновое изображение */
.hero-slider-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slider-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Wrapper для контента */
.hero-slider-wrapper {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 60px 0;
}

@media (max-width: 991px) {
    .hero-slider-wrapper {
        padding: 40px 0 60px;
    }
}

@media (max-width: 767px) {
    .hero-slider-wrapper {
        padding: 30px 0 50px;
    }
}

/* Основной контент слева */
.hero-slider-content {

    position: relative;
    z-index: 2;
}

.hero-slider-content .subtitle {
    font-family: 'Prosto One', sans-serif;
    font-size: clamp(12px, 2vw, 20px);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.hero-slider-content .title {
    font-size: clamp(26px, 5vw, 48px);
    font-family: 'Prosto One', sans-serif;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-slider-content .btn {
    outline: none;
    margin-top: 25px;
}

/* Блок справа */
.hero-slider-content-1 {
    position: relative;
    z-index: 2;
    width: 100%;
}

@media (max-width: 991px) {
    .hero-slider-content-1 {
        margin-top: 2rem;
    }
}

/* Левая колонка с преимуществами */
.left-col {

    position: relative;
    padding-left: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (max-width: 991px) {
    .left-col {
        padding-left: 0;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
}

.left-col h4 {
    font-family: 'Prosto One', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    line-height: 1;
    color: white;
    margin-bottom: 0.25rem;
}

.left-col p {
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    font-weight: 300;
    color: #ffffff;
    margin: 0;
}

/* Пунктирная линия */
.list-item {
    position: relative;
}

.list-item::before {
    content: '';
    position: absolute;
    left: -1rem;
    top: 0;
    bottom: 0;
    width: 4px;  /* ← ТОЛЩИНА ЛИНИИ */
    /* Стиль пунктирной линии */
    background-image: linear-gradient(to bottom, #fff 5px, transparent 6px);
    /*                                            ↑              ↑
                                               ЦВЕТ          ДЛИНА ШТРИХА
                                              ЛИНИИ         (видимая часть)
    */
    background-size: 100% 15px;  /* ← ОБЩАЯ ДЛИНА СЕГМЕНТА (штрих + пробел) */
    background-repeat: repeat-y;
}

.list-item:first-child::before {
    top: 1rem;
}

@media (max-width: 991px) {
    .list-item::before {
        display: none;
    }
}

/* Правая колонка с промо */
.right-col {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    min-height: 300px;
    padding: 1rem;
}

@media (max-width: 991px) {
    .right-col {
        min-height: 250px;
    }
}

@media (max-width: 767px) {
    .right-col {
        min-height: 200px;
        padding: 0.5rem;
    }
}

/* Блок с акцией */
.promo-box {
    border-radius: 1rem;
    padding: 1.5rem;
    width: 100%;
    max-width: 600px;
    text-align: center;
    border: 3px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.05);
    position: relative; /* ДОБАВЛЯЕМ для абсолютного позиционирования метки */
    overflow: visible; /* ДОБАВЛЯЕМ чтобы метка могла выходить за границы */
}

@media (max-width: 767px) {
    .promo-box {
        padding: 1rem;
        border-width: 2px;
    }
}

/* Желтая метка "Весь октябрь" */
.promo-label {
    background-color: #ffc107;
    color: #333;
    font-weight: 700;
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    font-size: clamp(1rem, 2vw, 1.125rem);
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.5);
    position: absolute;
    left: -1.5rem; /* Выходит за левую границу */
    margin: 0; /* Убираем старые отступы */
}

@media (max-width: 767px) {
    .promo-label {
        left: -1rem;
        padding: 0.4rem 1rem;
    }
}

/* Добавляем отступ сверху для основного контента промо-бокса */
.promo-box .d-flex {
    margin-top: 1rem; /* Чтобы компенсировать пространство от метки */
}

.promo-percent {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 1;
    color: #ffe599;
    text-shadow: 0 0 10px #ffc107,
                 0 0 30px #ffc107,
                 0 0 50px rgba(255, 193, 7, 0.7);
    margin-bottom: 0.5rem;
}

.promo-subtext {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-weight: 400;
    color: #fff;
    margin-bottom: 0;
    text-align: right;
    padding-right: 1rem;
}

@media (max-width: 767px) {
    .promo-subtext {
        padding-right: 0.5rem;
    }
}



/* Стили для фильтров каталога */
.filter-checkbox {
    cursor: pointer;
}

.form-check {
    margin-bottom: 10px;
}

.form-check-input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    cursor: pointer;
}

.form-check-input:checked {
    background-color: #d4af37;
    border-color: #d4af37;
}

.form-check-label {
    cursor: pointer;
    font-size: 14px;
    margin-left: 8px;
    user-select: none;
}

.form-select,
.form-control {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 8px 12px;
    font-size: 14px;
}

.form-select:focus,
.form-control:focus {
    border-color: #d4af37;
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

/* Активные фильтры */
.active-filters {
    padding: 15px;

    border-radius: 8px;
}

.active-filters h6 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
}

/* Кнопки фильтров */
.btn-black-default-hover {
    transition: all 0.3s ease;
}

.btn-black-default-hover:hover {
    background-color: #d4af37;
    border-color: #d4af37;
    color: white;
}

/* Сообщение "товары не найдены" */
.alert-info {
    border-radius: 8px;
    padding: 30px;
}

.alert-info h4 {
    margin-bottom: 15px;
}


/***************************************/
/** Кастомная карточка товара ********/
/**************************************/

.product-card-custom {
    background: transparent;
    overflow: visible;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Контейнер изображения В КАРТОЧКЕ */
.product-card-custom .product-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 75%; /* Соотношение сторон 4:3 */
    overflow: hidden;
    background: #f8f8f8;
    border-radius: 12px;
    margin-bottom: 16px;
}

.product-card-custom .product-image-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.product-card-custom .product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    border-radius: 12px;
}

.product-card-custom .product-image-wrapper:hover .product-image {
    transform: scale(1.1);
}

/* Бейджи */
.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 2;
}

.product-badge span {
    display: inline-block;
    padding: 6px 12px;
    background: #ffc107;
    color: #000;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.badge-hit {
    background: #ffc107 !important;
}

.badge-new {
    background: #feffff !important;
    color: #ffc625 !important;
}

.badge-sale {
    background: #cacaca !important;
    color: #982acf !important;
}

/* Кнопка быстрого просмотра */
.product-quickview {
    position: absolute;
    top: 12px;
    right: 12px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 2;
}

.product-card-custom:hover .product-quickview {
    opacity: 1;
    transform: translateY(0);
}

.quickview-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    color: #333;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.quickview-btn:hover {
    background: #ffc107;
    color: #000;
    transform: scale(1.1);
}

/* Информация о товаре */
.product-info-custom {
    padding: 0;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Строка с категорией и рейтингом */
.product-category-rating-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.product-category-text {
    font-size: 13px;
    color: #888;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Рейтинг звездами */
.review-star-custom {
    display: flex;
    gap: 2px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.review-star-custom li {
    font-size: 14px;
    line-height: 1;
}

.review-star-custom li.fill i {
    color: #ffc107;
}

.review-star-custom li.empty i {
    color: #d0d0d0;
}

.product-title-custom {
    font-size: 18px;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.product-title-custom a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-title-custom a:hover {
    color: #ffc107;
}

.product-price-custom {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 16px 0;
    color: #ffc107 !important;
}

.old-price-custom {
    font-size: 16px;
    color: #999;
    margin-right: 8px;
    font-weight: 400;
}

.current-price-custom {
    color: #ffc107;
}

/* Кнопка заказа */
.btn-order-custom {
    width: 100%;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    text-transform: none;
    letter-spacing: 0.3px;
    border: 2px solid #ffc107;
    color: #000;
    background: transparent;
    transition: all 0.3s ease;
    margin-top: auto;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
}

.btn-text {
    font-weight: 700;
    color: #000;
}

.btn-arrow {
    display: inline-block;
    transition: transform 0.3s ease;
    font-size: 18px;
    font-weight: 700;
    color: #000;
}

.btn-order-custom:hover {
    border-color: #ffc107;
    box-shadow: 0 4px 16px rgba(255, 193, 7, 0.4);
    color: #000;
}

.btn-order-custom:hover .btn-arrow {
    transform: translateX(4px);
}

/* Адаптивность карточек */
@media (max-width: 768px) {
    .product-title-custom {
        font-size: 16px;
        min-height: auto;
    }

    .product-price-custom {
        font-size: 20px;
    }

    .btn-order-custom {
        padding: 10px 20px;
        font-size: 13px;
    }

    .product-card-custom .product-image-wrapper {
        border-radius: 8px;
    }

    .product-card-custom .product-image {
        border-radius: 8px;
    }

    .product-category-text {
        font-size: 11px;
    }

    .review-star-custom li {
        font-size: 12px;
    }
}


/* =======================================
   BREADCRUMB С ФОНОВЫМ ИЗОБРАЖЕНИЕМ
   ======================================= */

.breadcrumb-with-image {
    position: relative;
}

/* Фоновое изображение */
.breadcrumb-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.breadcrumb-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Затемнение фона */
.breadcrumb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

/* Контент поверх изображения */
.breadcrumb-with-image .breadcrumb-wrapper {
    position: relative;
    z-index: 2;
}

/* Заголовок с жёлтым свечением */
.breadcrumb-title-glow {
    color: #ffffff;
    text-shadow:

        0 0 30px var(--color-primary),
        0 0 40px rgba(255, 180, 31, 0.5);
}

/* Хлебные крошки с белым текстом и жёлтым свечением */
.breadcrumb-nav-glow ul li {
    color: #ffffff;
}

.breadcrumb-nav-glow ul li a {
    color: #ffffff !important;

    transition: all 0.3s ease;
}

.breadcrumb-nav-glow ul li a:hover {
    color: var(--color-primary) !important;

}

.breadcrumb-nav-glow ul li.active {
    color: #ffffff !important;

}

/* Разделитель между крошками */
.breadcrumb-nav-glow ul li::after {
    color: #ffffff !important;
    text-shadow:
        0 0 5px var(--color-primary),
        0 0 10px rgba(255, 180, 31, 0.3);
}

/* Адаптивность breadcrumb */
@media (max-width: 768px) {
    .breadcrumb-title-glow {
        font-size: 24px;
        text-shadow:
            0 0 8px var(--color-primary),
            0 0 15px var(--color-primary),
            0 0 20px rgba(255, 180, 31, 0.5);
    }

    .breadcrumb-nav-glow ul li a {
        font-size: 13px;
        text-shadow:
            0 0 3px var(--color-primary),
            0 0 8px rgba(255, 180, 31, 0.3);
    }
}


/* =======================================
   PRODUCT GALLERY SLIDER - УЛУЧШЕННЫЙ
   ======================================= */

/* Общие стили для галереи */
.product-details-gallery-area {
    width: 100%;
    position: relative;
}

/* ============================================
   БОЛЬШОЕ ИЗОБРАЖЕНИЕ (ОСНОВНОЙ СЛАЙДЕР)
   ============================================ */

.product-large-image {
    width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: 16px;
    background: #f8f8f8;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    padding: 0 !important;
    margin: 0 !important;
}

.product-large-image .swiper-wrapper {
    padding: 0 !important;
    margin: 0 !important;
}

.product-large-image .swiper-slide {
    width: 100% !important;
    height: auto !important;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    padding: 0 !important;
    margin: 0 !important;
}

/* Обёртка изображения с кнопкой полноэкранного просмотра - ТОЛЬКО ДЛЯ ГАЛЕРЕИ */
.product-large-image .product-image-wrapper,
.product-single-image .product-image-wrapper {
    position: relative;
    width: 100%;
    padding: 0;
    margin: 0;
    display: block;
}

.product-large-image .product-image-wrapper img,
.product-single-image .product-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 16px;
    transition: none;
    margin: 0;
    padding: 0;
}

/* Кнопка полноэкранного просмотра */
.fullscreen-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.product-large-image .product-image-wrapper:hover .fullscreen-btn,
.product-single-image .product-image-wrapper:hover .fullscreen-btn {
    opacity: 1;
    transform: scale(1);
}

.fullscreen-btn:hover {
    background: var(--color-primary);
    transform: scale(1.1);
}

.fullscreen-btn i {
    font-size: 20px;
    color: #333;
}

.fullscreen-btn:hover i {
    color: #000;
}

/* Навигационные стрелки основного слайдера */
.product-slider-nav {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.product-slider-nav:hover {
    background: var(--color-primary);
    transform: scale(1.1);
}

.product-slider-nav::after {
    font-size: 18px;
    font-weight: 700;
    color: #333;
}

.product-slider-nav:hover::after {
    color: #000;
}

/* Пагинация основного слайдера */
.product-slider-pagination {
    bottom: 16px !important;
}

.product-slider-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #fff;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.product-slider-pagination .swiper-pagination-bullet-active {
    background: var(--color-primary);
    opacity: 1;
    width: 28px;
    border-radius: 5px;
}

/* ============================================
   МИНИАТЮРЫ (THUMBNAIL SLIDER)
   ============================================ */

.product-image-thumb {
    margin-top: 16px;
    padding: 8px 0;
}

.product-image-thumb .swiper-slide {
    opacity: 0.5;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
    border: 3px solid transparent;
}

.product-image-thumb .swiper-slide img {
    border-radius: 12px;
    transition: transform 0.3s ease;
    display: block;
    width: 100%;
    height: auto;
}

.product-image-thumb .swiper-slide:hover {
    opacity: 0.8;
}

.product-image-thumb .swiper-slide:hover img {
    transform: scale(1.05);
}

.product-image-thumb .swiper-slide-thumb-active {
    opacity: 1;
    border-color: var(--color-primary);
    box-shadow: 0 4px 12px rgba(255, 180, 31, 0.3);
}

/* Стрелки миниатюр */
.gallery-thumb-arrow {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-thumb-arrow:hover {
    background: var(--color-primary);
    transform: scale(1.1);
}

.gallery-thumb-arrow::after {
    font-size: 14px;
    color: #333;
}

.gallery-thumb-arrow:hover::after {
    color: #000;
}

/* ============================================
   ОДИНОЧНОЕ ИЗОБРАЖЕНИЕ
   ============================================ */

.product-single-image {
    width: 100%;
    max-width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    background: #f8f8f8;
    padding: 0;
    margin: 0;
}

/* ============================================
   ПОЛНОЭКРАННЫЙ ПРОСМОТР
   ============================================ */

.fullscreen-gallery {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.98);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.fullscreen-gallery.active {
    opacity: 1;
    visibility: visible;
}

/* Кнопка закрытия */
.fullscreen-gallery-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.fullscreen-gallery-close:hover {
    background: var(--color-primary);
    transform: rotate(90deg) scale(1.1);
}

.fullscreen-gallery-close i {
    font-size: 24px;
    color: #fff;
}

/* Контейнер полноэкранных изображений */
.fullscreen-gallery-container {
    width: 100%;
    height: 100%;
}

.fullscreen-gallery-container .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.fullscreen-gallery-container .swiper-slide img {
    max-width: 95%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

/* Навигация в полноэкранном режиме */
.fullscreen-nav {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.fullscreen-nav:hover {
    background: var(--color-primary);
    transform: scale(1.15);
}

.fullscreen-nav::after {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}

/* Счётчик слайдов */
.fullscreen-counter {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 24px;
    border-radius: 24px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    z-index: 10001;
    backdrop-filter: blur(10px);
}

/* ============================================
   АДАПТИВНОСТЬ ГАЛЕРЕИ
   ============================================ */

@media (max-width: 768px) {
    .product-large-image {
        border-radius: 12px;
    }

    .product-large-image .product-image-wrapper img,
    .product-single-image .product-image-wrapper img {
        border-radius: 12px;
    }

    .fullscreen-btn {
        width: 40px;
        height: 40px;
        top: 12px;
        right: 12px;
    }

    .fullscreen-btn i {
        font-size: 18px;
    }

    .product-slider-nav,
    .gallery-thumb-arrow {
        width: 36px;
        height: 36px;
    }

    .product-slider-nav::after,
    .gallery-thumb-arrow::after {
        font-size: 14px;
    }

    .product-image-thumb .swiper-slide {
        border-radius: 8px;
        border-width: 2px;
    }

    .product-image-thumb .swiper-slide img {
        border-radius: 8px;
    }

    .fullscreen-gallery-close {
        top: 16px;
        right: 16px;
        width: 48px;
        height: 48px;
    }

    .fullscreen-gallery-close i {
        font-size: 20px;
    }

    .fullscreen-nav {
        width: 48px;
        height: 48px;
    }

    .fullscreen-nav::after {
        font-size: 20px;
    }

    .fullscreen-counter {
        bottom: 24px;
        padding: 10px 20px;
        font-size: 14px;
    }

    .fullscreen-gallery-container .swiper-slide {
        padding: 40px 12px;
    }

    .fullscreen-gallery-container .swiper-slide img {
        max-width: 100%;
        max-height: 85vh;
    }
}

@media (max-width: 480px) {
    .product-large-image {
        border-radius: 8px;
    }

    .fullscreen-gallery-close {
        top: 12px;
        right: 12px;
        width: 40px;
        height: 40px;
    }

    .fullscreen-nav {
        width: 40px;
        height: 40px;
    }

    .fullscreen-counter {
        bottom: 16px;
        padding: 8px 16px;
        font-size: 13px;
    }
}

[data-aos] {
    opacity: 1 !important;
}