/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Geologica', sans-serif;
    line-height: 1.6;
    color: #141414;
    overflow-x: hidden;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Unbounded', sans-serif;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgb(255, 255, 255);
    z-index: 1000;
    padding: 25px 0;
    margin: 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    height: auto;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.logo p {
    font-size: 32px;
    font-weight: 400;
    color: #141414;
    font-family: 'Unbounded', sans-serif;
}

.logo p a {
    color: #141414;
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo p a:hover {
    color: #666;
}

.header-email {
    font-family: 'Unbounded', sans-serif;
    font-weight: 300;
    font-size: 20px;
    color: #141414;
    text-decoration: none;
}

.header-icons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #141414;
    cursor: pointer;
}

.header-icons a.icon {
    text-decoration: none;
}

/* Cart Badge */
.cart-icon-wrapper {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #FF0000;
    color: #FFFFFF;
    font-family: 'Geologica', sans-serif;
    font-size: 11px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    line-height: 1;
}

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

/* Burger Menu */
.burger-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    display: flex;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s linear 0.3s, opacity 0.3s ease;
}

.burger-menu.active {
    visibility: visible;
    opacity: 1;
    transition: visibility 0s linear 0s, opacity 0.3s ease;
}

.burger-menu-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.burger-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: blur(15px) brightness(0.3);
    transform: scale(1.1);
}

.burger-menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.burger-menu.active .burger-menu-overlay {
    opacity: 1;
}

.burger-menu-header {
    position: absolute;
    z-index: 4;
    width: 100%;
    padding: 25px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    top: 0;
    left: 0;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.4s ease 0.1s, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.burger-menu.active .burger-menu-header {
    opacity: 1;
    transform: translateY(0);
}

.burger-menu-email,
burger-menu-email a {
    font-family: 'Unbounded', sans-serif;
    font-weight: 300;
    font-size: 20px;
    color: #ffffff;
    text-decoration: none;
}

.burger-menu-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.burger-menu-logo p {
    font-family: 'Unbounded', sans-serif;
    font-size: 32px;
    font-weight: 400;
    color: #ffffff;
    margin: 0;
}

.burger-menu-logo p a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.burger-menu-logo p a:hover {
    color: #cccccc;
}
.burger-menu-logo p a:focus {
    color: #ffffff;
}

.burger-menu-close {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    cursor: pointer;
    font-size: 24px;
    transition: color 0.3s ease;
}

.burger-menu-close:hover {
    color: rgba(255, 255, 255, 0.7);
}

.burger-menu-content {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease 0.1s, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.burger-menu.active .burger-menu-content {
    opacity: 1;
    transform: translateY(0);
}

.burger-menu-item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    position: relative;
}

.burger-menu-item a {
    color: #ffffff;
    font-family: 'Unbounded', sans-serif;
    font-size: 32px;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    transition: color 0.3s ease;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.burger-menu-item a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.burger-menu-divider {
    width: 1px;
    height: 80%;
    background: rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 4;
}

.burger-menu-socials {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    gap: 18px;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
    transition: opacity 0.4s ease 0.2s, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.burger-menu.active .burger-menu-socials {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.burger-social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.burger-social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 0;
}

/* Main Hero Section - Promo Banner */
.hero-section {
    min-height: calc(100vh - 83px);
    height: calc(100vh - 83px);
    background: #F5F5F5;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin: 0;
    margin-top: 83px;
    padding: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 600px;
    position: relative;
    z-index: 3;
}

/* Добавляем полупрозрачный фон для лучшей читаемости текста */
.hero-text::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    z-index: -1;
}

.hero-headlines {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero-title {
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    font-size: 96px;
    line-height: 1.2;
    color: #000000;
    margin: 0;
}



.hero-separator {
    width: 99px;
    height: 1px;
    background: #000000;
}

.hero-description {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero-text-primary {
    font-family: 'Geologica', sans-serif;
    font-weight: 300;
    font-size: 24px;
    line-height: 1.25;
    color: #000000;
    margin: 0;
}

.hero-text-secondary {
    font-family: 'Geologica', sans-serif;
    font-weight: 300;
    font-size: 20px;
    line-height: 1.25;
    color: #000000;
    margin: 0;
}

.hero-cta-btn {
    font-family: 'Geologica', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.25;
    color: #FFFFFF;
    background: #000000;
    border: none;
    padding: 15px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
    width: 245px;
    text-decoration: none;
    text-align: center;
    display: inline-block;
}

.hero-cta-btn:hover {
    background: #333333;
    transform: translateY(-2px);
}


.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.hero-image-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: url('../img/parallax-main.jpg') center center/cover no-repeat;
    filter: brightness(0.85) blur(0.5px);
}



.hero-title {
    font-size: 96px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 24px rgba(0,0,0,0.18);
}

.hero-subtitle {
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 1.2;
    color: #000000;
    margin: 0;
}

.hero-description {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.4;
    max-width: 700px;
    text-align: left;
    color: #fff;
    text-shadow: 0 2px 24px rgba(0,0,0,0.18);
}

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 0;
    font-family: 'Geologica', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.25;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: rgba(255,255,255,0.08);
    color: #fff;
    border: 1px solid #fff;
    font-size: 20px;
    font-weight: 400;
    padding: 16px 40px;
    border-radius: 8px;
    box-shadow: 0 2px 24px rgba(0,0,0,0.10);
    transition: background 0.2s, color 0.2s;
}

.btn-primary:hover {
    background: #fff;
    color: #141414;
}

.btn-secondary {
    background: #141414;
    color: #FFFFFF;
}

.btn-outline {
    font-family: 'Geologica', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.25;
    padding: 15px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    background: transparent;
    color: #141414;
    border: 1px solid #141414;
    width: 100%;
}

.btn-outline:hover {
    background: #141414;
    color: #FFFFFF;
}
.blog .btn-outline {
    display: block;
    width: 245px;
    margin: 0 auto;
}
.hero-lines {
    position: absolute;
    left: 50%;
    bottom: 60px;
    transform: translateX(-50%);
    width: 80vw;
    max-width: 700px;
    height: 2px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.line {
    width: 100%;
    height: 2px;
    background: rgba(255,255,255,0.18);
    margin: 0 auto;
}

.line:first-child {
    top: 235px;
    left: 0;
}

.line:last-child {
    top: 43px;
    left: 522px;
    transform: rotate(90deg);
}

/* Categories Section */
.categories {
    padding: 100px 0;
    background: #FFFFFF;
}

.section-title {
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 82px;
    color: #141414;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    justify-items: center;
    align-items: stretch;
}

.category-card {
    text-align: center;
    width: 100%;
    margin: 0 auto;
}

.category-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4/6;
    height: auto;
    overflow: hidden;
    box-shadow: 0 4px 32px rgba(0,0,0,0.08);
}

.category-label {
    position: absolute;
    left: 50%;
    bottom: 40px;
    transform: translateX(-50%);
    color: #000000;
    font-family: 'Unbounded', sans-serif;
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 0.02em;
    border-radius: 16px;
    pointer-events: none;
    white-space: nowrap;
    text-transform: uppercase;
}

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

.category-card h3 {
    font-size: 28px;
    font-weight: 400;
    text-transform: uppercase;
    color: #141414;
}

.categories-button {
    text-align: center; 
}

/* Quote Section */
.quote {
    background: #FFFFFF;
}

.quote-content {
    text-align: center;
    margin: 0 auto;
}

.quote-content h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.24;
    margin-bottom: 50px;
    color: #141414;
}

.quote-content p {
    font-size: 24px;
    font-weight: 300;
    line-height: 1.25;
    color: #404040;
}

/* Products Section */
.products {
    padding: 50px 0 100px 0;
    background: #fff;
}


.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    justify-items: center;
    align-items: stretch;
}

.product-card {
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    overflow: hidden;
    width: 100%;
    min-height: 480px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.product-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-6px);
    border-color: rgba(0, 0, 0, 0.08);
}

.product-card:hover::before {
    opacity: 1;
}

/* Product Card Links */
.product-image-link,
.product-title-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.product-image-link {
    width: 100%;
}

.product-title-link h3 {
    transition: color 0.2s ease;
}

.product-title-link:hover h3 {
    color: #666;
}

.product-image {
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: #fafafa;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: background 0.4s ease;
}

.product-card:hover .product-image {
    background: #f5f5f5;
}

/* Discount Banner */
.discount-banner {
    position: absolute;
    top: 30px;
    left: -65px;
    width: 255px;
    height: 70px;
    z-index: 10;
    background: #FF0000;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-45deg);
    transform-origin: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.product-card:hover .discount-banner {
    background: #E60000;
    transform: rotate(-45deg) scale(1.08);
    box-shadow: 0 4px 16px rgba(255, 0, 0, 0.3);
}

.discount-banner span {
    color: #FFFFFF;
    font-family: 'Geologica', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
    white-space: nowrap;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

.product-card:hover .discount-banner span {
    transform: rotate(45deg) scale(1.1);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    background: transparent;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    filter: brightness(1);
}

.product-card:hover .product-image img {
    transform: scale(1.08);
    filter: brightness(1.02);
}

/* Add to Cart Button */
.add-to-cart-btn {
    position: relative;
    background: #141414;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    font-family: 'Geologica', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    margin-top: 12px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.add-to-cart-btn i {
    font-size: 14px;
}

.add-to-cart-btn:hover {
    background: #000000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.add-to-cart-btn:active {
    transform: translateY(0);
}

.product-info {
    width: 100%;
    max-width: 100%;
    padding: 24px 20px 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    flex-grow: 1;
    position: relative;
    z-index: 2;
    box-sizing: border-box;
    overflow: hidden;
}

.price-button-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    max-width: 100%;
    flex-wrap: wrap;
    margin-top: auto;
    box-sizing: border-box;
}

.product-info .add-to-cart-btn {
    margin-top: 0;
    width: auto;
    flex-shrink: 0;
    padding: 10px 12px;
    min-width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.price-button-container .price-container {
    margin-bottom: 0;
}

.price-button-container .price {
    margin-bottom: 0;
}

.product-info h3 {
    font-family: 'Unbounded', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #141414;
    flex-shrink: 0;
    line-height: 1.4;
    transition: color 0.3s ease;
    margin: 0;
    width: 100%;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    box-sizing: border-box;
}

.product-card:hover .product-info h3 {
    color: #000000;
}

.price {
    font-size: 18px;
    font-weight: 700;
    color: #141414;
    margin-bottom: 0;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    box-sizing: border-box;
}

.product-card:hover .price {
    color: #000000;
}

/* Price with discount */
.price-container {
    display: flex;
    align-items: flex-start;
    gap: 1px;
    margin-bottom: 0;
    flex-direction: column;
    max-width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.old-price {
    font-size: 15px;
    font-weight: 400;
    color: #A0A0A0;
    text-decoration: line-through;
    line-height: 1.25;
    transition: color 0.3s ease;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    box-sizing: border-box;
}

.product-card:hover .old-price {
    color: #877E7E;
}

.new-price {
    font-size: 18px;
    font-weight: 700;
    color: #FF0000;
    line-height: 1.25;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    box-sizing: border-box;
}

.product-card:hover .new-price {
    color: #E60000;
}

/* Product description */
.product-description {
    font-family: 'Geologica', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #877E7E;
    margin-bottom: 4px;
    line-height: 1.25;
}

.product-color {
    font-family: 'Geologica', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #877E7E;
    margin-bottom: 8px;
    line-height: 1.25;
}

.size-selector {
    display: flex;
    gap: 6px;
    margin-top: 8px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.size {
    font-size: 13px;
    font-weight: 400;
    color: #877E7E;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 4px 8px;
    border-radius: 4px;
    background: transparent;
}

.size.active {
    color: #141414;
    font-weight: 600;
    background: #F9FAFB;
}

.size:hover {
    color: #141414;
    background: #F5F5F5;
}

.btn-secondary {
    margin-top: 50px;
    padding: 14px 32px;
    font-size: 18px;
    font-weight: 700;
}

/* Brands Section */
.brands {
    position: relative;
    height: 450px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.brands-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.brands-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/company-section-background.jpg') center/cover no-repeat;
}

.brands-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #232323;
    opacity: 0.45;
}

.brands-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1107px;
    margin: 0 auto;
    color: #FFFFFF;
}

.brands-content h2 {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.24;
    margin-bottom: 40px;
}

.brands-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    height: 80px;
    gap: 30px;
}

.brand-logo img {
    height: auto;
    width: auto;
    opacity: 0.85;
    filter: grayscale(0.2) contrast(1.1);
    transition: opacity 0.2s, filter 0.2s;
}

.brand-logo img:hover {
    opacity: 1;
    filter: grayscale(0) contrast(1.2) drop-shadow(0 2px 8px rgba(0,0,0,0.10));
}

.brands-content p {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.25;
    color: #FFFFFF;
}

/* About Section */
.about {
    position: relative;
    height: 664px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.about-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.about-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    z-index: 2;
}

.about .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
    min-height: 100%;
}

.about-content {
    text-align: left;
    margin-left: 0;
    align-self: center;
    position: relative;
    z-index: 3;
    width: 50%;
} 

.about-content h2 {
    font-size: 40px;
    font-weight: 300;
    line-height: 1.24;
    margin-bottom: 40px;
    color: #141414;
}

.about-text {
    margin-bottom: 50px;
}

.about-button {
    max-width: 245px;
}

.about-text p {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.25;
    color: #877E7E;
    margin-bottom: 40px;
}

/* Reviews Section */
.reviews {
    padding: 100px 0;
    background: #F9FAFB;
}

.reviews-header {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 50px;
}

.reviews-label {
    font-size: 24px;
    font-weight: 400;
    text-transform: uppercase;
    color: #877E7E;
    margin-bottom: 30px;
    display: block;
}

.reviews-description {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.25;
    color: #877E7E;
}

.reviews-header h2 {
    font-size: 48px;
    font-weight: 700;
    text-transform: uppercase;
    color: #141414;
    margin-bottom: 30px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 27px;
    align-items: stretch;
}

.review-card {
    background: #FFFFFF;
    padding: 20px;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.review-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex-grow: 1;
}

.review-content p {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.25;
    color: #141414;
    overflow: hidden;
    flex-grow: 1;
}

.review-divider {
    width: 100%;
    height: 1px;
    background: #D0D5DD;
    margin: 0;
}

.review-author {
    margin-top: auto;
}

.review-author h4 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.24;
    color: #141414;
    margin: 0 0 5px 0;
}

.review-author span {
    font-size: 14px;
    font-weight: 100;
    line-height: 1.25;
    color: #877E7E;
    display: block;
}

