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

/* Screen Reader Only - SEO Helper */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.sr-only ul {
    list-style: none;
}

:root {
    --black: #000000;
    --white: #ffffff;
    --gray: #f5f5f5;
}

html, body {
    height: 100%;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 300;
    color: var(--black);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    display: flex;
    flex-direction: column;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    border-bottom: 1px solid var(--black);
    z-index: 1000;
    height: 60px;
}

.header-inner {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 1px;
    text-decoration: none;
    color: var(--black);
    text-transform: uppercase;
}

.logo-image {
    height: 30px;
    width: auto;
    display: block;
}

.logo-text {
    display: inline-block;
}

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

.nav-link {
    text-decoration: none;
    color: var(--black);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding: 5px 0;
    transition: opacity 0.2s ease;
}

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

.nav-link.active {
    font-weight: 400;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--black);
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease;
    position: relative;
}

.cart-btn:hover {
    opacity: 0.5;
}

.cart-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background-color: var(--black);
    color: var(--white);
    font-size: 9px;
    font-weight: 400;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.cart-badge.hidden {
    display: none;
}

.menu-toggle {
    display: none;
}

/* Main Content */
.main {
    flex: 1;
    margin-top: 60px;
    padding: 0;
}

.products-container {
    width: 100%;
    padding: 40px 20px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.product-card {
    cursor: pointer;
    text-decoration: none;
    color: var(--black);
    transition: opacity 0.2s ease;
}

.product-card:hover {
    opacity: 0.6;
}

.product-image {
    width: 100%;
    aspect-ratio: 1;
    background-color: transparent;
    margin-bottom: 15px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .product-image {
        margin-bottom: 8px;
    }
}

@media (max-width: 480px) {
    .product-image {
        margin-bottom: 6px;
    }
}

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

.product-code {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--black);
    text-transform: uppercase;
    text-align: left;
}

/* Product Modal */
.product-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
}

.product-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    cursor: pointer;
}

.modal-content {
    position: relative;
    background-color: var(--white);
    max-width: 800px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    z-index: 2001;
    padding: 50px 40px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    -webkit-overflow-scrolling: touch;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    color: var(--black);
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease;
}

.modal-close:hover {
    opacity: 0.5;
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.modal-image {
    width: 100%;
}

.modal-image img {
    width: 100%;
    height: auto;
    display: block;
}

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

.modal-code {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 10px;
}

.modal-name {
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: var(--black);
    margin-bottom: 10px;
}

.modal-price {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: var(--black);
    margin-bottom: 30px;
}

.modal-description {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    color: var(--black);
    margin-bottom: 30px;
}

.modal-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.size-select,
.quantity-select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--black);
    background-color: var(--white);
    color: var(--black);
    font-size: 14px;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    margin-bottom: 15px;
}

.add-to-cart {
    width: 100%;
    padding: 15px;
    background-color: var(--black);
    color: var(--white);
    border: none;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: opacity 0.2s ease;
    font-family: 'Inter', sans-serif;
}

.add-to-cart:hover {
    opacity: 0.8;
}

/* Info Pages Modal */
.info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2500;
}

.info-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    cursor: pointer;
}

.info-content {
    position: relative;
    background-color: var(--white);
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    z-index: 2501;
    padding: 50px 40px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.info-close {
    position: absolute;
    top: 20px;
    right: 20px;
}

.info-body {
    padding: 0;
}

.info-title {
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: var(--black);
}

.info-text {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--black);
    margin-bottom: 20px;
}

.info-text:last-child {
    margin-bottom: 0;
}

.info-section {
    margin-bottom: 25px;
}

.info-section h3 {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: var(--black);
}

