/* PRODUCT SECTION */
.product-section {
    position: relative;
    margin: 0 auto;
    padding-inline: 20px;
    justify-content: center;
    display: flex;
    align-items: center;
}

.product-inner-wrapper {
    width: 100%;
    height: auto;
    max-width: 1500px;
    padding: 60px 50px;
    background: linear-gradient(90deg, rgb(181 165 204) 0%, #c5b3d9 15%, #d4c4e3 30%, rgb(232 227 239) 50%, rgb(247 245 250) 70%, rgb(255, 255, 255) 100%);
    border-radius: 50px;
    position: relative;
    overflow: hidden;
}

.product-content-container {
    display: flex;
    flex-direction: column;
    position: relative;
    height: 100%;
}

.product-grid-wrapper {
    display: grid;
    grid-template-columns: 30% 70%;
    gap: 0;
    flex: 1;
    align-items: center;
}

/* LEFT SECTION - PANDA */
.product-left-section {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.product-panda-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-panda-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 5;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

.product-wave-svg {
    position: absolute;
    left: 80%;
    top: 15%;
    width: 200px;
    height: 120px;
    z-index: 6;
    pointer-events: none;
}

/* RIGHT SECTION - PRODUCTS */
.product-right-section {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.products-main-title {
    font-size: 48px;
    font-weight: 700;
    color: rgb(83 88 154);
    margin-bottom: 30px;
    line-height: 1.1;
    text-align: center;
    position: relative;
    z-index: 10;
}

/* SWIPER SLIDER */
.products-slider {
    width: 100%;
    padding-bottom: 60px;
    position: relative;
}

.products-slider .swiper-wrapper {
    align-items: stretch;
}

.products-slider .swiper-slide {
    height: auto;
}

/* PRODUCT CARDS */
.product-card-item {
    background-color: #ffffff;
    border-radius: 25px;
    padding: 25px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 2px solid rgb(83 88 154);
    max-width: 280px;
}

.product-card-item:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    border-color: #b8a5ce;
}

.product-img-container {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background-color: #fafafa;
    border-radius: 18px;
    padding: 20px;
}

.product-card-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-badge-group {
    display: flex;
    gap: 10px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.product-badge-item {
    padding: 8px 16px;
    border-radius: 18px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
}

.badge-age {
    background-color: #ead8f0;
    color: #7b4397;
}

.badge-pack {
    background-color: #d4f4dd;
    color: #2d7a3e;
}

.product-card-title {
    font-size: 20px;
    font-weight: 700;
    color: rgb(83 88 154);
    margin-bottom: 12px;
    line-height: 1.3;
}

.product-card-desc {
    font-size: 10px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.product-card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 18px;
    border-top: 2px solid #ebebf0;
    margin-top: auto;
    gap: 12px;
}

.product-card-price {
    font-size: 23px;
    font-weight: 700;
    color: rgb(83 88 154);
    white-space: nowrap;
    flex-shrink: 0;
}

.product-card-stores {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.store-logo {
    height: 13px;
    width: auto;
    object-fit: contain;
    transition: transform 0.2s ease;
    cursor: pointer;
}

.store-logo:nth-child(1) {
    margin-top: 2px;
    height: 15px;
}

.store-logo:nth-child(2) {
    height: 15px;
}

.store-logo:hover {
    transform: scale(1.15);
}

/* SWIPER NAVIGATION & PAGINATION */
.products-nav-next,
.products-nav-prev {
    width: 40px;
    height: 40px;
    background-color: rgb(83 88 154);
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
}

.products-nav-next:hover,
.products-nav-prev:hover {
    background-color: #3a3a7f;
    transform: scale(1.1);
}

.products-nav-next::after,
.products-nav-prev::after {
    font-size: 14px;
    font-weight: 900;
}

.products-nav-next {
    right: 10px;
}

.products-nav-prev {
    left: 10px;
}

.products-pagination {
    bottom: 20px !important;
    left: 50% !important;
    transform: translateX(-50%);
}

.products-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background-color: rgb(83 88 154);
    opacity: 0.3;
    transition: all 0.3s ease;
    margin: 0 5px !important;
}

.products-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    width: 35px;
    border-radius: 6px;
    background-color: rgb(83 88 154);
}

/* RESPONSIVE DESIGN */
@media (max-width: 1440px) {
    .product-inner-wrapper {
        padding: 50px 40px;
        
    }

    .products-main-title {
        font-size: 42px;
        margin-bottom: 35px;
    }

    .product-wave-svg {
        width: 180px;
        height: 100px;
    }

    .product-card-item {
        max-width: 500px;
        padding: 10px;
    }

    .product-img-container {
        height: 160px;
    }
}

@media (max-width: 1280px) {
    .product-content-container {
        grid-template-columns: 28% 72%;
    }

    .products-main-title {
        font-size: 38px;
    }

    .product-panda-wrapper {
        max-width: 280px;
    }
}

@media (max-width: 1024px) {
    .product-inner-wrapper {
        padding: 40px 30px;
        height: auto;
    }

    .product-content-container {
        grid-template-columns: 30% 70%;
    }

    .products-main-title {
        font-size: 34px;
        margin-bottom: 30px;
    }

    .product-panda-wrapper {
        max-width: 100%;
    }

    .product-wave-svg {
        width: 160px;
        height: 90px;
    }

    .product-card-item {
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .product-grid-wrapper {
        grid-template-columns: 100%;
        gap: 30px;
    }

    .product-section {
        height: auto;
    }

    .product-inner-wrapper {
        padding: 40px 25px;
        background: linear-gradient(180deg, #b8a5ce 0%, #c5b3d9 20%, #d4c4e3 40%, #e3d9ef 60%, #f0ebf7 80%, #faf8fc 100%);
        height: auto;
    }

    .product-left-section {
        height: auto;
        display: none;
    }

    .product-panda-wrapper {
        max-width: 220px;
        margin: 0 auto;
    }

    .product-wave-svg {
        display: none;
    }

    .products-main-title {
        font-size: 36px;
        margin-bottom: 55px;
    }

    .product-card-item {
        padding: 25px;
    }

    .product-img-container {
        height: 200px;
    }
}

@media (max-width: 640px) {
    .product-inner-wrapper {
        padding: 35px 20px;
        border-radius: 35px;
    }

    .product-panda-wrapper {
        max-width: 200px;
    }

    .products-main-title {
        font-size: 32px;
        margin-bottom: 25px;
    }

    .product-card-item {
        padding: 20px;
    }

    .product-img-container {
        height: 180px;
        padding: 18px;
    }

    .product-badge-item {
        font-size: 11px;
        padding: 7px 14px;
    }

    .product-card-title {
        font-size: 18px;
    }

    .product-card-desc {
        font-size: 11px;
    }

    .product-card-bottom {
        gap: 8px;
        flex-wrap: nowrap;
    }

    .product-card-price {
        font-size: 20px;
    }

    .product-card-stores {
        gap: 8px;
    }

    .store-logo {
        height: 12px;
    }

    .store-logo:nth-child(1),
    .store-logo:nth-child(2) {
        height: 13px;
    }
}

@media (max-width: 480px) {
    .product-inner-wrapper {
        padding: 30px 15px;
        border-radius: 30px;
    }

    .product-panda-wrapper {
        max-width: 180px;
    }

    .products-main-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .product-card-item {
        padding: 18px;
        max-width: 100%;
    }

    .product-img-container {
        height: 160px;
        padding: 16px;
    }

    .product-card-title {
        font-size: 16px;
    }

    .product-card-bottom {
        gap: 10px;
        padding-top: 15px;
    }

    .product-card-price {
        font-size: 18px;
    }

    .product-card-stores {
        gap: 6px;
    }

    .store-logo {
        height: 11px;
    }

    .store-logo:nth-child(1),
    .store-logo:nth-child(2) {
        height: 12px;
    }

    .products-nav-next,
    .products-nav-prev {
        display: none;
    }

    .products-nav-next::after,
    .products-nav-prev::after {
        font-size: 16px;
    }

    .products-pagination .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
    }

    .products-pagination .swiper-pagination-bullet-active {
        width: 28px;
    }
}

/* Extra small devices (under 375px) */
@media (max-width: 375px) {
    .product-card-item {
        padding: 15px;
    }

    .product-card-bottom {
        gap: 8px;
    }

    .product-card-price {
        font-size: 16px;
    }

    .store-logo {
        height: 10px;
    }

    .store-logo:nth-child(1),
    .store-logo:nth-child(2) {
        height: 11px;
    }
}