/* =========================
   GENERAL STYLES
========================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #ffffff;
    color: #222222;
}


/* =========================
   HEADER
========================= */

.header {
    width: 100%;
    min-height: 75px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 7%;

    background: #ffffff;

    border-bottom: 1px solid #eeeeee;

    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 28px;
    font-weight: bold;
}

.navbar {
    display: flex;
    gap: 30px;
}

.navbar a {
    text-decoration: none;
    color: #333333;

    font-size: 15px;
    font-weight: 500;

    transition: 0.3s;
}

.navbar a:hover,
.navbar a.active {
    color: #e85d04;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon-button,
.cart-button {
    border: none;
    background: transparent;

    cursor: pointer;

    font-size: 20px;
}

.cart-button {
    position: relative;
}

#cart-count {
    position: absolute;

    top: -10px;
    right: -10px;

    width: 20px;
    height: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #e85d04;
    color: white;

    border-radius: 50%;

    font-size: 11px;
}


/* =========================
   HERO
========================= */

.hero {
    min-height: 560px;

    position: relative;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: #f8eee7;
}


/* Hero image */

.hero-image {
    position: absolute;

    inset: 0;

    background-image: url("hero-image.png");

    background-size: cover;

    background-position: center 25%;

    z-index: 1;
}


/* Light overlay */

.hero::after {
    content: "";

    position: absolute;

    inset: 0;

    background: linear-gradient(
        90deg,
        rgba(248, 238, 231, 0.96) 0%,
        rgba(248, 238, 231, 0.82) 32%,
        rgba(248, 238, 231, 0.25) 58%,
        rgba(248, 238, 231, 0) 75%
    );

    z-index: 2;
}


/* Hero text */

.hero-content {
    position: relative;

    z-index: 3;

    max-width: 650px;

    margin-left: 7%;

    padding: 60px 0;
}


.hero-small-text {
    color: #e85d04;

    font-size: 14px;

    font-weight: bold;

    letter-spacing: 2px;

    margin-bottom: 20px;
}


.hero h1 {
    font-size: 64px;

    line-height: 1.08;

    margin-bottom: 25px;

    color: #222222;
}


.hero h1 span {
    color: #e85d04;
}


.hero-description {
    color: #555555;

    font-size: 18px;

    line-height: 1.7;

    max-width: 550px;

    margin-bottom: 35px;
}


.hero-buttons {
    display: flex;

    gap: 15px;
}


.primary-button,
.secondary-button {
    display: inline-block;

    padding: 15px 28px;

    text-decoration: none;

    border-radius: 6px;

    font-weight: bold;

    transition: all 0.3s ease;
}


.primary-button {
    background: #e85d04;

    color: white;
}


.primary-button:hover {
    background: #c94f00;

    transform: translateY(-2px);
}


.secondary-button {
    background: rgba(255, 255, 255, 0.85);

    border: 1px solid #222222;

    color: #222222;
}


.secondary-button:hover {
    background: #222222;

    color: white;

    transform: translateY(-2px);
}


/* =========================
   SECTION HEADING
========================= */

.section-heading {
    text-align: center;

    margin-bottom: 50px;
}

.section-heading p,
.section-label {
    color: #e85d04;

    font-size: 13px;

    font-weight: bold;

    letter-spacing: 2px;

    margin-bottom: 10px;
}

.section-heading h2 {
    font-size: 38px;
}


/* =========================
   CATEGORIES
========================= */

.categories-section {
    padding: 100px 7% 110px;
    background: #ffffff;
}

.categories-section .section-heading {
    margin-bottom: 55px;
}

.categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}


/* Category Card */

.category-card {
    position: relative;

    min-height: 280px;

    padding: 30px 28px;

    border: 1px solid #e8e8e8;
    border-radius: 16px;

    background: #ffffff;

    text-align: left;

    cursor: pointer;

    overflow: hidden;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.04);
}


/* Decorative background */

.category-card::before {
    content: "";

    position: absolute;

    width: 150px;
    height: 150px;

    top: -55px;
    right: -55px;

    border-radius: 50%;

    background: rgba(232, 93, 4, 0.07);

    transition:
        transform 0.4s ease,
        background 0.4s ease;
}


/* Hover */

.category-card:hover {
    transform: translateY(-8px);

    border-color: rgba(232, 93, 4, 0.35);

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.10);
}

.category-card:hover::before {
    transform: scale(1.5);

    background: rgba(232, 93, 4, 0.12);
}


/* Icon */

.category-icon {
    position: relative;
    z-index: 1;

    width: 64px;
    height: 64px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 28px;

    border-radius: 14px;

    background: #fff5ed;

    font-size: 34px;

    box-shadow:
        0 8px 20px rgba(232, 93, 4, 0.08);

    transition:
        transform 0.35s ease,
        background 0.35s ease;
}

.category-card:hover .category-icon {
    transform: scale(1.08) rotate(-3deg);

    background: #fff0e5;
}


/* Number */

.category-number {
    display: block;

    margin-bottom: 8px;

    color: #e85d04;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;
}


/* Heading */

.category-card h3 {
    position: relative;
    z-index: 1;

    margin: 0 0 9px;

    color: #222222;

    font-size: 21px;

    font-weight: 700;
}


/* Description */

.category-card p {
    position: relative;
    z-index: 1;

    margin: 0 0 22px;

    color: #777777;

    font-size: 14px;

    line-height: 1.6;
}


/* Shop link */

