:root { 
  --black: #000000;
  --boulder: #787878;
  --gray: #818181;
  --gray-stroke: #696969;
  --gray-txt: #959595;
  --masala: #3d3d3d;
  --shark: #272727;
  --stack: #8c8c8c;
  --white: #ffffff;
  --white-2: #ffffff1c;
  --woodsmoke: #0d0d0d;
 
  --font-size-l: 24px;
  --font-size-m: 20px;
  --font-size-s: 14px;
  --font-size-xl: 28px;
  --font-size-xxl: 32px;
  --font-size-xxxl: 40px;
  --font-size-xxxxl: 48px;
 
  /* Unified font family mapping */
  --font-family-suisse_intl-bold: "SuisseIntl", Helvetica, Arial, sans-serif;
  --font-family-suisse_intl-book: "SuisseIntl", Helvetica, Arial, sans-serif; /* fallback to medium if regular missing */
  --font-family-suisse_intl-medium: "SuisseIntl", Helvetica, Arial, sans-serif;
  --font-family-suisse_intl-semibold: "SuisseIntl", Helvetica, Arial, sans-serif;
}

@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");
/* The following line is used to measure usage of this code. You can remove it if you want. */
@import url("https://px.animaapp.com/68ac6fc106b61fbcef317155.68ac6fc106b61fbcef317158.YhDSkQb.hcp.png");

/* Unified SuisseIntl family (add woff2/woff later for better compatibility) */
@font-face {
  font-family: "SuisseIntl";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/SuisseIntl-Medium.otf") format("opentype");
}
@font-face {
  font-family: "SuisseIntl";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/SuisseIntl-SemiBold.otf") format("opentype");
}
@font-face {
  font-family: "SuisseIntl";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/suisseintl-bold.ttf") format("truetype");
}

/* Header styles to match the screenshot */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

/* Custom container with larger padding */
.custom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.navbar-brand {
    padding: 0;
    margin-left: -20px;
}
.navbar {
    padding: 0;
}

/* Custom burger button */
.custom-burger {
    border: none;
    background: none;
    padding: 0;
    cursor: pointer;
    z-index: 1050;
    position: relative;
}

.custom-burger:focus {
    box-shadow: none;
    outline: none;
}

.custom-burger:hover .burger-icon {
    transform: scale(1.1);
}

.burger-icon {
    width: 35px;
    height: 35px;
    transition: transform 0.3s ease;
}


.nav-link {
    font-family: var(--font-family-suisse_intl-medium);
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: white !important;
}

.btn-light {
    background-color: #ffffff;
    border: 1px solid #ffffff;
    color: #3D3D3D;
    font-family: var(--font-family-suisse_intl-medium);
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 12px;
    padding: 4px;
}   

.w-shadow {
    box-shadow: 0px 0px 14px 5px rgba(255, 255, 255, 0.3);
}


.btn-light:hover {
    background-color: #f8f9fa;
    border-color: #f8f9fa;
    color: #000000;
}


.bg-dark {
    background-color: none;
}



/* Mobile Menu Styles */
.mobile-menu {
    background-color: #1B1B1B;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-left: 1px solid #333;
    width: 100% !important;
    max-width: 400px;
    z-index: 9999 !important; /* Очень высокий z-index */
    position: fixed !important; /* Принудительное позиционирование */
}

/* Ensure offcanvas works properly */
.offcanvas.mobile-menu {
    visibility: hidden;
    background-color: #1B1B1B !important;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    height: 100vh !important;
    z-index: 9999 !important;
}

.offcanvas.mobile-menu.show {
    visibility: visible;
    transform: translateX(0);
}

.offcanvas.mobile-menu.showing {
    visibility: visible;
    transform: translateX(0);
}

/* Fallback styles for manual show/hide */
.mobile-menu.show {
    visibility: visible !important;
    transform: translateX(0) !important;
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    height: 100vh !important;
    z-index: 9999 !important;
}

/* Backdrop for mobile menu */
.offcanvas-backdrop,
.manual-backdrop {
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9998 !important;
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
}

/* Mobile menu positioning */
@media (max-width: 768px) {
    .mobile-menu {
        position: fixed !important;
        top: 0 !important;
        right: 0 !important;
        height: 100vh !important;
        width: 300px !important;
        max-width: 80vw !important;
        z-index: 9999 !important;
    }
    
    /* Force show styles for mobile */
    .mobile-menu.show {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        transform: translateX(0) !important;
    }
}

.mobile-menu .offcanvas-header {
    background-color: transparent;
    padding: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.mobile-menu-logo {
    display: flex;
    align-items: center;
    font-family: var(--font-family-suisse_intl-bold);
    font-size: 1.25rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 12px;
}

.mobile-menu .btn-close {
    position: relative;
    z-index: 10;
    margin-left: auto;
}

.mobile-menu .offcanvas-body {
    padding: 2rem 0;
}

.mobile-menu-items {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0 1.5rem;
}

.mobile-menu-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    text-decoration: none;
    color: #696969;
    border: 2px solid #696969;
    border-radius: 50px;
    font-family: var(--font-family-suisse_intl-medium);
    font-size: 1.2rem;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-bottom: 0.75rem;
}

.mobile-menu-item:hover {
    color: #fff;
    border-color: #fff;
}

.mobile-menu-item.active {
    color: #fff;
    border-color: #fff;
}

.mobile-menu-item.calculator-btn {
    background-color: transparent;
    border-color: #fff;
    color: #fff;
}

.mobile-menu-item.calculator-btn:hover {
    background-color: #fff;
    color: #000;
}

/* Mobile menu dropdown styles */
.mobile-menu-item .dropdown {
    width: 100%;
}

.mobile-menu-item .dropdown-toggle {
    color: #fff;
    text-decoration: none;
    display: block;
    width: 100%;
    padding: 0;
    border: none;
    background: none;
}

.mobile-menu-item .dropdown-toggle:focus,
.mobile-menu-item .dropdown-toggle:hover {
    color: #fff;
    text-decoration: none;
}

.mobile-menu-item .dropdown-menu {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 10px;
    width: 100%;
}

.mobile-menu-item .dropdown-item {
    color: #fff;
    padding: 10px 15px;
}

