* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background-color: #f7f3ee;
    color: #29231f;
    font-family: Arial, sans-serif;
}


/* =========================
   МЕНЮ
   ========================= */

header {
    height: 80px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 50px;

    border-bottom: 1px solid #ddd5cc;

    box-sizing: border-box;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 4px;
    text-decoration: none;
    color: #29231f;
}

nav {
    display: flex;
    gap: 35px;
}

nav a {
    color: #29231f;
    text-decoration: none;
    font-size: 14px;
}

nav a:hover {
    opacity: 0.5;
}

.cart {
    font-size: 20px;
    cursor: pointer;
    user-select: none;
}


/* =========================
   HERO
   ========================= */

.hero {
    text-align: center;
    padding: 170px 20px 160px;
}

.subtitle {
    font-size: 11px;
    letter-spacing: 5px;
    margin-bottom: 30px;
}

.hero h1 {
    font-size: 76px;
    font-weight: normal;
    letter-spacing: 16px;
    margin: 0 0 30px;
}

.hero-text {
    font-size: 17px;
    max-width: 520px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-button {
    display: inline-block;
    background-color: #29231f;
    color: white;
    padding: 16px 30px;
    font-size: 11px;
    letter-spacing: 2px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.hero-button:hover {
    opacity: 0.75;
}


/* =========================
   БУТОНИ
   ========================= */

button {
    background-color: #29231f;
    color: white;
    border: none;
    padding: 16px 30px;
    font-size: 12px;
    letter-spacing: 2px;
    cursor: pointer;
}

button:hover {
    opacity: 0.8;
}


/* =========================
   КОЛЕКЦИИ
   ========================= */

.collections {
    padding: 100px 50px;
    text-align: center;
    border-top: 1px solid #ddd5cc;
}

.section-title {
    font-size: 12px;
    letter-spacing: 4px;
    margin-bottom: 15px;
}

.collections h2 {
    font-size: 42px;
    font-weight: normal;
    margin-bottom: 60px;
}

.collection-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.collection-card {
    text-align: left;
}

.collection-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    margin-bottom: 20px;
}

.collection-card h3 {
    font-size: 16px;
    letter-spacing: 3px;
    margin: 0 0 10px;
}

.collection-card p {
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* =========================
   SHOP HEADER
========================= */

.shop-header {
    text-align: center;
    padding: 70px 20px 35px;
    border-top: 1px solid #ddd5cc;
}

.shop-header .section-title {
    margin: 0 0 20px;
}

.shop-header h1 {
    font-size: 42px;
    font-weight: normal;
    margin: 0 0 18px;
}

.shop-description {
    margin: 0;
    color: #6f665f;
    font-size: 15px;
    line-height: 1.6;
}

/* =========================
   ПРОДУКТИ
   ========================= */

.products {
    padding: 45px 50px 80px;
    text-align: center;
    border-top: 1px solid #ddd5cc;
}

.products h2 {
    font-size: 38px;
    font-weight: normal;
    margin: 0 0 40px;
}

.product-grid {
   width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 70px 30px;
}

.product-card {
    text-align: left;
}

.product-card img {
   width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    display: block;
    margin-bottom: 24px;
}

.product-card h3 {
    font-size: 14px;
    font-weight: normal;
    letter-spacing: 2px;
    margin: 0 0 10px;
    text-transform: uppercase;
}

.price {
    font-size: 14px;
    margin: 0;
    color: #6f665f;
}

.product-card button {
    margin-top: 18px;
    padding: 0;
    background: none;
    color: #29231f;
    font-size: 11px;
    letter-spacing: 2px;
    border-bottom: 1px solid #29231f;
}

.product-card button:hover {
    opacity: 0.5;
}


/* =========================
   КОЛИЧКА
   ========================= */

.cart-panel {
    position: fixed;
    top: 0;
    right: -420px;

    width: 400px;
    max-width: 90%;
    height: 100vh;

    background-color: #f7f3ee;
    border-left: 1px solid #ddd5cc;

    padding: 30px;

    z-index: 1000;

    transition: right 0.3s ease;

    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.08);
}

.cart-panel.open {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;

    border-bottom: 1px solid #ddd5cc;
    padding-bottom: 20px;
}

.cart-header h2 {
    font-size: 20px;
    font-weight: normal;
    margin: 0;
}

.close-cart {
    background: none;
    color: #29231f;
    border: none;
    font-size: 30px;
    padding: 0;
    cursor: pointer;
}

#cart-items {
    padding: 25px 0;
}