.category-link {
    position: relative;
    z-index: 1;

    display: inline-block;

    color: #222222;

    font-size: 13px;

    font-weight: 700;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.category-card:hover .category-link {
    color: #e85d04;

    transform: translateX(4px);
}


/* Remove default button styling */

.category-card:focus {
    outline: none;
}

.category-card:focus-visible {
    outline: 2px solid #e85d04;
    outline-offset: 4px;
}


/* =========================
   PRODUCTS
========================= */

.products-section {
    padding: 130px 7% 100px;

    background: #fafafa;
}


.section-description {
    color: #777777;

    font-size: 15px;

    margin-top: 12px;

    letter-spacing: 0;
}


.products-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 24px;
}


.product-card {
    background: #ffffff;

    border-radius: 12px;

    overflow: hidden;

    border: 1px solid #eeeeee;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


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

    box-shadow:
        0 15px 35px
        rgba(0, 0, 0, 0.10);
}


/* Product image */

.product-image {
    height: 280px;

    position: relative;

    overflow: hidden;

    background: #f4f4f4;
}


.product-image img {
    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

    transition:
        transform 0.5s ease;
}


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


/* Discount */

.discount {
    position: absolute;

    top: 15px;

    left: 15px;

    background: #e85d04;

    color: #ffffff;

    padding: 7px 11px;

    border-radius: 20px;

    font-size: 12px;

    font-weight: bold;
}


/* Wishlist */

.wishlist-button {
    position: absolute;

    top: 15px;

    right: 15px;

    width: 38px;

    height: 38px;

    border: none;

    border-radius: 50%;

    background: #ffffff;

    color: #333333;

    font-size: 22px;

    cursor: pointer;

    box-shadow:
        0 4px 12px
        rgba(0, 0, 0, 0.10);

    transition:
        background 0.3s ease,
        color 0.3s ease;
}


.wishlist-button:hover {
    background: #e85d04;

    color: #ffffff;
}


/* Product information */

.product-info {
    padding: 20px;
}


.product-category {
    color: #e85d04;

    font-size: 12px;

    font-weight: bold;

    text-transform: uppercase;

    letter-spacing: 1px;

    margin-bottom: 8px;
}


.product-info h3 {
    font-size: 17px;

    line-height: 1.4;

    min-height: 48px;

    margin-bottom: 10px;

    color: #222222;
}


/* Rating */

.rating {
    font-size: 13px;

    color: #f59e0b;

    margin-bottom: 18px;
}


.rating span {
    color: #888888;

    margin-left: 5px;
}


/* Price + button */

.product-bottom {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 10px;
}


.price-box {
    display: flex;

    flex-direction: column;

    gap: 3px;
}


.price {
    font-size: 20px;

    font-weight: bold;

    color: #222222;
}


.old-price {
    font-size: 12px;

    color: #999999;

    text-decoration: line-through;
}


.add-cart {
    border: none;

    background: #222222;

    color: #ffffff;

    padding: 11px 14px;

    border-radius: 6px;

    cursor: pointer;

    font-size: 13px;

    font-weight: bold;

    white-space: nowrap;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}


.add-cart:hover {
    background: #e85d04;

    transform: translateY(-2px);
}


/* =========================
   PRODUCT SEARCH & FILTER
========================= */

.product-controls {
    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 20px;

    margin-bottom: 40px;

    padding: 20px;

    background: #ffffff;

    border: 1px solid #eeeeee;

    border-radius: 12px;
}


/* Search */

.search-box {
    display: flex;

    align-items: center;

    gap: 10px;

    width: 100%;

    max-width: 500px;

    border: 1px solid #dddddd;

    border-radius: 8px;

    padding: 0 15px;

    background: #ffffff;
}


.search-box span {
    font-size: 18px;
}


.search-box input {
    width: 100%;

    border: none;

    outline: none;

    padding: 14px 5px;

    font-size: 15px;

    color: #222222;
}


.search-box input::placeholder {
    color: #999999;
}


/* Category filter */

.category-filter {
    display: flex;

    align-items: center;

    gap: 10px;
}


.category-filter label {
    font-size: 14px;

    font-weight: bold;

    color: #333333;
}


.category-filter select {
    padding: 13px 35px 13px 14px;

    border: 1px solid #dddddd;

    border-radius: 8px;

    background: #ffffff;

    color: #333333;

    font-size: 14px;

    cursor: pointer;

    outline: none;
}


.category-filter select:focus,
.search-box:focus-within {
    border-color: #e85d04;
}


/* No results */

.no-products {
    grid-column: 1 / -1;

    text-align: center;

    padding: 60px 20px;

    color: #777777;

    font-size: 17px;
}

/* =========================
   ABOUT
========================= */

.about-section {
    padding: 100px 7%;
}

.about-content {
    max-width: 750px;

    margin: auto;

    text-align: center;
}

.about-content h2 {
    font-size: 40px;

    margin-bottom: 25px;
}

.about-content p {
    color: #666666;

    line-height: 1.8;

    margin-bottom: 15px;
}


/* =========================
   CONTACT
========================= */

.contact-section {
    padding: 90px 7%;

    background: #fafafa;
}

.contact-box {
    max-width: 600px;

    margin: auto;

    padding: 35px;

    background: white;

    border-radius: 10px;

    border: 1px solid #eeeeee;

    text-align: center;
}

.contact-box p {
    margin-bottom: 15px;

    color: #555555;
}


/* =========================
   FOOTER
========================= */

.footer {
    padding: 35px 7%;

    background: #222222;
    color: white;

    display: flex;

    justify-content: space-between;

    align-items: center;
}

.footer p {
    color: #bbbbbb;
}


/* =========================
   RESPONSIVE DESIGN
========================= */

@media (max-width: 1000px) {

    .navbar {
        display: none;
    }

    .categories,
    .products-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .hero h1 {
        font-size: 50px;
    }
}


