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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #FBF5E2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

a {
    text-decoration: none;
}

/* ===== HERO SECTION ===== */

.hero {
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.50) 0%, rgba(0, 0, 0, 0.50) 100%), url("../image/home_image.00d8bee41598.jpg") lightgray center / cover no-repeat;
    display: flex;
    padding: 30px 80px 100px 80px;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.hero-container {
    width: 100%;
    max-width: 1440px;
    min-height: calc(100vh - 130px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

/* ===== HEADER ===== */

.header {
    width: 100%;
    height: 99px;
    border-radius: 15px;
    background: #FFF;
    display: flex;
    align-items: center;
}

.header-inner {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 17px;
}

.logo {
    display: block;
    width: 65px;
    height: 65px;
    border-radius: 20px;
    background: #432F2E;
    flex-shrink: 0;
}

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: #432F2E;
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
}

.nav-link:hover {
    opacity: 0.7;
}

.btn-login {
    display: inline-flex;
    padding: 20px 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    border: 2px solid #432F2E;
    background: #FFD602;
    color: #432F2E;
    font-family: 'Unbounded', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    cursor: pointer;
    transition: background 0.5s;
}

.btn-login:hover {
    background: transparent;
}

.btn-account {
    display: flex;
    width: 60px;
    height: 60px;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 2px solid #432F2E;
    background: #FFD602;
    cursor: pointer;
    transition: background 0.5s;
}

.btn-account:hover {
    background: transparent;
}

.btn-account svg {
    width: 28px;
    height: 28px;
}

/* ===== HERO CONTENT ===== */

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

h1 {
    color: #FFF;
    text-align: center;
    font-family: 'Unbounded', sans-serif;
    font-size: 75px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -2.25px;
}

.hero-subtitle {
    color: #FFF;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%;
}

.btn-catalog {
    display: flex;
    width: 465px;
    height: 75px;
    padding: 20px 100px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 10px;
    background: #FFD602;
    color: #432F2E;
    font-family: 'Unbounded', sans-serif;
    font-size: 17px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    cursor: pointer;
    transition: opacity 0.5s;
}

.btn-catalog:hover {
    opacity: 0.85;
}

/* ===== КАТАЛОГ ===== */

.catalog-section {
    width: 100%;
    margin-top: 180px;
    padding: 0 80px;
    display: flex;
    justify-content: center;
}

.catalog-container {
    width: 100%;
    max-width: 1440px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.catalog-label {
    display: flex;
    align-items: center;
    align-self: start;
    gap: 10px;
    flex-shrink: 0;
}

.catalog-dot {
    width: 15px;
    height: 15px;
    border-radius: 100px;
    background: #432F2E;
}

.catalog-label-text {
    color: #432F2E;
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
}

.catalog-cards {
    grid-column: 2 / 4;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.catalog-card {
    display: flex;
    padding: 28px 25px;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    border-radius: 20px;
    border: 3px solid #432F2E;
    background: #FFD602;
    transition: background 0.5s;
}

.catalog-card:hover {
    background: transparent;
}

.catalog-card-name {
    color: #432F2E;
    font-family: 'Unbounded', sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.catalog-card-arrow {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #432F2E;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.catalog-card-arrow img {
    width: 20px;
    height: 20px;
}

/* ===== О НАС ===== */

.about-section {
    width: 100%;
    margin-top: 180px;
    padding: 0 80px;
    display: flex;
    justify-content: center;
}

.about-container {
    width: 100%;
    max-width: 1440px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.about-label {
    display: flex;
    align-items: center;
    align-self: start;
    gap: 10px;
}

.about-content {
    grid-column: 2 / 4;
    display: flex;
    flex-direction: column;
}

.about-title {
    align-self: stretch;
    color: #432F2E;
    font-family: 'Unbounded', sans-serif;
    font-size: 69px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
}

.about-texts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.about-text {
    width: 466px;
    color: #333;
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 60px;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.stat-top {
    display: flex;
    align-items: flex-end;
    gap: 10px;
}

.stat-number {
    align-self: stretch;
    color: #432F2E;
    font-family: 'Unbounded', sans-serif;
    font-size: 150px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.stat-unit {
    color: #432F2E;
    font-family: 'Unbounded', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.stat-desc {
    align-self: stretch;
    color: #333;
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 30px;
}

.btn-about {
    display: flex;
    height: 85px;
    padding: 20px 100px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    border-radius: 10px;
    border: 4px solid #432F2E;
    background: #FFD602;
    margin-top: 60px;
    color: #432F2E;
    font-family: 'Unbounded', sans-serif;
    font-size: 17px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    transition: background 0.5s;
}

.btn-about:hover {
    background: transparent;
}

/* ===== НАШИ ПРЕИМУЩЕСТВА ===== */

.advantages-section {
    width: 100%;
    margin-top: 180px;
    padding: 0 80px;
    display: flex;
    justify-content: center;
}

.advantages-wrapper {
    width: 100%;
    max-width: 1440px;
    background: #FFD602;
    border-radius: 40px;
    padding: 60px 20px 60px 20px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.advantages-label {
    display: flex;
    align-items: center;
    align-self: flex-start;
    gap: 20px;
    flex-shrink: 0;
}

.advantages-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 926px;
}

.advantages-title {
    color: #432F2E;
    font-family: 'Unbounded', sans-serif;
    font-size: 55px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -1.65px;
}

.advantages-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.advantage-card {
    width: 453px;
    height: 280px;
    border-radius: 20px;
    border: 3px solid #432F2E;
    background: #FFF8EE;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.advantage-icon {
    width: 80px;
    height: 80px;
}

.advantage-text {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.advantage-name {
    color: #432F2E;
    font-family: 'Unbounded', sans-serif;
    font-size: 25px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.75px;
}

.advantage-desc {
    color: #432F2E;
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.btn-advantages {
    display: flex;
    height: 85px;
    padding: 20px 100px;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    border: 4px solid #432F2E;
    background: #FFF8EE;
    color: #432F2E;
    font-family: 'Unbounded', sans-serif;
    font-size: 17px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.5s;
}

.btn-advantages:hover {
    background: transparent;
}

/* ===== НАШИ ПАРТНЁРЫ ===== */

.partners-section {
    width: 100%;
    margin-top: 180px;
    padding: 0 80px;
    display: flex;
    justify-content: center;
}

.partners-container {
    width: 100%;
    max-width: 1440px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.partners-label {
    display: flex;
    align-items: center;
    align-self: flex-start;
    gap: 20px;
    flex-shrink: 0;
}

.partners-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 953px;
}

.partners-title {
    color: #432F2E;
    font-family: 'Unbounded', sans-serif;
    font-size: 55px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
}

.partners-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.partner-card {
    width: 466px;
    height: 90px;
    border-radius: 10px;
    border: 2px solid #432F2E;
    background: #FFD602;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0 20px;
}

.partner-number {
    width: 42px;
    height: 42px;
    border-radius: 100px;
    background: #432F2E;
    color: #FFF;
    font-family: 'Unbounded', sans-serif;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.partner-name {
    color: #432F2E;
    font-family: 'Unbounded', sans-serif;
    font-size: 23px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

/* ===== НАМ ДОВЕРЯЮТ ===== */

.trust-section {
    width: 100%;
    margin-top: 180px;
    padding: 0 80px;
    display: flex;
    justify-content: center;
}

.trust-container {
    width: 100%;
    max-width: 1440px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.trust-label {
    display: flex;
    align-items: center;
    align-self: flex-start;
    gap: 20px;
    flex-shrink: 0;
}

.trust-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 953px;
}

.trust-title {
    color: #432F2E;
    font-family: 'Unbounded', sans-serif;
    font-size: 55px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
}

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

.trust-card {
    width: 223px;
    height: 200px;
    border-radius: 15px;
    border: 3px solid #432F2E;
    background: #FFD602;
}

/* ===== FOOTER ===== */

.footer {
    width: 100%;
    margin-top: 180px;
    margin-bottom: 80px;
    padding: 0 80px;
    display: flex;
    justify-content: center;
}

.footer-container {
    width: 100%;
    max-width: 1440px;
    background: #FFD602;
    border-radius: 30px;
    border: 3px solid #432F2E;
    padding: 77px 30px;
    display: flex;
    gap: 360px;
}

.footer-logo {
    display: block;
    width: 94px;
    height: 85px;
    border-radius: 20px;
    background: #432F2E;
    flex-shrink: 0;
}

.footer-menu {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-heading {
    color: #432F2E;
    font-family: 'Inter', sans-serif;
    font-size: 25px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-link {
    color: #432F2E;
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    transition: opacity 0.5s;
}

.footer-link:hover {
    opacity: 0.7;
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-address {
    color: #432F2E;
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

/* ===== CATALOG PAGE ===== */

.catalog-page-header {
    width: 100%;
    padding: 30px 80px;
    display: flex;
    justify-content: center;
}

.catalog-page-header-container {
    width: 100%;
    max-width: 1440px;
}

.header-light {
    background: #FFF;
    border: 2px solid #432F2E;
}

.catalog-page-section {
    width: 100%;
    padding: 0 80px;
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

.catalog-page-container {
    width: 100%;
    max-width: 1440px;
    display: flex;
    flex-direction: column;
}

.catalog-page-title {
    color: #432F2E;
    font-family: 'Unbounded', sans-serif;
    font-size: 75px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    text-align: left;
}

.catalog-tabs {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.catalog-tab {
    flex: 1;
    height: 70px;
    border-radius: 10px;
    border: 2px solid #432F2E;
    background: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #432F2E;
    font-family: 'Unbounded', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    text-transform: uppercase;
    transition: background 0.5s;
    cursor: pointer;
}

.catalog-tab:hover {
    background: transparent;
}

.catalog-tab.active {
    background: #FFD200;
}

.catalog-tab.active:hover {
    background: #FFD200;
}

.catalog-products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 80px;
}

.product-card {
    background: #FFD200;
    border: 3px solid #432F2E;
    border-radius: 20px;
    padding: 25px;
    display: flex;
    flex-direction: column;
}

.product-image {
    width: 100%;
    height: 307px;
    background: #FFF;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img {
    max-width: 285px;
    max-height: 184px;
    object-fit: contain;
}

.product-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 40px;
}

.product-name {
    color: #432F2E;
    font-family: 'Unbounded', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    text-transform: uppercase;
}

.product-price {
    color: #432F2E;
    font-family: 'Unbounded', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    text-transform: uppercase;
}

.product-btn {
    width: 100%;
    height: 75px;
    background: #432F2E;
    border-radius: 10px;
    border: 4px solid #432F2E;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    font-family: 'Unbounded', sans-serif;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    text-transform: uppercase;
    transition: all 0.5s;
}

.product-btn:hover {
    background: #FFD200;
    color: #432F2E;
}

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

.product-page-section {
    width: 100%;
    padding: 0 80px;
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

.product-page-container {
    width: 100%;
    max-width: 1440px;
    display: flex;
    flex-direction: column;
    gap: 180px;
}

/* Product Main */
.product-main {
    display: flex;
    gap: 20px;
}

.product-gallery {
    width: 710px;
    height: 600px;
    background: #FFF;
    border: 4px solid #432F2E;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.product-gallery img {
    max-width: 524px;
    max-height: 338px;
    object-fit: contain;
}

.product-details {
    width: 710px;
    height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #fff;
    border: 4px solid #432F2E;
    border-radius: 20px;
    overflow: hidden;
    padding: 36px;
}

.product-info-top {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-title {
    color: #333;
    font-family: 'Unbounded', sans-serif;
    font-size: 50px;
    font-style: normal;
    font-weight: 500;
    line-height: 90%;
    text-align: left;
}

.product-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-options-label {
    color: #432F2E;
    font-family: 'Unbounded', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 90%;
}

.product-price-block {
    display: flex;
    flex-direction: column;
}

.product-price-value {
    color: #333;
    font-family: 'Unbounded', sans-serif;
    font-weight: 500;
    line-height: 1.3;
}

.product-price-num {
    font-size: 50px;
}

.product-price-unit {
    font-size: 30px;
}

.product-action-btn.product-action-full {
    width: 100%;
}

.product-volumes {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.volume-btn {
    padding: 20px 30px;
    border: 3px solid #432F2E;
    border-radius: 5px;
    background: transparent;
    color: #432F2E;
    font-family: 'Unbounded', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 90%;
    cursor: pointer;
    transition: all 0.5s;
}

.volume-btn:hover {
    background: #FFF8EE;
}

.volume-btn.active {
    background: #FFD200;
}

.product-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-action-btn {
    width: 100%;
    height: 85px;
    border-radius: 10px;
    border: 3px solid #432F2E;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Unbounded', sans-serif;
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    line-height: 90%;
    text-transform: uppercase;
    transition: all 0.5s;
}

.product-action-btn.primary {
    background: #FFD200;
    color: #000;
}

.product-action-btn.primary:hover {
    background: #e6bd00;
}

.product-action-btn.secondary {
    background: transparent;
    color: #000;
}

.product-action-btn.secondary:hover {
    background: #FFF8EE;
}

/* Additional Info Section */
.product-info-section {
    display: flex;
    justify-content: space-between;
}

.product-info-label {
    display: flex;
    align-items: center;
    gap: 20px;
    align-self: flex-start;
}

.product-accordions {
    width: 710px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.accordion {
    background: #FFF;
    border: 3px solid #432F2E;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s ease;
}

.accordion.open {
    background: #FFD200;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 37px 27px;
    cursor: pointer;
}

.accordion-title {
    color: #432F2E;
    font-family: 'Unbounded', sans-serif;
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    line-height: 90%;
    text-transform: uppercase;
}

.accordion-icon {
    width: 35px;
    height: 21px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s ease;
}

.accordion-icon svg {
    width: 21px;
    height: 35px;
    transform: rotate(90deg);
    transition: transform 0.5s ease;
}

.accordion.open .accordion-icon svg {
    transform: rotate(-90deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
}

.accordion.open .accordion-content {
    max-height: 200px;
    padding: 0 27px 27px 27px;
}

.accordion-content p {
    color: #000;
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
}

/* Delivery Section */
.product-delivery-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-delivery-header {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.product-delivery-label {
    display: flex;
    align-items: center;
    gap: 20px;
}

.delivery-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.delivery-card {
    width: 710px;
    height: 288px;
    background: #FFF;
    border: 3px solid #432F2E;
    border-radius: 20px;
    padding: 27px 17px;
    display: flex;
    flex-direction: column;
}

.delivery-icon {
    width: 80px;
    height: 80px;
}

.delivery-icon-wrapper {
    width: 80px;
    height: 80px;
    background: #FFD200;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.delivery-icon-inner {
    width: 49px;
    height: 49px;
}

.delivery-card-title {
    color: #432F2E;
    font-family: 'Unbounded', sans-serif;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 40px;
}

.delivery-card-text {
    color: #000;
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 20px;
}

.delivery-btn {
    width: 100%;
    height: 85px;
    background: #FFD200;
    border: 3px solid #432F2E;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-family: 'Unbounded', sans-serif;
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    line-height: 90%;
    text-transform: uppercase;
    transition: all 0.5s;
}

.delivery-btn:hover {
    background: #e6bd00;
}

/* ===== DELIVERY PAGE ===== */

.delivery-page-section {
    width: 100%;
    padding: 0 80px;
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

.delivery-page-container {
    width: 100%;
    max-width: 1440px;
    display: flex;
    flex-direction: column;
    gap: 180px;
}

/* Delivery Hero */
.delivery-hero {
    width: 100%;
    height: 550px;
    background: #FFD200;
    border: 3px solid #432F2E;
    border-radius: 20px;
    padding: 27px 37px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.delivery-hero-content {
    width: 647px;
    display: flex;
    flex-direction: column;
    gap: 41px;
}

.delivery-hero-title {
    color: #333;
    font-family: 'Unbounded', sans-serif;
    font-size: 55px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    text-align: left;
}

.delivery-hero-text {
    color: #333;
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.delivery-hero-image {
    width: 690px;
    height: 490px;
    border: 3px solid #432F2E;
    border-radius: 20px;
    overflow: hidden;
    flex-shrink: 0;
}

.delivery-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Delivery Info Section */
.delivery-info-section {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.delivery-info-label {
    display: flex;
    align-items: center;
    gap: 20px;
}

.delivery-info-cards {
    display: flex;
    gap: 20px;
}

.delivery-info-card {
    width: 467px;
    height: 346px;
    background: #FFF;
    border: 3px solid #432F2E;
    border-radius: 20px;
    padding: 27px 17px;
}

.delivery-info-icon {
    width: 80px;
    height: 80px;
}

.delivery-info-title {
    color: #432F2E;
    font-family: 'Unbounded', sans-serif;
    font-size: 25px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 30px;
}

.delivery-info-text {
    color: #000;
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 20px;
}

/* Delivery Text Sections */
.delivery-text-section {
    display: flex;
    justify-content: space-between;
}

.delivery-text-label {
    display: flex;
    align-items: center;
    gap: 20px;
    align-self: flex-start;
}

.delivery-text-content {
    width: 953px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.delivery-text-title {
    color: #432F2E;
    font-family: 'Unbounded', sans-serif;
    font-size: 55px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -1.65px;
    text-align: left;
}

.delivery-text-desc {
    color: #000;
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

/* Warehouse Image */
.delivery-warehouse-image {
    width: 100%;
    height: 400px;
    border: 3px solid #432F2E;
    border-radius: 20px;
    overflow: hidden;
}

.delivery-warehouse-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Delivery Pills */
.delivery-pills {
    display: flex;
    gap: 20px;
}

.delivery-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px 25px;
    background: #FFF;
    border: 3px solid #432F2E;
    border-radius: 100px;
    white-space: nowrap;
}

.delivery-pill-icon {
    width: 48px;
    height: 45px;
}

.delivery-pill-text {
    color: #333;
    font-family: 'Unbounded', sans-serif;
    font-size: 19px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
}

/* ===== DOCUMENTS PAGE ===== */

.documents-page-section {
    width: 100%;
    padding: 0 80px;
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

.documents-page-container {
    width: 100%;
    max-width: 1440px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.documents-page-title {
    color: #333;
    font-family: 'Unbounded', sans-serif;
    font-size: 75px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    text-align: left;
}

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

.document-card {
    width: 467px;
    height: 560px;
    background: #FFF;
    border: 5px solid #432F2E;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.document-placeholder {
    width: 387px;
    height: 480px;
    background: #D2D2D2;
    border-radius: 30px;
}

/* ===== ABOUT PAGE ===== */

.about-page-section {
    width: 100%;
    padding: 0 80px;
    margin-top: 60px;
    margin-bottom: 180px;
    display: flex;
    justify-content: center;
}

.about-page-container {
    width: 100%;
    max-width: 1440px;
    display: flex;
    flex-direction: column;
    gap: 180px;
}

.about-hero {
    display: flex;
    gap: 20px;
    align-items: center;
}

.about-hero-card {
    width: 710px;
    height: 550px;
    background: #FFD200;
    border: 3px solid #432F2E;
    border-radius: 20px;
    position: relative;
    flex-shrink: 0;
    overflow: hidden;
}

.about-hero-title {
    position: absolute;
    top: 47px;
    left: 37px;
    width: 647px;
    color: #333;
    font-family: 'Unbounded', sans-serif;
    font-size: 55px;
    font-weight: 500;
    line-height: 100%;
    text-align: left;
}

.about-hero-text {
    color: #333;
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
    position: absolute;
    top: 197px;
    left: 37px;
}

.about-hero-image {
    width: 710px;
    height: 550px;
    border: 3px solid #432F2E;
    border-radius: 20px;
    overflow: hidden;
    flex-shrink: 0;
}

.about-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-text-section {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.about-text-label {
    width: 467px;
    display: flex;
    gap: 20px;
    align-items: center;
    flex-shrink: 0;
}

.about-text-content {
    width: 952px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    flex-shrink: 0;
}

.about-text-title {
    color: #432F2E;
    font-family: 'Unbounded', sans-serif;
    font-size: 55px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -1.65px;
    text-align: left;
}

.about-text-desc {
    color: #333;
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
}

/* ===== MODAL ===== */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s, visibility 0.5s;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: #FBF5E2;
    border-radius: 30px;
    border: 3px solid #432F2E;
    padding: 50px;
    width: 100%;
    max-width: 550px;
    position: relative;
    transform: translateY(-20px);
    transition: transform 0.5s;
}

.modal-overlay.active .modal {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.5s;
}

.modal-close:hover {
    background: rgba(67, 47, 46, 0.1);
}

.modal-title {
    color: #432F2E;
    font-family: 'Unbounded', sans-serif;
    font-size: 32px;
    font-weight: 500;
    line-height: 100%;
    margin-bottom: 15px;
}

.modal-subtitle {
    color: #333;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 30px;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    color: #432F2E;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 16px 20px;
    border-radius: 10px;
    border: 2px solid #432F2E;
    background: #FFF;
    color: #333;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    outline: none;
    transition: border-color 0.5s;
}

.form-input:focus,
.form-textarea:focus {
    border-color: #FFD602;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #999;
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.form-submit {
    margin-top: 10px;
    padding: 20px 40px;
    border-radius: 10px;
    border: 3px solid #432F2E;
    background: #FFD602;
    color: #432F2E;
    font-family: 'Unbounded', sans-serif;
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.5s;
}

.form-submit:hover {
    background: transparent;
}

.modal-success {
    text-align: center;
    padding: 20px 10px 10px;
    animation: successRise 0.45s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

@keyframes successRise {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.modal-success-icon {
    width: 84px;
    height: 84px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: #FFD200;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.modal-success-icon::before {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: #FFD200;
    opacity: 0.25;
    z-index: -1;
    animation: successPulse 1.6s ease-out infinite;
}

@keyframes successPulse {
    0% { transform: scale(0.95); opacity: 0.35; }
    100% { transform: scale(1.25); opacity: 0; }
}

.modal-success-icon svg {
    width: 52px;
    height: 52px;
}

.success-circle {
    stroke-dasharray: 160;
    stroke-dashoffset: 160;
    animation: successDraw 0.55s cubic-bezier(0.4, 0, 0.2, 1) 0.1s forwards;
}

.success-check {
    stroke-dasharray: 50;
    stroke-dashoffset: 50;
    animation: successDraw 0.35s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards;
}

@keyframes successDraw {
    to { stroke-dashoffset: 0; }
}

.modal-success-title {
    font-family: 'Unbounded', sans-serif;
    font-weight: 500;
    font-size: 26px;
    line-height: 1.1;
    color: #432F2E;
    margin: 0 0 10px;
    letter-spacing: -0.01em;
}

.modal-success-text {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.5;
    color: rgba(67, 47, 46, 0.7);
    margin: 0;
}

/* ===== BURGER MENU ===== */

.burger-btn {
    display: none;
    width: 45px;
    height: 45px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.burger-btn img {
    width: 45px;
    height: 45px;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s, visibility 0.5s;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu Panel */
.mobile-menu-panel {
    position: absolute;
    top: 20px;
    left: 10px;
    width: 340px;
    height: 750px;
    background: #FFFFFF;
    border-radius: 10px;
    padding: 10px;
    transform: translateX(-120%);
    transition: transform 0.5s ease;
    display: flex;
    flex-direction: column;
}

.mobile-menu-overlay.active .mobile-menu-panel {
    transform: translateX(0);
}

/* Mobile Menu Header */
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-logo {
    display: block;
    width: 45px;
    height: 45px;
    background: #432F2E;
    border-radius: 10px;
}

.mobile-menu-close {
    width: 45px;
    height: 45px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-menu-close img {
    width: 45px;
    height: 45px;
}

/* Mobile Menu Nav */
.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 31px;
    margin-top: 38px;
}

.mobile-menu-nav a {
    color: #432F2E;
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
}

.mobile-menu-nav a:hover {
    opacity: 0.7;
}

/* Mobile Menu Login Button */
.mobile-menu-login {
    display: flex;
    width: 320px;
    padding: 20px 40px;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    border: 2px solid #432F2E;
    background: #FFD602;
    color: #432F2E;
    font-family: 'Unbounded', sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    text-transform: uppercase;
    margin-top: auto;
    transition: background 0.5s;
}

.mobile-menu-login:hover {
    background: transparent;
}

/* ===== RESPONSIVE - MOBILE (max-width: 768px) ===== */

@media (max-width: 768px) {
    /* Prevent horizontal overflow */
    html, body {
        overflow-x: hidden;
        max-width: 100vw;
    }

    /* Modal mobile */
    .modal {
        padding: 30px 20px;
        border-radius: 20px;
        margin: 0 10px;
        max-height: 90vh;
        overflow-y: auto;
    }

    .modal-title {
        font-size: 22px;
        padding-right: 40px;
    }

    .modal-subtitle {
        font-size: 14px;
    }

    .modal-form {
        gap: 15px;
    }

    .form-submit {
        padding: 15px 20px;
        font-size: 14px;
    }

    /* Burger button visible */
    .burger-btn {
        display: flex;
    }

    .mobile-menu-overlay {
        display: block;
    }

    /* ===== HERO SECTION ===== */
    .hero {
        width: 100%;
        max-width: 100vw;
        min-height: 800px;
        padding: 20px 10px 40px 10px;
    }

    .hero-container {
        width: 100%;
        max-width: 340px;
        min-height: calc(800px - 60px);
    }

    /* Header */
    .header {
        width: 100%;
        max-width: 340px;
        height: 65px;
        border-radius: 10px;
        padding: 10px;
    }

    .header-inner {
        width: 100%;
        padding: 0;
    }

    .logo {
        width: 45px;
        height: 45px;
        border-radius: 10px;
    }

    .nav {
        display: none;
    }

    .btn-login {
        display: none;
    }

    .btn-account {
        display: none;
    }

    /* Hero Content */
    .hero-content {
        width: 100%;
        max-width: 340px;
        gap: 20px;
    }

    h1 {
        font-size: 37px;
        letter-spacing: -1.11px;
        line-height: 1;
    }

    .hero-subtitle {
        font-size: 15px;
        font-weight: 500;
        line-height: 1.1;
        max-width: 338px;
    }

    .btn-catalog {
        width: 100%;
        max-width: 340px;
        height: 58px;
        font-size: 13px;
        border-radius: 10px;
    }

    /* ===== CATALOG SECTION ===== */
    .catalog-section {
        width: 100%;
        max-width: 100vw;
        margin-top: 80px;
        padding: 0 10px;
    }

    .catalog-container {
        width: 100%;
        max-width: 340px;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .catalog-dot {
        width: 10px;
        height: 10px;
    }

    .catalog-label-text {
        font-size: 12px;
    }

    .catalog-cards {
        width: 100%;
        gap: 10px;
    }

    .catalog-card {
        height: 70px;
        padding: 28px 20px;
        border-radius: 10px;
    }

    .catalog-card-name {
        font-size: 20px;
    }

    .catalog-card-arrow {
        width: 34px;
        height: 34px;
    }

    .catalog-card-arrow img {
        width: 14px;
        height: 14px;
    }

    /* ===== ABOUT SECTION ===== */
    .about-section {
        width: 100%;
        max-width: 100vw;
        margin-top: 80px;
        padding: 0 10px;
    }

    .about-container {
        width: 100%;
        max-width: 340px;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .about-label {
        gap: 10px;
    }

    .about-content {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .about-title {
        font-size: 44px;
        line-height: 0.9;
    }

    .about-texts {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 20px;
    }

    .about-text {
        width: 100%;
        font-size: 14px;
    }

    .about-stats {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        gap: 10px;
        margin-top: 0;
    }

    .stat {
        width: 165px;
        gap: 10px;
    }

    .stat-number {
        font-size: 70px;
        line-height: 1;
    }

    .stat-unit {
        font-size: 15px;
    }

    .stat-desc {
        font-size: 13px;
        margin-top: 0;
    }

    .btn-about {
        height: 65px;
        padding: 20px 40px;
        border-width: 3px;
        font-size: 12px;
        margin-top: 0;
    }

    /* ===== ADVANTAGES SECTION ===== */
    .advantages-section {
        width: 100%;
        max-width: 100vw;
        margin-top: 80px;
        padding: 0 10px;
    }

    .advantages-wrapper {
        width: 100%;
        max-width: 340px;
        border-radius: 20px;
        padding: 30px 10px;
        flex-direction: column;
        gap: 25px;
    }

    .advantages-label {
        gap: 10px;
    }

    .advantages-content {
        width: 100%;
        max-width: 320px;
        gap: 30px;
    }

    .advantages-title {
        font-size: 28px;
        letter-spacing: -0.84px;
        line-height: 1;
    }

    .advantages-cards {
        flex-direction: column;
        gap: 10px;
    }

    .advantage-card {
        width: 100%;
        max-width: 320px;
        height: 229px;
        border-radius: 20px;
        padding: 15px;
    }

    .advantage-icon {
        width: 64px;
        height: 63px;
    }

    .advantage-name {
        font-size: 20px;
        letter-spacing: -0.6px;
    }

    .advantage-desc {
        font-size: 14px;
    }

    .btn-advantages {
        width: 100%;
        max-width: 320px;
        height: 65px;
        padding: 20px 40px;
        border-width: 3px;
        background: #FFFFFF;
        font-size: 12px;
    }

    /* ===== PARTNERS SECTION ===== */
    .partners-section {
        width: 100%;
        max-width: 100vw;
        margin-top: 80px;
        padding: 0 10px;
    }

    .partners-container {
        width: 100%;
        max-width: 340px;
        flex-direction: column;
        gap: 20px;
    }

    .partners-label {
        gap: 10px;
    }

    .partners-content {
        width: 100%;
        gap: 20px;
    }

    .partners-title {
        font-size: 28px;
        line-height: 1;
    }

    .partners-cards {
        flex-direction: column;
        gap: 10px;
    }

    .partner-card {
        width: 100%;
        height: auto;
        padding: 11px 15px;
        gap: 15px;
    }

    .partner-number {
        width: 36px;
        height: 36px;
        font-size: 12px;
    }

    .partner-name {
        font-size: 15px;
    }

    /* ===== TRUST SECTION ===== */
    .trust-section {
        width: 100%;
        max-width: 100vw;
        margin-top: 80px;
        padding: 0 10px;
    }

    .trust-container {
        width: 100%;
        max-width: 340px;
        flex-direction: column;
        gap: 20px;
    }

    .trust-label {
        gap: 10px;
    }

    .trust-content {
        width: 100%;
        gap: 20px;
    }

    .trust-title {
        font-size: 28px;
        line-height: 1;
    }

    .trust-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .trust-card {
        width: 165px;
        height: 148px;
        border-radius: 15px;
        border-width: 2px;
    }

    /* ===== FOOTER ===== */
    .footer {
        width: 100%;
        max-width: 100vw;
        margin-top: 80px;
        margin-bottom: 40px;
        padding: 0 10px;
    }

    .footer-container {
        width: 100%;
        max-width: 340px;
        border-radius: 20px;
        padding: 37px 12px 40px 12px;
        display: grid;
        grid-template-columns: 117px 1fr;
        grid-template-rows: auto auto;
        gap: 60px 40px;
    }

    .footer-logo {
        width: 94px;
        height: 85px;
        grid-column: 1 / 2;
        grid-row: 1 / 2;
    }

    .footer-menu {
        width: 117px;
        gap: 15px;
        grid-column: 1 / 2;
        grid-row: 2 / 3;
    }

    .footer-heading {
        font-size: 20px;
    }

    .footer-nav {
        gap: 10px;
    }

    .footer-link {
        font-size: 14px;
    }

    .footer-contacts {
        width: 155px;
        gap: 15px;
        grid-column: 2 / 3;
        grid-row: 2 / 3;
    }

    .footer-contact-list {
        gap: 10px;
    }

    .footer-address {
        font-size: 14px;
    }

    /* ===== CATALOG PAGE ===== */
    .catalog-page-header {
        width: 100%;
        max-width: 100vw;
        padding: 20px 10px;
    }

    .catalog-page-header-container {
        width: 100%;
        max-width: 340px;
    }

    .catalog-page-header .header {
        width: 100%;
        max-width: 340px;
        height: 65px;
        border-radius: 10px;
        padding: 10px;
    }

    .catalog-page-section {
        width: 100%;
        max-width: 100vw;
        padding: 0 10px;
        margin-top: 20px;
    }

    .catalog-page-container {
        width: 100%;
        max-width: 340px;
    }

    .catalog-page-title {
        display: none;
    }

    .catalog-tabs {
        gap: 10px;
        margin-top: 0;
        flex-wrap: nowrap;
        overflow-x: auto;
    }

    .catalog-tab {
        flex: 0 0 auto;
        height: 46px;
        border-radius: 5px;
        padding: 10px 24px;
        font-size: 13px;
    }

    .catalog-products {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }

    .product-card {
        width: 100%;
        max-width: 340px;
        height: auto;
        padding: 18px 13px 13px 13px;
        border-width: 2px;
    }

    .product-image {
        width: 100%;
        height: 186px;
        border-radius: 15px;
    }

    .product-image img {
        max-width: 168px;
        max-height: 108px;
    }

    .product-info {
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .product-name {
        font-size: 15px;
    }

    .product-price {
        font-size: 15px;
    }

    .product-btn {
        width: 100%;
        height: 55px;
        border-radius: 5px;
        border-width: 0;
        font-size: 13px;
    }

    /* ===== PRODUCT PAGE ===== */
    .product-page-section {
        width: 100%;
        max-width: 100vw;
        padding: 0 16px;
        margin-top: 20px;
    }

    .product-page-container {
        width: 100%;
        max-width: 100%;
        gap: 40px;
    }

    .product-main {
        flex-direction: column;
        gap: 12px;
    }

    .product-gallery {
        width: 100%;
        height: 240px;
        border-width: 3px;
        border-radius: 16px;
    }

    .product-gallery img {
        max-width: 200px;
        max-height: 150px;
    }

    .product-details {
        width: 100%;
        height: auto;
        border-width: 3px;
        border-radius: 16px;
        padding: 24px 20px;
    }

    .product-info-top {
        gap: 12px;
    }

    .product-title {
        font-size: 26px;
        line-height: 0.95;
    }

    .product-price-num {
        font-size: 28px;
    }

    .product-price-unit {
        font-size: 18px;
    }

    .product-actions {
        margin-top: 24px;
    }

    .product-action-btn {
        width: 100%;
        height: 60px;
        font-size: 12px;
    }

    /* Product Info Section */
    .product-info-section {
        flex-direction: column;
        gap: 20px;
    }

    .product-info-label {
        gap: 10px;
    }

    .product-accordions {
        width: 100%;
        max-width: 340px;
    }

    .accordion {
        border-width: 2px;
        border-radius: 8px;
    }

    .accordion-header {
        padding: 25px 15px;
    }

    .accordion-title {
        font-size: 10px;
    }

    .accordion-icon {
        width: 15px;
        height: 9px;
    }

    .accordion-icon svg {
        width: 9px;
        height: 15px;
    }

    .accordion.open .accordion-content {
        padding: 0 15px 20px 15px;
    }

    .accordion-content p {
        font-size: 13px;
    }

    /* Product Delivery Section */
    .product-delivery-section {
        gap: 20px;
    }

    .product-delivery-label {
        gap: 10px;
    }

    .delivery-cards {
        flex-direction: column;
        gap: 10px;
    }

    .delivery-card {
        width: 100%;
        max-width: 340px;
        height: 229px;
        padding: 18px;
        border-width: 2px;
        border-radius: 10px;
        overflow: hidden;
    }

    .delivery-icon {
        width: 62px;
        height: 58px;
    }

    .delivery-icon-wrapper {
        width: 62px;
        height: 58px;
    }

    .delivery-icon-inner {
        width: 35px;
        height: 35px;
    }

    .delivery-card-title {
        font-size: 20px;
        margin-top: 20px;
    }

    .delivery-card-text {
        font-size: 14px;
        margin-top: 10px;
    }

    .delivery-btn {
        height: 65px;
        border-width: 3px;
        font-size: 12px;
    }

    /* ===== DELIVERY PAGE ===== */
    .delivery-page-section {
        padding: 20px 0;
        margin-top: 0;
    }

    .delivery-page-container {
        padding: 0 10px;
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    /* Hero Block */
    .delivery-hero {
        width: 100%;
        max-width: 340px;
        height: auto;
        padding: 30px 20px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 40px;
        overflow: hidden;
    }

    .delivery-hero-content {
        width: 100%;
        max-width: 300px;
        gap: 20px;
    }

    .delivery-hero-title {
        font-size: 28px;
        line-height: 100%;
    }

    .delivery-hero-text {
        font-size: 14px;
        line-height: normal;
    }

    .delivery-hero-image {
        width: 300px;
        height: 282px;
        border-width: 2px;
        flex-shrink: 0;
    }

    /* Delivery Info Section */
    .delivery-info-section {
        gap: 20px;
    }

    .delivery-info-label {
        gap: 10px;
    }

    .delivery-info-cards {
        flex-direction: column;
        gap: 10px;
    }

    .delivery-info-card {
        width: 100%;
        max-width: 340px;
        height: 229px;
        padding: 18px;
        border-width: 2px;
        border-radius: 10px;
        overflow: hidden;
    }

    .delivery-info-icon {
        width: 62px;
        height: 58px;
    }

    .delivery-info-title {
        font-size: 20px;
        margin-top: 30px;
    }

    .delivery-info-text {
        font-size: 14px;
        margin-top: 10px;
    }

    /* Delivery Text Section (Cold Chain, etc.) */
    .delivery-text-section {
        flex-direction: column;
        gap: 10px;
    }

    .delivery-text-label {
        gap: 10px;
    }

    .delivery-text-content {
        width: 100%;
        gap: 20px;
    }

    .delivery-text-title {
        font-size: 28px;
        letter-spacing: -0.84px;
    }

    .delivery-text-desc {
        font-size: 14px;
    }

    .delivery-warehouse-image {
        height: 205px;
        border-width: 2px;
        border-radius: 10px;
    }

    /* ===== DOCUMENTS PAGE ===== */
    .documents-page-section {
        padding: 20px 0;
        margin-top: 0;
    }

    .documents-page-container {
        padding: 0 10px;
        gap: 20px;
    }

    .documents-page-title {
        display: none;
    }

    .documents-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .document-card {
        width: 165px;
        height: 220px;
        border-width: 3px;
        border-radius: 10px;
    }

    .document-placeholder {
        width: 135px;
        height: 180px;
        border-radius: 10px;
    }

    /* Delivery Pills */
    .delivery-pills {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .delivery-pill {
        width: 100%;
        padding: 12px 35px;
        justify-content: center;
    }

    .delivery-pill-icon {
        width: 34px;
        height: 31px;
    }

    .delivery-pill-text {
        font-size: 12px;
    }

    /* ===== ABOUT PAGE ===== */
    .about-page-section {
        padding: 20px 0;
        margin-top: 0;
        margin-bottom: 80px;
    }

    .about-page-container {
        padding: 0 10px;
        gap: 80px;
    }

    /* About Hero */
    .about-hero {
        flex-direction: column;
        gap: 0;
        position: relative;
        height: 553px;
    }

    .about-hero-card {
        width: 340px;
        height: auto;
        padding: 30px 20px;
        position: relative;
        z-index: 1;
    }

    .about-hero-title {
        position: static;
        width: 100%;
        font-size: 28px;
    }

    .about-hero-text {
        position: static;
        font-size: 14px;
        margin-top: 20px;
    }

    .about-hero-image {
        width: 340px;
        height: 378px;
        position: absolute;
        top: 175px;
        left: 0;
        z-index: 0;
    }

    /* About Text Section */
    .about-text-section {
        flex-direction: column;
        gap: 10px;
    }

    .about-text-label {
        width: 100%;
        gap: 10px;
    }

    .about-text-content {
        width: 100%;
        gap: 20px;
    }

    .about-text-title {
        font-size: 20px;
        letter-spacing: -0.6px;
    }

    .about-text-desc {
        font-size: 14px;
    }
}
