html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.hero-section {
    min-height: 520px;
    display: flex;
    align-items: center;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    background: #f8f8f8;
}

.hero-text {
    width: 45%;
    text-align: center;
    padding: 60px;
}

    .hero-text h1 {
        font-family: Georgia, 'Times New Roman', serif;
        font-size: 56px;
        color: #111;
        margin-bottom: 15px;
    }

.decor-line {
    font-size: 24px;
    color: #999;
    margin: 20px 0 25px 0;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 18px;
    color: #222;
}

.hero-description {
    font-size: 16px;
    color: #555;
    margin-bottom: 35px;
}

.hero-button {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 14px 45px;
    text-decoration: none;
    font-size: 18px;
    border-radius: 2px;
}

    .hero-button:hover {
        background: #333;
        color: #fff;
    }

.hero-image {
    width: 55%;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ffffff, #dcdcdc);
}

.image-placeholder {
    width: 80%;
    height: 360px;
    border: 1px solid #bbb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
    font-size: 20px;
    letter-spacing: 4px;
}

.features-section {
    display: flex;
    justify-content: space-around;
    text-align: center;
    padding: 35px 20px;
    background: #fff;
    border-bottom: 1px solid #ddd;
}

.feature-box {
    width: 30%;
    position: relative;
}

    .feature-box:not(:last-child)::after {
        content: "";
        position: absolute;
        right: -10px;
        top: 25%;
        width: 1px;
        height: 50px;
        background: #d8d8d8;
    }

.feature-icon {
    font-size: 30px;
    margin-bottom: 10px;
}

.feature-box h3 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 20px;
    letter-spacing: 1px;
}

.feature-box p {
    color: #555;
}

.hero-photo {
    width: 90%;
    height: 420px;
    object-fit: cover;
    border: 1px solid #d8d8d8;
}


.catalog-title {
    text-align: center;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 48px;
    margin-top: 50px;
}

.catalog-decor {
    text-align: center;
    color: #999;
    font-size: 22px;
    margin: 15px 0;
}

.catalog-subtitle {
    text-align: center;
    color: #555;
    margin-bottom: 45px;
}

.products-grid {
    display: flex;
    justify-content: center;
    gap: 35px;
    padding: 20px 40px 80px 40px;
}

.product-card {
    width: 280px;
    text-align: center;
    border: 1px solid #ddd;
    padding: 18px;
    background: #fff;
}

    .product-card img {
        width: 100%;
        height: 260px;
        object-fit: cover;
        background: #f2f2f2;
        border: 1px solid #e5e5e5;
    }

    .product-card h3 {
        font-family: Georgia, 'Times New Roman', serif;
        font-size: 24px;
        margin-top: 18px;
    }
    .product-card p {
        font-size: 20px;
        margin-top: 10px;
        color: #444;
    }

.product-page {
    display: flex;
    gap: 60px;
    padding: 40px 40px 70px 40px;
    align-items: center;
}

.product-image {
    width: 50%;
}

    .product-image img {
        width: 100%;
        max-height: 560px;
        object-fit: contain;
        border: 1px solid #ddd;
        background: #f7f7f7;
    }

.product-info {
    width: 50%;
}

    .product-info h1 {
        font-family: Georgia, 'Times New Roman', serif;
        font-size: 52px;
        margin-bottom: 20px;
    }

.product-price {
    font-size: 32px;
    color: #111;
    margin-top: 25px;
    margin-bottom: 25px;
}

.product-description {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 35px;
}

.active-menu {
    border-bottom: 1px solid #111;
    padding-bottom: 3px;
}

.product-breadcrumb {
    padding: 25px 40px 0 40px;
}

    .product-breadcrumb a {
        color: #111;
        text-decoration: none;
        font-family: Georgia, 'Times New Roman', serif;
        font-size: 16px;
        letter-spacing: 1px;
        border-bottom: 1px solid #111;
        padding-bottom: 4px;
    }

        .product-breadcrumb a:hover {
            color: #555;
            border-bottom: 1px solid #555;
        }


.product-card a {
    color: #1f1f1f;
    text-decoration: none;
}

    .product-card a:hover {
        color: #000;
    }


.product-link {
    color: #111;
    text-decoration: none;
}

    .product-link:hover {
        color: #111;
        text-decoration: none;
    }

    .product-link h3,
    .product-link p {
        color: #111;
    }


.cart-page {
    text-align: center;
    padding: 80px 20px;
}

    .cart-page h1 {
        font-family: Georgia, 'Times New Roman', serif;
        font-size: 52px;
        margin-bottom: 20px;
    }

.cart-empty-text {
    font-size: 20px;
    color: #666;
    margin-bottom: 40px;
}