@media (max-width: 600px) {

    .header {
        padding: 0 5%;
    }

    .hero {
        min-height: 600px;
    }

    .hero-image {
        background-position: 68% center;
    }

    .hero::after {
        background: linear-gradient(
            90deg,
            rgba(248, 238, 231, 0.95) 0%,
            rgba(248, 238, 231, 0.75) 60%,
            rgba(248, 238, 231, 0.25) 100%
        );
    }

    .hero-content {
        margin-left: 5%;

        margin-right: 5%;

        padding: 50px 0;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;

        max-width: 250px;
    }

    .primary-button,
    .secondary-button {
        text-align: center;
    }

    .categories-section,
    .products-section,
    .about-section,
    .contact-section {
        padding: 60px 5%;
    }

    .categories,
    .products-grid {
        grid-template-columns: 1fr;
    }

    .section-heading h2 {
        font-size: 30px;
    }

    .product-image {
        height: 300px;
    }

    .product-bottom {
        align-items: flex-end;
    }

    .footer {
        flex-direction: column;

        gap: 15px;

        text-align: center;
    }

    .product-controls {
        flex-direction: column;

        align-items: stretch;

        padding: 15px;

        margin-bottom: 30px;
    }


    .search-box {
        max-width: none;
    }


    .category-filter {
        justify-content: space-between;
    }


    .category-filter select {
        flex: 1;

        margin-left: 10px;
    }
}

/* =========================
   PRODUCT DETAILS MODAL
========================= */

.product-modal {
    position: fixed;

    inset: 0;

    background: rgba(0, 0, 0, 0.65);

    display: none;

    align-items: flex-start;

    justify-content: center;

    padding: 50px 20px 40px;

    z-index: 9999;

    overflow-y: auto;
}


.product-modal.active {
    display: flex;
}


.product-modal-content {
    position: relative;

    width: 100%;

    max-width: 950px;

    display: grid;

    grid-template-columns: 1fr 1fr;

    background: #ffffff;

    border-radius: 16px;

    overflow: hidden;

    box-shadow:
        0 25px 70px
        rgba(0, 0, 0, 0.25);

    animation:
        modalAppear 0.25s ease;

    margin-bottom: 20px;
}


@keyframes modalAppear {

    from {
        opacity: 0;

        transform:
            translateY(20px)
            scale(0.98);
    }

    to {
        opacity: 1;

        transform:
            translateY(0)
            scale(1);
    }

}


/* Close */

.modal-close {
    position: absolute;

    top: 15px;

    right: 15px;

    width: 42px;

    height: 42px;

    border: none;

    border-radius: 50%;

    background: #ffffff;

    color: #222222;

    font-size: 28px;

    line-height: 1;

    cursor: pointer;

    z-index: 5;

    box-shadow:
        0 4px 15px
        rgba(0, 0, 0, 0.12);
}


.modal-close:hover {
    background: #e85d04;

    color: #ffffff;
}


/* Image */

.modal-product-image {
    min-height: 550px;

    background: #f4f4f4;

    overflow: hidden;
}


.modal-product-image img {
    width: 100%;

    height: 100%;

    min-height: 550px;

    object-fit: cover;

    display: block;
}


/* Information */

.modal-product-info {
    padding: 55px 45px;

    display: flex;

    flex-direction: column;

    justify-content: center;
}


.modal-product-info h2 {
    font-size: 34px;

    line-height: 1.2;

    color: #222222;

    margin-bottom: 15px;
}


.modal-rating {
    color: #f59e0b;

    font-size: 15px;

    margin-bottom: 20px;
}


.modal-rating span {
    color: #777777;

    margin-left: 5px;
}


.modal-price-box {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 25px;
}


.modal-price {
    font-size: 30px;

    font-weight: bold;

    color: #e85d04;
}


.modal-old-price {
    font-size: 16px;

    color: #999999;

    text-decoration: line-through;
}


.modal-description {
    color: #666666;

    font-size: 15px;

    line-height: 1.7;

    margin-bottom: 30px;
}


/* Quantity */

.quantity-section {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 25px;

    font-weight: bold;

    color: #333333;
}


.quantity-control {
    display: flex;

    align-items: center;

    border: 1px solid #dddddd;

    border-radius: 7px;

    overflow: hidden;
}


.quantity-control button {
    width: 40px;

    height: 40px;

    border: none;

    background: #f5f5f5;

    color: #222222;

    font-size: 20px;

    cursor: pointer;
}


.quantity-control button:hover {
    background: #e85d04;

    color: #ffffff;
}


.quantity-control span {
    width: 40px;

    text-align: center;

    font-weight: bold;
}


/* Modal Wishlist */

.modal-wishlist-button {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    margin-bottom: 14px;
    padding: 12px 15px;

    border: 1px solid #dddddd;
    border-radius: 7px;

    background: #ffffff;
    color: #333333;

    font-size: 14px;
    font-weight: bold;

    cursor: pointer;
    transition: all 0.25s ease;
}

.modal-wishlist-button:hover {
    border-color: #e85d04;
    color: #e85d04;
    background: #fff8f3;
}

.modal-wishlist-button.active {
    border-color: #e85d04;
    background: #fff3eb;
    color: #e85d04;
}


/* Modal buttons */

.modal-buttons {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 12px;
}


.modal-add-cart,
.modal-buy-now {
    padding: 15px;

    border-radius: 7px;

    font-size: 14px;

    font-weight: bold;

    cursor: pointer;

    transition: all 0.3s ease;
}


.modal-add-cart {
    border: none;

    background: #222222;

    color: #ffffff;
}


.modal-add-cart:hover {
    background: #e85d04;
}


.modal-buy-now {
    border: 1px solid #222222;

    background: #ffffff;

    color: #222222;
}


