/* RESET & BASE STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #ffffff;
    color: #333333;
    line-height: 1.6;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    border-bottom: 1px solid #e5e5e5;
    background-color: #ffffff;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 1.4rem;
    font-weight: bold;
    color: #111111;
}

.tagline {
    font-size: 0.65rem;
    color: #777777;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #a38118;
    font-size: 0.85rem;
    font-weight: 600;
}

.nav-links a.active,
.nav-links a:hover {
    color: #000000;
}

.nav-icons {
    display: flex;
    gap: 15px;
    cursor: pointer;
}

/* DIVIDER & SECTION HEADERS */
.section-divider {
    text-align: center;
    margin: 30px auto;
    position: relative;
    width: 80%;
}

.divider-text {
    background: #ffffff;
    padding: 0 15px;
    font-style: italic;
    color: #555555;
}

/* GALLERY GRID */
.main-gallery-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 0 20px;
}

.gallery-box {
    flex: 1;
    max-width: 550px;
}

.gallery-box img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* TEXT CONTAINERS */
.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.info-text-section p {
    font-size: 0.9rem;
    color: #444444;
    margin-bottom: 30px;
}

/* THUMBNAILS */
.thumbnails-row {
    display: flex;
    justify-content: center;
    gap: 10px;
    max-width: 1000px;
    margin: 0 auto 40px;
    flex-wrap: wrap;
    padding: 0 20px;
}

.thumbnails-row img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 1px solid #ddd;
}

/* VIDEO SECTION */
.video-description-section {
    background-color: #000000;
    color: #ffffff;
    padding: 50px 20px;
    text-align: center;
}

.video-description-section h2 {
    margin-bottom: 15px;
}

.video-text {
    color: #cccccc;
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* FEATURED PRODUCTS GRID */
.featured-products {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
}

.products-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 20px;
}

.product-card {
    position: relative;
    background: #f9f9f9;
}

.product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    padding: 15px;
}

.product-overlay h3 {
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.price {
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.old-price {
    text-decoration: line-through;
    color: #aaaaaa;
    margin-right: 5px;
}

.btn-shop {
    color: #f1c40f;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.85rem;
}

/* PARTNERS SECTION */
.partners-section {
    text-align: center;
    padding: 40px 20px;
}

.partners-section h2 {
    color: #a38118;
    margin-bottom: 20px;
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.partners-logos img {
    max-height: 50px;
}

/* SUBSCRIBE SECTION */
.subscribe-section {
    text-align: center;
    padding: 40px 20px;
}

.subscribe-section h2 {
    color: #a38118;
    margin-bottom: 8px;
}

.subscribe-section p {
    color: #666666;
    margin-bottom: 20px;
}

.subscribe-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    max-width: 400px;
    margin: 0 auto;
}

.subscribe-form input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
}

.btn-subscribe {
    background-color: #ffd100;
    border: none;
    padding: 10px 20px;
    font-weight: bold;
    cursor: pointer;
}

/* FOOTER */
.footer {
    text-align: center;
    padding: 20px;
    border-top: 1px solid #eee;
    font-size: 0.8rem;
    color: #666666;
}