.cart-items {
    max-width: 1100px;
    margin: 40px auto;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 25px;
    margin-bottom: 25px;
    border: 1px solid #e5e5e5;
    background: white;
}

    .cart-item img {
        width: 180px;
        height: 180px;
        object-fit: cover;
    }

.cart-item-info h3 {
    font-family: "Times New Roman", serif;
    font-size: 32px;
    margin-bottom: 10px;
}

.cart-price {
    font-size: 24px;
    margin-bottom: 15px;
}

.cart-layout {
    max-width: 1400px;
    margin: 50px auto;
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.cart-left {
    flex: 2;
}

.cart-right {
    flex: 1;
}


.order-summary {
    border: 1px solid #e5e5e5;
    padding: 35px;
    background: #fff;
    text-align: left;
    min-width: 320px;
}

    .order-summary h2 {
        font-family: Georgia, 'Times New Roman', serif;
        font-size: 30px;
        margin-bottom: 25px;
        text-align: center;
    }

.summary-line,
.summary-total {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 12px;
    font-size: 16px;
}

.summary-total {
    font-size: 22px;
    font-weight: bold;
    margin-top: 20px;
}

.checkout-button {
    width: 100%;
    text-align: center;
    margin-top: 25px;
}

.continue-link,
.remove-link {
    color: #111;
    text-decoration: none;
    border-bottom: 1px solid #111;
    font-family: Georgia, 'Times New Roman', serif;
}

    .continue-link:hover,
    .remove-link:hover {
        color: #555;
        border-bottom: 1px solid #555;
    }

.cart-quantity {
    margin: 12px 0;
}

.qty-button {
    display: inline-block;
    width: 28px;
    height: 28px;
    border: 1px solid #111;
    line-height: 26px;
    text-align: center;
    margin: 0 8px;
    cursor: pointer;
}


.order-summary {
    position: sticky;
    top: 30px;
}

.cart-price span {
    font-size: 15px;
    color: #777;
}

.quantity-label {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 15px;
    margin-bottom: 8px;
    color: #555;
}

.quantity-number {
    display: inline-block;
    min-width: 25px;
    text-align: center;
}

.qty-button {
    color: #111;
    text-decoration: none;
}

    .qty-button:hover {
        color: #111;
        background: #f5f5f5;
    }

.remove-link {
    display: inline-block;
    margin-top: 10px;
    font-size: 15px;
}

.checkout-page,
.thank-you-page {
    text-align: center;
    padding: 80px 20px;
}

    .checkout-page h1,
    .thank-you-page h1 {
        font-family: Georgia, 'Times New Roman', serif;
        font-size: 52px;
    }

.checkout-form {
    max-width: 700px;
    margin: 40px auto;
    text-align: left;
}

.checkout-row {
    display: flex;
    gap: 20px;
}

.checkout-field {
    width: 100%;
    margin-bottom: 22px;
}

    .checkout-field label {
        display: block;
        font-family: Georgia, 'Times New Roman', serif;
        margin-bottom: 8px;
    }

    .checkout-field input,
    .checkout-field textarea {
        width: 100%;
        border: 1px solid #ddd;
        padding: 14px;
        font-size: 16px;
    }

    .checkout-field textarea {
        height: 120px;
    }

    .checkout-field span {
        color: #9b0000;
        font-size: 14px;
    }

.checkout-submit {
    border: none;
    width: 100%;
    margin-top: 20px;
}

.thank-you-page p {
    font-size: 20px;
    color: #555;
    margin-bottom: 20px;
}


.about-page {
    max-width: 900px;
    margin: 80px auto;
    text-align: center;
}

.about-content {
    max-width: 700px;
    margin: 40px auto 0;
}

    .about-content p {
        font-size: 18px;
        line-height: 1.9;
        margin-bottom: 25px;
        color: #333;
    }

.about-signature a {
    color: #000;
    text-decoration: none;
    font-weight: 500;
}

    .about-signature a:hover {
        text-decoration: underline;
    }

.thank-you-page {
    min-height: 65vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
    text-align: center;
}

.thank-you-card {
    max-width: 720px;
    border: 1px solid #e5e5e5;
    padding: 60px 70px;
    background: #fff;
}

.thank-you-icon {
    font-size: 34px;
    margin-bottom: 20px;
    color: #111;
}

.thank-you-main {
    font-size: 22px;
    margin-top: 30px;
    color: #111;
}

.thank-you-page p {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 18px;
}

.thank-you-note {
    font-style: italic;
    margin-top: 30px;
}

.thank-you-button {
    margin-top: 30px;
    display: inline-block;
}