.modal-buy-now:hover {
    background: #222222;

    color: #ffffff;
}


/* =========================
   RELATED PRODUCTS
========================= */

.related-products-section {
    grid-column: 1 / -1;
    padding: 30px 40px 38px;
    border-top: 1px solid #eeeeee;
    background: #fafafa;
}

.related-products-heading {
    margin-bottom: 18px;
}

.related-products-heading p {
    margin-bottom: 5px;
    color: #e85d04;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 1.5px;
}

.related-products-heading h3 {
    margin: 0;
    color: #222222;
    font-size: 21px;
}

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

.related-product-card {
    display: flex;
    align-items: center;
    gap: 12px;

    width: 100%;
    padding: 10px;

    border: 1px solid #e7e7e7;
    border-radius: 10px;
    background: #ffffff;

    text-align: left;
    cursor: pointer;
    transition: all 0.25s ease;
}

.related-product-card:hover {
    border-color: #e85d04;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07);
}

.related-product-card img {
    width: 120px;
    height: 120px;
    flex: 0 0 120px;
    object-fit: contain;
    object-position: center;
    border-radius: 7px;
    background: #f4f4f4;
}

.related-product-info {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.related-product-info strong {
    overflow: hidden;
    color: #222222;
    font-size: 13px;
    line-height: 1.3;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.related-product-info small {
    color: #e85d04;
    font-size: 13px;
    font-weight: bold;
}


/* Clickable product name */

.clickable-product-name {
    cursor: pointer;

    transition: color 0.2s ease;
}


.clickable-product-name:hover {
    color: #e85d04;
}


/* Mobile */

@media (max-width: 700px) {

    .product-modal {
        padding: 15px;
    }


    .product-modal-content {
        grid-template-columns: 1fr;

        max-height: 95vh;

        overflow-y: auto;
    }


    .modal-product-image {
        min-height: 300px;

        height: 300px;
    }


    .modal-product-image img {
        min-height: 300px;
    }


    .modal-product-info {
        padding: 30px 25px;
    }


    .modal-product-info h2 {
        font-size: 27px;
    }


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


    .modal-buttons {
        grid-template-columns: 1fr;
    }

    .related-products-section {
        padding: 25px 20px 30px;
    }

    .related-products-grid {
        grid-template-columns: 1fr;
    }

}


/* =========================
   SHOPPING CART
========================= */

.cart-overlay {
    position: fixed;

    inset: 0;

    background: rgba(0, 0, 0, 0.5);

    opacity: 0;

    visibility: hidden;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;

    z-index: 9998;
}


.cart-overlay.active {
    opacity: 1;

    visibility: visible;
}


/* Cart Panel */

.cart-panel {
    position: fixed;

    top: 0;

    right: 0;

    width: 430px;

    max-width: 100%;

    height: 100vh;

    background: #ffffff;

    z-index: 9999;

    display: flex;

    flex-direction: column;

    transform: translateX(100%);

    transition:
        transform 0.35s ease;

    box-shadow:
        -10px 0 40px
        rgba(0, 0, 0, 0.15);
}


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


/* Cart Header */

.cart-header {
    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 25px;

    border-bottom:
        1px solid #eeeeee;
}


.cart-header h2 {
    margin: 0 0 5px;

    font-size: 22px;

    color: #222222;
}


.cart-header p {
    margin: 0;

    font-size: 13px;

    color: #888888;
}


.cart-close {
    width: 40px;

    height: 40px;

    border: none;

    border-radius: 50%;

    background: #f5f5f5;

    color: #222222;

    font-size: 26px;

    cursor: pointer;

    transition:
        all 0.2s ease;
}


.cart-close:hover {
    background: #e85d04;

    color: #ffffff;
}


/* Cart Items */

.cart-items {
    flex: 1;

    overflow-y: auto;

    padding: 20px;
}


.cart-item {
    display: grid;

    grid-template-columns:
        75px 1fr auto;

    gap: 15px;

    align-items: center;

    padding: 15px 0;

    border-bottom:
        1px solid #eeeeee;
}


.cart-item-image {
    width: 75px;

    height: 75px;

    border-radius: 8px;

    overflow: hidden;

    background: #f5f5f5;
}


.cart-item-image img {
    width: 100%;

    height: 100%;

    object-fit: cover;
}


.cart-item-info h4 {
    margin: 0 0 6px;

    font-size: 14px;

    line-height: 1.3;

    color: #222222;
}


.cart-item-price {
    margin: 0 0 10px;

    font-size: 14px;

    font-weight: bold;

    color: #e85d04;
}


/* Quantity */

.cart-quantity {
    display: flex;

    align-items: center;

    width: fit-content;

    border:
        1px solid #dddddd;

    border-radius: 6px;

    overflow: hidden;
}


.cart-quantity button {
    width: 28px;

    height: 28px;

    border: none;

    background: #f5f5f5;

    cursor: pointer;

    font-size: 16px;

    color: #222222;
}


.cart-quantity button:hover {
    background: #e85d04;

    color: #ffffff;
}


.cart-quantity span {
    width: 30px;

    text-align: center;

    font-size: 13px;

    font-weight: bold;
}


/* Remove */

.remove-cart-item {
    align-self: start;

    border: none;

    background: none;

    color: #999999;

    font-size: 18px;

    cursor: pointer;
}


.remove-cart-item:hover {
    color: #e85d04;
}


/* Empty cart */

.empty-cart {
    text-align: center;

    padding:
        80px 20px;

    color: #777777;
}


.empty-cart-icon {
    font-size: 55px;

    margin-bottom: 15px;
}


.empty-cart h3 {
    margin: 0 0 8px;

    color: #333333;

    font-size: 20px;
}


.empty-cart p {
    margin-bottom: 25px;

    font-size: 14px;
}


.start-shopping-btn {
    padding:
        12px 22px;

    border: none;

    border-radius: 6px;

    background: #e85d04;

    color: #ffffff;

    font-weight: bold;

    cursor: pointer;
}


.start-shopping-btn:hover {
    background: #c94d00;
}


/* Cart Summary */

.cart-summary {
    padding: 20px 25px;

    border-top:
        1px solid #eeeeee;

    background: #ffffff;
}


.summary-row {
    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 13px;

    color: #555555;

    font-size: 14px;
}


.total-row {
    margin-top: 15px;

    padding-top: 15px;

    border-top:
        1px solid #eeeeee;

    color: #222222;

    font-size: 18px;
}


.checkout-btn {
    width: 100%;

    padding: 15px;

    margin-top: 15px;

    border: none;

    border-radius: 7px;

    background: #e85d04;

    color: #ffffff;

    font-size: 15px;

    font-weight: bold;

    cursor: pointer;

    transition:
        background 0.2s ease;
}


.checkout-btn:hover {
    background: #c94d00;
}


.clear-cart-btn {
    width: 100%;

    padding: 11px;

    margin-top: 8px;

    border: none;

    background: transparent;

    color: #888888;

    font-size: 13px;

    cursor: pointer;
}


.clear-cart-btn:hover {
    color: #e85d04;
}


/* Mobile Cart */

@media (max-width: 600px) {

    .cart-panel {
        width: 100%;
    }


    .cart-header {
        padding: 20px;
    }


    .cart-items {
        padding: 15px;
    }


    .cart-summary {
        padding: 15px 20px;
    }


    .cart-item {
        grid-template-columns:
            65px 1fr auto;

        gap: 10px;
    }


    .cart-item-image {
        width: 65px;

        height: 65px;
    }

}

/* =========================================================
   CHECKOUT MODAL
   ========================================================= */

.checkout-modal {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.72);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    display: none;
    align-items: center;
    justify-content: center;

    padding: 24px;
    z-index: 3000;

    overflow-y: auto;
}

.checkout-modal.active {
    display: flex;
}

.checkout-content {
    width: min(1100px, 100%);
    max-height: 92vh;

    background: #ffffff;
    border-radius: 24px;

    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.25);

    animation: checkoutAppear 0.25s ease;
}