.mobile-menu-item .dropdown-item:hover,
.mobile-menu-item .dropdown-item:focus {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* Mobile currency selector */
.mobile-currency-selector {
    flex-direction: column;
    align-items: flex-start !important;
    padding: 15px 20px !important;
}

.mobile-currency-label {
    color: #fff;
    font-size: 16px;
    margin-bottom: 10px;
    display: block;
}

.mobile-currency-options {
    display: flex;
    gap: 10px;
    width: 100%;
}

.mobile-currency-btn {
    flex: 1;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.mobile-currency-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.mobile-currency-btn.active {
    background: #fff;
    color: #000;
    border-color: #fff;
}

/* Desktop dropdown styles */
.navbar .dropdown-toggle {
    border: none;
    background: none;
    cursor: pointer;
}

.navbar .dropdown-toggle:focus,
.navbar .dropdown-toggle:hover {
    text-decoration: none;
}

.navbar .dropdown-menu {
    background-color: rgba(0, 0, 0, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.navbar .dropdown-item {
    color: #fff;
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* Hero Banner Styles */
.hero-banner {
    background-color: #000000;
    background-image: url('../img/bg.jpg');
    background-size: contain;
    background-position: right center;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-top: 40px;
}

.hero-banner2 {
    background-image: url('../img/curabg.jpg');
}
.hero-banner3 {
    background-image: url('../img/perevozbg.jpg');
}

.hero-banner4 {
    background-image: url('../img/ximikbg.jpg');
}
.hero-banner5 {
    background-image: url('../img/skladbg.jpg');
}
.hero-banner6 {
    background-image: url('../img/calcbg.jpg');
}
.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
    max-width: 100%;
    width: 100%;
    padding-right: 2rem;
}

.hero-title {
    font-family: var(--font-family-suisse_intl-bold);
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}
.hero-title {
    font-size: 4rem;
}

.highlight-text {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.6), 0 0 40px rgba(255, 255, 255, 0.3);
}

.hero-subtitle {
    font-family: var(--font-family-suisse_intl-medium);
    font-size: 1rem;
    color: #cccccc;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-btn {
    display: flex;
    align-items: center;
    padding: 0.85rem 2rem 0.85rem 1rem;
    background-color: #0D0D0D;
    border: 2px solid #ffffff;
    border-radius: 50px;
    color: #ffffff;
    text-decoration: none;
    font-family: var(--font-family-suisse_intl-medium);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    min-width: 150px;
    max-width: 300px;
}

.hero-btn:hover {
    border-color: 2px solid #333333;
    background-color: transparent;
    color: #ffffff;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-btn-descr {
    font-size: 0.75rem;
    color: #787878;
    font-weight: 400;
    display: block;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.btn-arrow {
    width: 40px;
    height: 40px;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

/* Desktop version - larger spacing only for first button */
@media (min-width: 992px) {
    .hero-btn:first-child .btn-arrow {
        margin-left: 1.5rem;
    }
}

/* Mobile responsive */
@media (max-width: 991px) {
    .custom-container {
        padding: 0 2rem;
    }
    
    .hero-container {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
    
    .hero-content {
        max-width: 100%;
        margin-bottom: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .custom-container {
        padding: 0 1.5rem;
    }
    
    .hero-banner {
        background-image: none;
        background-size: cover;
        background-position: top center;
        min-height: 60vh;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        position: relative;
    }
    
    .hero-banner::before {
        content: '';
        display: block;
        width: 100%;
        height: 80vh;
        background-image: url('../img/bg.jpg');
        background-size: cover;
        background-position: top center;
        background-repeat: no-repeat;
        position: relative;
        z-index: 1;
    }

    .hero-banner2::before {
    background-image: url('../img/curabg.jpg');
    background-position: top left;
    }
    .hero-banner3::before {
    background-image: url('../img/perevozbg.jpg');
    background-position: top left;
    }
    .hero-banner4::before {
    background-image: url('../img/ximikbg.jpg');
    background-position: top left;
    }
    .hero-banner5::before {
    background-image: url('../img/skladbg.jpg');
    background-position: top left;
    }
    .hero-banner6::before {
    background-image: url('../img/calcbg.jpg');
    background-position: top left;
    }
    
    .hero-container {
        background: transparent;
        min-height: auto;
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        position: relative;
        z-index: 2;
        margin-top: -20vh;
    }
    
    .hero-content {
        padding: 2rem 1.5rem;
        width: 100%;
        max-width: 100%;
        text-align: center;
        border-radius: 20px 20px 0 0;
    }
    
    .hero-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        text-align: left;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        text-align: left;
    }
    
    .hero-buttons {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        width: 100%;
    }
    
    .hero-btn {
        padding: 0.3rem 0.8rem;
        font-size: 0.6rem;
        min-width: auto;
        text-align: left;
    }
    
    .btn-arrow {
        width: 30px;
        height: 30px;
        margin-right: 0.5rem;
    }
    
    .hero-btn-descr {
        font-size: 0.5rem;
        max-width: 120px;
    }
}

body {
    background-color: var(--black);
}



.products {
    padding: 0 0 50px 0;
}

.products .custom-container {
    display: block;
    align-items: unset;
    justify-content: unset;
}

.showcase-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
    width: 100%;
    margin-bottom: 30px;
}

.showcase-title {
    color: #fff;
    font-family: var(--font-bold);
    font-size: 32px;
    margin: 0;
}

.showcase-filters {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-left: auto;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #FFFFFF;
    color: var(--white);
    font-family: var(--font-medium);
    font-size: 14px;
    cursor: pointer;
    padding: 6px 30px;
    border-radius: 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    font-weight: 500;
}

.filter-btn.active {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

.filter-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.filter-btn.active:hover {
    background: var(--white);
    color: var(--black);
}

.filter-btn-menu {
    background-color: #fff;
    cursor: pointer;
    padding: 12px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;

}

.menu-btn {
    background: transparent;
    border: none;
    color: var(--white);
    font-family: var(--font-medium);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}

.menu-icon {
    width: 24px;
    height: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.menu-icon span {
    width: 100%;
    height: 2px;
    background-color: var(--white);
    transition: all 0.3s ease;
}

.products-grid {
    margin-bottom: 0;
}

.product-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-card-link:hover {
    text-decoration: none;
    color: inherit;
}

.product-card {
    background: transparent;
    border-radius: 22px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    margin-bottom: 30px;
    border: 1px solid #696969;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 22px;
    background: var(--dark-gray);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-tags {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: row;
    gap: 8px;
    z-index: 2;
}

.product-tag {
    background: rgba(0, 0, 0, 0.8);
    color: var(--white);
    padding: 4px 8px;
    border-radius: 6px;
    font-family: var(--font-regular);
    font-size: 12px;
    backdrop-filter: blur(10px);
}

.product-weight {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #FFFFFF;
    color: var(--white);
    font-family: var(--font-medium);
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    display: inline-block;
    text-align: center;
}
.product-location {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #FFFFFF;
    color: var(--white);
    font-family: var(--font-medium);
    font-size: 12px;
    padding: 4px 18px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    display: inline-block;
    text-align: center;
}

.product-info {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    z-index: 2;
}

.product-name {
    color: #fff;
    font-family: var(--font-medium);
    font-size: 18px;
    padding: 8px 12px;
    border-radius: 8px;
    font-weight: 600;
    text-shadow: 1px 1px 2px #000, 0 0 1em #000, 0 0 0.2em #000;
}

.product-price {
    color: #fff;
    font-family: var(--font-bold);
    font-size: 18px;
    padding: 8px 12px;
    border-radius: 8px;
}

/* Responsive Design */
@media (max-width: 991px) {
    .showcase {
        padding: 0 0 40px 0;
    }
    
    .products {
        padding: 0 0 80px 0;
    }
    
    .showcase-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
    }
    
    .showcase-title {
        font-size: 28px;
    }
    
    .showcase-filters {
        gap: 10px;
        margin-left: auto;
    }
    
    .filter-btn {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .filter-btn-menu {
        width: 36px;
        height: 32px;
        font-size: 14px;
    }
}
    
    .product-card {
        margin-bottom: 20px;
    }

@media (max-width: 768px) {
    .showcase {
        padding: 0;
    }
    
    .products {
        padding: 0;
    }
    
    .showcase-header {
        flex-direction: row;
        align-items: center;
        gap: 15px;
        justify-content: space-between;
    }
    
    .showcase-title {
        font-size: 24px;
    }
    
    .showcase-filters {
        gap: 8px;
        margin-left: 0;
        width: auto;
        justify-content: flex-end;
        align-items: center;
    }
    
    .filter-btn {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .filter-btn-menu {
        font-size: 12px;
        margin-left: 0;
        padding: 12px 22px;
    }
    
    .product-image {
        height: 200px;
    }
    
    .product-name {
        font-size: 12px;
        padding: 4px 8px;
    }
    
    .product-price {
        font-size: 14px;
        padding: 4px 8px;
        font-weight: 600;
    }
    
    .product-card {
        margin-bottom: 15px;
    }
    
    .product-category {
        font-size: 12px;
        font-weight: 600;
    }
    
    .product-title {
        font-size: 12px;
        font-weight: 600;
    }
    
    .product-weight,
    .product-location {
        font-size: 8px;
        padding: 2px 6px;
    }
}

/* Work and Footer Container with Background */
.work-footer-container {
    background: var(--bg-color);
    background-image: url('../img/footerbg.jpg');
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
    position: relative;
    min-height: 100vh;
}

.work-footer-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, 0.8) 30%, transparent 100%);
    z-index: 1;
}

/* Work Section */
.work-cards {
    padding: 0;
    background: transparent;
    position: relative;
    z-index: 2;
}

.work-cards .custom-container {
    display: block;
    align-items: unset;
    justify-content: unset;
    position: relative;
    z-index: 2;
}

.work-cards .row {
    display: flex;
    flex-wrap: wrap;
}

.work-cards .row > [class*="col-"] {
    display: flex;
    margin-bottom: 20px;
}


.work-title {
    font-family: var(--font-family);
    font-size: 32px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 30px;
    text-align: left;
}

.work-card {
    display: block;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
    margin-bottom: 20px;
    text-decoration: none;
    color: inherit;
    width: 100%;
    height: 100%;
}

.work-card:hover {
    transform: translateY(-5px);
    text-decoration: none;
    color: inherit;
}

.work-image {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
    border-radius: 12px;
    background: var(--dark-gray);
    border: 1px solid #696969;
}

.work-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.work-card:hover .work-image img {
    transform: scale(1.05);
}

.work-label {
    position: absolute;
    bottom: 20px;
    border-radius: 8px;
    padding: 8px 16px;
}

.work-label span {
    font-family: var(--font-family);
    font-size: 22px;
    font-weight: 600;
    color: var(--white);
}

/* Mobile styles for work section */
@media (max-width: 768px) {
    .work-cards {
        padding: 40px 0;
    }
    
    .work-title {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .work-image {
        height: 250px;
        width: 100%;
    }
    
    .work-label {
        bottom: 15px;
        padding: 6px 12px;
    }
    
    .work-label span {
        font-size: 14px;
    }
    
    .work-card {
        margin-bottom: 15px;
        width: 100%;
        height: 100%;
    }
}

/* Large screen adjustments */
@media (min-width: 1200px) {
    .work-image {
        height: 400px;
    }
}

/* Medium screen adjustments */
@media (max-width: 991px) and (min-width: 769px) {
    .work-image {
        height: 280px;
    }
}

/* Footer Section */
.footer {
    padding: 80px 0;
    background: transparent;
    position: relative;
    z-index: 2;
}

.footer .custom-container {
    display: block;
    align-items: unset;
    justify-content: unset;
    text-align: center;
    position: relative;
    z-index: 2;
}

.footer-title {
    font-family: var(--font-family);
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    margin-bottom: 30px;
}

.footer-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-buttons-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-btn {
    display: flex;
    align-items: center;
    padding: 0.85rem 2rem 0.85rem 1rem;
    background-color: #0D0D0D;
    border: 2px solid #ffffff;
    border-radius: 50px;
    color: #ffffff;
    text-decoration: none;
    font-family: var(--font-family-suisse_intl-medium);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    min-width: 250px;
    max-width: 350px;
}

.footer-btn:hover {
    border-color: 2px solid #333333;
    background-color: transparent;
    color: #ffffff;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.footer-btn-descr {
    font-size: 0.75rem;
    color: #787878;
    font-weight: 400;
    display: block;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Desktop version - larger spacing for last two footer buttons */
@media (min-width: 992px) {
    .footer-buttons-row:last-child .footer-btn .btn-arrow {
        margin-left: 1.5rem;
    }
}

/* Mobile styles for footer */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 80px;
    }
    
    .footer-title {
        font-size: 32px;
        margin-bottom: 30px;
    }
    
    .footer-buttons-row {
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
        justify-content: center;
        width: 100%;
        align-items: center;
    }
    
    .footer-btn {
        min-width: auto;
        width: 100%;
        max-width: 100%;
        font-size: 0.8rem;
        padding: 0.7rem 1rem 0.7rem 0.7rem;
        min-height: 50px;
        box-sizing: border-box;
    }
    
    .footer-btn .btn-text {
        flex: 1;
        min-width: 0;
        overflow: hidden;
    }
    
    .footer-btn-descr {
        font-size: 0.7rem;
        word-break: break-all;
        line-height: 1.2;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 150px;
        white-space: nowrap;
    }
    
    .btn-arrow {
        width: 28px;
        height: 28px;
        margin-right: 0.5rem;
        flex-shrink: 0;
    }
}

/* Product Detail Page Styles */
.product-detail {
    background: var(--bg-color);
    padding: 120px 0 0;
    min-height: 100vh;
}

.product-detail-card {
    border: 1px solid var(--gray-stroke);
    border-radius: 22px;
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.product-detail-layout {
    display: flex;
    flex-direction: column;
}

.product-detail-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.product-detail-image-section {
    flex: 0 0 350px;
}

.product-detail-info-section {
    flex: 1;
}

.product-detail-image {
    width: 100%;
    height: 350px;
    border-radius: 22px;
    overflow: hidden;
    background: var(--shark);
    border: 1px solid var(--gray-stroke);
}

.product-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.product-detail-info {
    padding: 0;
    min-height: 375px;
    display: flex;
    flex-direction: column;
}

.product-detail-description {
    font-family: var(--font-family-suisse_intl-medium);
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-txt);
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 500px;
    word-wrap: break-word;
}

.product-options {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.product-selects {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.product-select-group {
    flex: 1;
}

.product-detail-title {
    font-family: var(--font-family-suisse_intl-bold);
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.product-detail-description {
    font-family: var(--font-family-suisse_intl-medium);
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-txt);
    line-height: 1.6;
    margin-bottom: 30px;
}

.product-options .form-label {
    font-family: var(--font-family-suisse_intl-medium);
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 8px;
}

.product-select {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--gray-stroke);
    border-radius: 0;
    color: var(--white);
    font-family: var(--font-family-suisse_intl-medium);
    font-size: 14px;
    padding: 12px 0;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'><path fill='%23ffffff' d='M6 9l-3-3h6z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 0 center;
    background-size: 12px;
}

.product-select:focus {
    background: transparent;
    border-bottom-color: var(--white);
    box-shadow: none;
    color: var(--white);
    outline: none;
}

.product-select option {
    background: var(--shark);
    color: var(--white);
}

/* Кастомный выпадающий список */
.custom-select {
    position: relative;
    display: block;
    width: 100%;
}

.custom-select-trigger {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--gray-stroke);
    border-radius: 0;
    color: var(--white);
    font-family: var(--font-family-suisse_intl-medium);
    font-size: 14px;
    padding: 12px 0;
    cursor: pointer;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.custom-select-trigger::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid var(--white);
    transition: transform 0.3s ease;
}

.custom-select.open .custom-select-trigger::after {
    transform: rotate(180deg);
}

.custom-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #000;
    border: 1px solid var(--gray-stroke);
    border-radius: 8px;
    border-top: none;
    max-height: 200px;
    overflow-y: auto;
    z-index: 999;
    display: none;
}

.custom-select.open .custom-options {
    display: block;
}

.custom-option {
    padding: 10px 16px;
    color: var(--white);
    cursor: pointer;
    transition: background-color 0.2s ease;
}

/* Scoped styles for the city filter to match the site filter button and widen the dropdown */
#city-filter-select {
    display: inline-block; /* keep it inline with other filter controls */
}

#city-filter-select .custom-select-trigger {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #FFFFFF;
    color: var(--white);
    font-family: var(--font-medium);
    font-size: 14px;
    cursor: pointer;
    padding: 6px 24px; /* similar padding to .filter-btn */
    border-radius: 20px;
    transition: all 0.25s ease;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    min-width: 160px;
    box-sizing: border-box;
}

#city-filter-select .custom-select-trigger span {
    display: inline-block;
}

#city-filter-select .custom-options {
    min-width: 220px; /* make dropdown wider than trigger */
    left: 0;
    right: auto;
    width: auto;
}

#city-filter-select .custom-option {
    padding: 10px 16px;
}