.cart-item {
    display: grid;
    grid-template-columns: 65px 1fr auto;
    gap: 15px;
    align-items: center;

    padding: 18px 0;
    border-bottom: 1px solid #ddd5cc;
}


.cart-item-image img {
    width: 65px;
    height: 80px;
    object-fit: cover;
    display: block;
}


.cart-item-info {
    min-width: 0;
}


.cart-item-name {
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 6px;
}


.cart-item-price {
    font-size: 12px;
    color: #6f665f;
    margin-bottom: 10px;
}


.quantity-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 5px;
}


.quantity-controls button {
    width: 26px;
    height: 26px;

    padding: 0;

    font-size: 15px;
    line-height: 26px;

    background: #29231f;
    color: white;
}


.quantity-controls span {
    min-width: 20px;
    text-align: center;
    font-size: 12px;
}


.cart-item-right {
    display: flex;
    flex-direction: column;

    align-items: flex-end;
    justify-content: space-between;

    height: 80px;
}


.cart-item-right strong {
    font-size: 13px;
    font-weight: normal;
}


.remove-cart-item {
    background: none;
    border: none;

    color: #29231f;

    padding: 0;

    font-size: 20px;
    line-height: 1;

    cursor: pointer;
}


.remove-cart-item:hover {
    opacity: 0.5;
}

.cart-footer {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
}

.cart-total {
    display: flex;
    justify-content: space-between;

    margin-bottom: 20px;
    font-size: 18px;
}

.checkout-button {
    width: 100%;
}

/* =========================
   ПРОДУКТОВА СТРАНИЦА
   ========================= */

.product-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 50px;

    display: grid;
    grid-template-columns: 1.2fr 0.8fr;

    gap: 80px;
    align-items: center;
}

.product-page-image img {
    width: 100%;
    display: block;
}

.product-page-info {
    max-width: 450px;
}

.product-label {
    font-size: 11px;
    letter-spacing: 4px;
    margin-bottom: 25px;
}

.product-page-info h1 {
    font-size: 42px;
    font-weight: normal;
    margin: 0 0 20px;
}

.product-page-price {
    font-size: 18px;
    margin-bottom: 35px;
}

.product-description {
    font-size: 15px;
    line-height: 1.7;
    color: #6f665f;
    margin-bottom: 35px;
}

.product-details {
    border-top: 1px solid #ddd5cc;
    border-bottom: 1px solid #ddd5cc;
    padding: 20px 0;
    margin-bottom: 35px;
}

.product-details p {
    font-size: 13px;
    margin: 10px 0;
    color: #29231f;
}

.product-details strong {
    color: #29231f;
}

.product-page-info button {
    width: 100%;
}

.product-link {
    display: inline-block;
    margin-top: 18px;

    color: #29231f;
    text-decoration: none;

    font-size: 11px;
    letter-spacing: 2px;

    border-bottom: 1px solid #29231f;
    padding-bottom: 4px;
}

.product-link:hover {
    opacity: 0.5;
}

/* =========================
   МОБИЛНА ВЕРСИЯ
   ========================= */
.category-filters {
    display: flex;
    justify-content: center;
    gap: 35px;
    margin-bottom: 45px;
}

.category-button {
    background: none;
    color: #29231f;
    padding: 0 0 5px;
    border-bottom: 1px solid transparent;
    font-size: 11px;
    letter-spacing: 2px;
}

.category-button:hover {
    opacity: 0.5;
}