@keyframes checkoutAppear {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}


/* =========================================================
   CHECKOUT HEADER
   ========================================================= */

.checkout-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 26px 32px;

    border-bottom: 1px solid #e5e7eb;
}

.checkout-small-title {
    margin: 0 0 5px;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;

    color: #7c3aed;
}

.checkout-header h2 {
    margin: 0;

    font-size: 30px;
    font-weight: 700;

    color: #111827;
}

.checkout-close {
    width: 42px;
    height: 42px;

    border: none;
    border-radius: 50%;

    background: #f3f4f6;

    color: #374151;

    font-size: 28px;
    line-height: 1;

    cursor: pointer;

    transition: all 0.2s ease;
}

.checkout-close:hover {
    background: #111827;
    color: #ffffff;

    transform: rotate(90deg);
}


/* =========================================================
   CHECKOUT BODY
   ========================================================= */

.checkout-body {
    display: grid;
    grid-template-columns: 1.45fr 0.85fr;

    max-height: calc(92vh - 100px);
    overflow-y: auto;
}


/* =========================================================
   CHECKOUT FORM
   ========================================================= */

.checkout-form-section {
    padding: 32px;
}

.checkout-form-section h3,
.checkout-summary-section h3 {
    margin: 0 0 22px;

    font-size: 19px;
    font-weight: 700;

    color: #111827;
}

.checkout-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 18px;
}

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

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;

    color: #374151;
}

.form-group input,
.form-group textarea {
    width: 100%;

    box-sizing: border-box;

    padding: 13px 14px;

    border: 1px solid #d1d5db;
    border-radius: 10px;

    background: #ffffff;

    color: #111827;

    font-family: inherit;
    font-size: 14px;

    outline: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.form-group input {
    height: 48px;
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #7c3aed;

    box-shadow:
        0 0 0 3px rgba(124, 58, 237, 0.10);
}


/* =========================================================
   PAYMENT SECTION
   ========================================================= */

.payment-section {
    margin-top: 34px;
}

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

.payment-option {
    position: relative;

    display: block;

    cursor: pointer;
}

.payment-option input {
    position: absolute;

    opacity: 0;
    pointer-events: none;
}

.payment-option-content {
    display: flex;
    align-items: center;

    gap: 14px;

    padding: 15px;

    border: 1px solid #d1d5db;
    border-radius: 12px;

    background: #ffffff;

    transition: all 0.2s ease;
}

.payment-option:hover .payment-option-content {
    border-color: #a78bfa;
    background: #faf8ff;
}

.payment-option input:checked + .payment-option-content {
    border-color: #7c3aed;
    background: #faf8ff;

    box-shadow:
        0 0 0 2px rgba(124, 58, 237, 0.08);
}

.payment-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 10px;

    background: #f3f4f6;

    font-size: 20px;
}

.payment-option input:checked + .payment-option-content .payment-icon {
    background: #ede9fe;
}

.payment-option-content strong {
    display: block;

    margin-bottom: 3px;

    font-size: 14px;
    color: #111827;
}

.payment-option-content small {
    display: block;

    font-size: 12px;
    color: #6b7280;
}


/* =========================================================
   ORDER SUMMARY
   ========================================================= */

.checkout-summary-section {
    padding: 32px;

    background: #f8fafc;

    border-left: 1px solid #e5e7eb;
}