/* Floating category panel (shown when clicking the sort/filter menu) */
#category-panel {
    position: fixed; /* fixed so it doesn't affect page layout */
    background: transparent; /* overall area transparent, inner box provides background */
    z-index: 999;
    display: none;
}

#category-panel[aria-hidden="false"] {
    display: block;
}

.category-grid {
    background: rgba(0,0,0,1);
    border: 1px solid #696969;
    padding: 20px 20px;
    border-radius: 20px;
    display: grid;
    grid-template-columns: repeat(2, minmax(120px, 1fr));
    gap: 12px 16px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.45);
    min-width: 360px;
}

.category-pill {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #696969;
    color: #fff;
    padding: 5px 18px;
    border-radius: 28px;
    font-family: var(--font-bold);
    font-size: 16px;
    cursor: pointer;
    text-align: center;
    transition: transform 0.12s ease, background 0.12s ease;
}

.category-pill:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,0.08);
}

/* Mobile: smaller pills and tighter spacing */
@media (max-width: 480px) {
    .category-grid {
        grid-template-columns: 1fr; /* stack vertically on narrow screens */
        padding: 10px 12px;
        gap: 8px 10px;
        min-width: auto;
        max-width: calc(100vw - 24px);
        border-radius: 14px;
    }

    .category-pill {
        font-size: 14px;
        padding: 8px 12px;
        border-radius: 20px;
    }

    /* Slightly reduce panel shadow so it feels lighter on small screens */
    .category-grid {
        box-shadow: 0 4px 12px rgba(0,0,0,0.35);
    }
}