/* Blog Section */
.blog {
    padding: 100px 0;
    background: #FFFFFF;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}



.blog-card:hover .blog-link .icon {
    background: #000000;
    color: #FFFFFF;
}

.blog-image {
    width: auto;
    height: 356px;
    overflow: hidden;
    margin-bottom: 24px;
}

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

.blog-content h3 {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.43;
    letter-spacing: -0.04em;
    color: #141414;
    margin-bottom: 8px;
}

.blog-content p {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: -0.02em;
    color: #877E7E;
    margin-bottom: 24px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.blog-link {
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.blog-content h3 a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.blog-content h3 a:hover {
    color: #666;
}

.blog-image a {
    display: block;
    height: 100%;
    text-decoration: none;
}

.blog-link .icon {
    width: 48px;
    height: 48px;
    border: 1px solid #D0D5DD;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #141414;
}

.blog-link span {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.14;
    letter-spacing: -0.02em;
    color: #141414;
}

.blog-date {
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-date span {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.14;
    letter-spacing: -0.02em;
    color: #141414;
}

.blog-date i {
    color: #D0D5DD;
}

/* Footer */
.footer {
    background: #F9FAFB;
    padding: 50px 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 195px;
}

.footer-logo {
    width: 400px;
}

.footer-logo h3 {
    font-size: 32px;
    font-weight: 400;
    line-height: 1.24;
    color: #141414;
    margin-bottom: 48px;
}

.footer-logo p {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.5;
    color: #141414;
    opacity: 0.6;
}

.footer-links {
    display: flex;
    gap: 46px;
}

.footer-column h4 {
    font-size: 24px;
    font-weight: 400;
    line-height: 2.25;
    color: #141414;
    margin-bottom: 10px;
}

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

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

.footer-column ul li a {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.25;
    color: #141414;
    text-decoration: none;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.footer-column ul li a:hover {
    opacity: 1;
}

.footer-column h4 a {
    color: #141414;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-column h4 a:hover {
    opacity: 0.8;
}

.footer-bottom {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid #D0D5DD;
}

.footer-credits {
    text-align: center;
}

.footer-credits span {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
    color: #141414;
}

.footer-credits a {
    color: #141414;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-credits a:hover {
    opacity: 0.7;
}

.footer-socials {
    display: flex;
    justify-content: flex-end;
}

.footer-copyright span {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
    color: #141414;
}

.footer-socials {
    display: flex;
    gap: 18px;
}

.social-link {
    width: 32px;
    height: 32px;
    background: #F3F5F8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #141414;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #141414;
    color: #FFFFFF;
}

.container .hero-content{
    margin: 0 !important;
}


/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Cart */
.cart-title {
    text-align: left;
}

/* Loading animation */
.loading {
    opacity: 0;
    animation: fadeIn 0.5s ease-in forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
} 

.contacts-map-section {
    width: 100vw;
    max-width: 100%;
    height: 30vh; 
    margin: 0;
    padding: 0;
    overflow: hidden;
    position: relative;
    z-index: 1;
  }

  .contacts-map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
  }


  
/* Contacts Section */
.contacts-section {
    padding: 35px 0 100px;
    background-color: #fff;
  }
  
  .contacts-content {
    display: flex;
    justify-content: space-between;
    gap: 100px;
    align-items: start;
  }
  
  /* Изменяем порядок колонок - форма справа */
  .contacts-info {
    order: 1;
    width: 50%;
    flex-shrink: 0;
  }
  
  .contact-form-container {
    order: 2;
    width: 50%;
    flex-shrink: 0;
  }
  
  /* Left Column - Contact Info */
  .contacts-info {
    max-width: 500px;
  }
  
  .contacts-title {
    font-weight: 700;
    font-size: 48px;
    color: #000000;
    margin: 0 0 24px 0;
    line-height: 1.2;
  }
  
  .contacts-description {
    margin-bottom: 40px;
  }
  
  .contacts-description p {
    font-weight: 400;
    font-size: 24px;
    color: #434134;
    margin: 0 0 8px 0;
    line-height: 1.5;
  }
  
  .contact-blocks {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  
  .contact-block {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  
  .contact-block:hover {
    border-color: #0094ff;
    box-shadow: 0 2px 8px rgba(0, 148, 255, 0.1);
  }
  
  .contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
  }
  
  .contact-text {
    font-weight: 400;
    font-size: 16px;
    color: #434134;
  }
  
  /* Right Column - Contact Form */
  .contact-form-container {
    max-width: 900px;
  }
  
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  
  .form-row {
    display: flex;
    gap: 16px;
  }

  .form-rows {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;

}
  
  .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
  }
  
  .form-group label {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #434134;
  }
  
  .form-group input,
  .form-group textarea {
    padding: 16px;
    border: 1px solid #e0e0e0;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: #434134;
    background-color: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  
  .form-group input:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: #0094ff;
    box-shadow: 0 0 0 3px rgba(0, 148, 255, 0.1);
  }
  
  .form-group input::placeholder,
  .form-group textarea::placeholder {
    color: #999;
  }
  
  .form-group textarea {
    resize: vertical;
    min-height: 120px;
  }
  
  .form-description{
    margin-bottom: 20px;
  }
  /* Checkbox Styling */

  
  .checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #434134;
    line-height: 1.4;
  }
  
  .checkbox-label input[type="checkbox"] {
    display: none;
  }
  
  .checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    background-color: #fff;
    flex-shrink: 0;
    margin-top: 2px;
    position: relative;
    transition: border-color 0.2s, background-color 0.2s;
  }
  .checkmarks {
    width: 20px;
    height: 20px;
    border: 2px solid #e0e0e0;
    background-color: #fff;
    flex-shrink: 0;
    position: relative;
    transition: border-color 0.2s, background-color 0.2s;
  }
  
  .checkbox-label input[type="checkbox"]:checked + .checkmarks {
    background-color: #0094ff;
    border-color: #0094ff;
}

.checkbox-label input[type="checkbox"]:checked + .checkmarks::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

  /* Submit Button - Matching Figma Design */
  .submit-btn {
    background: #141414;
    color: #F8FAFF;
    font-family: 'Geologica', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.25;
    text-align: center;
    padding: 14px 20px;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    display: block;
  }

  .submit-btn:hover {
    background: #2a2a2a;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(20, 20, 20, 0.2);
  }

  .submit-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(20, 20, 20, 0.3);
  }

  
/* Sign In Page Styles */
.sign-in-section {
    padding: 150px 0 0;
    background: #FFFFFF;
}

.sign-in-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin: 0 auto;
    align-items: start;
}

.sign-in-left,
.sign-in-right {
    display: flex;
    flex-direction: column;
}

.sign-in-title {
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 1.2;
    color: #141414;
    margin: 0 0 20px 0;
}

.forgot-password-link {
    font-family: 'Geologica', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #141414;
    text-decoration: none;
    margin-bottom: 40px;
    display: inline-block;
    transition: color 0.3s ease;
}

.forgot-password-link:hover {
    color: #666;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.login-form .form-group label {
    font-family: 'Geologica', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #141414;
}