.checkout-items {
    display: flex;
    flex-direction: column;

    gap: 14px;

    max-height: 280px;
    overflow-y: auto;

    margin-bottom: 24px;
}

.checkout-item {
    display: flex;
    align-items: center;

    gap: 12px;
}

.checkout-item-image {
    width: 58px;
    height: 58px;

    flex-shrink: 0;

    border-radius: 10px;

    object-fit: cover;

    background: #e5e7eb;
}

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

.checkout-item-name {
    margin: 0 0 4px;

    font-size: 13px;
    font-weight: 600;

    color: #111827;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.checkout-item-quantity {
    margin: 0;

    font-size: 12px;
    color: #6b7280;
}

.checkout-item-price {
    font-size: 13px;
    font-weight: 700;

    color: #111827;
}


/* =========================================================
   SUMMARY DETAILS
   ========================================================= */

.checkout-summary-details {
    padding-top: 20px;

    border-top: 1px solid #e5e7eb;
}

.checkout-summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 13px;

    font-size: 14px;

    color: #6b7280;
}

.checkout-total-row {
    margin-top: 18px;
    padding-top: 18px;

    border-top: 1px solid #e5e7eb;

    font-size: 18px;

    color: #111827;
}


/* =========================================================
   PLACE ORDER BUTTON
   ========================================================= */

.place-order-btn {
    width: 100%;

    margin-top: 24px;

    padding: 15px 20px;

    border: none;
    border-radius: 12px;

    background: #111827;
    color: #ffffff;

    font-family: inherit;

    font-size: 15px;
    font-weight: 700;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}

.place-order-btn:hover {
    background: #7c3aed;

    transform: translateY(-2px);

    box-shadow:
        0 10px 25px rgba(124, 58, 237, 0.22);
}

.place-order-btn:active {
    transform: translateY(0);
}

.checkout-security {
    margin: 14px 0 0;

    text-align: center;

    font-size: 11px;

    color: #9ca3af;
}


/* =========================================================
   ORDER SUCCESS MODAL
   ========================================================= */

.order-success-modal {
    position: fixed;
    inset: 0;

    display: none;
    align-items: center;
    justify-content: center;

    padding: 24px;

    background: rgba(15, 23, 42, 0.72);

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    z-index: 4000;
}

.order-success-modal.active {
    display: flex;
}

.order-success-content {
    width: min(450px, 100%);

    padding: 42px 32px;

    background: #ffffff;

    border-radius: 24px;

    text-align: center;

    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.25);

    animation: successAppear 0.3s ease;
}

@keyframes successAppear {
    from {
        opacity: 0;
        transform: scale(0.92);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.success-icon {
    width: 76px;
    height: 76px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 22px;

    border-radius: 50%;

    background: #dcfce7;
    color: #16a34a;

    font-size: 40px;
    font-weight: 700;
}

.success-small-title {
    margin: 0 0 8px;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2px;

    color: #16a34a;
}

.order-success-content h2 {
    margin: 0 0 10px;

    font-size: 32px;

    color: #111827;
}

.success-message {
    margin: 0;

    font-size: 15px;

    color: #6b7280;
}

.order-number-box {
    margin: 24px 0;

    padding: 16px;

    border: 1px solid #e5e7eb;
    border-radius: 12px;

    background: #f8fafc;
}

.order-number-box span {
    display: block;

    margin-bottom: 5px;

    font-size: 12px;

    color: #6b7280;
}

.order-number-box strong {
    font-size: 20px;

    letter-spacing: 1px;

    color: #111827;
}

.success-delivery-message {
    margin: 0 0 24px;

    font-size: 13px;
    line-height: 1.6;

    color: #6b7280;
}

.continue-shopping-btn {
    width: 100%;

    padding: 14px 20px;

    border: none;
    border-radius: 11px;

    background: #111827;
    color: #ffffff;

    font-family: inherit;

    font-size: 14px;
    font-weight: 700;

    cursor: pointer;

    transition: all 0.2s ease;
}

.continue-shopping-btn:hover {
    background: #7c3aed;

    transform: translateY(-2px);
}


/* =========================================================
   CHECKOUT RESPONSIVE DESIGN
   ========================================================= */

@media (max-width: 850px) {

    .checkout-content {
        max-height: 94vh;
    }

    .checkout-body {
        grid-template-columns: 1fr;
    }

    .checkout-summary-section {
        border-left: none;
        border-top: 1px solid #e5e7eb;
    }

    .checkout-items {
        max-height: 220px;
    }
}


@media (max-width: 600px) {

    .checkout-modal {
        padding: 10px;
    }

    .checkout-content {
        border-radius: 18px;
    }

    .checkout-header {
        padding: 20px;
    }

    .checkout-header h2 {
        font-size: 25px;
    }

    .checkout-form-section,
    .checkout-summary-section {
        padding: 22px 20px;
    }

    .checkout-form-grid {
        grid-template-columns: 1fr;
    }

    .form-group.full-width {
        grid-column: auto;
    }

    .checkout-close {
        width: 38px;
        height: 38px;

        font-size: 24px;
    }

    .order-success-content {
        padding: 36px 24px;
    }
}

/* =========================================================
   WISHLIST
   ========================================================= */

/* Wishlist button active state */
.wishlist-button.active {
    background: #e85d04;
    color: #ffffff;
}

.wishlist-button.active:hover {
    background: #c94d00;
    color: #ffffff;
}


/* =========================================================
   WISHLIST OVERLAY
   ========================================================= */

.wishlist-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
    z-index: 9998;
}

.wishlist-overlay.active {
    opacity: 1;
    visibility: visible;
}


/* =========================================================
   WISHLIST PANEL
   ========================================================= */

.wishlist-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 430px;
    max-width: 100%;
    height: 100vh;
    background: #ffffff;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    box-shadow:
        -10px 0 40px
        rgba(0, 0, 0, 0.15);
}