.custom-option:hover {
    background: rgba(255, 255, 255, 0.1);
}

.custom-option.selected {
    background: rgba(255, 255, 255, 0.2);
}

/* Кастомная прокрутка для опций */
.custom-options::-webkit-scrollbar {
    width: 8px;
}

.custom-options::-webkit-scrollbar-track {
    background: var(--shark);
    border-radius: 10px;
}

.custom-options::-webkit-scrollbar-thumb {
    background: var(--white);
    border-radius: 10px;
}

.custom-options::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.8);
}

.product-weight-prices {
    display: flex;
    gap: 12px;
    width: 100%;
    border: 1px solid var(--gray-stroke);
    border-radius: 38px;
    padding: 12px;
}

.product-weight-btn {
    background: var(--shark);
    border: 1px solid var(--gray-stroke);
    border-radius: 30px;
    color: var(--white);
    font-family: var(--font-family-suisse_intl-medium);
    font-size: 14px;
    font-weight: 500;
    padding: 12px 20px;
    transition: all 0.3s ease;
    flex: 1;
}

.product-weight-btn:hover,
.product-weight-btn.active {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

.product-buy-btn {
    background: var(--white);
    border: 1px solid var(--white);
    border-radius: 30px;
    color: var(--black);
    font-family: var(--font-family-suisse_intl-semibold);
    font-size: 16px;
    font-weight: 600;
    padding: 12px 24px;
    transition: all 0.3s ease;
    flex: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-buy-btn .price-text {
    flex: 1;
    text-align: left;
}

.product-buy-btn .shop-icon {
    width: 20px;
    height: 20px;
    filter: brightness(0);
    transition: filter 0.3s ease;
}

.product-buy-btn:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.product-buy-btn:hover .shop-icon {
    filter: brightness(0) invert(1);
}

/* Mobile styles for product detail */
@media (max-width: 768px) {
    .product-detail {
        padding: 100px 0 60px;
    }
    
    .product-detail-card {
        padding: 20px;
        border: 1px solid var(--gray-stroke);
        border-radius: 16px;
    }
    
    .product-detail-layout {
        flex-direction: column;
        gap: 0;
    }
    
    .product-detail-content {
        flex-direction: column;
        gap: 0;
    }
    
    .product-detail-image-section {
        flex: none;
        margin: 0;
    }
    
    .product-detail-image {
        height: 350px;
        border-radius: 16px;
        border: 1px solid var(--gray-stroke);
        margin-bottom: 30px;
    }
    
    .product-detail-info {
        padding: 0;
        height: auto;
        display: block;
    }
    
    .product-options {
        flex: none;
        display: block;
        justify-content: flex-start;
    }
    
    .product-detail-title {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .product-detail-description {
        margin-bottom: 20px;
        max-width: 220px;
        word-wrap: break-word;
    }
    
    .product-selects {
        flex-direction: column;
        gap: 15px;
    }
    
    .product-weight-prices {
        gap: 8px;
        flex-wrap: wrap;
        padding: 10px;
        margin: 0;
        border-radius: 16px;
    }
    
    .product-weight-btn {
        font-size: 12px;
        padding: 10px 16px;
        flex: 1;
        min-width: calc(50% - 4px);
    }
    
    .product-buy-btn {
        flex: none;
        width: 100%;
    }
}

/* Reviews Section */
.reviews-section {
    padding: 0 0 80px 0;
}

.reviews-section .custom-container {
    display: flex;
    flex-direction: column;
}

.reviews-title {
    color: var(--white);
    font-family: var(--font-family-suisse_intl-semibold);
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 40px;
    width: 100%;
    padding: 10px 0;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    align-items: flex-start;
}

.review-item {
    background: var(--shark);
    border: 1px solid var(--gray-stroke);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    width: 50%;
}

.review-avatar {
    flex-shrink: 0;
}

.review-content {
    flex: 1;
}

.review-text {
    color: #969696;
    font-family: var(--font-family-suisse_intl-medium);
    font-size: 16px;
    font-weight: 500;
}

.review-date {
    color: #fff;
    font-family: var(--font-family-suisse_intl-medium);
    font-size: 16px;
    font-weight: 400;
}

/* Mobile styles for reviews */
@media (max-width: 768px) {
    .reviews-section {
        padding: 40px 0;
    }
    
    .reviews-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .review-item {
        padding: 16px;
        gap: 12px;
        width: 100%;
    }
    
    .review-text {
        font-size: 14px;
    }
    
    .review-date {
        font-size: 12px;
    }
}

/* Checkout Section */
.checkout-section {
    padding: 60px 0;
}

.checkout-section .custom-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 60px;
}

.checkout-title {
    color: var(--white);
    font-family: var(--font-family-suisse_intl-semibold);
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 30px;
    width: 100%;
}

/* Product Block */
.checkout-product-block {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 60px;
    max-width: 800px;
}

.checkout-product-image {
    width: 300px;
    border-radius: 22px;
    border: 1px solid var(--gray-stroke);
    overflow: hidden;
    flex-shrink: 0;
    background: var(--shark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkout-product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 7px;
}

.checkout-product-info {
    flex: 1;
}

.checkout-product-title {
    color: var(--white);
    font-family: var(--font-family-suisse_intl-semibold);
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
}

.checkout-product-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.checkout-detail-row {
    display: flex;
    gap: 40px;
}

.checkout-detail-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.checkout-detail-label {
    color: var(--white);
    font-family: var(--font-family-suisse_intl-medium);
    font-size: 14px;
    font-weight: 500;
}

.checkout-detail-btn {
    background: var(--shark);
    border: 1px solid var(--gray-stroke);
    border-radius: 20px;
    color: var(--white);
    font-family: var(--font-family-suisse_intl-medium);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
}

.checkout-detail-btn.price {
    background: var(--white);
    color: var(--black);
}

/* Payment Section */
.checkout-payment-section {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.checkout-payment-title {
    color: var(--white);
    font-family: var(--font-family-suisse_intl-semibold);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.payment-method {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
}

.payment-method input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.payment-method::before {
    content: '';
    width: 20px;
    height: 20px;
    border: 2px solid var(--gray-stroke);
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.payment-method.active::before,
.payment-method input[type="radio"]:checked + .payment-method-label::before {
    background: var(--white);
    border-color: var(--white);
    box-shadow: inset 0 0 0 4px var(--shark);
}

.payment-method-label {
    border: 1px solid var(--gray-stroke);
    border-radius: 35px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    flex: 1;
}

.payment-method.active .payment-method-label {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.05);
}

.payment-method input[type="radio"]:checked + .payment-method-label {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.05);
}

.payment-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.payment-name {
    color: var(--white);
    font-family: var(--font-family-suisse_intl-medium);
    font-size: 16px;
    font-weight: 500;
    flex: 1;
}

.payment-amount {
    color: var(--white);
    font-family: var(--font-family-suisse_intl-medium);
    font-size: 16px;
    font-weight: 500;
}

.checkout-pay-btn {
    background: var(--white);
    border: none;
    border-radius: 50px;
    color: #272727;
    font-family: var(--font-family-suisse_intl-semibold);
    font-size: 18px;
    font-weight: 600;
    padding: 20px 48px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    display: block;
    box-shadow: 0px 0px 18px 10px rgba(255, 255, 255, 0.3);
    margin-top: 120px;
}

.checkout-pay-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.checkout-pay-btn:focus {
    outline: none;
    box-shadow: 0px 0px 18px 10px rgba(255, 255, 255, 0.3);
}

a.checkout-pay-btn {
    text-decoration: none;
    display: inline-block;
}

a.checkout-pay-btn:hover {
    text-decoration: none;
}

/* Mobile styles for checkout */
@media (max-width: 992px) {
    .checkout-product-block {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 50px;
    }
    
    .checkout-product-image {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .checkout-payment-section {
        max-width: 100%;
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .checkout-section {
        padding: 40px 0;
    }
    
    .checkout-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .checkout-product-block {
        margin-bottom: 40px;
    }
    
    .checkout-product-title {
        font-size: 30px;
    }
    
    .checkout-payment-title {
        font-size: 20px;
    }
    
    .payment-method-label {
        padding: 16px;
    }

    .checkout-detail-btn {
        min-width: 110px;
    }
    .payment-amount {
        font-size: 12px;
    }
    .payment-name {
        font-size: 12px;
    }
    .checkout-pay-btn {
        margin-top: 60px;
    }
}

/* Plan Section */
.plan-section {
    padding: 0 0 20px;
    background: var(--bg-color);
}

.plan-section .custom-container {
    display: block;
    align-items: unset;
    justify-content: unset;
}

.plan-title {
    color: var(--white);
    font-family: var(--font-family-suisse_intl-semibold);
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 2px;
    display: block;
    width: 100%;
}

.plan-steps {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: nowrap;
}

.plan-step {
    position: relative;
    flex: 1;
    min-width: 200px;
}

.plan-step-number {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 40px;
    height: 40px;
    border: 1px solid #fff;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-family-suisse_intl-semibold);
    font-size: 18px;
    font-weight: 600;
    z-index: 2;
}

.plan-step-text {
    position: absolute;
    bottom: 15px;
    left: 15px;
    color: var(--white);
    font-family: var(--font-family-suisse_intl-semibold);
    font-size: 18px;
    font-weight: 600;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

.plan-step-image {
    position: relative;
    width: 100%;
    min-height: 250px;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid var(--gray-stroke);
    transition: all 0.3s ease;
    cursor: pointer;
}

.plan-step-image:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.2);
}

.plan-step-image img {
    position: absolute;
    left: 60px;
    top: 0;
    width: calc(100% - 60px);
    height: 100%;
    object-fit: cover;
}

/* Mobile styles for plan */
@media (max-width: 992px) {
    .plan-steps {
        justify-content: space-between;
        gap: 15px;
        flex-wrap: nowrap;
    }
    
    .plan-step {
        min-width: auto;
        flex: 1;
    }
}

@media (max-width: 768px) {
    .plan-section {
        padding:  0 0 10px 0;
    }
    
    .plan-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .plan-steps {
        flex-direction: column;
        gap: 20px;
    }
    
    .plan-step {
        width: 100%;
        max-width: none;
    }
    
    .plan-step-image {
        height: 180px;
    }
    
    .plan-step-image img {
        left: 40px;
        width: calc(100% - 40px);
    }
    
    .plan-step-text {
        font-size: 16px;
        bottom: 12px;
        left: 12px;
    }
    
    .plan-step-number {
        top: 12px;
        right: 12px;
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}

/* Offer Section */
.offer-section {
    padding: 60px 0;
    background: var(--bg-color);
}

.offer-section .custom-container {
    display: block;
    align-items: unset;
    justify-content: unset;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.offer-item {
    grid-column: span 2;
}

.offer-item:nth-last-child(-n+2) {
    grid-column: span 3;
}

.offer-item {
    background: transparent;
    border: 1px solid #696969;
    border-radius: 40px;
    padding: 10px;
    color: #969696;
    font-family: var(--font-family-suisse_intl-medium);
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1.4;
}

.offer-item:hover {
    border-color: #555;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1);
}

@media (max-width: 992px) {
    .offer-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }
    
    .offer-item {
        font-size: 15px;
        padding: 18px;
        min-height: 70px;
    }
}

@media (max-width: 768px) {
    .offer-section {
        padding: 40px 0;
    }
    
    .offer-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 30px;
    }
    
    .offer-item {
        font-size: 14px;
        padding: 16px;
        min-height: 60px;
    }
}

/* Calculation Section */
.calculation-section {
    padding: 0 0 40px;
    background: var(--bg-color);
}

.calculation-section .custom-container {
    display: block;
    align-items: unset;
    justify-content: unset;
}

.calculation-content {
    display: flex;
    align-items: stretch;
    gap: 60px;
    border: 1px solid var(--gray-stroke);
    border-radius: 22px;
    background-size: 50% auto;
    background-position: right center;
    background-repeat: no-repeat;
    position: relative;
}

.calculation-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 50%, transparent 100%);
    border-radius: 22px;
    z-index: 1;
}

.calculation-text {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
    max-width: 50%;
}

.calculation-title {
    color: var(--white);
    font-family: var(--font-family-suisse_intl-semibold);
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 1px;
}

.calculation-button {
    display: flex;
}

.btn-calculation {
    display: flex;
    align-items: center;
    background: #0D0D0D;
    border: 2px solid var(--white);
    border-radius: 50px;
    padding: 5px 90px 5px 120px;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    gap: 15px;
}
.btn-calculation .btn-arrow {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
}

.btn-calculation:hover {
    background: var(--white);
    color: var(--black);
    transform: translateY(-2px);
}
.btn-calculation:hover .btn-arrow {
    filter: invert(1);
}

.btn-icon {
    width: 40px;
    height: 40px;
    background: var(--white);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-family-suisse_intl-semibold);
    font-size: 18px;
    font-weight: 600;
    flex-shrink: 0;
}

.btn-calculation:hover .btn-icon {
    background: var(--black);
    color: var(--white);
}

.btn-text {
    text-align: left;
}

.btn-main-text {
    font-family: var(--font-family-suisse_intl-semibold);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0;
}

.btn-sub-text {
    font-family: var(--font-family-suisse_intl-medium);
    font-size: 10px;
    font-weight: 500;
    color: #787878;
}

/* Calculation Mobile Styles */
@media (max-width: 992px) {
    .calculation-content {
        background-size: 60% auto;
        background-position: right center;
    }
    
    .calculation-content::before {
        background: linear-gradient(to right, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 60%, transparent 100%);
        border-radius: 22px;
    }
    
    .calculation-text {
        padding: 30px;
        max-width: 60%;
    }
    
    .calculation-title {
        font-size: 24px;
        margin-bottom: 25px;
    }
}

@media (max-width: 768px) {
    .calculation-section {
        padding: 10px 0 40px;
    }
    
    .calculation-content {
        background-size: auto 100%;
        background-position: center;
        border-radius: 16px;
        overflow: hidden;
    }
    
    .calculation-content::before {
        background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 60%, transparent 100%);
        border-radius: 16px;
    }
    
    .calculation-text {
        padding: 20px;
        max-width: 70%;
        justify-content: center;
    }
    
    .calculation-title {
        font-size: 18px;
        margin-bottom: 20px;
        line-height: 1.1;
    }
    
    .btn-calculation {
        padding: 8px 15px;
        gap: 8px;
        font-size: 12px;
    }
    
    .btn-arrow {
        width: 25px;
        height: 25px;
    }
    
    .btn-main-text {
        font-size: 12px;
    }
    
    .btn-sub-text {
        font-size: 8px;
    }
}

/* Why Us Section */
.why-us-section {
    padding: 80px 0 0;
    background: var(--bg-color);
}

.why-us-section .custom-container {
    display: block;
    align-items: unset;
    justify-content: unset;
}

.why-us-title {
    color: var(--white);
    font-family: var(--font-family-suisse_intl-semibold);
    font-size: 32px;
    font-weight: 700;
    text-align: left;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.why-us-cards {
    display: flex;
    gap: 30px;
    justify-content: space-between;
}

.why-us-card {
    flex: 1;
    background: transparent;
    border: 1px solid var(--gray-stroke);
    border-radius: 22px;
    padding: 20px 20px 15px;
    text-align: left;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.why-us-card:hover {
    transform: translateY(-5px);
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.05);
}

.why-us-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-us-content {
    flex: 1;
}

.why-us-icon img {
    width: 70px;
    height: 70px;
}

.why-us-card-title {
    color: var(--white);
    font-family: var(--font-family-suisse_intl-semibold);
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.2;
}

.why-us-card-text {
    color: var(--gray-txt);
    font-family: var(--font-family-suisse_intl-medium);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
    text-align: left;
}

/* Why Us Mobile Styles */
@media (max-width: 992px) {
    .why-us-cards {
        flex-direction: column;
        gap: 20px;
    }
    
    .why-us-card {
        padding: 30px 25px;
    }
    
    .why-us-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 25px;
    }
    
    .why-us-icon img {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 768px) {
    .why-us-section {
        padding: 60px 0 0;
    }
    
    .why-us-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .why-us-card {
        padding: 25px 20px;
        border-radius: 16px;
        flex-direction: row;
        align-items: center;
        gap: 20px;
    }
    
    .why-us-content {
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    
    .why-us-icon {
        position: static;
        margin-bottom: 0;
        flex-shrink: 0;
        align-items: center;
        order: 2;
    }
    
    .why-us-icon img {
        width: 70px;
        height: 70px;
    }
    
    .why-us-card-title {
        font-size: 24px;
        margin-bottom: 8px;
        margin-right: 0;
    }
    
    .why-us-card-text {
        font-size: 13px;
        margin-right: 0;
    }
}

/* CTA Section */
.cta-section {
    padding: 0 0 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-section .custom-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

@media (max-width: 768px) {
    .cta-section {
        padding: 60px 0;
    }
}

/* Payment Section */
.payment-section {
    padding: 80px 0 0;
    background: var(--bg-color);
}

.payment-section .custom-container {
    display: block;
    align-items: unset;
    justify-content: unset;
}

.payment-title {
    color: var(--white);
    font-family: var(--font-family-suisse_intl-semibold);
    font-size: 32px;
    font-weight: 700;
    text-align: left;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.payment-cards {
    display: flex;
    gap: 30px;
    justify-content: space-between;
    align-items: stretch;
}

.payment-card {
    flex: 1;
    background: transparent;
    border: 1px solid var(--gray-stroke);
    border-radius: 22px;
    padding: 20px 20px 15px;
    text-align: left;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 200px;
}

.payment-card:hover {
    transform: translateY(-5px);
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.05);
}

.payment-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.payment-card-title {
    color: var(--white);
    font-family: var(--font-family-suisse_intl-semibold);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
}

.payment-card-text {
    color: var(--gray-txt);
    font-family: var(--font-family-suisse_intl-medium);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
    text-align: left;
    margin-bottom: 0;
}

/* Payment Mobile Styles */
@media (max-width: 992px) {
    .payment-cards {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
    }
    
    .payment-card {
        padding: 30px 25px;
    }
}

@media (max-width: 768px) {
    .payment-section {
        padding: 60px 0 0;
    }
    
    .payment-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .payment-card {
        padding: 25px 20px;
        border-radius: 16px;
        flex-direction: row;
        align-items: center;
        gap: 20px;
    }
    
    .payment-content {
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    
    .payment-card-title {
        font-size: 24px;
        margin-bottom: 8px;
        margin-right: 0;
    }
    
    .payment-card-text {
        font-size: 13px;
        margin-right: 0;
    }
}

/* Large Price Text */
.price-large {
    font-size: 35px;
    font-weight: bold;
}

.price-medium {
    font-size: 25px;
    font-weight: bold;
}

/* Anchor offset for fixed header */
#works,
#contacts {
    scroll-margin-top: 100px;
}
#shop {
    scroll-margin-top: 150px;
}

/* Calculator Section */
.calculator-section {
    padding: 60px 0;
    background: var(--bg-color);
}

.calculator-section .custom-container {
    display: block;
    align-items: unset;
    justify-content: unset;
}

.calc-main-title {
    color: var(--white);
    font-family: var(--font-family-suisse_intl-semibold);
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 2px;
}

.calc-tab-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 10px;
    width: 100%;
}

.calc-tab-btn {
    background: transparent;
    border: 1px solid #333;
    border-radius: 22px;
    padding: 8px 25px;
    color: #969696;
    font-family: var(--font-family-suisse_intl-medium);
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.calc-tab-btn:hover,
.calc-tab-btn.active {
    border-color: #696969;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
}

.calc-tab-content {
    display: none;
}

.calc-tab-content.active {
    display: block;
}

.calc-main-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    background: transparent;
    border: 1px solid #696969;
    border-radius: 22px;
    padding: 40px;
}

.calc-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.calc-title {
    color: var(--white);
    font-family: var(--font-family-suisse_intl-semibold);
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    flex: 1;
}

.calc-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.calc-row {
    display: flex;
    gap: 20px;
    align-items: flex-end;
    flex-wrap: wrap;
}

.calc-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1.1;
}

.calc-field-narrow {
    flex: 0 0 300px;
}

.calc-field-wide {
    flex: 1.5;
}

.calc-field-small {
    flex: 0.8;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.calc-field-small label {
    margin-bottom: 0;
    font-size: 16px;
}

.calc-field-small .calc-input-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.calc-field-small .calc-input {
    width: 50px;
    height: 50px;
    padding: 0;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    flex-shrink: 0;
}

.calc-field-small small {
    font-size: 11px;
    color: #ccc;
    line-height: 1.2;
}

.calc-field-button {
    flex: 2;
    display: flex;
    align-items: flex-end;
    padding-bottom: 20px;
}

.calc-field label {
    color: var(--white);
    font-family: var(--font-family-suisse_intl-medium);
    font-size: 18px;
    font-weight: 600;
}

.calc-select,
.calc-input {
    background: var(--white);
    border-radius: 4px;
    padding: 12px 15px;
    color: #969696;
    font-family: var(--font-family-suisse_intl-medium);
    font-size: 14px;
    font-weight: 600;
    box-shadow: inset 0 0 10px 0px rgba(0, 0, 0, 0.58)
}

.calc-select:focus,
.calc-input:focus {
    outline: none;
    border-color: #999;
}

/* Hide number input arrows/spinners */
.calc-input[type="number"]::-webkit-outer-spin-button,
.calc-input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.calc-input[type="number"] {
    -moz-appearance: textfield;
    appearance: textfield;
}

.calc-radio-group {
    display: flex;
    gap: 20px;
}

.calc-radio {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.calc-radio input[type="radio"] {
    width: 16px;
    height: 16px;
}

/* Button-style radio group */
.calc-button-group {
    display: flex;
    gap: 15px;
}

.calc-radio-btn {
    background: transparent;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 5px 35px;
    color: var(--white);
    font-family: var(--font-family-suisse_intl-medium);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 80px;
}

.calc-radio-btn:hover {
    border-color: #555;
    background: rgba(255, 255, 255, 0.05);
}

.calc-radio-btn.active {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.calc-slider-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.calc-slider {
    flex: 1;
    height: 25px;
    background: #333;
    outline: none;
    border-radius: 12px;
    border: 2px solid #696969;
    -webkit-appearance: none;
    appearance: none;
    position: relative;
}

.calc-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 30px;
    height: 30px;
    background: var(--white);
    border: 3px solid #696969;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-top: -5px;
}

.calc-slider::-moz-range-thumb {
    width: 30px;
    height: 30px;
    background: var(--white);
    border: 3px solid #696969;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Webkit slider track styling */
.calc-slider::-webkit-slider-runnable-track {
    height: 21px;
    background: linear-gradient(to right, var(--white) 0%, var(--white) var(--slider-progress, 50%), #333 var(--slider-progress, 50%), #333 100%);
    border-radius: 12px;
}

/* Firefox slider track styling */
.calc-slider::-moz-range-track {
    height: 21px;
    background: #333;
    border-radius: 12px;
    border: none;
}

.calc-slider::-moz-range-progress {
    height: 21px;
    background: var(--white);
    border-radius: 12px;
}

.calc-slider-value {
    background: #fff;
    padding: 2px 12px;
    border-radius: 8px;
    font-size: 16px;
    color: #969696;
    font-family: var(--font-family-suisse_intl-medium);
    width: 60px;
    min-width: 60px;
    text-align: center;
    border: 1px solid #333;
    font-weight: 600;
    box-shadow: inset 0 0 10px 0px rgba(0, 0, 0, 0.58);
}

.calc-field small {
    color: #969696;
    font-size: 12px;
}

/* Custom selects in calculator */
.calculator-section .custom-select-trigger {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--gray-stroke);
    border-radius: 0;
    padding: 12px 0;
    color: var(--white);
    font-family: var(--font-family-suisse_intl-medium);
    font-size: 14px;
}

.calculator-section .custom-select-trigger:focus,
.calculator-section .custom-select.open .custom-select-trigger {
    border-bottom-color: #555;
    outline: none;
}

.calculator-section .custom-options {
    background: #000;
    border: 1px solid var(--gray-stroke);
    border-radius: 8px;
    border-top: none;
    margin-top: 0;
}

.calculator-section .custom-option {
    padding: 10px 15px;
    color: var(--white);
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.calculator-section .custom-option:hover {
    background: rgba(255, 255, 255, 0.1);
}

.calculator-section .custom-option.selected {
    background: rgba(255, 255, 255, 0.05);
}

.calc-calculate-btn {
    background: var(--white);
    color: var(--black);
    border: none;
    border-radius: 8px;
    padding: 15px 30px;
    font-family: var(--font-family-suisse_intl-semibold);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    width: 100%;
    box-shadow: 0px 0px 18px 10px rgba(255, 255, 255, 0.3);
}

.calc-calculate-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.calc-result {
    border: 1px solid #696969;
    border-radius: 22px;
    padding: 30px 20px;
    text-align: center;
    min-width: 300px;
    flex-shrink: 0;
}

.calc-result-label {
    color: var(--white);
    font-family: var(--font-family-suisse_intl-medium);
    font-size: 20px;
    font-weight: 600;
}

.calc-result-amount {
    color: var(--white);
    font-family: var(--font-family-suisse_intl-bold);
    font-size: 40px;
    font-weight: 700;
    min-width: 250px;
    text-align: right;
}

/* Mobile styles for calculator */
@media (max-width: 992px) {
    .calc-tab-buttons {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .calc-tab-btn {
        width: 100%;
    }
    
    .calc-main-container {
        gap: 25px;
        padding: 30px;
    }
    
    .calc-header {
        flex-direction: column;
        gap: 20px;
    }
    
    .calc-result {
        min-width: auto;
        width: 100%;
    }
    
    .calc-row {
        gap: 15px;
    }
    
    .calc-field-narrow,
    .calc-field-wide {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .calculator-section {
        padding: 40px 0;
    }
    
    .calc-main-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .calc-tab-buttons {
        grid-template-columns: 1fr;
    }
    
    .calc-tab-btn {
        width: 100%;
        font-size: 13px;
        padding: 10px 20px;
    }
    
    .calc-main-container {
        padding: 20px;
        gap: 20px;
    }
    
    .calc-header {
        flex-direction: column;
        gap: 15px;
    }
    
    .calc-title {
        font-size: 20px;
    }
    
    .calc-result-amount {
        font-size: 24px;
        text-align: center;
    }
}

.btn-page {
    background-color: #000;
    border: 1px solid #696969;
    color: #969696;
}

.btn-page:hover {
    background-color: #fff;
    color: #000;
}

 /* Support button - fixed bottom right */
    .support-btn{
        position:fixed;
        bottom:24px;
        right:24px;
        background:linear-gradient(135deg,#000000 0%,#09050c 100%);
        color:#fff;border:none;border-radius:50px;padding:14px 24px;font-size:0.95rem;font-weight:600;cursor:pointer;box-shadow:0 4px 15px rgba(9, 10, 12, 0.4);transition:all 0.3s ease;z-index:1000;display:flex;align-items:center;gap:8px;text-decoration:none;border: 2px solid rgba(255, 255, 255, 1);}
    .support-btn:hover{transform:translateY(-2px);box-shadow:0 6px 20px rgba(9, 10, 12, 0.6)}
    .support-btn:active{transform:translateY(0)}
    .support-btn svg{width:20px;height:20px}

    /* Responsive rules for phones */
    @media (max-width: 600px) {
      body{padding:12px}
      .wrap{max-width:100%;margin:12px;padding:12px;border-radius:10px}
      .meta{flex-direction:column;align-items:flex-start;gap:8px}
      .save-link{flex-direction:column;align-items:flex-start}
      .save-link .text{font-size:0.9rem}
      .qr img{width:160px;height:160px}
      #qrImage img{max-width:100%;height:auto}
      #purchasedImage img{max-width:100%;height:auto}
      .copy-btn{width:100%;display:block}
      #reviewForm textarea{width:100%}
      .countdown{font-size:0.95rem}
      #purchasedDescription{font-size:0.95rem}
      .support-btn{bottom:16px;right:16px;padding:12px 18px;font-size:0.9rem}
      .support-btn span{display:none}
      .support-btn{border-radius:50%;width:48px;height:48px;padding:0;justify-content:center}
    }