.login-form .form-group input {
    padding: 16px;
    border: 1px solid #D0D5DD;
    border-radius: 0;
    font-family: 'Geologica', sans-serif;
    font-size: 16px;
    color: #141414;
    background: #FFFFFF;
    transition: border-color 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.login-form .form-group input:focus {
    outline: none;
    border-color: #141414;
}

.login-form .form-group input::placeholder {
    color: #877E7E;
}

.password-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.password-input-wrapper input {
    padding-right: 50px;
}

.password-toggle {
    position: absolute;
    right: 16px;
    background: none;
    border: none;
    color: #141414;
    cursor: pointer;
    font-size: 18px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.password-toggle:hover {
    color: #666;
}

.login-btn {
    font-family: 'Geologica', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.25;
    color: #FFFFFF;
    background: #000000;
    border: none;
    padding: 15px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
    margin-top: 10px;
}

.login-btn:hover {
    background: #333333;
}

.privacy-text {
    font-family: 'Geologica', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.5;
    color: #141414;
    margin: 20px 0 0 0;
    text-align: left;
}

.loyalty-intro {
    font-family: 'Geologica', sans-serif;
    font-weight: 100;
    font-size: 20px;
    line-height: 1.5;
    color: #141414;
    margin: 0 0 30px 0;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.benefit-item i {
    color: #141414;
    font-size: 18px;
    margin-top: 4px;
    flex-shrink: 0;
}

.benefit-item span {
    font-family: 'Geologica', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    color: #141414;
}

.cta-text {
    font-family: 'Geologica', sans-serif;
    font-weight: 100;
    font-size: 20px;
    line-height: 1.6;
    color: #141414;
    margin: 0 0 30px 0;
}

.learn-more-text {
    font-family: 'Geologica', sans-serif;
    font-weight: 100;
    font-size: 20px;
    line-height: 1.5;
    color: #141414;
    margin: 0 0 30px 0;
}

.registration-btn {
    font-family: 'Geologica', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.25;
    color: #FFFFFF;
    background: #000000;
    border: none;
    padding: 15px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
}

.registration-btn:hover {
    background: #333333;
}

.registration-link {
    text-decoration: none;
    display: block;
    text-align: center;
    color: #FFFFFF;
}

.registration-link:hover {
    color: #FFFFFF;
    text-decoration: none;
}

/* Registration Form Styles */
.registration-form {
    gap: 25px;
}

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

.checkbox-group-registration {
    margin: 0;
}

.checkbox-label-registration {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-family: 'Geologica', sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 1.5;
    color: #141414;
}

.checkbox-label-registration input[type="checkbox"] {
    display: none;
}

.checkmark-registration {
    width: 20px;
    height: 20px;
    border: 2px solid #D0D5DD;
    border-radius: 4px;
    background-color: #fff;
    flex-shrink: 0;
    margin-top: 2px;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-label-registration input[type="checkbox"]:checked + .checkmark-registration {
    background-color: #141414;
    border-color: #141414;
}

.checkbox-label-registration input[type="checkbox"]:checked + .checkmark-registration::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.contact-socials{
    justify-content: flex-start;
}
.checkbox-label-registration:hover .checkmark-registration {
    border-color: #141414;
}

.checkbox-text {
    flex: 1;
    line-height: 1.5;
}

.checkbox-text a {
    color: #141414;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.checkbox-text a:hover {
    color: #666;
}

/* Responsive Design for Sign In */
@media (max-width: 1440px) {
    .sign-in-wrapper {
        gap: 50px;
    }
}

@media (max-width: 1024px) {
    .sign-in-title {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .sign-in-section {
        padding: 100px 0 0;
    }
    
    .sign-in-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .sign-in-title {
        font-size: 36px;
    }
    
    .login-btn,
    .registration-btn {
        font-size: 18px;
    }
    
    .form-row-registration {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 480px) {
    .sign-in-section {
        padding: 100px 0 0;
    }
    
    .sign-in-title {
        font-size: 28px;
    }
    
    .forgot-password-link {
        font-size: 14px;
        margin-bottom: 30px;
    }
    
    .login-form {
        gap: 25px;
    }
    
    .login-form .form-group input {
        padding: 14px;
        font-size: 14px;
    }
    
    .login-btn,
    .registration-btn {
        font-size: 16px;
        padding: 14px 24px;
    }
    

    
    .loyalty-intro {
        font-size: 16px;
    }
    
    .benefit-item span {
        font-size: 14px;
    }
    
    .cta-text,
    .learn-more-text {
        font-size: 14px;
    }
    
    .form-row-registration {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .checkbox-label-registration {
        font-size: 12px;
    }
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: #FFFFFF;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1600px;
    margin: 0 auto;
}

.feature-block {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

.feature-icon-wrapper {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.feature-icon-inner {
    width: 100%;
    height: 100%;
    background: #F5F5F5;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-icon-inner i {
    font-size: 32px;
    color: #141414;
}

.feature-block:hover .feature-icon-inner {
    background: #E5E5E5;
    transform: translateY(-2px);
}

.feature-title {
    font-family: 'Unbounded', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.3;
    color: #141414;
    margin: 0;
    text-align: left;
}

.feature-description {
    font-family: 'Geologica', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.5;
    color: #877E7E;
    margin: 0;
    text-align: left;
}

/* Responsive Design for Features Section */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .feature-block {
        gap: 18px;
    }
    
    .feature-icon-wrapper {
        width: 75px;
        height: 75px;
    }
}

@media (max-width: 768px) {
    .features-section {
        padding: 60px 0;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .feature-block {
        gap: 15px;
    }
    
    .feature-icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .feature-icon-inner i {
        font-size: 28px;
    }
    
    .feature-title {
        font-size: 18px;
    }
    
    .feature-description {
        font-size: 16px;
    }
}
@media (max-width: 580px){
    .features-grid{
        grid-template-columns: repeat(1, 1fr);

    }
    }
@media (max-width: 480px) {
    .features-section {
        padding: 50px 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .feature-block {
        gap: 15px;
    }
    
    .feature-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon-inner i {
        font-size: 24px;
    }
    
    .feature-title {
        font-size: 16px;
    }
    
    .feature-description {
        font-size: 14px;
    }
    .feature-title {
        font-size: 16px;
    }
}

/* Breadcrumbs */
.breadcrumbs-section {
    padding: 100px 0 0 0;
  }
  
  .breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
  }
  
.breadcrumbs a {
    color: #141414;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumbs a:hover {
    color: #000000;
}

.breadcrumb-current {
    color: #141414;
    font-weight: 500;
}

.breadcrumb-separator {
    color: #000000;
}
  
/* Privacy Policy Page Styles */
.privacy-content {
    padding: 35px 0 50px;
    background: #FFFFFF;
}

.privacy-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.privacy-title {
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 1.54;
    color: #141414;
    margin-bottom: 50px;
    text-align: center;
}

.privacy-section {
    margin-bottom: 40px;
}

.section-heading {
    font-family: 'Geologica', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 0.96;
    color: #141414;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.privacy-text {
    margin-bottom: 30px;
}

.privacy-text p {
    font-family: 'Geologica', sans-serif;
    font-weight: 100;
    font-size: 20px;
    line-height: 1.69;
    color: #141414;
    margin-bottom: 20px;
}

.privacy-text h2,
.privacy-text h3,
.privacy-text h4,
.privacy-text h5,
.privacy-text h6 {
    font-family: 'Geologica', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 0.96;
    color: #141414;
    text-transform: uppercase;
    margin: 40px 0 20px 0;
}

.privacy-text h3 {
    font-size: 22px;
}

.privacy-text h4 {
    font-size: 20px;
}

.privacy-text ul,
.privacy-text ol {
    list-style: none;
    margin: 20px 0;
    padding: 0;
}

.privacy-text ul li,
.privacy-text ol li {
    font-family: 'Geologica', sans-serif;
    font-weight: 300;
    font-size: 20px;
    line-height: 1.69;
    color: #141414;
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
}

.privacy-text ul li::before {
    content: "●";
    position: absolute;
    left: 0;
    top: 0;
    color: #141414;
}

.privacy-text ol {
    counter-reset: item;
}

.privacy-text ol li {
    counter-increment: item;
    padding-left: 30px;
}

.privacy-text ol li::before {
    content: counter(item) ".";
    position: absolute;
    left: 0;
    top: 0;
    color: #141414;
    font-weight: 400;
}

.privacy-text a {
    color: #141414;
    text-decoration: underline;
}

.privacy-text a:hover {
    text-decoration: none;
}

.privacy-text strong,
.privacy-text b {
    font-weight: 600;
}

.privacy-text em,
.privacy-text i {
    font-style: italic;
}

.privacy-list {
    margin-top: 20px;
}

.privacy-list ul {
    list-style: none;
}

.privacy-list li {
    font-family: 'Geologica', sans-serif;
    font-weight: 300;
    font-size: 20px;
    line-height: 1.69;
    color: #141414;
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
}

.privacy-list li::before {
    content: "●";
    position: absolute;
    left: 0;
    top: 0;
    color: #141414;
}


/* Cart Popup Styles */
.cart-popup {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s linear 0.3s, opacity 0.3s ease;
}

.cart-popup.active {
    visibility: visible;
    opacity: 1;
    transition: visibility 0s linear 0s, opacity 0.3s ease;
}

.cart-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cart-popup.active .cart-overlay {
    opacity: 1;
}

.cart-container {
    position: absolute;
    top: 0;
    right: 0;
    left: auto;
    width: 510px;
    height: 100%;
    background: #F9FAFB;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-popup.active .cart-container {
    transform: translateX(0);
}

.cart-header {
    padding: 38px 21px 15px;
    border-bottom: 1px solid #F0F0F0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
    position: relative;
}

.cart-header h3 {
    font-family: 'Geologica', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.25;
    color: #141414;
    margin: 0;
}

.cart-count {
    font-family: 'Geologica', sans-serif;
    font-weight: 100;
    font-size: 12px;
    line-height: 1.25;
    color: #877E7E;
}

.cart-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 24px;
    height: 24px;
    border: none;
    background: none;
    color: #141414;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
    border-radius: 50%;
    z-index: 2001;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.cart-close-btn:hover {
    color: #666;
    background: rgba(0, 0, 0, 0.05);
}

.cart-items {
    padding: 0 21px;
}

.cart-item {
    position: relative;
    background: #FFFFFF;
    border-radius: 8px;
    padding: 10px;
    margin: 15px 0;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    gap: 25px;
}

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

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

.cart-item-content {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 35px;
}

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

.cart-item-info h4 {
    font-family: 'Geologica', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.25;
    color: #141414;
    margin: 0 0 5px 0;
}

.cart-item-details {
    font-family: 'Geologica', sans-serif;
    font-weight: 100;
    font-size: 10px;
    line-height: 1.25;
    color: #877E7E;
    margin: 0;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    background: #F4F4F4;
    border-radius: 4px;
    padding: 3px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.03);
    width: 67px;
    height: 24px;
}

.quantity-btn {
    width: 16px;
    height: 16px;
    border: none;
    background: #FFFFFF;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    color: #141414;
    transition: background-color 0.2s ease;
}

.quantity-btn:hover {
    background: #F0F0F0;
}

.quantity-btn.minus {
    color: #F4F4F4;
}

.quantity {
    flex: 1;
    text-align: center;
    font-family: 'Geologica', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.25;
    color: #141414;
}

.cart-item-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    min-width: 47px;
}

.current-price {
    font-family: 'Geologica', sans-serif;
    font-weight: 700;
    font-size: 12px;
    line-height: 1.25;
    color: #141414;
}

.old-price {
    font-family: 'Geologica', sans-serif;
    font-weight: 100;
    font-size: 16px;
    line-height: 1.25;
    color: #877E7E;
    text-decoration: line-through;
}

.remove-item {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 14px;
    height: 14px;
    border: none;
    background: none;
    color: #141414;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}

.remove-item:hover {
    color: #666;
}

.cart-footer {
    padding: 20px 21px 40px;
    border-top: 1px solid #F0F0F0;
}

.cart-total {
    text-align: center;
    margin-bottom: 30px;
}

.total-label {
    display: block;
    font-family: 'Geologica', sans-serif;
    font-weight: 200;
    font-size: 12px;
    line-height: 1.25;
    color: #141414;
    margin-bottom: 5px;
}

.total-price {
    display: block;
    font-family: 'Geologica', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.25;
    color: #141414;
}

.cart-buttons {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.btn-cart-secondary {
    width: 100%;
    height: 32px;
    border: 1px solid #141414;
    background: #FFFFFF;
    color: #141414;
    font-family: 'Geologica', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.25;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-cart-secondary:hover {
    background: #F5F5F5;
}

.btn-cart-primary {
    width: 100%;
    height: 32px;
    border: none;
    background: #141414;
    color: #FFFFFF;
    font-family: 'Geologica', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.25;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.btn-cart-primary:hover {
    background: #333;
}

/* Empty Cart Styles */
.cart-empty {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: calc(100vh - 200px);
    padding: 0 21px;
}

.cart-empty .cart-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
}

.empty-cart-illustration {
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.shopping-bag {
    display: flex;
    justify-content: center;
    align-items: center;
}

.empty-cart-text {
    text-align: center;
}

.empty-cart-text p {
    font-family: 'Geologica', sans-serif;
    font-weight: 100;
    font-size: 14px;
    line-height: 1.25;
    color: #877E7E;
    margin: 0;
    text-align: center;
}


/* Blog Detail Page Styles */
.blog-detail-main {
    padding-top: 35px;
    background: #FFFFFF;
}

.blog-article {
    max-width: 1200px;
    margin: 0 auto;
}

.article-title {
    font-family: 'Geologica', sans-serif;
    font-weight: 600;
    font-size: 48px;
    line-height: 1.25;
    text-align: center;
    color: #141414;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.article-meta {
    text-align: center;
    margin-bottom: 50px;
}

.article-date {
    font-weight: 400;
    font-size: 24px;
    line-height: 1.6875;
    color: #877E7E;
}

.article-image {
    margin: 50px 0;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.article-image-full {
    margin: 50px 0;
    width: 100%;
    max-width: 100%;
    height: auto;
    overflow: hidden;
}

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

.article-content {
    margin-bottom: 50px;
}

.article-content p {
    font-family: 'Geologica', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.6875;
    color: #141414;
    margin-bottom: 25px;
}

.article-content p:last-child {
    margin-bottom: 0;
}

.section-title {
    font-family: 'Geologica', sans-serif;
    font-weight: 400;
    font-size: 26px;
    line-height: 1.346;
    color: #141414;
    margin-bottom: 20px;
}

.article-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    padding-left: 20px;
}

.article-list li {
    font-weight: 300;
    font-size: 20px;
    line-height: 1.6875;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    
}

.article-list li::before {
    content: "●";
    position: absolute;
    left: 0;
    top: 0;
    color: #141414;
}

/* Article Footer */
.article-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 60px;
    padding-top: 25px;
    border-top: 1px solid #D0D5DD;
}

.share-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

.share-label {
    font-family: 'Geologica', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.6875;
    color: #141414;
}

.share-icons {
    display: flex;
    gap: 15px;
}

.share-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #877E7E;
    text-decoration: none;
    transition: color 0.3s ease;
}

.share-icon:hover {
    color: #141414;
}

.tags-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

.tags-label {
    font-family: 'Geologica', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.6875;
    color: #141414;
}

.tags {
    display: flex;
    gap: 10px;
}

.tag {
    font-family: 'Geologica', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.6875;
    color: #877E7E;
}


/* Cart Page Styles */
.cart-main {
    padding-top: 35px;
    padding-bottom: 80px;
    background: #FFFFFF;
}

.cart-layout {
    display: grid;
    grid-template-columns: 1fr 508px;
    gap: 40px;
    margin-bottom: 80px;
}

/* Form Section Styles */
.cart-form-section {
    max-width: 685px;
}

.form-section {
    margin-bottom: 50px;
}

.form-section:last-child {
    margin-bottom: 0;
}

/* Cart page form fields container with gap */
.cart-page .form-fields {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Cart page delivery fields with gap */
.cart-page .delivery-fields.form-fields,
.cart-page .delivery-fields.form-fields.show {
    display: flex !important;
    flex-direction: column;
    gap: 24px;
}

/* Ensure delivery-fields on cart page use flex */
.cart-page .delivery-fields {
    display: flex;
    flex-direction: column;
}

.section-title {
    font-family: 'Unbounded', sans-serif;
    font-weight: 600;
    font-size: 48px;
    line-height: 1.24;
    color: #141414;
    margin-bottom: 50px;
}

/* Cart section title with 40px font size */
.cart-section-title {
    font-size: 40px;
}

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

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

.form-group label {
    font-family: 'Geologica', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.43;
    color: #141414;
}

.form-group input {
    padding: 12px 16px;
    border: 1px solid #D0D5DD;
    border-radius: 0;
    font-family: 'Geologica', sans-serif;
    font-weight: 100;
    font-size: 16px;
    line-height: 1.5;
    color: #667085;
    background: #FFFFFF;
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #141414;
    color: #141414;
}

.form-group input::placeholder {
    color: #667085;
}
.blog-page{
    padding: 35px 0;
}
/* Delivery Section */
.delivery-description {
    font-weight: 100;
    font-size: 20px;
    line-height: 1;
    color: #141414;
    margin-bottom: 25px;
}

.delivery-options {
    display: flex;
    flex-direction: row;
    gap: 0;
    background: #F9FAFB;
    border: 1px solid #D0D5DD;
}

.delivery-option {
    flex: 1;
    padding: 16px 20px;
    position: relative;
}

.delivery-option:first-child {
    border-right: 1px solid #D0D5DD;
}

.delivery-option.active {
    background: #FFFFFF;
}

.delivery-option.active .checkbox-label {
    font-weight: 500;
}

.delivery-option:not(.active) {
    background: #F9FAFB;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'Geologica', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.71;
    color: #141414;
    cursor: pointer;
}

.checkbox-label input[type="radio"] {
    display: none;
}

.checkmarks.radio {
    width: 20px;
    height: 20px;
    border: 2px solid #D0D5DD;
    background-color: #fff;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.checkbox-label input[type="radio"]:checked + .checkmarks.radio {
    background-color: #141414;
    border-color: #141414;
}

.checkbox-label:hover .checkmarks.radio {
    border-color: #141414;
}

.checkbox-label input[type="radio"]:checked + .checkmarks.radio::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    line-height: 1;
}

/* Cart Summary Section */
.cart-summary-section {
    background: #FFFFFF;
    padding: 40px;
    border-left: 1px solid #D0D5DD;
    height: fit-content;
}

.order-title {
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 1.24;
    color: #141414;
    margin-bottom: 30px;
}

.order-summary {
    margin-bottom: 30px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

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

.summary-label {
    font-family: 'Geologica', sans-serif;
    font-weight: 100;
    font-size: 16px;
    line-height: 1.25;
    color: #877E7E;
}

.summary-value {
    font-family: 'Geologica', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.25;
    color: #141414;
    text-align: right;
}

.summary-value.discount {
    color: #141414;
}

.summary-divider {
    height: 1px;
    background: #D0D5DD;
    margin: 15px 0;
}

.summary-row.total {
    margin-top: 20px;
}

.summary-row.total .summary-label {
    font-family: 'Unbounded', sans-serif;
    font-weight: 200;
    font-size: 16px;
    line-height: 1.25;
    color: #141414;
    text-align: center;
}

.summary-row.total .summary-value {
    font-family: 'Geologica', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.25;
    color: #141414;
    text-align: center;
}

.btn-order {
    width: 100%;
    height: 45px;
    background: #141414;
    color: #FFFFFF;
    border: none;
    font-family: 'Geologica', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.25;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-order:hover {
    background: #333;
}

/* Recommendations Section */
.recommendations-section {
    margin-top: 80px;
}

.recommendations-title {
    font-family: 'Geologica', sans-serif;
    font-weight: 600;
    font-size: 28px;
    line-height: 1.25;
    color: #141414;
    margin-bottom: 40px;
}

.recommendations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.product-card {
    display: flex;
    flex-direction: column;
    background: #acbbcb24;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 10px;
}

.product-name {
    font-family: 'Geologica', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.25;
    color: #141414;
    margin-bottom: 5px;
}

.product-price {
    font-family: 'Geologica', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.25;
    color: #141414;
}

.size-selector {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.size {
    padding: 4px 8px;
    font-family: 'Geologica', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.25;
    color: #141414;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.size.active {
    color: #141414;
    background: #F9FAFB;
}

.size:hover {
    color: #141414;
}

.recommendations-button {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.btn-secondary {
    font-family: 'Geologica', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.25;
    color: #FFFFFF;
    background: #000000;
    border: none;
    padding: 15px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
    width: 245px;
}

a.btn-secondary {
    text-decoration: none;
    color: #FFFFFF;
    text-align: center;
    display: inline-block;
    box-sizing: border-box;
}

a.btn-secondary:hover {
    background: #333;
    color: #FFFFFF;
    text-decoration: none;
}

a.btn-secondary:visited {
    color: #FFFFFF;
    text-decoration: none;
}

a.btn-secondary:active {
    color: #FFFFFF;
    text-decoration: none;
}

.btn-secondary:hover {
    background: #333;
}



/* About Us Page Styles */
.about-us-main {
    padding-top: 35px;
    background: #FFFFFF;
}

/* Page Title Section */
.page-title-section {
    padding: 0 0 50px;
    text-align: center;
}

.page-title {
    font-family: 'Unbounded', sans-serif;
    font-weight: 600;
    font-size: 48px;
    line-height: 1.24;
    color: #141414;
    text-transform: uppercase;
    margin: 0;
}

/* Hero Image Section */
.hero-image-section {
    padding: 0 0 50px;
}

.hero-image {
    width: 100%;
    height: 658px;
    overflow: hidden;
    border-radius: 0;
}

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

/* Main Description */
.main-description {
    padding: 0 0 50px;
}

.description-content {
    max-width: 782px;
}

.description-title {
    font-family: 'Geologica', sans-serif;
    font-weight: 400;
    font-size: 60px;
    line-height: 1em;
    letter-spacing: -0.04em;
    color: #141414;
    text-align: left;
    margin: 0;
}

/* What We Do Section */
.what-we-do-section {
    background: #FFFFFF;
}

.what-we-do-content {
    display: grid;
    grid-template-columns: 0.5fr 1.5fr;
    gap: 40px;
    align-items: start;
    max-width: 100%;
    position: relative;
}

.what-we-do-content::before {
    content: '';
    position: absolute;
    left: 28%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #D0D5DD;
    margin-left: -20px;
}

.what-we-do-section .section-header {
    display: flex;
    align-items: center;
    padding-right: 40px;
    gap: 10px;
    margin-bottom: 0;
    position: sticky;
    top: 120px;
    overflow: visible;
    justify-content: space-between;
}

.what-we-do-section .section-title {
    font-size: 28px;
    line-height: 1.2em;
    color: #141414;
    margin: 0;
    padding-bottom: 0;
    font-weight: 400;
    font-family: 'Geologica', sans-serif;
}

.what-we-do-section .arrow-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    min-height: 28px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: #141414 !important;
    flex-shrink: 0;
    transition: color 0.3s ease;
    visibility: visible !important;
    opacity: 1 !important;
    overflow: visible;
    position: relative;
    z-index: 1;
}

.what-we-do-section .arrow-icon i {
    font-size: 20px !important;
    display: block !important;
    color: inherit !important;
    visibility: visible !important;
    opacity: 1 !important;
    line-height: 1;
    transform: rotate(45deg);
    transform-origin: center;
}

.what-we-do-section .arrow-icon:hover {
    color: #877E7E !important;
}

.what-we-do-section .arrow-icon:hover i {
    color: inherit !important;
    transform: rotate(45deg) translate(2px, -2px);
}

/* Services Grid */
.what-we-do-section .services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 0;
    padding-left: 40px;
}

.what-we-do-section .service-item {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 0;
    border-bottom: 1px solid #D0D5DD;
    padding-bottom: 50px;
}

.what-we-do-section .service-item:nth-child(3),
.what-we-do-section .service-item:nth-child(4) {
    border-bottom: none;
    padding-bottom: 0;
}

.what-we-do-section .service-title {
    font-family: 'Geologica', sans-serif;
    font-weight: 400;
    font-size: 28px;
    line-height: 1.2em;
    color: #141414;
    margin: 0;
    letter-spacing: -0.01em;
}

.what-we-do-section .service-description {
    font-family: 'Geologica', sans-serif;
    font-weight: 100;
    font-size: 24px;
    line-height: 1.5em;
    color: #877E7E;
    margin: 0;
}

/* Content Sections */
.content-section {
    padding: 100px 0;
    background: #FFFFFF;
}

.content-section:last-of-type {
    border-bottom: none;
}

/* Content Section with What We Do layout */
.content-section .what-we-do-content {
    display: grid;
    grid-template-columns: 1.5fr 0.5fr;
    gap: 40px;
    align-items: flex-start;
    max-width: 100%;
    position: relative;
}

.content-section .what-we-do-content::before {
    content: '';
    position: absolute;
    left: 75%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #D0D5DD;
    margin-left: -20px;
}

.content-section .content-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.content-left.content-left-reversed {
padding-right: 20px;
}

.content-section .content-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
    position: relative;
}

.content-section .content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.content-section .content-image:hover img {
    transform: scale(1.05);
}

.content-section .content-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 100%;
}

.content-section .content-title {
    font-family: 'Geologica', sans-serif;
    font-weight: 400;
    font-size: 28px;
    line-height: 1.2em;
    color: #141414;
    margin: 0;
    letter-spacing: -0.02em;
}

.content-section .content-description {
    font-family: 'Geologica', sans-serif;
    font-weight: 100;
    font-size: 24px;
    line-height: 1.6em;
    color: #877E7E;
    margin: 0;
}

.content-section .section-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0;
    position: sticky;
    top: 120px;
    overflow: visible;
    align-self: flex-start;
    justify-content: space-between;
}

.content-section .section-title {
    font-size: 28px;
    line-height: 1.2em;
    color: #141414;
    margin: 0;
    padding-bottom: 0;
    font-weight: 400;
    font-family: 'Geologica', sans-serif;
}

.content-section .arrow-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    min-height: 28px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: #141414 !important;
    flex-shrink: 0;
    transition: color 0.3s ease;
    visibility: visible !important;
    opacity: 1 !important;
    overflow: visible;
    position: relative;
    z-index: 1;
}

.content-section .arrow-icon i {
    font-size: 20px !important;
    display: block !important;
    color: inherit !important;
    visibility: visible !important;
    opacity: 1 !important;
    line-height: 1;
    transform: rotate(45deg);
    transform-origin: center;
}

.content-section .arrow-icon:hover {
    color: #877E7E !important;
}

.content-section .arrow-icon:hover i {
    color: inherit !important;
    transform: rotate(45deg) translate(2px, -2px);
}

/* Content Section Reversed (Mirrored) Layout */
.content-section-reversed .what-we-do-content {
    display: grid;
    grid-template-columns: 0.5fr 1.5fr;
    gap: 40px;
    align-items: flex-start;
    max-width: 100%;
    position: relative;
}

.content-section-reversed .what-we-do-content::before {
    content: '';
    position: absolute;
    left: 28%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #D0D5DD;
    margin-left: -20px;
}

.content-section-reversed .content-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-left: 40px;
}

.content-section-reversed .section-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0;
    position: sticky;
    top: 120px;
    overflow: visible;
    padding-right: 40px;
    align-self: flex-start;
    justify-content: space-between;
}

/* Inherit image and text styles for reversed section */
.content-section-reversed .content-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
    position: relative;
}

.content-section-reversed .content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.content-section-reversed .content-image:hover img {
    transform: scale(1.05);
}

.content-section-reversed .content-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 100%;
}

.content-section-reversed .content-title {
    font-family: 'Geologica', sans-serif;
    font-weight: 400;
    font-size: 28px;
    line-height: 1.2em;
    color: #141414;
    margin: 0;
    letter-spacing: -0.02em;
}

.content-section-reversed .content-description {
    font-family: 'Geologica', sans-serif;
    font-weight: 100;
    font-size: 24px;
    line-height: 1.6em;
    color: #877E7E;
    margin: 0;
}

.content-section-reversed .section-title {
    font-size: 28px;
    line-height: 1.2em;
    color: #141414;
    margin: 0;
    padding-bottom: 0;
    font-weight: 400;
    font-family: 'Geologica', sans-serif;
}

.content-section-reversed .arrow-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    min-height: 28px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: #141414 !important;
    flex-shrink: 0;
    transition: color 0.3s ease;
    visibility: visible !important;
    opacity: 1 !important;
    overflow: visible;
    position: relative;
    z-index: 1;
}

.content-section-reversed .arrow-icon i {
    font-size: 20px !important;
    display: block !important;
    color: inherit !important;
    visibility: visible !important;
    opacity: 1 !important;
    line-height: 1;
    transform: rotate(45deg);
    transform-origin: center;
}

.content-section-reversed .arrow-icon:hover {
    color: #877E7E !important;
}

.content-section-reversed .arrow-icon:hover i {
    color: inherit !important;
    transform: rotate(45deg) translate(2px, -2px);
}


.content-layout {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1358px;
    margin: 0 auto;
}

.content-layout.reverse {
    flex-direction: row-reverse;
}

.content-image {
    flex: 1;
    height: 300px;
    overflow: hidden;
}

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

.content-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.content-title {
    font-family: 'Geologica', sans-serif;
    font-weight: 400;
    font-size: 27px;
    line-height: 1em;
    color: #141414;
    margin: 0;
}

.content-description {
    font-family: 'Geologica', sans-serif;
    font-weight: 100;
    font-size: 24px;
    line-height: 1.4em;
    color: #877E7E;
    margin: 0;
}

/* Final Description */
.final-description {
    text-align: center;
}

.final-description .description-content {
    max-width: 1013px;
    margin: 0 auto;
    text-align: center;
}

.final-description .description-title {
    font-size: 28px;
    line-height: 1em;
    letter-spacing: -0.04em;
    text-align: center;
    margin: 0 auto;
}

.final-description .description-title.descrip-photo {
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
}



/* Animation for About Us page */
.about-us-main .fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.about-us-main .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth scrolling for better UX */
.about-us-main {
    scroll-behavior: smooth;
}

/* Loading animation for images */
.hero-image img,
.content-image img {
    opacity: 0;
    animation: fadeInImage 0.8s ease-in forwards;
}

@keyframes fadeInImage {
    to {
        opacity: 1;
    }
}

/* Hover effects for interactive elements */
.service-item:hover .service-title {
    color: #000;
    transition: color 0.3s ease;
}

.content-image:hover img {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

/* Focus states for accessibility */
.section-title:focus,
.service-title:focus,
.content-title:focus {
    outline: 2px solid #141414;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .about-us-main {
        padding-top: 0;
    }
    
    .hero-image {
        height: 400px;
    }
    
    .content-layout {
        flex-direction: column;
    }
    
    .content-layout.reverse {
        flex-direction: column;
    }
} 

/* Delivery and Payment Fields */
.delivery-fields {
    margin-top: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.delivery-fields.show {
    display: block !important;
    animation: fadeIn 0.3s ease;
}

/* Cart page specific: delivery fields with flex and gap */
.cart-page .delivery-fields.show {
    display: flex !important;
    flex-direction: column;
}

.delivery-fields.hide {
    display: none !important;
}

/* Cart page specific: hide delivery fields with higher specificity */
.cart-page .delivery-fields.hide,
.cart-page .delivery-fields.form-fields.hide {
    display: none !important;
}

.payment-options {
    margin-top: 20px;
    display: none;
    gap: 50px;
    align-items: flex-start;
}

.payment-options.show {
    display: flex !important;
    flex-direction: row !important;
}

.payment-options.hide {
    display: none;
}

.payment-options.show {
    display: flex;
}

.payment-option {
    margin-bottom: 0;
}

.payment-help {
    margin-left: 8px;
    color: #666;
    font-size: 14px;
    cursor: help;
    transition: color 0.3s ease;
}

.payment-help:hover {
    color: #141414;
}

/* Delivery option active states */
.delivery-option.active .checkbox-label {
    color: #141414;
    font-weight: 500;
}

.delivery-option:not(.active) .checkbox-label {
    color: #666;
}

/* Payment option active states */
.payment-option.active .checkbox-label {
    color: #141414;
    font-weight: 500;
}

.payment-option:not(.active) .checkbox-label {
    color: #666;
}

/* Form group focus states for delivery fields */
.delivery-fields .form-group input:focus {
    border-color: #141414;
    box-shadow: 0 0 0 1px #141414;
}

/* Readonly input styling */
.delivery-fields .form-group input[readonly] {
    background-color: #f8f9fa;
    color: #666;
    cursor: not-allowed;
}

/* Animation for field transitions */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Payment section styling */
.payment-options .checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Initial state - no delivery selected */
.delivery-option:not(.active) {
    opacity: 0.7;
}

.delivery-option:not(.active):hover {
    opacity: 1;
}



.settings-payment{
    display: flex;
    gap:40px;
}

.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #D0D5DD;
    font-family: 'Geologica', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    resize: vertical;
    min-height: 100px;
    transition: all 0.3s ease;
}

.form-group textarea:focus {
    outline: none;
    border-color: #141414;
    box-shadow: 0 0 0 1px #141414;
}

.form-group textarea::placeholder {
    color: #98A2B3;
}

/* Contact Form Enhanced Styles */
.contact-form .form-group.focused input,
.contact-form .form-group.focused textarea {
    border-color: #141414 !important;
    box-shadow: 0 0 0 1px #141414 !important;
}

.contact-form .form-group.has-value input,
.contact-form .form-group.has-value textarea {
    color: #141414 !important;
}

.contact-form .submit-btn {
    transition: all 0.3s ease;
}

.contact-form .submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.contact-form .submit-btn:disabled:hover {
    transform: none;
    box-shadow: none;
}

/* Contact Form Success/Error Messages */
.contact-success,
.contact-error {
    animation: fadeIn 0.3s ease;
}

.contact-success .success-content,
.contact-error .error-content {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-success .success-content button,
.contact-error .error-content button {
    border-radius: 4px;
    transition: all 0.3s ease;
}

.contact-success .success-content button:hover,
.contact-error .error-content button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Form Validation Styles */
.contact-form .form-group.error input,
.contact-form .form-group.error textarea {
    border-color: #ff4444 !important;
    box-shadow: 0 0 0 1px #ff4444 !important;
}

.contact-form .form-group.error label {
    color: #ff4444;
}

/* Checkbox Enhanced Styles */
.contact-form .checkbox-label {
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-form .checkbox-label:hover {
    transform: translateY(-1px);
}

.contact-form .checkbox-label input[type="checkbox"]:checked + .checkmark {
    background-color: #141414;
    border-color: #141414;
}

.contact-form .checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    border-color: white;
}

.contact-form .checkbox-label input[type="checkbox"]:focus + .checkmark {
    box-shadow: 0 0 0 2px rgba(20, 20, 20, 0.2);
}

.contact-form .checkbox-label.has-value .checkbox-text {
    color: #141414;
}

.contact-form .checkbox-label.error .checkbox-text {
    color: #ff4444;
}

/* Form Loading State */
.contact-form.loading {
    pointer-events: none;
    opacity: 0.7;
}

.contact-form.loading .submit-btn {
    background: #666;
    cursor: not-allowed;
}



/* reCAPTCHA Styles */
.g-recaptcha {
    margin: 20px 0;
    display: flex;
    justify-content: center;
}

.g-recaptcha > div {
    margin: 0 auto;
}
    




/* Catalog Page Styles */
.catalog-main {
    padding-top: 45px;
    padding-bottom: 100px;
    background: #FFFFFF;
}

.catalog-header {
    margin-bottom: 50px;
    text-align: center;
}

.catalog-title {
    font-family: 'Unbounded', sans-serif;
    font-weight: 600;
    font-size: 40px;
    line-height: 1.24;
    color: #141414;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.catalog-subtitle {
    font-family: 'Geologica', sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.5;
    color: #877E7E;
}

.catalog-content {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 50px;
    align-items: start;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Filters Sidebar */
.catalog-filters {
    background: #F9FAFB;
    padding: 30px 20px;
    border-radius: 8px;
    position: sticky;
    top: 120px;
    overflow-y: auto;
    overflow-x: hidden;
    min-width: 0;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;

}

.filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #D0D5DD;
    width: 100%;
    box-sizing: border-box;
    position: relative;
}

.filters-title-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    margin-right: 5px;
}

.filters-header h3 {
    font-family: 'Unbounded', sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: #141414;
    margin: 0;
}

.filters-reset {
    font-family: 'Geologica', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #877E7E;
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: underline;
    transition: color 0.3s ease;
    padding: 0;
}

.filters-reset:hover {
    color: #141414;
}

.filters-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: #141414;
    font-size: 14px;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    width: 20px;
    height: 20px;
    opacity: 0.6;
    flex-shrink: 0;
}

.filters-toggle:hover {
    opacity: 1;
    color: #141414;
}

.filters-toggle i {
    transition: transform 0.3s ease;
    font-size: 10px;
}

.catalog-filters.collapsed .filters-toggle i {
    transform: rotate(180deg);
}

.filters-content {
    transition: max-height 0.4s ease, opacity 0.3s ease, margin 0.3s ease, padding 0.3s ease;
    overflow: hidden;
    max-height: 5000px;
}

.catalog-filters.collapsed .filters-content {
    max-height: 0 !important;
    opacity: 0;
    margin: 0;
    padding: 0;
}

.filter-group {
    margin-bottom: 35px;
    width: 100%;
    box-sizing: border-box;
}

.filter-group:last-child {
    margin-bottom: 0;
}

.filter-title {
    font-family: 'Geologica', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #141414;
    margin-bottom: 15px;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-family: 'Geologica', sans-serif;
    font-weight: 300;
    font-size: 14px;
    color: #141414;
}

.filter-option input[type="checkbox"] {
    display: none;
}

.filter-option .checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #D0D5DD;
    border-radius: 4px;
    background: #FFFFFF;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.filter-option input[type="checkbox"]:checked + .checkmark {
    background: #141414;
    border-color: #141414;
}