.wishlist-panel.active {
    transform: translateX(0);
}


/* =========================================================
   WISHLIST HEADER
   ========================================================= */

.wishlist-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px;
    border-bottom: 1px solid #eeeeee;
}

.wishlist-header h2 {
    margin: 0 0 5px;
    font-size: 22px;
    color: #222222;
}

.wishlist-header p {
    margin: 0;
    font-size: 13px;
    color: #888888;
}

.wishlist-close {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: #f5f5f5;
    color: #222222;
    font-size: 26px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.wishlist-close:hover {
    background: #e85d04;
    color: #ffffff;
}


/* =========================================================
   WISHLIST ITEMS
   ========================================================= */

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

.wishlist-item {
    display: grid;
    grid-template-columns: 75px 1fr auto;
    gap: 15px;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eeeeee;
}

.wishlist-item-image {
    width: 75px;
    height: 75px;
    border-radius: 8px;
    overflow: hidden;
    background: #f5f5f5;
}

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

.wishlist-item-info {
    min-width: 0;
}

.wishlist-item-info h4 {
    margin: 0 0 8px;
    font-size: 14px;
    line-height: 1.3;
    color: #222222;
}

.wishlist-item-price {
    margin: 0 0 10px;
    font-size: 14px;
    font-weight: bold;
    color: #e85d04;
}


/* =========================================================
   WISHLIST ITEM BUTTONS
   ========================================================= */

.wishlist-item-actions {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.wishlist-add-cart {
    border: none;
    background: #222222;
    color: #ffffff;
    padding: 8px 10px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 11px;
    font-weight: bold;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.wishlist-add-cart:hover {
    background: #e85d04;
    transform: translateY(-1px);
}

.remove-wishlist-item {
    align-self: flex-end;
    border: none;
    background: none;
    color: #999999;
    font-size: 18px;
    cursor: pointer;
    transition: color 0.2s ease;
}

.remove-wishlist-item:hover {
    color: #e85d04;
}


/* =========================================================
   EMPTY WISHLIST
   ========================================================= */

.empty-wishlist {
    text-align: center;
    padding: 80px 20px;
    color: #777777;
}

.empty-wishlist-icon {
    font-size: 55px;
    margin-bottom: 15px;
}

.empty-wishlist h3 {
    margin: 0 0 8px;
    color: #333333;
    font-size: 20px;
}

.empty-wishlist p {
    margin-bottom: 25px;
    font-size: 14px;
}

.start-wishlist-shopping-btn {
    padding: 12px 22px;
    border: none;
    border-radius: 6px;
    background: #e85d04;
    color: #ffffff;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s ease;
}

.start-wishlist-shopping-btn:hover {
    background: #c94d00;
}


/* =========================================================
   WISHLIST COUNT
   ========================================================= */

#wishlistCount {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e85d04;
    color: #ffffff;
    border-radius: 50%;
    font-size: 11px;
    font-weight: bold;
}


/* =========================================================
   WISHLIST HEADER BUTTON
   ========================================================= */

.wishlist-header-button {
    position: relative;
}


/* =========================================================
   WISHLIST RESPONSIVE DESIGN
   ========================================================= */

@media (max-width: 600px) {

    .wishlist-panel {
        width: 100%;
    }

    .wishlist-header {
        padding: 20px;
    }

    .wishlist-items {
        padding: 15px;
    }

    .wishlist-item {
        grid-template-columns: 65px 1fr auto;
        gap: 10px;
    }

    .wishlist-item-image {
        width: 65px;
        height: 65px;
    }

    .wishlist-item-info h4 {
        font-size: 13px;
    }

    .wishlist-add-cart {
        padding: 7px 8px;
        font-size: 10px;
    }
}


/* =========================
   DEDICATED ABOUT PAGE
========================= */

.about-page-hero {
    min-height: 430px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 80px 7%;

    text-align: center;

    background:
        linear-gradient(
            135deg,
            #fff7f0,
            #ffffff
        );
}

.about-page-hero-content {
    max-width: 750px;
}

.about-page-hero h1 {
    margin-bottom: 25px;

    color: #222222;

    font-size: 52px;
    line-height: 1.15;
}

.about-page-hero h1 span {
    display: block;
    color: #e85d04;
}

.about-page-hero p:not(.section-label) {
    color: #666666;

    font-size: 17px;
    line-height: 1.8;
}


/* Story */

.about-story-section {
    padding: 100px 7%;

    background: #ffffff;
}

.about-story-content {
    max-width: 850px;
    margin: auto;

    text-align: center;
}

.about-story-label {
    margin-bottom: 14px;

    color: #e85d04;

    font-size: 13px;
    font-weight: bold;

    letter-spacing: 2px;
}

.about-story-content h2 {
    margin-bottom: 25px;

    font-size: 38px;
    color: #222222;
}

.about-story-content p {
    margin-bottom: 18px;

    color: #666666;

    font-size: 16px;
    line-height: 1.8;
}


/* Values */

.about-values-section {
    padding: 100px 7%;

    background: #fafafa;
}

.about-values-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 24px;

    max-width: 1100px;
    margin: auto;
}

.about-value-card {
    padding: 35px 28px;

    text-align: center;

    background: #ffffff;

    border: 1px solid #eeeeee;
    border-radius: 16px;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.04);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.about-value-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.09);
}

.about-value-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 65px;
    height: 65px;

    margin: 0 auto 22px;

    border-radius: 16px;

    background: #fff3e9;

    font-size: 30px;
}

.about-value-card h3 {
    margin-bottom: 12px;

    color: #222222;

    font-size: 20px;
}

