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

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    color: #2b211b;
    background-color: #ffffff;
    line-height: 1.6;
}

h1,
h2,
h3 {
    margin-top: 0;
    color: #2b211b;
}

h1,
h2 {
    font-family: "Playfair Display", serif;
}

p {
    font-size: 15px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
}

.site-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
}

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

.logo img {
    width: 80px;
    height: auto;
    display: block;
}

.main-navigation {
    display: flex;
    gap: 30px;
}

.main-navigation a {
    color: #222;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.main-navigation a:hover {
    color: #7a4b25;
}

.amazon-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 40px;
    padding: 0 18px;

    background-color: #7a4b25;
    color: #ffffff;

    text-decoration: none;
    border: 1px solid #7a4b25;
    border-radius: 5px;

    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 600;

    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.amazon-button:hover {
    background-color: #5f381b;
    border-color: #5f381b;
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
}

.mobile-amazon-button {
    display: none;
}

.hero {
    background-color: #f6f1e9;
    padding: 80px 0;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-content {
    flex: 1;
}

.hero-label {
    color: #7a4b25;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.05;
    letter-spacing: -1px;
    margin-bottom: 22px;
}

.hero-description {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    max-width: 550px;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 22px;

    border: 1px solid #7a4b25;
    border-radius: 4px;

    background-color: #7a4b25;
    color: #ffffff;

    text-decoration: none;

    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 600;

    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.primary-button:hover {
    transform: translateY(-2px);
}

.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 44px;
    padding: 0 22px;

    border: 1px solid #7a4b25;
    border-radius: 4px;

    background-color: transparent;
    color: #7a4b25;

    text-decoration: none;

    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 600;

    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.secondary-button:hover {
    background-color: #7a4b25;
    color: #ffffff;
    transform: translateY(-1px);
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    height: 500px;
    object-fit: cover;
    display: block;
    margin-left: auto;
    border-radius: 8px;
}

.featured-products {
    padding: 90px 0;
    background-color: #ffffff;
}

.section-heading {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 45px;
}

.section-heading h2 {
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.15;
    margin-bottom: 15px;
}

.section-heading > p:not(.section-label) {
    color: #6b625b;
    font-size: 15px;
    line-height: 1.7;
}

.section-label {
    margin-bottom: 10px;
    color: #7a4b25;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}


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

.product-card {
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;

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

.product-card:hover {
    transform: translateY(-4px);
    border-color: #d8c8bb;
    box-shadow: 0 10px 25px rgba(43, 33, 27, 0.08);
}

.product-image {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

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

.product-content {
    padding: 20px;
}

.product-category {
    color: #7a4b25;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.product-card h3 {
    font-size: 17px;
    line-height: 1.35;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.product-card p {
    font-size: 13px;
    line-height: 1.6;
    color: #6b625b;
     display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.product-card a {
    display: inline-block;
    margin-top: 14px;

    color: #7a4b25;
    text-decoration: none;

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

    transition: color 0.2s ease;
}

.product-card a:hover {
    color: #5f381b;
}   

.product-link {
    color: #7a4b25;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
}

.product-link:hover {
    text-decoration: underline;
}

.section-action {
    text-align: center;
    margin-top: 40px;
}

.categories-section {
    padding: 90px 0;
    background-color: #f6f1e9;
}

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

.category-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 8px;
    text-decoration: none;
    background-color: #ffffff;
}

.category-image {
    height: 360px;
    overflow: hidden;
}

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

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

.category-content {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.category-content h3 {
    color: #222;
    font-size: 20px;
}

.category-content span {
    color: #7a4b25;
    font-size: 14px;
    font-weight: bold;
}

.about-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 70px;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    max-width: 550px;
    height: 500px;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 25px;
}

.about-content p:not(.section-label) {
    color: #555;
    line-height: 1.8;
    margin-bottom: 18px;
}

.about-content .primary-button {
    margin-top: 10px;
}

.why-section {
    padding: 90px 0;
    background-color: #f6f1e9;
}

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

.why-card {
    background-color: #ffffff;
    padding: 35px 25px;
    text-align: center;
    border-radius: 8px;
}

.why-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-icon svg {
    width: 32px;
    height: 32px;
    fill: none;
    stroke: #7a4b25;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.why-card h3 {
    font-size: 19px;
    margin-bottom: 12px;
}

.why-card p {
    color: #666;
    line-height: 1.7;
    font-size: 14px;
}

.amazon-section {
    padding: 90px 0;
    background-color: #7a4b25;
}

.amazon-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.amazon-content .section-label {
    color: #f6f1e9;
}

.amazon-content h2 {
    color: #ffffff;
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.amazon-content > p:not(.section-label) {
    color: #f0e8df;
    line-height: 1.7;
    margin-bottom: 30px;
}

.amazon-content .primary-button {
    background-color: #ffffff;
    color: #7a4b25;
}

.amazon-content .primary-button:hover {
    background-color: #f6f1e9;
}

.contact-section {
    padding: 90px 0;
    background-color: #ffffff;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.contact-card {
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 35px 25px;
    text-align: center;
}

.contact-icon {
    width: 45px;
    height: 45px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: #7a4b25;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.contact-card p {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
    margin-bottom: 18px;
}

.contact-link {
    color: #7a4b25;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
}

.contact-link:hover {
    text-decoration: underline;
}

.site-footer {
    background-color: #2f2118;
    color: #ffffff;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-top: 60px;
    padding-bottom: 60px;
}

.footer-logo {
    width: 130px;
    height: auto;
    display: block;
    margin-bottom: 20px;
}

.footer-about p {
    color: #d8cec5;
    line-height: 1.7;
    max-width: 350px;
}

.footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-links h3,
.footer-contact h3 {
    color: #d8cec5;
    font-size: 17px;
    margin-bottom: 20px;
}

.footer-links a {
    color: #d8cec5;
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 14px;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-contact p {
    color: #d8cec5;
    font-size: 14px;
    margin-bottom: 12px;
}

.footer-bottom {
    border-top: 1px solid #55453a;
}

.footer-bottom .container {
    padding-top: 20px;
    padding-bottom: 20px;
}

.footer-bottom p {
    color: #b9ada4;
    text-align: center;
    font-size: 13px;
}


/* product page */
.products-hero {
    padding: 80px 0 50px;
    background-color: #f6f1e9;
}

.products-hero .section-heading {
    margin-bottom: 0;
}

.products-hero h1 {
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1.1;
    margin-bottom: 15px;
}

.products-section {
    padding: 70px 0 90px;
}

.product-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 45px;
}

.filter-button {
    padding: 10px 20px;
    border: 1px solid #d8c8bb;
    border-radius: 4px;

    background-color: #ffffff;
    color: #7a4b25;

    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 600;

    cursor: pointer;

    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}

.filter-button:hover {
    border-color: #7a4b25;
}

.filter-button.active {
    background-color: #7a4b25;
    border-color: #7a4b25;
    color: #ffffff;
}

/* Product details */

.product-detail-section {
    padding: 80px 0 100px;
}

.product-detail-container {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 60px;
    align-items: start;
}


/* Gallery */

.product-gallery {
    min-width: 0;
    position:sticky;
    top: 20px;
}

.product-main-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    background-color: #f6f1e9;
    border-radius: 8px;
    overflow: hidden;
}

.product-main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}


/* Thumbnails */

.product-thumbnails {
    display: flex;
    gap: 12px;
    margin-top: 15px;
    overflow-x: auto;
    padding-bottom: 5px;
}

.product-thumbnail {
    flex: 0 0 80px;

    width: 80px;
    height: 80px;

    padding: 0;

    border: 1px solid #e5e5e5;
    border-radius: 5px;

    background-color: #ffffff;

    overflow: hidden;
    cursor: pointer;

    transition:
        border-color 0.2s ease,
        opacity 0.2s ease;
}

.product-thumbnail:hover {
    border-color: #7a4b25;
}

.product-thumbnail.active {
    border: 2px solid #7a4b25;
}

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


/* Product information */

.product-details {
    padding-top: 10px;
}

.product-details .product-category {
    margin-bottom: 12px;

    color: #7a4b25;

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

    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.product-details h1 {
    margin-bottom: 20px;

    font-family: "Playfair Display", serif;
    font-size: 32px;
    line-height: 1.25;
}

.product-details .product-description {
    max-width: 550px;
    margin-bottom: 30px;

    color: #6b625b;

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

/* Product Details */

.product-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #7b4a24;
    margin: 15px 0;
}

.about-item,
.details-description {
    margin-top: 28px;
}
.details-description {
    margin-bottom: 30px;
}
.about-item h2,
.details-description h2 {
    font-family: "Playfair Display", serif;
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.about-item ul {
    margin: 0;
    padding-left: 20px;
}

.about-item li {
    margin-bottom: 7px;
    line-height: 1.5;
}

.details-description p {
    line-height: 1.7;
    margin: 0;
}