@media (max-width: 768px) {
    .info-content {
        max-width: 500px;
        padding: 40px 30px 30px;
        max-height: 85vh;
        border-radius: 15px;
    }

    .info-title {
        font-size: 20px;
        margin-bottom: 25px;
    }

    .info-text {
        font-size: 13px;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .info-content {
        width: 95%;
        padding: 35px 20px 25px;
        max-height: 90vh;
        border-radius: 12px;
    }

    .info-title {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .info-text {
        font-size: 12px;
        line-height: 1.6;
    }

    .info-close {
        top: 15px;
        right: 15px;
        font-size: 28px;
    }
}

/* Footer */
.footer {
    border-top: 1px solid var(--black);
    padding: 30px 20px;
    margin-top: auto;
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-column a {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--black);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.footer-column a:hover {
    opacity: 0.5;
}

/* Telegram Support Button */
.telegram-support-btn {
    position: fixed;
    left: 20px;
    bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    background-color: #0088cc;
    color: var(--white);
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 136, 204, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    border: none;
}

.telegram-support-btn:hover {
    background-color: #006699;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 136, 204, 0.5);
    color: var(--white);
}

.telegram-support-btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.telegram-support-btn span {
    white-space: nowrap;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    .modal-body {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .header {
        height: 50px;
    }

    .header-inner {
        padding: 0 15px;
        flex-wrap: nowrap;
        gap: 15px;
    }

    .logo a {
        font-size: 14px;
        letter-spacing: 0.5px;
    }
    
    .logo-image {
        height: 24px;
    }

    .nav {
        flex: 1;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .nav::-webkit-scrollbar {
        display: none;
    }

    .nav-list {
        display: flex;
        gap: 20px;
        flex-wrap: nowrap;
        padding: 0;
    }

    .nav-link {
        font-size: 9px;
        padding: 0;
        letter-spacing: 0.5px;
        white-space: nowrap;
    }

    .header-right {
        flex-shrink: 0;
    }

    .main {
        margin-top: 50px;
    }

    .products-container {
        padding: 20px 15px;
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .product-image {
        margin-bottom: 8px;
    }

    .product-code {
        font-size: 8px;
        letter-spacing: 0.5px;
    }

    .modal-content {
        width: 95%;
        max-width: 420px;
        padding: 20px 15px 20px;
        max-height: 90vh;
        overflow-y: auto;
        border-radius: 12px;
        -webkit-overflow-scrolling: touch;
    }

    .modal-close {
        top: 12px;
        right: 12px;
        font-size: 24px;
        width: 28px;
        height: 28px;
    }

    .modal-body {
        gap: 15px;
        grid-template-columns: 1fr;
    }

    .modal-image {
        max-width: 100%;
    }

    .modal-image img {
        max-height: 250px;
        object-fit: contain;
        width: 100%;
    }

    .modal-code {
        font-size: 9px;
        margin-bottom: 5px;
    }

    .modal-name {
        font-size: 16px;
        line-height: 1.3;
    }

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

    .modal-description {
        font-size: 11px;
        line-height: 1.5;
    }

    .modal-actions {
        gap: 12px;
    }

    .modal-flavor,
    .modal-quantity {
        gap: 6px;
    }

    .modal-flavor label,
    .modal-quantity label {
        font-size: 10px;
    }

    .flavor-select,
    .quantity-input {
        padding: 10px 12px;
        font-size: 16px;
    }

    .add-to-cart {
        padding: 12px 20px;
        font-size: 12px;
    }

    .footer {
        padding: 20px 15px;
    }

    .footer-links {
        gap: 20px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer-column a {
        font-size: 9px;
    }

    .telegram-support-btn {
        left: 15px;
        bottom: 15px;
        padding: 10px 15px;
        font-size: 12px;
    }

    .telegram-support-btn svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .header {
        height: 45px;
    }

    .header-inner {
        padding: 0 12px;
        gap: 12px;
    }

    .logo a {
        font-size: 14px;
        gap: 6px;
    }
    
    .logo-image {
        height: 20px;
    }

    .nav-list {
        gap: 15px;
    }

    .nav-link {
        font-size: 8px;
    }

    .main {
        margin-top: 45px;
    }

    .products-container {
        padding: 15px 12px;
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .product-image {
        margin-bottom: 6px;
    }

    .product-code {
        font-size: 7px;
        letter-spacing: 0.5px;
    }

    .modal-content {
        width: 98%;
        max-width: 380px;
        padding: 18px 12px 18px;
        max-height: 88vh;
        border-radius: 10px;
        -webkit-overflow-scrolling: touch;
    }

    .modal-close {
        top: 10px;
        right: 10px;
        font-size: 22px;
        width: 26px;
        height: 26px;
    }

    .modal-body {
        gap: 12px;
    }

    .modal-image img {
        max-height: 200px;
    }

    .modal-code {
        font-size: 8px;
    }

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

    .modal-price {
        font-size: 13px;
    }

    .modal-description {
        font-size: 10px;
    }

    .modal-actions {
        gap: 10px;
    }

    .flavor-select,
    .quantity-input {
        padding: 9px 10px;
        font-size: 16px;
    }

    .add-to-cart {
        padding: 11px 18px;
        font-size: 11px;
    }

    .modal-image img {
        max-height: 250px;
    }

    .modal-name {
        font-size: 16px;
    }

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

    .modal-description {
        font-size: 11px;
        line-height: 1.4;
    }

    .modal-close {
        top: 12px;
        right: 12px;
        font-size: 22px;
        width: 26px;
        height: 26px;
    }

    .modal-body {
        gap: 20px;
    }

    .modal-code {
        font-size: 8px;
    }

    .modal-name {
        font-size: 16px;
    }

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

    .modal-description {
        font-size: 11px;
        line-height: 1.5;
    }

    .size-select,
    .quantity-select {
        padding: 10px;
        font-size: 12px;
    }

    .add-to-cart {
        padding: 12px;
        font-size: 9px;
    }

    .footer {
        padding: 15px 12px;
    }

    .footer-links {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-column a {
        font-size: 8px;
    }

    .telegram-support-btn {
        left: 12px;
        bottom: 12px;
        padding: 10px 14px;
        font-size: 11px;
    }

    .telegram-support-btn svg {
        width: 16px;
        height: 16px;
    }

    .telegram-support-btn span {
        display: none;
    }

    .telegram-support-btn {
        width: 48px;
        height: 48px;
        padding: 0;
        border-radius: 50%;
        justify-content: center;
    }
}

/* Cart Sidebar */
.cart-sidebar {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 400px;
    z-index: 3000;
    pointer-events: none;
}

.cart-sidebar.active {
    display: block;
    pointer-events: all;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 3001;
}

.cart-content {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 400px;
    background-color: var(--white);
    z-index: 3002;
    display: flex;
    flex-direction: column;
    border-left: 1px solid var(--black);
    -webkit-overflow-scrolling: touch;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--black);
}

.cart-header h2 {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cart-close {
    background: none;
    border: none;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    color: var(--black);
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease;
}

.cart-close:hover {
    opacity: 0.5;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-item {
    display: flex;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid var(--gray);
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    background-color: transparent;
    flex-shrink: 0;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.cart-item-code {
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--black);
}

.cart-item-name {
    font-size: 14px;
    font-weight: 400;
    color: var(--black);
}

.cart-item-size,
.cart-item-quantity {
    font-size: 11px;
    font-weight: 300;
    color: var(--black);
    text-transform: uppercase;
}

.cart-item-price {
    font-size: 14px;
    font-weight: 400;
    color: var(--black);
    margin-top: auto;
}

.cart-item-remove {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: var(--black);
    padding: 5px;
    transition: opacity 0.2s ease;
    align-self: flex-start;
}

.cart-item-remove:hover {
    opacity: 0.5;
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid var(--black);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.checkout-btn {
    width: 100%;
    padding: 15px;
    background-color: var(--black);
    color: var(--white);
    border: none;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: opacity 0.2s ease;
    font-family: 'Inter', sans-serif;
}

.checkout-btn:hover {
    opacity: 0.8;
}

.cart-empty {
    padding: 40px 20px;
    text-align: center;
    font-size: 14px;
    font-weight: 300;
    color: var(--black);
}

/* Cookie Banner */
.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    border-top: 1px solid var(--black);
    z-index: 4000;
    padding: 20px;
}

.cookie-banner.active {
    display: block;
}

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 0.5px;
    color: var(--black);
    flex: 1;
    min-width: 200px;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

.cookie-accept {
    padding: 10px 20px;
    background-color: var(--black);
    color: var(--white);
    border: none;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: opacity 0.2s ease;
    font-family: 'Inter', sans-serif;
}

.cookie-accept:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .cart-sidebar {
        max-width: 100%;
    }

    .cart-content {
        max-width: 100%;
        -webkit-overflow-scrolling: touch;
    }

    .cart-header {
        padding: 12px 15px;
        position: sticky;
        top: 0;
        background-color: var(--white);
        z-index: 10;
    }

    .cart-header h2 {
        font-size: 14px;
    }

    .cart-close {
        font-size: 24px;
        width: 28px;
        height: 28px;
    }

    .cart-items {
        padding: 12px 15px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .cart-item {
        padding: 12px 0;
        gap: 12px;
    }

    .cart-item-image {
        width: 60px;
        height: 60px;
        flex-shrink: 0;
    }

    .cart-item-info {
        flex: 1;
        min-width: 0;
    }

    .cart-item-code {
        font-size: 8px;
    }

    .cart-item-name {
        font-size: 12px;
        line-height: 1.3;
    }

    .cart-item-flavor {
        font-size: 10px;
    }

    .cart-item-quantity {
        font-size: 10px;
    }

    .cart-item-price {
        font-size: 12px;
    }

    .cart-item-remove {
        font-size: 22px;
        width: 24px;
        height: 24px;
        flex-shrink: 0;
    }

    .cart-footer {
        padding: 12px 15px;
        position: sticky;
        bottom: 0;
        background-color: var(--white);
        border-top: 1px solid var(--black);
    }

    .cart-total {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .checkout-btn {
        padding: 12px;
        font-size: 12px;
    }

    .cart-total {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .checkout-btn {
        padding: 12px;
        font-size: 10px;
    }

    .cookie-banner {
        padding: 15px 20px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .cookie-content p {
        font-size: 10px;
        line-height: 1.5;
    }

    .cookie-actions {
        width: 100%;
    }

    .cookie-accept {
        width: 100%;
        padding: 12px;
        font-size: 10px;
    }
}

/* Age Verification Modal */
.age-verification {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
}

.age-verification.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.age-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 10001;
}

.age-content {
    position: relative;
    background-color: var(--white);
    max-width: 500px;
    width: 90%;
    padding: 50px 40px;
    z-index: 10002;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.age-title {
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: var(--black);
}

.age-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: var(--black);
}

.age-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
}

.age-btn {
    padding: 15px 40px;
    border: 2px solid var(--black);
    background-color: var(--white);
    color: var(--black);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
}

.age-btn:hover {
    background-color: var(--black);
    color: var(--white);
}

.age-yes {
    background-color: var(--black);
    color: var(--white);
}

.age-yes:hover {
    background-color: var(--white);
    color: var(--black);
}

.age-no {
    background-color: var(--white);
    color: var(--black);
}

.age-no:hover {
    background-color: var(--black);
    color: var(--white);
}

.age-disclaimer {
    font-size: 12px;
    color: #666;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .age-content {
        padding: 40px 30px;
        max-width: 90%;
    }

    .age-title {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .age-text {
        font-size: 14px;
        margin-bottom: 35px;
    }

    .age-actions {
        flex-direction: column;
        gap: 15px;
    }

    .age-btn {
        width: 100%;
        padding: 15px 30px;
    }
}

@media (max-width: 480px) {
    .age-content {
        padding: 35px 25px;
        border-radius: 15px;
    }

    .age-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .age-text {
        font-size: 13px;
        margin-bottom: 30px;
    }
}

/* Checkout Page */
.checkout-main {
    padding-top: 80px;
    padding-bottom: 60px;
}

.checkout-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.checkout-title {
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 40px;
    text-align: center;
}

.checkout-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    margin-top: 40px;
}

.checkout-form-section h2,
.checkout-summary-section h2 {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--black);
}

.payment-title {
    margin-top: 50px;
}

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

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

.form-group label {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--black);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid var(--black);
    background-color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--black);
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--black);
}

.form-group input[readonly] {
    background-color: var(--gray);
    cursor: not-allowed;
}

.form-group select {
    cursor: pointer;
}

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

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.checkout-summary-section {
    background-color: var(--gray);
    padding: 30px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.order-items {
    margin-bottom: 30px;
    max-height: 400px;
    overflow-y: auto;
}

.order-item {
    display: flex;
    gap: 15px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--black);
}

.order-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.order-item-image {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    background-color: transparent;
}

.order-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.order-item-details {
    flex: 1;
}

.order-item-code {
    font-size: 11px;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.order-item-name {
    font-size: 14px;
    margin-bottom: 5px;
}

.order-item-flavor {
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
}

.order-item-quantity {
    font-size: 12px;
    margin-bottom: 5px;
}

.order-item-price {
    font-size: 14px;
    font-weight: 400;
}

.order-empty {
    text-align: center;
    padding: 40px 20px;
    color: #999;
}

.order-summary {
    border-top: 1px solid var(--black);
    padding-top: 20px;
    margin-top: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 14px;
}

.summary-row:last-child {
    margin-bottom: 0;
}

.summary-total {
    font-weight: 500;
    font-size: 18px;
    padding-top: 15px;
    border-top: 1px solid var(--black);
    margin-top: 15px;
}

.order-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 30px;
}

.place-order-btn {
    width: 100%;
    padding: 15px;
    background-color: var(--black);
    color: var(--white);
    border: 1px solid var(--black);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.place-order-btn:hover {
    background-color: var(--white);
    color: var(--black);
}

.place-order-telegram {
    background-color: #0088cc;
    border-color: #0088cc;
}

.place-order-telegram:hover {
    background-color: #006699;
    color: var(--white);
}

.min-order-notice {
    margin-top: 15px;
    padding: 12px;
    background-color: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 4px;
}

.min-order-notice p {
    margin: 0;
    font-size: 13px;
    color: #856404;
    text-align: center;
}

/* Modal Quantity Input */
.modal-quantity {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.modal-quantity label {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--black);
}

.quantity-input {
    padding: 12px 15px;
    border: 1px solid var(--black);
    background-color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--black);
    width: 100%;
}

.quantity-input:focus {
    outline: none;
    border-color: var(--black);
}

.modal-flavor {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.modal-flavor label {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--black);
}

.flavor-select {
    padding: 12px 15px;
    border: 1px solid var(--black);
    background-color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--black);
    width: 100%;
    cursor: pointer;
}

.flavor-select:focus {
    outline: none;
    border-color: var(--black);
}

.cart-item-flavor {
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
}

@media (max-width: 1024px) {
    .checkout-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .checkout-summary-section {
        position: static;
    }
}

@media (max-width: 768px) {
    .checkout-main {
        padding-top: 60px;
        padding-bottom: 40px;
    }

    .checkout-container {
        padding: 0 15px;
    }

    .checkout-title {
        font-size: 20px;
        margin-bottom: 25px;
    }

    .checkout-content {
        gap: 30px;
        margin-top: 30px;
    }

    .checkout-form-section h2,
    .checkout-summary-section h2 {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .checkout-form {
        gap: 15px;
    }

    .form-group {
        gap: 6px;
    }

    .form-group label {
        font-size: 11px;
    }

    .form-group input {
        padding: 10px 12px;
        font-size: 16px;
    }

    .form-group-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .checkout-summary-section {
        padding: 20px 15px;
        position: static;
    }

    .order-items {
        max-height: 300px;
        -webkit-overflow-scrolling: touch;
    }

    .order-item {
        padding-bottom: 15px;
        margin-bottom: 15px;
        gap: 12px;
    }

    .order-item-image {
        width: 60px;
        height: 60px;
    }

    .order-item-code {
        font-size: 9px;
    }

    .order-item-name {
        font-size: 12px;
    }

    .order-item-flavor {
        font-size: 10px;
    }

    .order-item-quantity {
        font-size: 10px;
    }

    .order-item-price {
        font-size: 12px;
    }

    .summary-row {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .summary-total {
        font-size: 16px;
    }

    .order-buttons {
        margin-top: 20px;
        gap: 10px;
    }

    .place-order-btn {
        padding: 12px;
        font-size: 12px;
    }

    .min-order-notice {
        margin-top: 12px;
        padding: 10px;
    }

    .min-order-notice p {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .checkout-main {
        padding-top: 50px;
        padding-bottom: 30px;
    }

    .checkout-container {
        padding: 0 12px;
    }

    .checkout-title {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .checkout-content {
        gap: 25px;
        margin-top: 25px;
    }

    .checkout-form-section h2,
    .checkout-summary-section h2 {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .checkout-form {
        gap: 12px;
    }

    .form-group input {
        padding: 9px 10px;
        font-size: 16px;
    }

    .checkout-summary-section {
        padding: 15px 12px;
    }

    .order-items {
        max-height: 250px;
    }

    .order-item-image {
        width: 50px;
        height: 50px;
    }

    .order-buttons {
        gap: 8px;
    }

    .place-order-btn {
        padding: 11px;
        font-size: 11px;
    }

    .min-order-notice {
        padding: 8px;
    }

    .min-order-notice p {
        font-size: 10px;
    }
}
