.container {
padding: 0;
max-width: 1200px;
}
:root {
    --primary-red: #FF3366;
    --dark-bg: #1a1a1a;
    --card-bg: #2a2a2a;
    --gray-bg: #3a3a3a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

body {
    font-family: "Open Sans", sans-serif;
    background: #303030;
    color: #fff;
}

/* Header */
.header {
    background-color: transparent;
    padding: 24px 0 24px;
    position: fixed;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    text-decoration: none;
    color: white;
}

.logo span {
    color: var(--primary-red);
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-left {
    max-width: 65%;
    width: 100%;
}

.header-left a,
.nav-menu {
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary-red);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 33px;
}
.header-right a span {
    font-weight: 600;
    font-size: 22px;
    color: #fff;
}
.phone {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.telegram-icon {
    color: #0088cc;
    display: flex;
    align-items: center;
    font-size: 24px;
}

.cart {
    color: white;
    text-decoration: none;
    font-size: 20px;
    display: flex;
    align-items: center;
    position: relative;
    gap: 9px;
}

/* Hero Section */
.hero {
    padding: 184px 0 27px;
    text-align: center;
    min-height: 664px;
}

.hero h1 {
    font-weight: 700;
    font-size: 70px;
    line-height: 120%;
    margin-bottom: 50px;
    text-align: center;
    color: #fff;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 85px;
}

.btn-primary-pink {
    background: #FE3360;
    color: white;
    border: none;
    padding: 12px 10px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 20px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    color: #fff;
    transition: all 0.3s;
    width: 100%;
    max-width: 307px;
}

.btn-primary-pink:hover {
    background: #ff1a54;
    transform: translateY(-2px);
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 48px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
}

.feature-item h5 {
    font-size: 14px;
    line-height: 130%;
    color: #fff;
    text-align: left;
}

/* Categories */
.categories-section {
    padding: 76px 0;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.category-card {
    background: white;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    min-height: 205px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 5px 15px;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255,51,102,0.3);
}

.category-card img {
    width: 100%;
    max-width: 114px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 15px;
}

.category-name {
    font-weight: 400;
    font-size: 20px;
    text-align: center;
    color: #000;
}

/* Products Section */
.products-section {
    padding: 0px 0 76px;
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
}

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

.product-card img,
.cards-item-content img {
    width: 100%;
    height: 100%;
    max-height: 250px;
    padding-top: 20px;
    object-fit: contain;
}

.product-card {
    background: white;
    border-radius: 12px;
    padding: 10px 10px 25px 10px;
    text-align: center;
    transition: transform 0.3s;
    color: #000;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-card a {
    color: #232323;
}
.btn-add-cart.add-to-cart {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.product-card:hover {
    transform: translateY(-5px);
}

input {
    background: transparent;
}

.product-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    margin-bottom: 15px;
}

.product-name {
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    color: #000;
}

.product-price {
    color: #232323;
    font-weight: 400;
    font-size: 24px;
    margin-bottom: 15px;
}

.btn-add-cart {
    background: var(--primary-red);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    width: 100%;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-add-cart:hover {
    background: #ff1a54;
}

.btn-add-cart i {
    margin-right: 5px;
}

/* Delivery Tariffs */
.delivery-tariffs {
    padding: 0px 0 76px;
}

.tariff-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.tariff-card {
    background: transparent;
    border: 2px solid var(--primary-red);
    border-radius: 12px;
    padding: 35px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.tariff-icon {
    font-size: 60px;
    color: var(--primary-red);
}

.tariff-content p {
    font-weight: 400;
    font-size: 20px;
    line-height: 130%;
    color: #fff;
    margin: 0;
    max-width: 350px;
}

/* Delivery Info Section */
.delivery-info-section {
    padding: 55px 40px;
    margin: 0 auto;
    max-width: 1200px;
}

.delivery-info-section h2 {
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 20px;
    color: #fff;
}

.delivery-info-section p {
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    color: #fff;
    margin-bottom: 40px;
    max-width: 656px;
}

.category-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.category-btn {
    border: 1px solid #acacac;
    border-radius: 10px;
    padding: 10px 15px;
    background: #fff;
    font-weight: 400;
    font-size: 16px;
    color: #706e6e;
    transition: all 0.3s ease;
}

.category-btn:hover {
    border: 1px solid transparent;
    background: #4b4a4a;
    color: #fff;
}

/* Advantages Section */
.advantages-section {
    padding: 60px 0;
}
.advantages-box {
    border-radius: 12px;
    padding: 50px;
    max-width: 100%;
    margin: 0 auto;
    background: #03030361;
    display: flex;
    gap: 40px;
    align-items: flex-start;
}
.advantages-left {
    flex: 0 0 40%;
    max-width: 319px;
}
.advantages-right {
    flex: 1;
}
.advantages-right p {
    color: #fff;
    font-size: 18px;
}
.advantages-right p:not(:last-child) {
    margin-bottom: 20px;
}
.advantages-title {
    font-weight: 700;
    font-size: 32px;
    color: #FE3360;
}
.advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    color: #333;
    font-size: 16px;
}
.advantage-item:last-child {
    margin-bottom: 0;
}
.advantage-item i {
    color: #e91e63;
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}
.advantage-item p {
    color: #000;
}

.add-cart img {
    max-width: 40px;
}

.text-section {
    padding: 60px 0;
}

.text-section h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.text-section p {
    font-size: 15px;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 15px;
}

/* Footer */
.warning-content {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #ff0000;
    box-shadow: 0 4px 11px 0 rgba(0, 0, 0, 0.11);
    padding: 27px 56px;
    margin-bottom: 24px;
}

.warning-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    color: #ff0000;
    flex-shrink: 0;
}

.warning-text h5 {
    font-weight: 800;
    font-size: 20px;
    color: #fff;
}

.warning-text p {
    font-size: 16px;
    color: #fff;
    font-weight: 400;
}

.footer {
    background: transparent;
    padding: 50px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 2fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-column h5 {
    font-size: 16px;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column a {
    font-weight: 400;
    font-size: 16px;
    color: #fff;
}

.footer-column a:hover {
    color: white;
}

.footer-phone {
    color: white;
    align-items: center;
    display: flex;
    justify-content: flex-end;
    gap: 13px;
    margin-bottom: 16px;
    margin-bottom: 10px;
}

.footer-column__last {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.footer-phone span {
    font-size: 20px;
}
.footer-phone svg,
.telegram-icon svg{
    display: none;
}
.contacts-btn {
    background: transparent;
    border: 1px solid white;
    color: white;
    padding: 10px 30px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
}

.contacts-btn:hover {
    background: white;
    color: #000;
}

/* Scroll to top button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.3s;
    z-index: 1000;
}

.scroll-top i {
    transition: all 0.3s;
    color: #868686;
}

.scroll-top:hover {
    background: var(--primary-red);
    color: white;
}
.scroll-top:hover i {
    color: #fff;
    transition: all 0.3s;
}

/* Responsive */
@media (max-width: 1200px) {
    .product-grid, .category-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media screen and (max-width: 1023px) {
    .header-left {
        max-width: 75%;
    }
}

@media (max-width: 859px) { 
    .header {
        padding: 24px 15px 0; 
    }
    .header-right {
        gap: 10px;
    }
    .footer {
        padding: 50px 15px 30px;
    }
}

@media (max-width: 992px) {
    .phone span {
        display: none;
    }
    .main-menu {
        display: none;
    }
    .advantages-box {
        flex-direction: column;
    }
    .advantages-left {
        flex: 0 0 40%;
        max-width: 100%;
        text-align: center;
    }
}

@media (max-width: 860px) {
    .products-section {
        padding: 0px 15px 76px;
    }
    .text-section {
        padding: 60px 15px;
    }
    .categories-section {
        padding: 76px 15px;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        padding: 0px 15px;
    }
    .features {
        padding: 0 15px;
        gap: 20px;
        grid-template-columns: repeat(3, 1fr);
    }
    .tariff-card {
        justify-content: center;
    }
    .tariff-cards {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
        margin-top: 40px;
    }
    .delivery-tariffs {
        padding: 0px 15px 76px;
    }
    .advantages-section {
        padding: 60px 15px;
    }
    .delivery-info-section {
        margin: 0 15px;
    }
}

@media (max-width: 768px) {
    .warning-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 27px 24px;
    }
    .advantage-item i {
        font-size: 16px;
        margin-top: 4px;
    }
    .advantage-item {
        font-size: 14px;
    }
    .advantages-box {
        padding: 28px;
    }
    .delivery-info-section {
        padding: 24px 21px;
    }
    .tariff-content p {
        font-size: 16px;
    }
    .tariff-icon svg {
        max-width: 72px;
    }
    .tariff-card {
        padding: 20px;
    }
    .section-title {
        font-size: 32px;
    }
    .product-price {
        font-size: 20px;
    }
    .category-card {
        min-width: 100%;
        width: 100%;
        min-height: 185px;
    }
    .category-name {
        font-size: 16px;
    }
    .footer-column__last {
        align-items: center;
    }
    .header-right a svg,
    .header-right a img {
        max-width: 36px;
    }
    .header-right a span {
        font-size: 18px;
    }
    .btn-primary-pink {
        max-width: 260px;
        padding: 8px 10px;
    }
    .hero h1 {
        font-size: 32px;
    }
    
    .features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-grid, .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tariff-cards {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        display: flex;
        flex-wrap: wrap;
        gap: 43px;
    }
    .footer-column:first-child {
        width: 100%;
        max-width: 100%;
    }
    .footer-column:nth-child(2),
    .footer-column:nth-child(3),
    .footer-column:nth-child(4) {
        max-width: 25%;
        width: 100%;
    }
}

.header-left {
    display: flex;
    align-items: center;
    gap: 37px;
}
.header.show {
    padding: 20px 15px;
    background: #000000ed;
}
.cards-item__title span {
    color: #232323;
}

/* burger */

 .burger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.burger-btn span {
    display: block;
    width: 100%;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    transition: all 0.3s ease;
    position: absolute;
}

.burger-btn span:nth-child(1) {
    top: 6px;
}

.burger-btn span:nth-child(2) {
    top: 16px;
}

.burger-btn span:nth-child(3) {
    top: 26px;
}

.burger-btn.active span:nth-child(1) {
    top: 16px;
    transform: rotate(45deg);
    background: #FF3366;
}

.burger-btn.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.burger-btn.active span:nth-child(3) {
    top: 16px;
    transform: rotate(-45deg);
    background: #FF3366;
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    max-width: 85%;
    height: 100vh;
    background: rgb(0 0 0 / 82%);
    z-index: 1000;
    padding: 80px 30px 30px;
    overflow-y: auto;
    transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu li {
    margin-bottom: 25px;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.3s ease;
}

.mobile-menu.active li {
    opacity: 1;
    transform: translateX(0);
}

.mobile-menu.active li:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active li:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active li:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active li:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.active li:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu.active li:nth-child(6) { transition-delay: 0.35s; }
.mobile-menu.active li:nth-child(7) { transition-delay: 0.4s; }

.mobile-menu > ul > li > a,
.mobile-menu .static-dropdown-menu > li > a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    padding: 12px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    justify-content: space-between;
}

.mobile-menu > ul > li > a::before,
.mobile-menu .static-dropdown-menu > li > a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: #FF3366;
    transform: translateX(-4px);
    transition: transform 0.3s ease;
}

.mobile-menu > ul > li > a:hover,
.mobile-menu .static-dropdown-menu > li > a:hover {
    background: rgba(255, 51, 102, 0.1);
    padding-left: 25px;
}

.mobile-menu > ul > li > a:hover::before,
.mobile-menu .static-dropdown-menu > li > a:hover::before {
    transform: translateX(0);
}

.mobile-menu .static-dropdown-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu .static-dropdown-menu > li {
    position: relative;
    margin-bottom: 10px;
}

.mobile-menu .static-dropdown-menu > li > a::after {
    content: "▾";
    font-size: 16px;
    transition: transform 0.3s ease, color 0.3s ease;
    color: #fff;
    margin-left: auto;
}

.mobile-menu .static-dropdown-menu > li.active > a::after {
    transform: rotate(180deg);
    color: #FF3366;
}

.mobile-menu .static-dropdown-menu li ul {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-top: 5px;
}

.mobile-menu .static-dropdown-menu > li.active > ul {
    max-height: 1000px;
    padding: 10px 0;
}

.mobile-menu .static-dropdown-menu li ul li {
    margin-bottom: 0;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.3s ease;
}

.mobile-menu .static-dropdown-menu > li.active > ul li {
    opacity: 1;
    transform: translateX(0);
}

.mobile-menu .static-dropdown-menu li ul li a {
    display: block;
    padding: 10px 20px;
    color: #fff;
    font-weight: 400;
    font-size: 16px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s;
    margin: 0 10px;
}

.mobile-menu .static-dropdown-menu li ul li a:hover {
    background: #FF3366;
    color: #fff;
}

.mobile-menu .static-dropdown-menu li ul li a::before {
    display: none;
}

.mobile-menu-contacts {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-menu-phone:hover {
    background: rgba(255, 51, 102, 0.1);
}

.mobile-menu-phone svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 992px) {
    .main-menu {
        display: none;
    }

    .burger-btn,
    .mobile-menu,
    .mobile-menu-overlay {
        display: block;
    }

    .header-left {
        max-width: 75%;
    }

    .phone span {
        display: none;
    }
}

@media (max-width: 768px) {
    .header-right {
        gap: 15px;
    }

    .mobile-menu {
        width: 280px;
    }

}

.burger-btn.burger-btn-desktop {
    display: block;
    width: 30px;
    height: 30px;
}
.burger-btn.burger-btn-desktop span {
    height: 2px;
}
.burger-btn.burger-btn-desktop span:nth-child(1) {
    top: 5px;
}
.burger-btn.burger-btn-desktop span:nth-child(2) {
    top: 14px;
}
.burger-btn.burger-btn-desktop span:nth-child(3) {
    top: 23px;
}
.main-menu-desktop-btn {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}
.main-menu-desktop-btn p {
    color: #fff;
}