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

body {
    font-family: 'Inter', sans-serif;
    color: #222;
    background: #f6f6f6;
    line-height: 1.7;
}

.container {
    width: 1100px;
    margin: 0 auto;
}

/* HERO */

p.intro-text::first-letter {
    float: left;
    font-family: 'Playfair Display', serif;
    font-size: 70px;
    line-height: 0.8;
    padding-right: 10px;
}

.hero {
    height: 600px;
    background: url('https://garbelife.com/wp-content/uploads/2026/02/IMG_0678-870x563.jpg') center/cover no-repeat;
    position: relative;
}


.hero-send {
    height: 600px;
    background: url('https://garbelife.com/wp-content/uploads/2026/02/IMG_0677.jpg') center/cover no-repeat;
    position: relative;
}

.hero-overlay {
  position: absolute;
  color: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.cover-label {
    font-size: 12px;
    letter-spacing: 3px;
    font-weight: 400;
}

.hero h1, .hero-send h1 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 2px;
}

.arti{
    font-weight: bold;
    font-size: 17px;
}
/* INTRO */

.intro {
    padding: 30px 0 30px;
}

.intro-text,.sect {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    max-width: 750px;
}

/* ARTICLE */

.article {
    padding: 40px 0;
}

.article-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

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

.shop-caption {
    margin-top: 15px;
    font-size: 12px;
    letter-spacing: 2px;
}

.article-content p {
    margin-bottom: 25px;
    font-size: 16px;
}

.dropcap::first-letter {
    float: left;
    font-family: 'Playfair Display', serif;
    font-size: 70px;
    line-height: 0.8;
    padding-right: 10px;
}

/* SHOP */

.shop {
    padding: 60px 0 100px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    text-align: center;
}

.product img {
    width: 100%;
    margin-bottom: 15px;
}

.product h4 {
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.product p {
    font-size: 14px;
    color: #555;
}

.plus {
    margin-top: 10px;
    border: none;
    background: none;
    font-size: 22px;
    cursor: pointer;
}

.secti {
    border-bottom: solid 1px currentColor;
    padding-bottom: 3px;
    display: inline;
}

/* BOTTOM IMAGE */

.bottom-image {
    height: 700px;
    background: url('https://images.unsplash.com/photo-1520975922284-7b03f3c99f4a') center/cover no-repeat;
}

/* RESPONSIVE */

@media(max-width: 1100px) {
    .container {
        width: 90%;
    }
    .article-grid {
        grid-template-columns: 1fr;
    }
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


.scrollable-paragraph {
    height: 750px;
    width: 100%;
    border: 1px solid transparent;
    padding: 10px;
    overflow-y: auto;
    overflow-x: hidden;
}

.thumbnail-row {
    display: flex;
    gap: 15px;
    justify-content: left; /* center them */
    margin: 40px 0;
}

.thumbnail-row img {
    width: 120px;       /* small thumbnail size */
    height: 120px;
    object-fit: cover;  /* keeps image nicely cropped */
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s ease;
}

.thumbnail-row img:hover {
    transform: scale(1.05);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns */
    gap: 30px;
    max-width: 600px;
    margin: 50px auto;
}

.product {
    text-align: center;
}

.product img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.product-name {
    margin-top: 10px;
    font-size: 14px;
    font-family: Arial, sans-serif;
}

.product-price {
    font-size: 13px;
    color: #777;
}