.filter-option input[type="checkbox"]:checked + .checkmark::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.filter-option:hover .checkmark {
    border-color: #141414;
}

/* Expandable Category Sections */
.category-group {
    margin-bottom: 0;
}

.category-section {
    border-bottom: 1px solid #D0D5DD;
}

.category-section:last-child {
    border-bottom: none;
}

.category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.category-header:hover {
    opacity: 0.8;
}

.category-header.active {
    font-weight: 600;
}

.category-title {
    font-family: 'Geologica', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #141414;
    margin: 0;
    flex: 1;
}

.category-divider {
    flex: 1;
    height: 1px;
    background: #D0D5DD;
    margin: 0 12px;
}

.category-toggle {
    font-family: 'Geologica', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #141414;
    width: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.category-content.show {
    max-height: 2000px;
    padding: 10px 0 15px 0;
}

/* Category Item Wrapper for multi-select */
.category-item-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 4px;
    border-radius: 4px;
    transition: background 0.2s ease;
}

.category-item-wrapper:hover {
    background: rgba(20, 20, 20, 0.03);
}

.category-item-wrapper.selected {
    background: rgba(20, 20, 20, 0.06);
}

.category-checkbox-btn {
    width: 16px;
    height: 16px;
    min-width: 16px;
    flex-shrink: 0;
    border: 1.5px solid #D0D5DD;
    border-radius: 3px;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    padding: 0;
}

.category-checkbox-btn:hover {
    border-color: #141414;
}

.category-checkbox-btn.active {
    background: #141414;
    border-color: #141414;
}

.category-checkbox-btn .checkbox-icon {
    color: #fff;
    font-size: 8px;
    line-height: 1;
}

.category-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    cursor: pointer;
    transition: color 0.2s ease;
    flex: 1;
    text-decoration: none;
    color: inherit;
    background: none;
}

.category-item:hover {
    color: #141414;
    background: none;
}

.category-item:hover .category-name {
    color: #141414;
}

.category-item:visited {
    color: inherit;
}

.category-item.active .category-name {
    font-weight: 500;
    color: #141414;
}

.category-name {
    font-family: 'Geologica', sans-serif;
    font-weight: 300;
    font-size: 14px;
    color: #877E7E;
    transition: color 0.2s ease;
}

.category-count {
    font-family: 'Geologica', sans-serif;
    font-weight: 400;
    font-size: 13px;
    color: #B0B0B0;
    margin-left: auto;
    padding-left: 8px;
}

/* Price Range */
.price-range {
    margin-top: 15px;
    width: 100%;
    box-sizing: border-box;
}

/* Range Slider */
.price-slider {
    position: relative;
    height: 6px;
    margin: 20px 0 25px;
}

.slider-track {
    position: absolute;
    width: 100%;
    height: 6px;
    background: #E5E5E5;
    border-radius: 3px;
}

.slider-range {
    position: absolute;
    height: 6px;
    background: #141414;
    border-radius: 3px;
    will-change: left, right;
    transform: translateZ(0);
}

.slider-input {
    position: absolute;
    width: 100%;
    height: 6px;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
    appearance: none;
    top: 0;
    margin: 0;
}

.slider-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    background: #fff;
    border: 2px solid #141414;
    border-radius: 50%;
    cursor: pointer;
    pointer-events: auto;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.slider-input::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 3px 6px rgba(0,0,0,0.15);
}

.slider-input::-webkit-slider-thumb:active {
    transform: scale(1.05);
    background: #141414;
}

.slider-input::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: #fff;
    border: 2px solid #141414;
    border-radius: 50%;
    cursor: pointer;
    pointer-events: auto;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.15s ease;
}

.slider-input::-moz-range-thumb:hover {
    transform: scale(1.1);
}

