body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background-color: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8em;
    font-weight: bold;
    color: #000;
}

.logo span {
    color: #555;
    font-weight: normal;
}

.search-bar {
    display: flex;
    border: 1px solid #ccc;
    border-radius: 5px;
    overflow: hidden;
}

.search-bar input[type="text"] {
    padding: 10px;
    border: none;
    flex-grow: 1;
    font-size: 1em;
}

.search-bar button {
    background-color: #333;
    color: #fff;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
}

.account-links a {
    color: #555;
    text-decoration: none;
    margin-left: 20px;
    font-size: 0.9em;
}

.account-links a:hover {
    color: #007bff;
}

.hero {
    background-color: #f9f9f9;
    padding: 40px 0;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.hero-image {
 
    width: 45%;

    background-color: #ddd;
    height: 300px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.hero-text {
    width: 45%;
    text-align: left;
}

.hero-text .discount {
    color: #ff6f61;
    font-size: 1.2em;
    margin-bottom: 5px;
}

.hero-text .old-price {
    color: #777;
    text-decoration: line-through;
    font-size: 1em;
    margin-bottom: 5px;
}

.hero-text .current-price {
    font-size: 2.5em;
    color: #000;
    font-weight: bold;
    margin-bottom: 10px;
}

.hero-text .current-price span {
    font-size: 0.6em;
}

.hero-text .installments {
    color: #555;
    font-size: 0.9em;
    margin-bottom: 20px;
}

.hero-text .buy-button {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 1.1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.hero-text .buy-button:hover {
    background-color: #0056b3;
}

.daily-offers {
    padding: 30px 0;
    background-color: #fff;
}

.daily-offers h2 {
    font-size: 1.8em;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.offer-section {
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 5px;
}

.offer-section h3 {
    font-size: 1.2em;
    color: #333;
    margin-bottom: 10px;
}

.products-row {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.product {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px;
    text-align: center;
    min-width: 150px;
}

.product img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
    display: block;
}

.product-name {
    font-size: 0.9em;
    color: #555;
    margin-bottom: 5px;
}

.product-price {
    font-size: 1.1em;
    font-weight: bold;
    color: #000;
    margin-bottom: 5px;
}

.product .discount-badge {
    background-color: #ff6f61;
    color: #fff;
    padding: 5px 8px;
    border-radius: 3px;
    font-size: 0.8em;
    position: absolute;
    top: 10px;
    left: 10px;
}

.kits-and-equipment .product,
.supplements .product {
    padding: 20px;
}


.offer-section.supplements .product img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.our-club {
    background-color: #333;
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

.club-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.club-info {
    text-align: left;
}

.our-club .logo {
    color: #fff;
    margin-bottom: 10px;
}

.our-club .logo span {
    color: #ddd;
}

.club-info p {
    font-size: 1.1em;
}

.join-club-button {
    background-color: #fff;
    color: #333;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 1.1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.join-club-button:hover {
    background-color: #ddd;
}

.recommendations {
    padding: 30px 0;
    background-color: #f9f9f9;
}

.recommendations h2 {
    font-size: 1.8em;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.recommendations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.recommendation-item {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 15px;
    text-align: center;
    position: relative;
}

.recommendation-item img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
    display: block;
    border-radius: 5px;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    display: block; 
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.product img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
    display: block;
    border-radius: 5px;
}

.recommendation-item img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
    display: block;
    border-radius: 5px;
}   
footer {
    background-color: #000;
    color: #fff;
    padding-top: 40px;
    padding-bottom: 20px;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-column h3 {
    font-size: 1.2em;
    margin-bottom: 15px;
    color: #fff;
}

.footer-column p {
    font-size: 0.9em;
    line-height: 1.6;
    margin-bottom: 10px;
    color: #ccc;
}

.footer-column a {
    color: #ccc;
    text-decoration: none;
}

.footer-column a:hover {
    color: #fff;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.subscribe-form {
    display: flex;
    border: 1px solid #444;
    border-radius: 5px;
    overflow: hidden;
    margin-top: 10px;
}

.subscribe-form input[type="email"] {
    padding: 10px;
    border: none;
    background-color: transparent;
    color: #fff;
    flex-grow: 1;
    font-size: 0.9em;
}

.subscribe-form input[type="email"]::placeholder {
    color: #777;
}

.subscribe-form button {
    background-color: #222;
    color: #fff;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
}

.app-badges a {
    display: inline-block;
    margin-right: 10px;
}

.app-badges img {
    height: 40px;
    border-radius: 5px;
}

.social-links {
    margin-top: 20px;
}

.social-icon {
    display: inline-block;
    margin-right: 10px;
    font-size: 1.2em;
    color: #ccc;
}

.social-icon:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding: 20px;
    font-size: 0.8em;
    color: #777;
    border-top: 1px solid #222;
    margin-top: 30px;
}