.about-value-card p {
    color: #777777;

    font-size: 14px;
    line-height: 1.7;
}


/* CTA */

.about-cta-section {
    padding: 90px 7%;

    text-align: center;

    background: #222222;
}

.about-cta-section h2 {
    margin-bottom: 15px;

    color: #ffffff;

    font-size: 36px;
}

.about-cta-section p {
    margin-bottom: 28px;

    color: #cccccc;

    font-size: 16px;
}

.about-back-link {
    color: #333333;

    text-decoration: none;

    font-size: 14px;
    font-weight: bold;

    transition: color 0.3s ease;
}

.about-back-link:hover {
    color: #e85d04;
}


/* Responsive About Page */

@media (max-width: 800px) {

    .about-page-hero h1 {
        font-size: 42px;
    }

    .about-values-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 600px) {

    .about-page-hero {
        min-height: 380px;

        padding: 60px 6%;
    }

    .about-page-hero h1 {
        font-size: 34px;
    }

    .about-story-content h2 {
        font-size: 30px;
    }

    .about-cta-section h2 {
        font-size: 30px;
    }

}


/* =========================
   DEDICATED CONTACT PAGE
========================= */

.contact-page-hero {
    min-height: 400px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 80px 7%;

    text-align: center;

    background:
        linear-gradient(
            135deg,
            #fff7f0,
            #ffffff
        );
}

.contact-page-hero-content {
    max-width: 700px;
}

.contact-page-hero h1 {
    margin-bottom: 25px;

    color: #222222;

    font-size: 52px;
    line-height: 1.15;
}

.contact-page-hero h1 span {
    display: block;
    color: #e85d04;
}

.contact-page-hero p:not(.section-label) {
    color: #666666;

    font-size: 17px;
    line-height: 1.8;
}


/* Main Contact Layout */

.contact-page-section {
    padding: 100px 7%;

    background: #ffffff;
}

.contact-page-grid {
    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: 70px;

    max-width: 1150px;

    margin: auto;
}


/* Contact Information */

.contact-info-panel {
    padding-top: 15px;
}

.contact-info-panel h2 {
    margin-bottom: 20px;

    color: #222222;

    font-size: 38px;
}

.contact-intro {
    max-width: 420px;

    margin-bottom: 40px;

    color: #777777;

    font-size: 15px;
    line-height: 1.8;
}

.contact-info-item {
    display: flex;

    align-items: center;

    gap: 18px;

    margin-bottom: 28px;
}

.contact-info-icon {
    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 14px;

    background: #fff3e9;

    font-size: 24px;
}

.contact-info-item h3 {
    margin-bottom: 5px;

    color: #222222;

    font-size: 17px;
}

.contact-info-item p {
    margin: 0;

    color: #777777;

    font-size: 14px;
}


/* Contact Form */

.contact-form-panel {
    padding: 38px;

    border: 1px solid #eeeeee;

    border-radius: 18px;

    background: #ffffff;

    box-shadow:
        0 15px 45px rgba(0, 0, 0, 0.06);
}

.contact-form-panel h2 {
    margin-bottom: 30px;

    color: #222222;

    font-size: 27px;
}

.contact-page-form {
    display: flex;

    flex-direction: column;

    gap: 20px;
}

.contact-form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 18px;
}

.contact-form-group {
    display: flex;

    flex-direction: column;

    gap: 8px;
}

.contact-form-group label {
    color: #333333;

    font-size: 13px;

    font-weight: 700;
}

.contact-form-group input,
.contact-form-group textarea {
    width: 100%;

    padding: 14px 15px;

    border: 1px solid #dddddd;

    border-radius: 9px;

    outline: none;

    color: #333333;

    background: #ffffff;

    font-family: inherit;

    font-size: 14px;

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease;

    box-sizing: border-box;
}

.contact-form-group textarea {
    resize: vertical;
}

.contact-form-group input:focus,
.contact-form-group textarea:focus {
    border-color: #e85d04;

    box-shadow:
        0 0 0 3px rgba(232, 93, 4, 0.10);
}

.contact-submit-button {
    width: 100%;

    border: none;

    cursor: pointer;

    text-align: center;
}

.contact-form-message {
    display: none;

    margin: 0;

    font-size: 14px;

    line-height: 1.6;
}

.contact-form-message.success {
    display: block;

    color: #16803c;
}


/* CTA */

.contact-cta-section {
    padding: 85px 7%;

    text-align: center;

    background: #222222;
}

.contact-cta-section h2 {
    margin-bottom: 15px;

    color: #ffffff;

    font-size: 36px;
}

.contact-cta-section p {
    margin-bottom: 28px;

    color: #cccccc;

    font-size: 16px;
}

.contact-back-link {
    color: #333333;

    text-decoration: none;

    font-size: 14px;

    font-weight: 700;

    transition: color 0.3s ease;
}

.contact-back-link:hover {
    color: #e85d04;
}


/* Responsive Contact Page */

@media (max-width: 900px) {

    .contact-page-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .contact-info-panel {
        text-align: center;
    }

    .contact-intro {
        margin-left: auto;
        margin-right: auto;
    }

    .contact-info-item {
        justify-content: center;
    }

}

@media (max-width: 600px) {

    .contact-page-hero {
        min-height: 350px;

        padding: 60px 6%;
    }

    .contact-page-hero h1 {
        font-size: 36px;
    }

    .contact-page-section {
        padding: 65px 6%;
    }

    .contact-form-panel {
        padding: 25px 20px;
    }

    .contact-form-row {
        grid-template-columns: 1fr;
    }

    .contact-info-panel h2 {
        font-size: 30px;
    }

    .contact-cta-section h2 {
        font-size: 29px;
    }

}