/* Price Inputs */
.price-inputs {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.price-input-group {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.price-label {
    font-family: 'Geologica', sans-serif;
    font-size: 12px;
    color: #877E7E;
    font-weight: 400;
}

.price-input-group input {
    width: 100%;
    padding: 10px 30px 10px 12px;
    border: 1px solid #D0D5DD;
    border-radius: 4px;
    font-family: 'Geologica', sans-serif;
    font-size: 14px;
    color: #141414;
    background: #FFFFFF;
    transition: all 0.2s ease;
    box-sizing: border-box;
    -moz-appearance: textfield;
}

.price-input-group input::-webkit-outer-spin-button,
.price-input-group input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.price-input-group input:focus {
    outline: none;
    border-color: #141414;
}

.price-input-group input::placeholder {
    color: #B0B0B0;
}

.price-currency {
    position: absolute;
    right: 10px;
    bottom: 10px;
    font-family: 'Geologica', sans-serif;
    font-size: 14px;
    color: #877E7E;
    pointer-events: none;
}

.price-separator {
    color: #D0D5DD;
    font-size: 16px;
    padding-top: 18px;
}

/* Size Filters */
.size-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.size-filter-btn {
    padding: 10px 18px;
    border: 1px solid #D0D5DD;
    background: #FFFFFF;
    border-radius: 4px;
    font-family: 'Geologica', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #141414;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 44px;
    text-align: center;
}

.size-filter-btn:hover {
    border-color: #141414;
    background: #F9FAFB;
}

.size-filter-btn.active {
    background: #141414;
    color: #FFFFFF;
    border-color: #141414;
}

/* Filter Expand Button */
.filter-expand-btn {
    display: block;
    margin-top: 12px;
    padding: 0;
    background: none;
    border: none;
    font-family: 'Geologica', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s ease;
}

.filter-expand-btn:hover {
    color: #141414;
}

/* Color Filters */
.color-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.color-filter-btn {
    width: 40px;
    height: 40px;
    border: 2px solid #D0D5DD;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.color-filter-btn:hover {
    transform: scale(1.1);
    border-color: #141414;
}

.color-filter-btn.active {
    border-color: #141414;
    border-width: 3px;
    transform: scale(1.15);
}

.color-filter-btn.active::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #FFFFFF;
    font-size: 14px;
    font-weight: bold;
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
}

/* Products Section */
.catalog-products {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: 600px;
    box-sizing: border-box;
    overflow-x: hidden;
    contain: layout style;
}

.catalog-products .products-grid {
    min-height: 400px;
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #D0D5DD;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    flex-wrap: wrap;
    gap: 20px;
}

.products-count {
    font-family: 'Geologica', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #877E7E;
}

.products-sort {
    display: flex;
    align-items: center;
    gap: 12px;
}

.products-sort label {
    font-family: 'Geologica', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #141414;
}

.sort-select {
    padding: 12px 40px 12px 16px;
    border: 1px solid #D0D5DD;
    border-radius: 4px;
    font-family: 'Geologica', sans-serif;
    font-size: 14px;
    color: #141414;
    background: #FFFFFF;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23141414' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.sort-select:focus {
    outline: none;
    border-color: #141414;
    box-shadow: 0 0 0 3px rgba(20, 20, 20, 0.1);
}

/* Catalog Products Grid */
.catalog-products .products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 50px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* No Products Found */
.no-products {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border-radius: 16px;
    border: 2px dashed #e0e0e0;
}

.no-products-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    border-radius: 50%;
    margin-bottom: 24px;
}

.no-products-icon i {
    font-size: 32px;
    color: #999;
}

.no-products-title {
    font-family: 'Geologica', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #141414;
    margin: 0 0 12px 0;
}

.no-products-text {
    font-family: 'Geologica', sans-serif;
    font-size: 15px;
    color: #666;
    margin: 0 0 28px 0;
    max-width: 400px;
    line-height: 1.5;
}

.no-products-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: #141414;
    color: #fff;
    font-family: 'Geologica', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.no-products-btn:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.no-products-btn i {
    font-size: 12px;
}

/* Ensure product cards in catalog have same sizes as on main page */
.catalog-products .product-card {
    background: #acbbcb24;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    overflow: hidden;
    width: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
}

.catalog-products .product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.catalog-products .product-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-6px);
    border-color: rgba(0, 0, 0, 0.08);
}

.catalog-products .product-card:hover::before {
    opacity: 1;
}

.catalog-products .product-image {
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: #fafafa;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: background 0.4s ease;
}

.catalog-products .product-card:hover .product-image {
    background: #f5f5f5;
}

.catalog-products .product-image img {
    width: 100%;
    height: 100%;
    display: block;
    background: transparent;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    filter: brightness(1);
}

.catalog-products .product-card:hover .product-image img {
    transform: scale(1.08);
    filter: brightness(1.02);
}

.catalog-products .product-info {
    width: 100%;
    max-width: 100%;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    flex-grow: 1;
    position: relative;
    z-index: 2;
    box-sizing: border-box;
    overflow: hidden;
}

.catalog-products .product-info h3 {
    font-family: 'Unbounded', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #141414;
    flex-shrink: 0;
    line-height: 1.4;
    transition: color 0.3s ease;
    margin: 0;
    width: 100%;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    box-sizing: border-box;
}

.catalog-products .product-card:hover .product-info h3 {
    color: #141414;
}

.catalog-products .product-info .price {
    font-family: 'Geologica', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #141414;
    margin-bottom: 0;
}

.catalog-products .product-card:hover .price {
    color: #141414;
}

.catalog-products .price-button-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    max-width: 100%;
    flex-wrap: wrap;
    margin-top: auto;
    box-sizing: border-box;
}