.category-button.active {
    border-bottom: 1px solid #29231f;
}
@media (max-width: 768px) {

.menu-toggle {
    display: block !important;

    background: none !important;
    border: none !important;

    color: #29231f !important;

    font-size: 26px !important;

    width: 40px !important;
    height: 40px !important;

    padding: 0 !important;
    margin: 0 !important;

    cursor: pointer;

    position: absolute;
    left: 50%;
    transform: translateX(-50%);

    z-index: 1001;
}

    header {
    position: relative;

    height: auto;

    flex-direction: row;

    justify-content: space-between;

    align-items: center;

    padding: 18px 20px;
}

header nav {
    display: none;

    position: absolute;

    top: 100%;

    left: 0;
    right: 0;

    background: #f7f3ee;

    border-top: 1px solid #ddd5cc;
    border-bottom: 1px solid #ddd5cc;

    padding: 25px 20px;

    flex-direction: column;

    align-items: center;

    gap: 25px;

    z-index: 900;
}

header nav.mobile-open {
    display: flex;
}


    /* =========================
   MOBILE — HOME
========================= */

.hero {
       min-height: 58vh;
    padding: 70px 20px 60px;

    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;

    text-align: center;
}

.hero h1 {
    font-size: 46px;

    line-height: 1.1;

    letter-spacing: 6px;

    margin: 15px 0 20px;
}

.hero p:not(.subtitle) {
    max-width: 360px;

    font-size: 15px;

    line-height: 1.7;
}

.hero .subtitle {
    font-size: 10px;

    letter-spacing: 4px;
}


/* =========================
   КОЛЕКЦИИ
========================= */

.collections {
    padding: 70px 20px;
}

.collection-grid {
    grid-template-columns: 1fr;

    gap: 45px;
}

.collection-card {
    width: 100%;
}

.collection-image {
    width: 100%;

    height: auto;

    aspect-ratio: 4 / 5;

    object-fit: cover;
}


/* =========================
   ПРОДУКТИ
========================= */

.products {
    padding: 70px 20px;
}

.product-grid {
    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 25px 15px;
}

.product-card img {
    width: 100%;

    aspect-ratio: 3 / 4;

    object-fit: cover;
}

.product-card h3 {
    font-size: 13px;

    line-height: 1.4;

    margin-top: 12px;
}

.product-card .price {
    font-size: 13px;

    margin-top: 7px;
}

.product-link {
    font-size: 10px;

    letter-spacing: 1.5px;

    margin-top: 12px;
}


    /* КОЛИЧКА НА ТЕЛЕФОН */

   /* КОЛИЧКА НА ТЕЛЕФОН */

.cart-panel {
    width: 100%;
    max-width: 100%;
    right: -100%;
    padding: 25px 20px;
}

.cart-panel.open {
    right: 0;
}

.cart-item {
    grid-template-columns: 60px 1fr auto;
    gap: 12px;
}

.cart-item-image img {
    width: 60px;
    height: 75px;
}

.cart-item-name {
    font-size: 12px;
}

.cart-item-price {
    font-size: 11px;
}

.quantity-controls {
    gap: 6px;
}

.quantity-controls button {
    width: 28px;
    height: 28px;
}

.cart-item-right {
    height: 75px;
}

.cart-footer {
    bottom: 20px;
    left: 20px;
    right: 20px;
}
    .product-page {
    grid-template-columns: 1fr;

    padding: 50px 20px 80px;

    gap: 40px;
}


.product-gallery {
    width: 100%;
}


.product-main-image {
    width: 100%;
}


.product-main-image img {
    width: 100%;
    height: auto;

    display: block;
}


.product-thumbnails {
    display: flex;

    gap: 10px;

    margin-top: 12px;

    overflow-x: auto;
}


.product-thumbnail {
    width: 65px;
    height: 80px;

    object-fit: cover;

    flex-shrink: 0;

    cursor: pointer;

    opacity: 0.6;

    border: 1px solid transparent;
}


.product-thumbnail.active {
    opacity: 1;

    border-color: #29231f;
}


.product-page-info {
    max-width: none;

    width: 100%;
}


.product-page-info h1 {
    font-size: 34px;

    line-height: 1.2;

    margin-bottom: 15px;
}


.product-page-price {
    font-size: 17px;

    margin-bottom: 25px;
}


.product-description {
    font-size: 14px;

    line-height: 1.8;

    margin-bottom: 30px;
}


.product-details {
    padding: 18px 0;

    margin-bottom: 30px;
}


.product-details p {
    font-size: 12px;

    line-height: 1.6;
}


.product-page-info button {
    width: 100%;

    padding: 17px;
}


.cart-message {
    text-align: center;

    font-size: 13px;

    line-height: 1.5;
}
/* CHECKOUT - MOBILE */

.checkout-page {
    padding: 70px 20px;
}


.checkout-container {
    display: flex !important;
    flex-direction: column !important;
    width: 100%;
    max-width: 100%;
    gap: 45px;
    box-sizing: border-box;
}


.checkout-form {
    max-width: none;
}


.checkout-form h1 {
    font-size: 38px;

    margin-bottom: 50px;
}


.form-row {
    grid-template-columns: 1fr;

    gap: 0;
}


.checkout-summary {
    position: static;

    padding: 30px 20px;
}


.checkout-summary h2 {
    font-size: 26px;
}


.checkout-summary-item {
    grid-template-columns: 55px 1fr auto;

    gap: 12px;
}


.checkout-summary-item img {
    width: 55px;
    height: 70px;
}
.success-page {

    min-height: 70vh;

    padding: 100px 20px;

}


.success-page h1 {

    font-size: 42px;

}


.success-text {

    font-size: 14px;

}

/* =========================
   CHECKOUT — MOBILE
========================= */

.checkout-page {
    padding: 60px 20px;
}


.checkout-container {
    display: flex;
    flex-direction: column;

    gap: 45px;
}


.checkout-form {
    width: 100%;
    max-width: none;
}


.checkout-form h1 {
    font-size: 38px;
    line-height: 1.2;

    margin: 15px 0 45px;
}


.checkout-section {
    padding: 30px 0;
}


.checkout-section h2 {
    font-size: 18px;
    margin-bottom: 25px;
}


.form-row {
    display: block;
}


.form-group {
    margin-bottom: 22px;
}


.form-group input,
.form-group select,
.checkout-section textarea {
    font-size: 16px;
    padding: 15px;
}


.payment-option {
    padding: 14px 0;
}


.place-order-button {
    margin-top: 10px;
    padding: 18px;
}


/* ОБОБЩЕНИЕ НА ПОРЪЧКАТА */

.checkout-summary {
    position: static;

    width: 100%;
    box-sizing: border-box;

    padding: 25px 20px;
}


.checkout-summary h2 {
    font-size: 26px;
    margin-bottom: 25px;
}


.checkout-summary-item {
    grid-template-columns: 55px 1fr auto;

    gap: 12px;

    padding: 15px 0;
}


.checkout-summary-item img {
    width: 55px;
    height: 70px;
}


.checkout-summary-item-name {
    font-size: 13px;
}


.checkout-summary-item-price {
    font-size: 13px;
}


.checkout-summary-total {
    font-size: 18px;
    padding-top: 20px;
}


.continue-shopping {
    margin-top: 25px;
}
.checkout-page {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.checkout-container {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.checkout-form,
.checkout-summary {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
}


/* УСПЕШНА ПОРЪЧКА */

.success-page {
    min-height: 70vh;

    padding: 90px 20px;
}


.success-page h1 {
    font-size: 42px;
    line-height: 1.2;
}


.success-text {
    font-size: 14px;
    line-height: 1.8;
}


.success-button {
    width: 100%;
    box-sizing: border-box;

    text-align: center;

    padding: 17px 20px;
}

/* =========================
   CONTACT - MOBILE
========================= */

/* =========================
   CONTACT - MOBILE
========================= */

.contact-section {
    display: flex !important;
    flex-direction: column !important;

    width: 100% !important;
    max-width: 100% !important;

    gap: 40px;

    box-sizing: border-box;
}

.contact-info,
.contact-form-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;

    box-sizing: border-box;
}

.contact-form {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
}

.contact-form input,
.contact-form textarea {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
}

.contact-submit {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
}

}
/* =========================
   PRODUCT GALLERY
========================= */

.product-gallery {
    width: 100%;
}

.product-main-image {
    width: 100%;
}

.product-main-image img {
    width: 100%;
    display: block;
}

.product-thumbnails {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.product-thumbnail {
    width: 75px;
    height: 90px;
    object-fit: cover;
    display: block;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

.product-thumbnail:hover {
    opacity: 1;
}

.product-thumbnail.active {
    opacity: 1;
}


/* =========================
   CART MESSAGE
========================= */

.cart-message {
    display: block;
    font-size: 13px;
    margin-top: 15px;
    text-align: center;
    color: #29231f;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cart-message.show {
    opacity: 1;
}


/* =========================
   COLLECTION HOVER
========================= */

.collection-card {
    cursor: pointer;
    position: relative;
}

.collection-image {
    transition: transform 0.5s ease;
}

.collection-card:hover .collection-image {
    transform: scale(1.03);
}

.collection-card h3 {
    transition: opacity 0.3s ease;
}

.collection-card:hover h3 {
    opacity: 0.65;
}

.collection-card::after {
    content: "РАЗГЛЕДАЙ →";
    position: absolute;
    bottom: 75px;
    left: 20px;
    font-size: 11px;
    letter-spacing: 2px;
    color: white;
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.collection-card:hover::after {
    opacity: 1;
    transform: translateY(0);
}


/* =========================
   BRAND INTRO
========================= */

.brand-intro {
    padding: 130px 20px;
    text-align: center;
    border-top: 1px solid #ddd5cc;
    color: #29231f;
    background: #eee8df;
}

.brand-intro h2 {
    font-size: 42px;
    font-weight: normal;
    line-height: 1.25;
    margin: 0 0 30px;
}

.brand-intro-text {
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 16px;
    line-height: 1.7;
}

.text-link {
    color: #29231f;
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 2px;
    border-bottom: 1px solid #29231f;
    padding-bottom: 5px;
}

.text-link:hover {
    opacity: 0.5;
}


/* =========================
   FOOTER
========================= */

.site-footer {
    background: #29231f;
    color: #f5f1eb;
    padding: 90px 7% 30px;
}

.footer-brand {
    max-width: 420px;
    margin-bottom: 70px;
}

.footer-brand h2 {
    font-size: 32px;
    font-weight: normal;
    letter-spacing: 8px;
    margin: 0 0 20px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.75;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    padding-bottom: 70px;
}

.footer-links h3 {
    font-size: 10px;
    letter-spacing: 2px;
    font-weight: normal;
    margin-bottom: 25px;
}

.footer-links a {
    display: block;
    width: fit-content;
    color: #f5f1eb;
    text-decoration: none;
    font-size: 13px;
    margin-bottom: 12px;
    opacity: 0.75;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(245, 241, 235, 0.2);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.footer-bottom p {
    margin: 0;
    font-size: 11px;
    opacity: 0.6;
}


/* =========================
   ABOUT PAGE
========================= */

.about-hero {
    text-align: center;
    padding: 150px 20px 120px;
}

.about-hero h1 {
    font-size: 58px;
    font-weight: normal;
    margin: 20px 0 10px;
}

.about-hero > p:last-child {
    font-size: 20px;
    opacity: 0.65;
}

.about-story {
    border-top: 1px solid #ddd5cc;
    padding: 120px 20px;
}

.about-text {
    max-width: 700px;
    margin: auto;
}

.about-text h2 {
    font-size: 42px;
    font-weight: normal;
    line-height: 1.25;
    margin: 0 0 35px;
}

.about-text p:not(.section-title) {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-process {
    background: #eee8df;
    padding: 120px 7%;
    text-align: center;
}

.about-process h2 {
    font-size: 40px;
    font-weight: normal;
    margin-bottom: 70px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    max-width: 1000px;
    margin: auto;
}

.process-item span {
    font-size: 11px;
    letter-spacing: 2px;
}

.process-item h3 {
    font-size: 12px;
    letter-spacing: 2px;
    margin: 20px 0;
}

.process-item p {
    font-size: 14px;
    line-height: 1.7;
}

.about-cta {
    text-align: center;
    padding: 130px 20px;
}

.about-cta h2 {
    font-size: 42px;
    font-weight: normal;
    margin: 0 0 35px;
}

/* =========================
   CONTACT PAGE
========================= */

.contact-hero {
    text-align: center;
    padding: 150px 20px 120px;
}

.contact-hero h1 {
    font-size: 58px;
    font-weight: normal;
    margin: 20px 0 25px;
}

.contact-hero > p:last-child {
    max-width: 550px;
    margin: auto;
    font-size: 16px;
    line-height: 1.7;
}


.contact-section {
    border-top: 1px solid #ddd5cc;
    padding: 120px 7%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
}


.contact-info h2 {
    font-size: 40px;
    font-weight: normal;
    line-height: 1.25;
    max-width: 450px;
    margin: 0 0 60px;
}


.contact-item {
    border-top: 1px solid #ddd5cc;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.contact-item:last-child {
    border-bottom: 1px solid #ddd5cc;
}

.contact-item span {
    font-size: 10px;
    letter-spacing: 2px;
}

.contact-item a {
    color: #29231f;
    text-decoration: none;
    font-size: 14px;
}

.contact-item a:hover {
    opacity: 0.5;
}


.contact-form-wrapper {
    max-width: 550px;
}


.contact-form {
    margin-top: 35px;
}


.form-group {
    margin-bottom: 25px;
}


.form-group label {
    display: block;
    font-size: 11px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}


.form-group input,
.form-group textarea {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #ddd5cc;
    background: transparent;
    padding: 15px;
    font-family: inherit;
    font-size: 14px;
    color: #29231f;
    outline: none;
}


.form-group input:focus,
.form-group textarea:focus {
    border-color: #29231f;
}


.form-group textarea {
    resize: vertical;
}


.contact-submit {
    width: 100%;
    border: none;
    background: #29231f;
    color: #f5f1eb;
    padding: 17px;
    font-size: 11px;
    letter-spacing: 2px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}


.contact-submit:hover {
    opacity: 0.8;
}

.cart-item {
    display: grid;
    grid-template-columns: 65px 1fr auto;
    gap: 15px;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #ddd5cc;
}

.cart-item-image img {
    width: 65px;
    height: 80px;
    object-fit: cover;
    display: block;
}

.cart-item-info {
    min-width: 0;
}

.cart-item-name {
    font-size: 13px;
    margin-bottom: 7px;
}

.cart-item-price {
    font-size: 12px;
    color: #6f665f;
    margin-bottom: 10px;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.quantity-controls button {
    width: 25px;
    height: 25px;
    padding: 0;
    font-size: 14px;
    line-height: 25px;
}

.quantity-controls span {
    min-width: 20px;
    text-align: center;
    font-size: 12px;
}

.cart-item-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    height: 80px;
}

.cart-item-right strong {
    font-size: 13px;
}

.remove-cart-item {
    background: none;
    color: #29231f;
    padding: 0;
    font-size: 20px;
    line-height: 1;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .site-footer {
        padding: 70px 20px 25px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-bottom: 50px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
    }


    /* ABOUT */

    .about-hero {
        padding: 110px 20px 90px;
    }

    .about-hero h1 {
        font-size: 42px;
    }

    .about-text h2,
    .about-process h2,
    .about-cta h2 {
        font-size: 32px;
    }

    .about-story,
    .about-process {
        padding: 90px 20px;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

}/* =========================
   CHECKOUT
========================= */

.checkout-page {
    padding: 100px 50px;
    background: #f7f3ee;
}


.checkout-container {
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.2fr 0.8fr;

    gap: 90px;
    align-items: start;
}


/* =========================
   CHECKOUT FORM
========================= */

.checkout-form {
    max-width: 700px;
}


.checkout-form h1 {
    font-size: 48px;
    font-weight: normal;

    margin: 20px 0 70px;
}


.checkout-section {
    border-top: 1px solid #ddd5cc;

    padding: 35px 0;
}


.checkout-section h2 {
    font-size: 20px;
    font-weight: normal;

    margin: 0 0 30px;
}


/* =========================
   FORM
========================= */

.form-group {
    margin-bottom: 25px;
}


.form-group label {
    display: block;

    font-size: 11px;
    letter-spacing: 1.5px;

    margin-bottom: 9px;
}


.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 20px;
}


.form-group input,
.form-group select,
.checkout-section textarea {
    width: 100%;

    box-sizing: border-box;

    border: 1px solid #d8d0c7;

    background: #fbf8f4;

    color: #29231f;

    padding: 15px;

    font-family: inherit;
    font-size: 14px;

    outline: none;
}


.form-group input:focus,
.form-group select:focus,
.checkout-section textarea:focus {
    border-color: #29231f;
}


.checkout-section textarea {
    min-height: 120px;

    resize: vertical;
}


/* =========================
   PAYMENT
========================= */

.payment-option {
    display: flex;

    align-items: center;

    gap: 12px;

    padding: 15px 0;

    font-size: 14px;

    cursor: pointer;
}


.payment-option input {
    width: 16px;
    height: 16px;
}


/* =========================
   ORDER BUTTON
========================= */

.place-order-button {
    width: 100%;

    background: #29231f;
    color: #ffffff;

    border: none;

    padding: 18px;

    font-size: 11px;
    letter-spacing: 2px;

    cursor: pointer;

    transition: opacity 0.2s ease;
}


.place-order-button:hover {
    opacity: 0.8;
}


.checkout-message {
    display: none;

    margin-top: 20px;

    font-size: 13px;
}


/* =========================
   ORDER SUMMARY
========================= */

.checkout-summary {
    position: sticky;

    top: 30px;

    background: #eee8df;

    padding: 40px;
}


.checkout-summary h2 {
    font-size: 30px;

    font-weight: normal;

    margin: 15px 0 35px;
}


.checkout-summary-item {
    display: grid;

    grid-template-columns: 60px 1fr auto;

    gap: 15px;

    align-items: center;

    padding: 18px 0;

    border-bottom: 1px solid #d8d0c7;
}


.checkout-summary-item img {
    width: 60px;
    height: 75px;

    object-fit: cover;

    display: block;
}


.checkout-summary-item-info {
    min-width: 0;
}


.checkout-summary-item-name {
    font-size: 13px;

    line-height: 1.4;

    margin-bottom: 6px;
}


.checkout-summary-item-quantity {
    font-size: 11px;

    color: #6f665f;
}


.checkout-summary-item-price {
    font-size: 13px;

    white-space: nowrap;
}


.checkout-summary-total {
    display: flex;

    justify-content: space-between;

    align-items: center;

    padding-top: 25px;

    font-size: 18px;
}


.checkout-summary-total strong {
    font-weight: normal;
}


.continue-shopping {
    display: inline-block;

    margin-top: 30px;

    color: #29231f;

    text-decoration: none;

    font-size: 10px;

    letter-spacing: 1.5px;

    border-bottom: 1px solid #29231f;

    padding-bottom: 5px;
}


.continue-shopping:hover {
    opacity: 0.5;
}
/* =========================
   SUCCESS PAGE
========================= */

.success-page {

    min-height: 65vh;

    max-width: 900px;

    margin: 0 auto;

    padding: 140px 50px;

    text-align: center;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

}


.success-page h1 {

    font-size: 56px;

    font-weight: normal;

    margin: 20px 0 30px;

}


.success-text {

    max-width: 560px;

    font-size: 16px;

    line-height: 1.8;

    color: #6f665f;

    margin: 0 0 40px;

}


.success-button {

    display: inline-block;

    background-color: #29231f;

    color: #fff;

    text-decoration: none;

    padding: 17px 30px;

    font-size: 11px;

    letter-spacing: 2px;

}


.success-button:hover {

    opacity: 0.8;

}
.menu-toggle {
    display: none;

    background: none;
    border: none;

    color: #29231f;

    font-size: 24px;

    padding: 0;

    cursor: pointer;
}
/* =========================
   СТАНДАРТНИ ЗАГЛАВИЯ НА СТРАНИЦИ
========================= */

.page-title {
    font-size: 42px;
    font-weight: normal;
    margin: 0;
}
/* =========================
   SHOP - CATEGORY MENU
   ========================= */

.category-menu {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 70px;
}


/* ОСНОВНИ КАТЕГОРИИ */

.category-main {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 22px 0;

    background: none;
    border: none;
    border-bottom: 1px solid #ddd5cc;

    color: #29231f;

    font-size: 13px;
    letter-spacing: 3px;
    text-align: left;

    cursor: pointer;
}


.category-main:hover {
    opacity: 0.6;
}


.category-main.active {
    border-bottom: 1px solid #29231f;
}


/* ПЛЮС / МИНУС */

.category-arrow {
    font-size: 18px;
    letter-spacing: 0;
}


/* ГРУПА */

.category-group {
    width: 100%;
}


/* ПОДКАТЕГОРИИ */

.category-submenu {
    display: none;

    padding: 20px 0 25px;

    border-bottom: 1px solid #ddd5cc;

    text-align: center;
}


/* ПОКАЗВАМЕ ПОДКАТЕГОРИИТЕ */

.category-group.open .category-submenu {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
}


/* ПОДКАТЕГОРИЯ */

.category-button {
    padding: 0;

    background: none;
    border: none;

    color: #29231f;

    font-size: 11px;
    letter-spacing: 2px;

    cursor: pointer;
}


.category-button:hover {
    opacity: 0.5;
}


.category-button.active {
    border-bottom: 1px solid #29231f;
}


/* ВСИЧКИ ПРОДУКТИ */

.category-menu > .category-main {
    margin-bottom: 0;
}