.catalog-products .product-info .add-to-cart-btn {
    margin-top: 0;
    width: auto;
    flex-shrink: 0;
    padding: 10px 12px;
    min-width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.catalog-products .price-button-container .price-container {
    margin-bottom: 0;
}

.catalog-products .price-button-container .price {
    margin-bottom: 0;
}

.catalog-actions {
    text-align: center;
    margin-top: 50px;
}

.catalog-actions .btn-secondary {
    padding: 14px 40px;
    font-size: 16px;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 50px;
    padding: 20px 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.pagination-btn {
    background: none;
    border: none;
    color: #877E7E;
    font-size: 18px;
    cursor: pointer;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
    font-family: 'Geologica', sans-serif;
}

.pagination-btn:hover {
    color: #141414;
}

.pagination-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.pagination-btn:disabled:hover {
    color: #877E7E;
}

.pagination-numbers {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pagination-number {
    background: none;
    border: none;
    color: #877E7E;
    font-family: 'Geologica', sans-serif;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    padding: 8px 12px;
    min-width: 40px;
    text-align: center;
    transition: all 0.3s ease;
}

.pagination-number:hover {
    color: #141414;
}

.pagination-number.active {
    color: #141414;
    font-weight: 700;
    cursor: default;
}

.pagination-dots {
    color: #877E7E;
    font-family: 'Geologica', sans-serif;
    font-size: 16px;
    padding: 8px 4px;
    user-select: none;
}







/* Product Card Page Styles */
.product-main {
    padding: 35px 0 0;
    background: #FFFFFF;
}

.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Product Images Section */
.product-images {
    width: 100%;
}

.product-images-wrapper {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.product-main-image {
    flex: 1;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: #F5F5F5;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    width: 100%;
}

.product-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.3s ease;
    opacity: 1;
}

/* Product Details Section */
.product-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.product-thumbnails {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 120px;
    flex-shrink: 0;
}

.thumbnail-item {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: #F5F5F5;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
}

.thumbnail-item:hover {
    border-color: #141414;
    opacity: 0.8;
}

.thumbnail-item.active {
    border-color: #141414;
    opacity: 1;
}

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

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

.product-title {
    font-family: 'Unbounded', sans-serif;
    font-weight: 600;
    font-size: 32px;
    line-height: 1.3;
    color: #141414;
    margin: 0;
}

.product-brand {
    font-family: 'Geologica', sans-serif;
    font-weight: 300;
    font-size: 18px;
    color: #877E7E;
    margin: 0;
}

.product-short-description {
    margin-top: 20px;
    padding: 15px 0;
    border-top: 1px solid #eee;
    font-family: 'Geologica', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

.product-short-description p {
    margin: 0 0 10px 0;
}

.product-short-description p:last-child {
    margin-bottom: 0;
}

.product-short-description ul,
.product-short-description ol {
    margin: 10px 0;
    padding-left: 20px;
}

.product-short-description li {
    margin-bottom: 5px;
}

.product-description-section {
    margin-top: 10px;
}

.description-title {
    font-family: 'Geologica', sans-serif;
    font-weight: 600;
    font-size: 40px;
    color: #141414;
    margin: 0 0 15px 0;
}

.descrip-photo{
    font-weight: 100;
    text-align: center !important;
    margin: 0 auto !important;
}

.description-text {
    font-family: 'Geologica', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.5;
    color: #877E7E;
    margin: 0;
}

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

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

.selector-group label {
    font-family: 'Geologica', sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: #141414;
}

.product-select {
    padding: 12px 16px;
    border: 1px solid #D0D5DD;
    border-radius: 0;
    font-family: 'Geologica', sans-serif;
    font-size: 16px;
    color: #141414;
    background: #FFFFFF;
    cursor: pointer;
    transition: border-color 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23141414' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.product-select:focus {
    outline: none;
    border-color: #141414;
}

/* Color Selector */
.color-selector {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.color-option {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.color-option:hover {
    transform: scale(1.1);
}

.color-option.selected {
    border-color: #141414;
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px #141414;
}

.color-option.unavailable {
    opacity: 0.3;
    cursor: not-allowed;
}

.color-option.unavailable::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -2px;
    right: -2px;
    height: 2px;
    background: #999;
    transform: rotate(-45deg);
}

/* Size Selector */
.size-selector {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.size-option {
    min-width: 50px;
    padding: 10px 16px;
    border: 1px solid #D0D5DD;
    background: #fff;
    border-radius: 4px;
    font-family: 'Geologica', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #141414;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.size-option:hover {
    border-color: #141414;
}

.size-option.selected {
    background: #141414;
    color: #fff;
    border-color: #141414;
}

.size-option.unavailable {
    opacity: 0.4;
    cursor: not-allowed;
    text-decoration: line-through;
}

/* Product Meta */
.product-meta {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.product-sku {
    font-family: 'Geologica', sans-serif;
    font-size: 13px;
    color: #666;
}

.product-stock {
    font-family: 'Geologica', sans-serif;
    font-size: 13px;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 20px;
}

.product-stock.in-stock {
    background: #e8f5e9;
    color: #2e7d32;
}

.product-stock.to-order {
    background: #fff3e0;
    color: #ef6c00;
}

/* Quantity Selector */
.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid #D0D5DD;
    border-radius: 4px;
    overflow: hidden;
}

.qty-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease;
}

.qty-btn:hover {
    background: #e0e0e0;
}

.qty-btn i {
    font-size: 12px;
    color: #141414;
}

.qty-input {
    width: 50px;
    height: 40px;
    text-align: center;
    border: none;
    font-family: 'Geologica', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #141414;
    background: #fff;
}

.qty-input:focus {
    outline: none;
}

/* Price Display */
.price-display {
    display: flex;
    align-items: center;
    gap: 12px;
}

.price-display .old-price {
    font-family: 'Geologica', sans-serif;
    font-size: 18px;
    color: #999;
    text-decoration: line-through;
}

/* Category Description Section */
.category-description-section {
    padding: 60px 0;
    background: #f9f9f9;
}

.category-description-content {
    max-width: 900px;
}

.category-description-content .section-title {
    font-family: 'Unbounded', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #141414;
    margin-bottom: 20px;
}

.category-description-text {
    font-family: 'Geologica', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

.category-description-text p {
    margin-bottom: 15px;
}

.category-description-text p:last-child {
    margin-bottom: 0;
}

.product-price-section {
    margin-top: 25px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}


.product-price {
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    font-size: 26px;
    color: #141414;
}

.btn-add-to-cart {
    padding: 15px 30px; 
    border-radius: 0;
    font-family: 'Geologica', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.25;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    background: #141414;
    color: #fff;
    border: 1px solid #141414;
}

.btn-add-to-cart i {
    font-size: 14px;
}

.btn-add-to-cart:hover {
    background: #333;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Size Chart Section */
.size-chart-section {
    padding: 100px 0;
    background: #FFFFFF;
}

.size-chart-title {
    font-family: 'Geologica', sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: #141414;
    margin-bottom: 50px;
}

.size-chart-table-wrapper {
    overflow-x: auto;
}

.size-chart-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Geologica', sans-serif;
    table-layout: fixed;
}

.size-chart-table thead {
    background: #F9FAFB;
}

.size-chart-table th {
    padding: 15px;
    text-align: center;
    font-weight: 500;
    font-size: 14px;
    color: #141414;
    border: 1px solid #D0D5DD;
    width: auto;
}

.size-chart-table th:first-child {
    width: 15%;
}

.size-chart-table th:nth-child(2),
.size-chart-table th:nth-child(3),
.size-chart-table th:nth-child(4),
.size-chart-table th:nth-child(5) {
    width: 15%;
}

.size-chart-table th:nth-child(6),
.size-chart-table th:nth-child(7) {
    width: 10%;
}

.size-chart-table td {
    padding: 15px;
    text-align: center;
    font-weight: 300;
    font-size: 14px;
    color: #141414;
    border: 1px solid #D0D5DD;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.size-chart-table tbody tr:nth-child(even) {
    background: #F9FAFB;
}

.size-chart-table tbody tr:nth-child(odd) {
    background: #FFFFFF;
}

/* Size Chart Cards - Mobile View */
.size-chart-cards {
    display: none;
}

.size-card {
    background: #FFFFFF;
    border: 1px solid #D0D5DD;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.size-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: #141414;
}

.size-card-header {
    background: #F9FAFB;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #D0D5DD;
}

.size-label {
    font-family: 'Unbounded', sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: #141414;
}

.size-codes {
    font-family: 'Geologica', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #877E7E;
}

.size-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.size-measure {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #F0F0F0;
}

.size-measure:last-child {
    border-bottom: none;
}

.measure-label {
    font-family: 'Geologica', sans-serif;
    font-weight: 300;
    font-size: 14px;
    color: #877E7E;
}

.measure-value {
    font-family: 'Geologica', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #141414;
}

/* You Might Like Section */
.you-might-like {
    padding: 0 0 100px;
    background: #FFFFFF;
}

.you-might-like .section-title {
    font-family: 'Geologica', sans-serif;
    font-weight: 600;
    font-size: 28px;
    color: #141414;
    text-align: left;
}

.you-might-like .products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.view-collection-button {
    text-align: center;
    margin-top: 40px;
}

.view-collection-button .btn-secondary {
    padding: 14px 40px;
    font-size: 18px;
}





/* Responsive Design */
@media (max-width: 1440px) {
    .feature-title,
    .feature-description{
        font-size: 18px;
    }

    .burger-menu-item a{
        font-size: 26px;
    }
    .content-section .section-title {
        font-size: 26px;
    }
    .content-section .content-title{
        font-size: 26px;
    }
    .article-title{
        font-size: 40px;
    }
    .contacts-title{
        font-size: 40px;
    }
    
    .content-section-reversed .section-header{
        padding-right: 10px;
    }
    .page-title{
        font-size: 40px;
    }
    .what-we-do-section .service-title{
        font-size: 26px;
    }
    .what-we-do-section .section-title{
        font-size: 26px;
    }
    .final-description .description-title{
        font-size: 36px;
    }
    .container {
        max-width: 1360px;
        padding: 0 20px;
    }
    .blog-article{
        max-width: 1000px;
    }
    .privacy-title {
        font-size: 40px;
    }
    .hero-title {
        font-size: 64px;
    }
    .catalog-products .product-info h3 {
        font-size: 18px;
    }
    .product-title {
        font-size: 28px;
    }
    .hero-subtitle {
        font-size: 40px;
    }
    
    .hero-section .hero-content {
        padding: 0 20px;
    }
    
    .hero-section .hero-text {
        max-width: 500px;
    }

    
    .category-image {
        width: 100%;
    }
    
    .product-card {
        width: 100%;
    }
    
    .product-image {
        width: 100%;
        height: 400px;
    }
    
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .blog-card {
        width: 100%;
    }
    
    .blog-image {
        width: 100%;
        height: 400px;
    }
    .description-title {
        font-size: 36px;
    }
    .what-we-do-section .section-header {
        padding-right: 10px;
    }
    .services-grid {
        gap: 40px;
    }
    .what-we-do-section .services-grid{
        gap: 30px;
    }
    
    .content-layout {
        gap: 30px;
    }
    .section-title{
        font-size: 40px;
    }
    .quote-content h2{
        font-size: 40px;
    }
    .product-info h3{
        font-size: 16px;
    }

    .brands-content p{
        font-size: 24px;
    }
    .reviews-header h2{
        font-size: 40px;
    }
    .categories-grid{
        gap: 15px;
        grid-template-columns: repeat(2, 1fr);
    }
    .products-grid {
        gap: 15px;
        grid-template-columns: repeat(2, 1fr);
    }
    .product-info h3{
        font-size: 18px;
    }

    .blog-grid{
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .contacts-content{
        gap: 50px;
    }
    .sign-in-title {
        font-size: 40px;
    }
}


@media (max-width: 1200px) {
    .article-title{
        font-size: 36px;
    }
    .cart-section-title {
        font-size: 36px;
    }
    .contacts-info {
        max-width: 400px;
    }
    .contact-form-container{
        max-width: 500px;
    }
    .privacy-title{
        font-size: 36px;
    }
    .contacts-title{
        font-size: 36px;
    }
    .page-title{
        font-size: 36px;
    }
    .burger-menu-item a{
        font-size: 24px;
    }
    .description-title{
        font-size: 34px;
    }
    .what-we-do-section .service-title{
        font-size: 24px;
    }
    .what-we-do-section .section-title{
        font-size: 24px;
    }
    .what-we-do-section .service-description{
        font-size: 20px;
    }
    .content-section .content-title{
        font-size: 24px;
    }
    .content-section .content-description{
        font-size: 20px;
    }
    .content-section .section-title{
        font-size: 24px;
    }
    .final-description .description-title{
        font-size: 34px;
    }
    .brands-content p{
        font-size: 20px;
    }
    .brands-content h2{
        font-size: 24px;
    }
    .btn-outline{
        font-size: 18px;
    }
    .about-content h2{
        font-size: 36px;
    }
    .reviews-header h2{
        font-size: 36px;
    }
    .hero-title{
        font-size: 52px;
    }
    .hero-subtitle{
        font-size: 36px;
    }
    .hero-cta-btn{
        font-size: 18px;
    }
    .btn-secondary{
        font-size: 18px;
    }
    .section-title{
        font-size: 36px;
    }
    .quote-content h2{
        font-size: 36px;
    }
    .category-label{
        font-size: 24px;
    }


    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .product-card {
        max-width: 100%;
        min-height: 320px;
    }
    .product-image {
        max-width: 100%;
    }

    
    .hero-image {
        height: 500px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .content-layout {
        flex-direction: column;
        gap: 40px;
    }
    
    .content-layout.reverse {
        flex-direction: column;
    }
    
    .content-image {
        height: 250px;
    }
    .cart-layout {
        grid-template-columns: 1fr 400px;
        gap: 30px;
    }
    
    .recommendations-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .product-layout {
        gap: 40px;
    }
    
    .you-might-like .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .catalog-content {
        grid-template-columns: 280px 1fr;
        gap: 40px;
    }
    
    .catalog-products .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .categories-grid{
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .sign-in-title {
        font-size: 36px;
    }

}

@media (max-width: 992px) {
    .brands-logos {
        flex-wrap: wrap;
        justify-content: center;
        height: auto;
        gap: 20px;
        row-gap: 30px;
    }
    .contacts-section {
        padding: 35px 0 50px;
    }
    .contacts-content {
        flex-direction: column;
        gap: 50px;
        align-items: stretch;
    }
    .contacts-info {
        width: 100%;
        max-width: 100%;
        order: 1;
    }
    .contact-form-container {
        width: 100%;
        max-width: 100%;
        order: 2;
    }
    .contacts-title {

        text-align: center;
    }
    .contacts-description p {
    
        text-align: center;
    }
    .contact-socials{
        justify-content: center;    
    }
    .contact-blocks {
        gap: 14px;
    }
    .contact-block {
        padding: 10px;
        justify-content: center;
    }

    .contact-form {
        gap: 20px;
    }
    .form-rows {
        gap: 20px;
    }
    .brands-logos .brand-logo {
        flex: 0 0 calc(33.333% - 14px);
        max-width: calc(33.333% - 14px);
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

@media (max-width: 1024px) {
    .cart-section-title {
        font-size: 26px;
    }
    .features-section{
        padding: 50px 0;
    }
    .burger-menu-item a{
        font-size: 20px;
    }
    .contacts-title{
        font-size: 26px;
    }
    .article-title{
        font-size: 26px;
    }
    .blog-article{
        max-width: 750px;
    }
    .sign-in-left,
    .sign-in-right {
        align-items: center;
    }
    .sign-in-title{
        font-size: 26px;
    }

    .final-description .description-title {
        font-size: 26px;
    }
    .privacy-title{
        font-size: 26px;
    }
    .hero-title {
        font-size: 48px;
    }
    .privacy-section {
        margin-bottom: 30px;
    }
    .hero-subtitle {
        font-size: 26px;
    }
    .hero-content {
        padding-top: 90px;
    }
    .hero-lines {
        max-width: 400px;
    }
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-section {
        padding: 100px 0 60px;
    }
    
    .product-images-wrapper{
        gap: 15px;
    }

    .hero-text{
        gap: 10px;
    }
    .hero-cta-btn{
        margin-top: 20px;
    }
    .hero-section .hero-separator {
        margin: 20px auto;
    }

    .about-us-main {
        padding-top: 30px;
    }

    .page-title {
        font-size: 26px;
    }
    
    .description-title {
        font-size: 26px;
    }
    
    .hero-image {
        height: 400px;
    }
    .reviews-header h2{
        font-size: 26px;
    }
    .footer-logo p{
        font-size: 18px;
    }
    .footer-column h4{
        font-size: 20px;
    }
    .footer-column ul li a{
        font-size: 18px;
    }
    .footer-main{
        gap: 30px;
    }
    .footer-links{
        gap: 30px;
    }
    .section-title {
        font-size: 26px;
    }
    .about-content h2{
        font-size: 26px;
    }
    .quote-content h2{
        font-size: 26px;
    }
    .brands-content h2{
        font-size: 20px;
    }
    .brands-content p {
        font-size: 18px;
    }
    .service-title {
        font-size: 24px;
    }
    
    .service-description {
        font-size: 20px;
    }
    
    .content-title {
        font-size: 24px;
    }
    
    .content-description {
        font-size: 20px;
    }
    .what-we-do-section .services-grid{
        gap: 20px;
    }
    .what-we-do-section .service-item{
        padding-bottom: 20px;
    }
    .related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .related-card {
        width: 100%;
    }
    
    .card-image {
        width: 100%;
        height: 300px;
    }
    .cart-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cart-summary-section {
        border-left: none;
        border-top: 1px solid #D0D5DD;
        padding-top: 30px;
    }
    
    .recommendations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .product-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .product-main-image {
        max-height: 540px;
        aspect-ratio: 3/4;
    }
    
    .product-thumbnails {
        max-width: 100%;
        gap: 15px;
        width: 170px;
    }
    

    
    .you-might-like .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .catalog-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .catalog-filters {
        position: relative;
        top: 0;
        max-height: none;
    }
    
    .catalog-products .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sign-in-section:has(.forgot-password-link) .sign-in-wrapper{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}


@media (max-width: 985px) {
    .what-we-do-content {
        display: flex;
        flex-direction: column;
        max-width: 985px;
        margin: 0 auto;
    }
    
    .what-we-do-content::before {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        top: 60px;
        width: 100%;
        height: 1px;
        background: #D0D5DD;
        margin: 0;
    }
    
    .what-we-do-section .section-header {
        position: relative;
        top: 0;
        padding-right: 0;
        margin-bottom: 50px;
    }
    
    .what-we-do-section .services-grid {
        padding-left: 0;
    }
    
    .content-section .what-we-do-content {
        display: flex;
        flex-direction: column;
        max-width: 985px;
        margin: 0 auto;
    }
    
    .content-section .what-we-do-content::before {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        top: 60px;
        width: 100%;
        height: 1px;
        background: #D0D5DD;
        margin: 0;
    }
    
    .content-section .section-header {
        position: relative;
        top: 0;
        padding-right: 0;
        padding-left: 0;
        margin-bottom: 50px;
        order: 1;
        align-self: flex-end;
    }

    .content-section .section-header.final-section-header {
        align-self: flex-start;
    }
    
    .content-section-reversed .section-header.final-section-header {
        align-self: flex-start;
    }
    
    .content-section .content-left {
        order: 2;
        padding-right: 0;
    }
    
    .content-section-reversed .what-we-do-content {
        display: flex;
        flex-direction: column;
        max-width: 985px;
        margin: 0 auto;
    }
    
    .content-section-reversed .what-we-do-content::before {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        top: 60px;
        width: 100%;
        height: 1px;
        background: #D0D5DD;
        margin: 0;
    }
    
    .content-section-reversed .section-header {
        position: relative;
        top: 0;
        padding-right: 0;
        padding-left: 0;
        margin-bottom: 50px;
        order: 1;
    }
    
    .content-section-reversed .content-left {
        order: 2;
        padding-left: 0;
    }
}

@media (max-width: 768px) {
    .benefit-item span{
        font-size: 16px;
    }
    .loyalty-intro,
    .cta-text,
    .learn-more-text{
        font-size: 18px;
    }
    .sign-in-title{
        font-size: 24px;
    }

    .delivery-description{
        font-size: 18px;
    }
    .contacts-title{
        font-size: 24px;
    }
    .article-list li {
        font-size: 18px;
    }
    .contacts-description p{
        font-size: 20px;
    }
    .container {
        padding: 0 15px;
    }
    .article-list{
        padding-left: 10px;
    }
    /* Burger Menu - Vertical Layout on Mobile */
    .burger-menu-content {
        flex-direction: column;
        gap: 0;
    }
    
    .burger-menu-item {
        flex: none;
        width: 100%;
        height: auto;
        padding: 20px 0;
    }
    
    .burger-menu-item a {
        font-size: 24px;
    }
    
    .burger-menu-divider {
        width: 80%;
        height: 1px;
        margin: 0 auto;
    }
    
    .burger-menu-header {
        padding: 20px 15px;
    }
    
    .burger-menu-email {
        font-size: 16px;
    }
    
    .burger-menu-logo p, .burger-menu-logo a {
        font-size: 28px;
    }
    
    .burger-menu-socials {
        bottom: 30px;
        gap: 15px;
    }
    
    .burger-social-link {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    
    .description-text {
        font-size: 18px;
    }
    .selector-group label {
        font-size: 16px;
    }
    .product-thumbnails{
        flex-direction: row;
    }
    .product-brand {
        font-size: 16px;
    }
    .hero-description {
        font-size: 14px;
    }
    .catalog-products .product-info h3 {
        font-size: 16px;
    }
    .product-select{
        font-size: 14px;
    }
    .quote-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .product-thumbnails {
        width: 100%;
    }
    .product-images-wrapper{
        flex-direction: column;
    }
    .quote-content h2 {
        font-size: 24px;
        width: 100%;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .quote-content p {
        font-size: 20px;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    
    .brands-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .brands-content h2 {
        font-size: 24px;
        width: 400px;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }
    
    .brands-content p {
        font-size: 18px;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .about-text p {
        font-size: 18px;
    }
    .btn-outline{
        font-size: 16px;
    }
    
    .about-button {

        display: flex;
        justify-content: center;
        margin: 0 auto;
    }
    
    .reviews-header h2 {
        font-size: 24px;
    }
    .review-content p{
        font-size: 16px;
    }
    .blog-content h3 {
        font-size: 18px;
    }
    .footer-main{
        flex-direction: column;
        text-align: center;
    }
    .product-info h3 {
        font-size: 16px;
    }
    .review-content p{
        font-size: 16px;
    }
    .about-content h2 {
        font-size: 24px;
    }
    .reviews-label{
        font-size: 20px;
    }
    .reviews-description{
        font-size: 18px;
    }
    .footer-links {
        gap: 30px;
    }
    .footer-logo{
        width: 100%;
    }
    .footer-links{
        justify-content: space-between;
    }
    .footer-logo h3{
        text-align: center;
    }
    .footer-logo h3{
        margin-bottom: 30px;
    }
    .footer-bottom {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .footer-copyright {
        order: 1;
    }
    
    .footer-socials {
        justify-content: center;
        order: 2;
    }
    
    .footer-credits {
        order: 3;
    }
    
    .hero-section {
        padding: 80px 0 40px;
    }
    
    .hero-section .hero-content {
        padding: 0 15px;
        gap: 30px;
    }
    
    .hero-section .hero-title {
        font-size: 36px;
    }
    
    .hero-section .hero-subtitle {
        font-size: 24px;
    }
    
    .hero-section .hero-text-primary {
        font-size: 20px;
    }
    .hero-cta-btn {
        font-size: 16px;
    }
    
    .hero-section .hero-text-secondary {
        font-size: 18px;
    }
    .header-email{
        font-size: 14px;
    }

    .contact-form .form-rows {
        flex-direction: column;
    }
    
    .contact-form .form-rows .form-group {
        width: 100%;
    }
    
    .contact-form .submit-btn {
        width: 100%;
        margin-top: 20px;
    }
    .privacy-content {
        padding: 35px 0 50px;
    }
    
    .privacy-wrapper {
        padding: 0 15px;
    }
    
    .privacy-title {
        font-size: 24px;
        margin-bottom: 50px;
    }
    
    .section-heading {
        font-size: 20px;
    }
    
    .privacy-text p {
        font-size: 20px;
    }
    
    .privacy-list li {
        font-size: 20px;
    }

    .page-title {
        font-size: 24px;
    }
    
    .hero-image {
        height: 300px;
    }
    
    .description-title {
        font-size: 24px;
    }
    

    .what-we-do-content {
        display: flex;
        flex-direction: column;
        gap: 30px;
        max-width: 985px;
        margin: 0 auto;
    }
    
    .what-we-do-content::before {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        top: 60px;
        width: 100%;
        height: 1px;
        background: #D0D5DD;
        margin: 0;
    }
    
    .what-we-do-section .section-header {
        position: relative;
        top: 0;
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .what-we-do-section .services-grid {
        padding-left: 0;
    }
    .what-we-do-section .services-grid{
        gap: 15px;
    }
    .what-we-do-section .service-item{
        padding-bottom: 15px;
    }
    .content-section .what-we-do-content {
        display: flex;
        flex-direction: column;
        gap: 30px;
        max-width: 985px;
        margin: 0 auto;
    }
    
    .content-section .what-we-do-content::before {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        top: 60px;
        width: 100%;
        height: 1px;
        background: #D0D5DD;
        margin: 0;
    }
    
    .content-section .content-left {
        order: 2;
        padding-right: 0;
    }
    
    .content-section .content-image {
        height: 400px;
    }
    
    .content-section .content-title {
        font-size: 20px;
    }
    
    .content-section .content-description {
        font-size: 18px;
    }
    
    .content-section .section-header {
        position: relative;
        top: 0;
        padding-left: 0;
        padding-right: 0;
        margin-bottom: 50px;
        order: 1;
    }
    
    /* Content Section Reversed - Mobile */
    .content-section-reversed .what-we-do-content {
        display: flex;
        flex-direction: column;
        gap: 30px;
        max-width: 985px;
        margin: 0 auto;
    }
    
    .content-section-reversed .what-we-do-content::before {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        top: 60px;
        width: 100%;
        height: 1px;
        background: #D0D5DD;
        margin: 0;
    }
    
    .content-section-reversed .content-left {
        order: 2;
        padding-left: 0;
    }
    
    .content-section-reversed .section-header {
        position: relative;
        top: 0;
        padding-right: 0;
        padding-left: 0;
        order: 1;
        margin-bottom: 50px;
    }
    
    .content-section-reversed .content-image {
        height: 400px;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    

    
    .services-grid {
        gap: 25px;
    }
    

    

    
    .what-we-do-section .service-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    
    .service-item {
        gap: 15px;
    }
    
    .service-title {
        font-size: 20px;
    }
    
    .what-we-do-section .service-title {
        font-size: 18px;
    }
    
    .service-description {
        font-size: 16px;
    }
    
    .what-we-do-section .service-description {
        font-size: 16px;
    }
    .content-section .section-header{
        margin-bottom: 30px;
    }
    .what-we-do-section .section-title{
        font-size: 18px;
    }
    .content-section .section-title{
        font-size: 18px;
    }
    .content-layout {
        gap: 30px;
    }
    
    .content-image {
        height: 200px;
    }
    
    .content-title {
        font-size: 20px;
    }
    
    .content-description {
        font-size: 16px;
    }
    

    
    .final-description .description-title {
        font-size: 24px;
    }
    .cart-container {
        width: 100%;
        max-width: 100%;
        left: 0;
        right: 0;
    }
    
    .cart-item-content {
        gap: 20px;
    }
    
    .cart-item-info {
        min-width: 120px;
    }
    .delivery-fields {
        padding: 15px;
        margin-top: 15px;
    }
    
    .payment-options {
        margin-top: 15px;
        gap: 20px;
    }
    


    
    .container {
        padding: 0 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }


    .cart-form-section {
        max-width: 100%;
    }
    
    .cart-summary-section {
        padding: 30px 20px;
    }

    
    .product-image {
        height: 300px;
    }
    
    .recommendations-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    
    .article-title {
        font-size: 24px;
        margin-bottom: 25px;
    }
    
    .article-date {
        font-size: 14px;
    }
    
    .article-content p {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 24px;
    }
    .btn-secondary{
        font-size: 16px;
    }
    .category-label{
        font-size: 18px;
    }
    
    .article-footer {

        gap: 30px;
        align-items: flex-start;
    }
    
    .share-section,
    .tags-section {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .related-articles {
        padding: 60px 0;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .card-title {
        font-size: 24px;
    }
    
    .card-description {
        font-size: 15px;
    }
    
    .card-meta {
        gap: 20px;
    }


    
    .product-main-image {
        max-height: 500px;
        aspect-ratio: 3/4;
    }
    
    .product-title {
        font-size: 26px;
    }
    
    .product-price {
        font-size: 28px;
    }
    
    .size-chart-section {
        padding: 100px 0;
    }
    
    .size-chart-title {
        font-size: 24px;
        margin-bottom: 50px;
    }
    .you-might-like .section-title{
        margin-bottom: 0px;
    }
    .size-chart-table th,
    .size-chart-table td {
        padding: 10px 8px;
        font-size: 12px;
    }
    
    .you-might-like {
        padding: 0 0 100px;
    }
    
    .you-might-like .section-title {
        font-size: 24px;
    }
    
    .you-might-like .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .catalog-main {
        padding-top: 30px;
        padding-bottom: 60px;
    }
    
    .catalog-title {
        font-size: 32px;
    }
    
    .catalog-subtitle {
        font-size: 16px;
    }
    
    .catalog-content {
        gap: 30px;
    }
    
    .catalog-filters {
        padding: 20px 15px;
    }
    
    .products-header {
        gap: 15px;
    }
    .products-sort{
        gap: 10px;
    }
    .catalog-products .products-grid {
        gap: 15px;
    }
    .blog-image{
        height: auto;
        margin-bottom: 8px;
    }
    .hero-section .hero-separator{
        margin: 10px auto;
    }
    .blog-content p{
        font-size: 16px;
    }
    .cart-section-title {
        font-size: 24px;
    }
    .form-group input{
        font-size: 14px;
    }
    .form-group textarea{
        font-size: 14px;
    }

}

@media (max-width: 515px) {
    .brands-logos .brand-logo {
        flex: 0 0 calc(50% - 10px);
        max-width: calc(50% - 10px);
    }
}
@media (max-width: 515px){
.checkbox-label{
    font-size: 12px;
}
}
@media (max-width: 600px) {
    /* Size Chart - Show cards, hide table */
    .size-chart-table-wrapper {
        display: none;
    }
    
    .size-chart-cards {
        display: block;
    }
    
    .size-chart-title {
        font-size: 22px;
        margin-bottom: 30px;
    }
    
    .size-card {
        margin-bottom: 12px;
    }
    
    .size-card-header {
        padding: 12px 16px;
    }
    
    .size-label {
        font-size: 18px;
    }
    
    .size-codes {
        font-size: 12px;
    }
    
    .size-card-body {
        padding: 16px;
        gap: 10px;
    }
    
    .size-measure {
        padding: 6px 0;
    }
    
    .measure-label,
    .measure-value {
        font-size: 13px;
    }
    
    .about {
        height: auto;
        flex-direction: column;
        padding: 0;
    }
    
    .about-background {
        position: relative;
        width: 100%;
        height: 400px;
    }
    
    .about-image {
        position: relative;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .about-overlay {
        display: none;
    }
    
    .about .container {
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 40px 15px;
        height: auto;
    }
    
    .about-content {
        width: 100%;
        text-align: center;
        position: relative;
        z-index: 1;
    }
    

    
    .about-text {
        margin-bottom: 30px;
    }

    
    .about-button {

        display: flex;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 28px;
    }
    .hero-subtitle {
        font-size: 22px;
    }
    .hero-content {
        padding-top: 70px;
        padding-bottom: 30px;
    }
    .btn-primary {
        font-size: 16px;
        padding: 10px 20px;
    }
    .hero-lines {
        max-width: 200px;
    }
    .hero-description {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    /* Burger Menu - Smaller Mobile */
    .burger-menu-item a {
        font-size: 20px;
    }
    .form-rows{
        display: flex;
        flex-direction: column;
    }

    .what-we-do-section .service-item{
        gap: 15px;
    }
    
    .burger-menu-item {
        padding: 15px 0;
    }
    .contacts-title{
        font-size: 20px;
    }
    .burger-menu-header {
        padding: 15px 5px;
    }
    
    .burger-menu-email {
        font-size: 12px;
    }
    
    .burger-menu-logo p {
        font-size: 22px;
    }
    
    .burger-menu-close {
        font-size: 22px;
    }
    
    .burger-menu-socials {
        bottom: 20px;
        gap: 12px;
    }
    
    .burger-social-link {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .hero-title,
    .hero-subtitle {
        font-size: 32px;
    }
    .description-text {
        font-size: 16px;
    }
    .btn {
        padding: 8px 16px;
        font-size: 16px;
    }
    
    
    .quote-content h2 {
        font-size: 20px;
    }
    .quote-content p {
        font-size: 18px;
    }
    .about-content h2 {
        font-size: 20px;
    }
    
blog-page
    .header-email{
        font-size: 10px;
    }
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .blog-card {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }
    
    .blog-image {
        width: 100%;
        margin-bottom: 15px;
    }
    
    .blog-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .blog-content {
        width: 100%;
        box-sizing: border-box;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .blog-content h3 {
        font-size: 16px;
        line-height: 1.3;
        margin-bottom: 8px;
        word-wrap: break-word;
    }
    
    .blog-content p {
        font-size: 14px;
        line-height: 1.4;
        margin-bottom: 15px;
        word-wrap: break-word;
    }
    
    .blog-meta {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .blog-link {
        gap: 10px;
    }
    
    .blog-link .icon {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
    }
    
    .blog-link span {
        font-size: 12px;
        white-space: nowrap;
    }
    
    .blog-date {
        gap: 6px;
    }
    
    .blog-date span {
        font-size: 12px;
        white-space: nowrap;
    }
    
    .blog-date i {
        font-size: 12px;
    }
    
    .brands {
        height: auto;
        padding: 40px 0;
        overflow: visible;
    }
    
    .brands-content {
        width: 100%;
        max-width: 100%;
        padding: 0 15px;
        box-sizing: border-box;
    }
    
    .brands-content h2 {
        font-size: 20px;
        width: 100%;
        max-width: 100%;
        margin-bottom: 20px;
        padding: 0;
        word-wrap: break-word;
    }
    
    .brands-content p {
        font-size: 18px;
        width: 100%;
        max-width: 100%;
        padding: 0;
        word-wrap: break-word;
    }
    
    .brands-logos {
        width: 100%;
        max-width: 100%;
        gap: 10px;
        row-gap: 15px;
        margin-bottom: 20px;
        padding: 0;
        box-sizing: border-box;
    }
    
    .brands-logos .brand-logo {
        flex: 0 0 calc(50% - 5px);
        max-width: calc(50% - 5px);
        box-sizing: border-box;
    }
    
    .brand-logo img {
        max-width: 100%;
        height: auto;
        object-fit: contain;
    }
    
    .hero-section {
        padding: 60px 0 30px;
    }
    
    .hero-section .hero-content {
        padding: 0 15px;
        gap: 25px;
    }
    
    .hero-section .hero-title {
        font-size: 32px;
    }
    
    .hero-section .hero-subtitle {
        font-size: 20px;
    }
    
    .hero-section .hero-text-primary {
        font-size: 18px;
    }
    
    .hero-section .hero-text-secondary {
        font-size: 16px;
    }
    
    .hero-section .hero-cta-btn {
        font-size: 14px;
        padding: 12px 24px;
        width: 200px;
    }
    .category-label {
        font-size: 16px;
    }
    .hero-section .hero-text {
        max-width: 100%;
    }
    
    .g-recaptcha {
        transform: scale(0.9);
        transform-origin: center;
    }
    .contact-form {
        padding: 20px;
    }

    
    .contact-form .submit-btn {
        padding: 15px 20px;
        font-size: 16px;
    }


    
    .privacy-title {
        font-size: 20px;
    }

    
    .privacy-text p {
        font-size: 18px;
    }

    .privacy-text {
        font-size: 14px;
    }
    
    .privacy-list li {
        font-size: 18px;
    }
    
    .privacy-section {
        margin-bottom: 40px;
    }
    
    .reviews {
        padding: 60px 0;
    }
    
    .reviews-header {
        margin-bottom: 30px;
    }
    
    .reviews-header h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }
    .reviews-header h2{
        font-size: 20px;
    }
    .reviews-label {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .reviews-description {
        font-size: 16px;
    }
    
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .review-card {
        padding: 10px;
    }
    
    .review-content p {
        font-size: 14px;
    }
    
    .review-author h4 {
        font-size: 14px;
    }
    
    .review-author span {
        font-size: 13px;
    }

    
    .delivery-description {
        font-size: 16px;
    }
    
    .page-title {
        font-size: 18px;
    }
    

    
    .hero-image {
        height: 250px;
    }
    
    
    .description-title {
        font-size: 20px;
    }
    
    .what-we-do-section {
        padding: 0 0 100px;
    }
    
    .section-header {
        margin-bottom: 20px;
    }

    
    .services-grid {
        gap: 20px;
    }
    
    .service-item {
        gap: 12px;
    }
    
    .service-title {
        font-size: 18px;
    }
    
    .service-description {
        font-size: 14px;
    }
    
    .content-section {
        padding: 0 0 50px;
    }
    
    .content-layout {
        gap: 20px;
    }
    
    .content-image {
        height: 150px;
    }
    
    .content-title {
        font-size: 18px;
    }
    
    .content-description {
        font-size: 14px;
    }
    
    .final-description {
        padding: 0 0 100px;
    }
    
    .final-description .description-title {
        font-size: 20px;
    }
    .cart-container {
        width: 100%;
        max-width: 100%;
        left: 0;
        right: 0;
    }
    
    .cart-header {
        padding: 20px 15px 10px;
    }
    
    .cart-close-btn {
        top: 10px;
        right: 10px;
        width: 20px;
        height: 20px;
        font-size: 16px;
    }
    
    .cart-header h3 {
        font-size: 18px;
    }
    
    .cart-items {
        padding: 0 15px;
    }
    
    .cart-item {
        padding: 8px;
        gap: 15px;
    }
    
    .cart-item-image {
        width: 70px;
        height: 70px;
    }
    
    .cart-item-content {
        gap: 15px;
    }
    
    .cart-item-info h4 {
        font-size: 11px;
    }
    
    .cart-item-details {
        font-size: 9px;
    }
    
    .cart-item-quantity {
        width: 60px;
        height: 22px;
    }
    
    .quantity-btn {
        width: 14px;
        height: 14px;
        font-size: 12px;
    }
    
    .quantity {
        font-size: 12px;
    }
    
    .current-price {
        font-size: 11px;
    }
    
    .total-price {
        font-size: 18px;
    }
    
    .btn-cart-secondary,
    .btn-cart-primary {
        height: 28px;
        font-size: 11px;
    }
    .delivery-fields {
        padding: 12px;
        margin-top: 12px;
    }
    
    .payment-help {
        font-size: 12px;
    }

    .container {
        padding: 0 15px;
    }
    
    .cart-layout {
        gap: 30px;
    }
    
    .cart-summary-section {
        padding: 20px 15px;
    }
    
    .order-title {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .summary-label {
        font-size: 14px;
    }
    
    .summary-value {
        font-size: 14px;
    }
    
    .summary-row.total .summary-value {
        font-size: 18px;
    }
    
    .btn-order {
        height: 40px;
        font-size: 14px;
    }
    
    .recommendations-title {
        font-size: 20px;
        margin-bottom: 25px;
    }
    
    .product-image {
        height: 220px;
    }
    
    .product-name {
        font-size: 14px;
    }
    
    .product-price {
        font-size: 14px;
    }
    
    .btn-secondary {
        font-size: 14px;
        padding: 12px 24px;
        width: 200px;
    }

    
    .article-title {
        font-size: 20px;
    }
    
    .article-date {
        font-size: 13px;
    }
    
    .article-content p {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .article-list li {
        font-size: 18px;
    }
    
    .share-label,
    .tags-label {
        font-size: 14px;
    }
    
    .tag {
        font-size: 14px;
    }
    
    .related-articles {
        padding: 40px 0;
    }
    
    .card-image {
        height: 250px;
    }
    
    .card-title {
        font-size: 20px;
    }
    
    .card-description {
        font-size: 14px;
    }
    
    .card-link span,
    .card-date span {
        font-size: 12px;
    }
    
    .link-icon {
        width: 40px;
        height: 40px;
    }

    .product-main {
        padding: 30px 0 0;
    }
    
    .product-main-image {
        max-height: 450px;
        aspect-ratio: 3/4;
    }
    
    .product-title {
        font-size: 24px;
    }
    
    .product-price {
        font-size: 18px;
    }
    
    .btn-add-to-cart {
        width: 200px;
        padding: 14px 20px;
        font-size: 16px;
    }
    
    /* Hide table on mobile, show cards */
    .size-chart-table-wrapper {
        display: none;
    }
    
    .size-chart-cards {
        display: block;
    }
    


    .catalog-title {
        font-size: 28px;
    }
    
    .filters-header h3 {
        font-size: 18px;
    }

    
    .pagination {
        gap: 4px;
        padding: 15px 0;
    }
    
    .pagination-btn {
        padding: 6px 8px;
        font-size: 16px;
    }
    
    .pagination-number {
        padding: 6px 8px;
        min-width: 32px;
        font-size: 14px;
    }
    
    .pagination-dots {
        padding: 6px 2px;
        font-size: 14px;
    }
    
    .category-header {
        padding: 12px 0;
    }
    
    .category-title {
        font-size: 14px;
    }
    
    .category-item {
        padding: 6px 0;
    }
    
    .category-name {
        font-size: 13px;
    }
    
    .category-count {
        font-size: 13px;
    }
    .contacts-description p{
        font-size: 18px;
    }
    .price-inputs {
        gap: 6px;
    }
    
    .price-inputs input {
        padding: 8px 10px;
        font-size: 13px;
    }
    
    .price-inputs span {
        font-size: 12px;
    }
    .footer-links {
        flex-direction: column;
    }
    .discount-banner {
        top: 5px;
        left: -35px;
        width: 125px;
        height: 40px;
    }
    .product-info h3 {
        font-size: 14px;
    }
    .catalog-products .product-info h3 {
        font-size: 14px;
    }
    .old-price{
        font-size: 12px;
    }
    .new-price {
        font-size: 14px;
    }
    .price{
        font-size: 14px;
    }
    .discount-banner span{
        font-size: 12px;
    }
    .product-info .add-to-cart-btn {
        width: 30px;
        min-width: 30px;
        height: 30px;
    }
    .about-text p {
        font-size: 16px;
    }
    .btn-outline {
        font-size: 14px;
        padding: 12px 24px;
        width: 200px;
    }
    .blog .btn-outline {
        font-size: 14px;
        padding: 12px 24px;
        width: 200px;
    }
    .footer-logo p {
        font-size: 16px;
    }
    .footer-main{
        gap: 15px;
    }
    .footer-column ul li a{
        font-size: 16px;
        
    }
    .footer-column ul li{
       margin-bottom: 5px;
    }
    .footer-column h4{
        font-size: 16px;
    }
    .footer-links{
        gap: 15px;
    }
    .footer-socials{
        gap: 15px;
    }
    .footer-bottom{
        gap: 15px;
    }
    .footer-bottom{
        padding-top: 50px;
    }
    .footer-copyright span{
        font-size: 12px;
    }
    
    .footer-credits span{
        font-size: 12px;
    }
    
    .footer-credits a {
        color: #141414;
        font-size: 12px;
    }
    .catalog-products .product-info .price {
        font-size: 14px;
    }
    .catalog-products .product-info .add-to-cart-btn{
        width: 30px;
        min-width: 30px;
        height: 30px;
    }
    .catalog-products .product-info {
        padding: 10px;
    }

    .products-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .products-sort {
        order: 1;
        width: 100%;
    }

    .products-count {
        order: 2;
        width: 100%;
        text-align: center;
    }
    .cart-section-title {
        font-size: 20px;
    }

}

/* Personal Data Page Styles */
.personal-section {
    padding: 150px 0 100px;
    background: #FFFFFF;
    min-height: calc(100vh - 83px);
}

.personal-wrapper {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 80px;
    max-width: 1600px;
    margin: 0 auto;
    align-items: start;
}

/* Sidebar Styles */
.personal-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: sticky;
    top: 120px;
}

.sidebar-brand h2 {
    font-family: 'Unbounded', sans-serif;
    font-weight: 400;
    font-size: 32px;
    color: #141414;
    margin: 0;
}

.sidebar-brand h2 a {
    color: #141414;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sidebar-brand h2 a:hover {
    color: #666;
}

.sidebar-welcome {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebar-welcome h3 {
    font-family: 'Geologica', sans-serif;
    font-weight: 400;
    font-size: 28px;
    line-height: 1.2;
    color: #141414;
    margin: 0;
}

.sidebar-welcome p {
    font-family: 'Geologica', sans-serif;
    font-weight: 300;
    font-size: 20px;
    line-height: 1.25;
    color: #877E7E;
    margin: 0;
}

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

.nav-link {
    font-family: 'Geologica', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.5;
    color: #141414;
    text-decoration: none;
    padding: 12px 0;
    transition: color 0.3s ease;
    display: block;
}

.nav-link:hover {
    color: #666;
}

.nav-link.active {
    font-weight: 500;
    color: #141414;
}

.nav-divider {
    width: 100%;
    height: 1px;
    background: #D0D5DD;
    margin: 12px 0;
}

/* Main Content Styles */
.personal-content {
    flex: 1;
}

.personal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.personal-title {
    font-family: 'Unbounded', sans-serif;
    font-weight: 600;
    font-size: 48px;
    line-height: 1.2;
    color: #141414;
    margin: 0;
}

.personal-content .products-grid {
    grid-template-columns: repeat(3, 1fr);
}

.personal-form {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.form-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

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

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

.personal-form .form-group label {
    font-family: 'Geologica', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #141414;
}

.personal-form .form-group input,
.personal-form .form-group select {
    padding: 16px;
    border: 1px solid #D0D5DD;
    border-radius: 0;
    font-family: 'Geologica', sans-serif;
    font-size: 16px;
    color: #141414;
    background: #FFFFFF;
    transition: border-color 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.personal-form .form-group input:focus,
.personal-form .form-group select:focus {
    outline: none;
    border-color: #141414;
}

.personal-form .form-group input::placeholder {
    color: #877E7E;
}

.personal-form .password-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.personal-form .password-input-wrapper input {
    padding-right: 50px;
}

.personal-form .password-toggle,
.personal-form .password-toggle-lock {
    position: absolute;
    right: 16px;
    background: none;
    border: none;
    color: #141414;
    cursor: pointer;
    font-size: 18px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.personal-form .password-toggle:hover,
.personal-form .password-toggle-lock:hover {
    color: #666;
}

.personal-form .gender-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23141414' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-buttons {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.btn-save-profile {
    font-family: 'Geologica', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.25;
    color: #FFFFFF;
    background: #000000;
    border: none;
    padding: 15px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
    width: 245px;
}

.btn-save-profile:hover {
    background: #333333;
}

.btn-save {
    width: 245px;
    font-family: 'Geologica', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.25;
    color: #141414;
    background: #FFFFFF;
    border: 1px solid #141414;
    padding: 15px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 200px;
}

.btn-save:hover {
    background: #F5F5F5;
}
@media (max-width: 1200px) {
    .personal-wrapper {
        gap: 30px;
    }
    .form-columns{
        gap: 30px;
    }
    .btn-save-profile{
        font-size: 18px;
    }
}
/* Responsive Design for Personal Page */
@media (max-width: 1024px) {
    .personal-wrapper {
        grid-template-columns: 200px 1fr;
    }
    .personal-wrapper {
        gap: 15px;
    }
    .form-column{
        gap: 15px;
    }
    .sidebar-welcome h3 {
        font-size: 24px;
    }
    .personal-title {
        font-size: 40px;
    }
    .nav-link,
    .sidebar-welcome p{
        font-size: 18px;
    }
    .form-columns {
        gap: 30px;
        grid-template-columns: 1fr;
    }

}

@media (max-width: 768px) {
    .personal-section {
        padding: 120px 0 80px;
    }
    
    .personal-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .personal-sidebar {
        position: relative;
        top: 0;
    }
    
    .personal-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .personal-title {
        font-size: 36px;
        margin-bottom: 0;
    }
    
    .personal-header .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .form-columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .form-buttons {
        flex-direction: column;
    }
    
    .btn-save-profile,
    .btn-save {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .personal-section {
        padding: 100px 0 60px;
    }
    
    .personal-header {
        gap: 15px;
    }
    
    .personal-title {
        font-size: 28px;
    }
    
    .sidebar-welcome h3 {
        font-size: 20px;
    }
    

    
    .personal-form .form-group input,
    .personal-form .form-group select {
        padding: 14px;
        font-size: 14px;
    }
    
    .btn-save-profile,
    .btn-save {
        font-size: 18px;
        padding: 12px 24px;
    }
}

/* Orders History Page Styles */
.personal-sidebar {
    background: #F9FAFB;
    padding: 40px 30px;
    border-radius: 0;
}

.orders-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.search-wrapper {
    width: 100%;
    max-width: 400px;
}

.orders-search {
    width: 100%;
    padding: 16px;
    border: 1px solid #D0D5DD;
    border-radius: 0;
    font-family: 'Geologica', sans-serif;
    font-size: 16px;
    color: #141414;
    background: #FFFFFF;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.orders-search:focus {
    outline: none;
    border-color: #141414;
}

.orders-search::placeholder {
    color: #877E7E;
}

.orders-table-wrapper {
    width: 100%;
    overflow-x: auto;
}

.orders-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Geologica', sans-serif;
}

.orders-table thead {
    background: transparent;
}

.orders-table th {
    padding: 20px 16px;
    text-align: left;
    font-family: 'Geologica', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #141414;
    border-bottom: 1px solid #D0D5DD;
    white-space: nowrap;
}

.orders-table td {
    padding: 20px 16px;
    text-align: left;
    font-family: 'Geologica', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #141414;
    border-bottom: 1px solid #D0D5DD;
    vertical-align: middle;
}

.orders-table tbody tr:last-child td {
    border-bottom: none;
}

.orders-table tbody tr:hover {
    background: #F9FAFB;
}

/* Expand button styles */
.product-cell-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
}

.expand-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px 8px;
    color: #141414;
    font-size: 14px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    min-width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.expand-btn:hover {
    background: #F5F5F5;
}

.expand-btn i {
    transition: transform 0.3s ease;
}

.expand-btn.active i {
    transform: rotate(180deg);
}

/* Mobile details row */
.mobile-details-row {
    display: none;
}

.mobile-details-row.show {
    display: table-row;
}

.mobile-details {
    padding: 15px;
    background: #F9FAFB;
    border-top: 1px solid #D0D5DD;
}

.mobile-details .mobile-details-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #E5E7EB;
}

.mobile-details .mobile-details-row:last-child {
    border-bottom: none;
}

.mobile-details-label {
    font-family: 'Geologica', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #141414;
}

.mobile-details-value {
    font-family: 'Geologica', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #141414;
    text-align: right;
}

.status-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 4px;
    font-family: 'Geologica', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.25;
    text-align: center;
    white-space: nowrap;
}

.status-canceled {
    background: #F9FAFB;
    border: 1px solid #D0D5DD;
    color: #141414;
}

.status-in-process {
    background: #F9FAFB;
    border: 1px solid #D0D5DD;
    color: #141414;
}

.status-not-completed {
    background: #141414;
    border: 1px solid #141414;
    color: #FFFFFF;
}
@media (max-width: 1440px){
.personal-title{
    font-size: 40px;
}
}
/* Responsive Design for Orders History */
@media (max-width: 1200px) {
    .personal-title{
        font-size: 36px;
    }
}
/* Responsive Design for Orders History */
@media (max-width: 1024px) {
    .orders-table {
        font-size: 14px;
    }
    
    .orders-table th,
    .orders-table td {
        padding: 16px 12px;
        font-size: 14px;
    }
    .personal-title{
        font-size: 26px;
    }
    .personal-sidebar{
        padding: 15px;
    }
}

@media (max-width: 768px) {
    .personal-sidebar {
        padding: 30px 20px;
    }
    
    .orders-table-wrapper {
        overflow-x: visible;
    }
    
    .orders-table {
        width: 100%;
        min-width: auto;
    }
    
    /* Hide columns on mobile */
    .orders-table .mobile-hidden {
        display: none;
    }
    
    /* Show expand button on mobile */
    .expand-btn {
        display: flex;
    }
    
    .orders-table th,
    .orders-table td {
        padding: 12px 8px;
        font-size: 13px;
    }
    
    .orders-table .col-product {
        width: 100%;
    }
    
    .orders-table .col-date {
        width: auto;
        min-width: 90px;
    }
    
    .product-cell-content {
        width: 100%;
    }
    
    .product-cell-content span {
        flex: 1;
        min-width: 0;
    }
    
    .status-badge {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .search-wrapper {
        max-width: 100%;
    }
    
    /* Expanded row styles */
    .order-row.expanded {
        background: #F9FAFB;
    }
    
    .order-row.expanded td {
        border-bottom: none;
    }
    
    /* Show mobile details when expanded */
    .order-row.expanded + .mobile-details-row {
        display: table-row;
    }
    
    .mobile-details-row {
        display: none;
    }
}

@media (max-width: 480px) {
    .personal-sidebar {
        padding: 20px 15px;
    }
    
    .orders-table th,
    .orders-table td {
        padding: 10px 6px;
        font-size: 12px;
    }
    
    .status-badge {
        padding: 4px 8px;
        font-size: 11px;
    }
    
    .mobile-details {
        padding: 12px;
    }
    
    .mobile-details .mobile-details-row {
        padding: 8px 0;
    }
    
    .mobile-details-label,
    .mobile-details-value {
        font-size: 13px;
    }
    
    .expand-btn {
        min-width: 28px;
        height: 28px;
        padding: 4px 6px;
        font-size: 12px;
    }
    .header-email{
        font-size: 10px;
    }
    .feature-description{
        font-size: 14px;
    }
    .feature-title{
        font-size: 16px;
    }
    .sign-in-title{
        font-size: 20px;
    }
    .benefit-item span{
        font-size: 14px;
    }
    .loyalty-intro, .cta-text, .learn-more-text{
        font-size: 16px;
    }
}

.green-completed{
    background-color: #77e95f;
    color: #000000;
    border: 1px solid #77e95f;
}
@media (max-width: 768px) {
    .personal-title{
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .personal-title{
        font-size: 20px;
    }
    .header-icons{
        gap: 3px;
    }
}

.btn-personal-basket{
    margin-top: 0px;
}

@media (max-width: 1200px) {
    .personal-content .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .personal-content .products-grid {
        grid-template-columns: 1fr;
    }
}
.size-basket-btn{
   width: fit-content;
}

/* Search Section Styles */
.search-section {
    padding: 120px 0 80px;
    min-height: 60vh;
}

.search-section .section-title {
    font-family: 'Unbounded', sans-serif;
    font-size: 48px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 50px;
    color: #141414;
}

.search-form-wrapper {
    max-width: 800px;
    margin: 0 auto 60px;
}

.search-form {
    display: flex;
    gap: 20px;
    align-items: stretch;
}

.search-input-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 20px;
    color: #877E7E;
    font-size: 18px;
    pointer-events: none;
    z-index: 1;
}

.search-input {
    width: 100%;
    padding: 18px 50px 18px 55px;
    border: 1px solid #D0D5DD;
    border-radius: 0;
    font-family: 'Geologica', sans-serif;
    font-size: 16px;
    color: #141414;
    background: #FFFFFF;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.search-input:focus {
    outline: none;
    border-color: #141414;
}

.search-input::placeholder {
    color: #877E7E;
}

.search-clear-btn {
    position: absolute;
    right: 15px;
    background: none;
    border: none;
    color: #877E7E;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
    z-index: 1;
}

.search-clear-btn:hover {
    color: #141414;
}

.search-submit-btn {
    padding: 18px 40px;
    background: #141414;
    color: #FFFFFF;
    border: none;
    font-family: 'Geologica', sans-serif;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.search-submit-btn:hover {
    background: #333;
}

.search-submit-btn i {
    font-size: 14px;
}

/* Search Results */
.search-results {
    margin-top: 60px;
}

.search-results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #D0D5DD;
}

.search-results-title {
    font-family: 'Unbounded', sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: #141414;
    margin: 0;
}

.search-results-count {
    font-family: 'Geologica', sans-serif;
    font-size: 16px;
    color: #877E7E;
}


/* No Results */
.search-no-results {
    text-align: center;
    padding: 80px 20px;
}

.no-results-content {
    max-width: 500px;
    margin: 0 auto;
}

.no-results-content i {
    font-size: 64px;
    color: #D0D5DD;
    margin-bottom: 30px;
}

.no-results-content h3 {
    font-family: 'Unbounded', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #141414;
    margin: 0 0 15px 0;
}

.no-results-content p {
    font-family: 'Geologica', sans-serif;
    font-size: 16px;
    color: #877E7E;
    margin: 0;
}

/* Initial State */
.search-initial {
    text-align: center;
    padding: 80px 20px;
}

.search-initial-content {
    max-width: 500px;
    margin: 0 auto;
}

.search-initial-content i {
    font-size: 64px;
    color: #D0D5DD;
    margin-bottom: 30px;
}

.search-initial-content p {
    font-family: 'Geologica', sans-serif;
    font-size: 18px;
    color: #877E7E;
    margin: 0;
}


/* Responsive Styles */
@media (max-width: 768px) {
    .search-section {
        padding: 100px 0 60px;
    }

    .search-section .section-title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .search-form {
        flex-direction: column;
        gap: 15px;
    }

    .search-submit-btn {
        width: 100%;
        justify-content: center;
    }

    .search-results-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .search-results-title {
        font-size: 24px;
    }

    .no-results-content h3,
    .search-initial-content p {
        font-size: 20px;
    }
}

/* Animations for notifications */
@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutLeft {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(-100%);
        opacity: 0;
    }
}
@media (max-width: 1440px) {
    .search-section .section-title{
        font-size: 48px;
    }
}
@media (max-width: 1440px) {
    .search-section .section-title{
        font-size: 40px;
    }
}
@media (max-width: 1200px) {
    .search-section .section-title{
        font-size: 36px;
    }
}
@media (max-width: 1024px) {
    .search-section .section-title{
        font-size: 26px;
    }
}

@media (max-width: 768px) {
    .search-section .section-title{
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .search-section .section-title{
        font-size: 20px;
    }
    .no-results-content h3, .search-initial-content p{
        font-size: 16px;
    }
}