/* General Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #2b2b2b;
    color: #fff;
    margin: 0;
    padding: 0;
}

/* Sticky Main Menu */
.main-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #3e3e3e;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    padding: 10px 20px;
    position: sticky;
    top: 0;
    z-index: 1200;
}

.logo {
    height: 40px;
    max-width: 100%;
}

.menu-links a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
    transition: color 0.3s ease;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.menu-links a:hover {
    color: #d9534f;
}

/* Brand Section */
.brand-page {
    text-align: center;
    padding: 20px;
}

.brand-logo {
    max-width: 200px;
    margin-bottom: 10px;
    width: 100%;
}

.brand-description {
    font-size: 16px;
    line-height: 1.5;
    width: 65%;
    /* Default for wide screens */
    margin: 0 auto;
    /* Centering */
}

/* Brand Sale Row */
.brand-sale {
    text-align: center;
    background-color: greenyellow;
    padding: 10px;
    margin: 10px;
    border-radius: 5px;
    font-weight: bold;
}
.brand-promo {
    text-align: center;
    margin: 15px auto;
    max-width: 600px;
}
.brand-deals {
    background-color: #333;
    padding: 15px;
    margin: 15px auto;
    border-radius: 5px;
    text-align: center;
    max-width: 700px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.brand-deals-title {
    color: #ffd700;
    font-size: 20px;
    margin-bottom: 15px;
    text-transform: uppercase;
}
.promo-button {
    display: inline-block;
    background-color: #ffd700;
    color: #222;
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 5px;
    margin: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.promo-button:hover {
    background-color: #e6c200;
    color: black;
}
.shop-button {
    display: inline-block;
    background-color: #fff;
    color: #d9534f;
    padding: 5px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.shop-button:hover {
    background-color: #d9534f;
    color: white;
}

/* Product Listings */
.product-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    padding: 20px;
}

.product {
    text-align: center;
    background-color: #ffffff;
    padding: 10px;
    border-radius: 5px;
    width: 100%;
    max-width: 300px;
    transition: transform 0.3s ease;
}

.product:hover {
    transform: scale(1.05);
}

.product img {
    display: block;
    margin: 0 auto;
    border-radius: 5px;
    max-width: 100%;
}

.product a {
    text-decoration: none;
    color: white;
    display: block;
    margin-top: 5px;
    font-size: 14px;
}

.product a span {
    display: inline-block;
    /* Allows padding and border styling */
    background-color: #333;
    /* Dark background for contrast */
    color: white;
    /* White text */
    font-weight: bold;
    /* Make text stand out */
    padding: 10px 15px;
    /* Button-like padding */
    margin-top: 10px;
    /* Space between the image and text */
    text-align: center;
    /* Center the text */
    border-radius: 5px;
    /* Rounded button corners */
    text-decoration: none;
    /* Remove default underline */
    transition: background-color 0.3s ease-in-out;
    /* Smooth hover effect */
}

.product a span:hover {
    background-color: #555;
    /* Slightly lighter on hover */
    cursor: pointer;
    /* Show hand cursor to indicate clickability */
}


/* Highlighted Sale Product */
.highlight {
    border: 3px solid red;
    position: relative;
}

.sale-tag {
    position: relative;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: red;
    color: white;
    padding: 3px 10px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 3px;
    display: inline-block;
}

/* Footer */
footer {
    text-align: center;
    background-color: #3e3e3e;
    padding: 15px 0;
    margin-top: 20px;
}

.social-icons img {
    width: 30px;
    margin: 0 10px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .menu-links {
        flex-direction: column;
        align-items: center;
        margin-top: 10px;
    }

    .brand-page {
        padding: 10px;
    }

    .brand-description {
        font-size: 14px;
        width: 95%;
    }

    .product-list {
        flex-direction: column;
        align-items: center;
    }

    .product {
        width: 90%;
        max-width: 100%;
    }

    .logo {
        height: 30px;
    }

    .menu-links a {
        margin: 10px 0;
    }
}

@media (max-width: 480px) {
    .brand-description {
        font-size: 12px;
        width: 95%;
    }

    .product {
        max-width: 100%;
    }

    .product img {
        max-width: 90%;
    }

    .social-icons img {
        width: 25px;
    }
}

/* Shopping Buttons Row */
.brand-shopping {
    text-align: center;
    margin: 20px 0;
}

.brand-shopping .shop-button {
    display: inline-block;
    margin: 10px;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
}

.brand-site {
    background-color: #007bff;
    color: white;
    transition: background-color 0.3s ease;
}

.brand-site:hover {
    background-color: #0056b3;
}

.amazon-site {
    background-color: #ff9900;
    color: white;
    transition: background-color 0.3s ease;
}

.amazon-site:hover {
    background-color: #cc7a00;
}

/* Brand Social Links */
.brand-social {
    text-align: center;
    margin: 30px 0;
    padding: 20px;
    background-color: #3e3e3e;
    border-radius: 5px;
}

.brand-social p {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.brand-social a {
    display: inline-block;
    margin: 0 10px;
}

.brand-social img {
    width: 40px;
    transition: transform 0.3s ease;
}

.brand-social img:hover {
    transform: scale(1.1);
}

.youtube-site {
    background-color: #ff0000;
    color: white;
    transition: background-color 0.3s ease;
}

.youtube-site:hover {
    background-color: #cc0000;
}

/* Promo Codes Section */
.promo-codes {
    text-align: center;
    background-color: #444;
    color: white;
    padding: 15px;
    margin: 20px auto;
    border-radius: 5px;
    max-width: 600px;
}

.promo-codes h2 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #ffd700;
}

/* Promo Codes Grid */
.promo-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.promo-item {
    background-color: #555;
    padding: 10px;
    border-radius: 5px;
    flex: 1 1 250px;
    max-width: 250px;
    text-align: center;
}

.promo-description {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
}

.promo-expiration {
    font-size: 14px;
    font-style: italic;
}

/* Adjust product-display for responsiveness */
@media (max-width: 768px) {
    .product-display {
        width: 90%;
        padding: 10px;
        background-color: #a9a9a9;
        margin: 20px auto;
        box-sizing: border-box;
    }

    .product-display img {
        width: 100%;
        max-width: 400px;
        height: auto;
    }
}

@media (max-width: 480px) {
    .product-display {
        width: 90% !important;
        padding: 10px !important;
        margin: 20px auto !important;
    }

    .product-display img {
        width: 40% !important;
        margin: auto !important;
    }
}

.brands-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 20px;
}

.brand-row {
    text-align: center;
    background-color: #444;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 20px;
    /* More space */
}

.brand-row:not(:last-child)::after {
    content: "";
    display: block;
    height: 2px;
    width: 80%;
    background-color: #b1953b;
    margin: 30px auto;
    /* More space */
}

.product-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

.product-item {
    text-align: center;
    background-color: #333;
    padding: 10px;
    border-radius: 5px;
}

.product-item img {
    display: block;
    margin: 0 auto;
    border-radius: 5px;
    max-width: 100%;
    cursor: pointer;
}

.product-name a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.product-name a:hover {
    text-decoration: underline;
    color: red;
}

.brand-row h2 a {
    color: white;
    font-weight: bold;
    text-decoration: none;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 8px 15px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    transition: background-color 0.3s, transform 0.2s;
}

.brand-row h2 a:hover {
    text-decoration: underline;
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.9);
    transform: scale(1.05);
}

.brand-selector {
    text-align: center;
    position: sticky;
    top: 50px;
    background-color: #3e3e3e;
    padding: 10px;
    z-index: 1000;
}

.menu-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    background: white;
    height: 3px;
    margin: 4px;
    width: 25px;
}

.menu-links a {
    margin: 0 10px;
    text-decoration: none;
    color: white;
    font-weight: bold;
}

@media (max-width: 768px) {
    .menu-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #3e3e3e;
        text-align: center;
        padding: 10px 0;
    }

    .menu-links.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }
}

.brand-sale {
    text-align: center;
    background-color: #FFC107;
    color: white;
    padding: 5px;
    margin: 15px auto;
    border-radius: 5px;
}
.brand-sale a {
    color: #222;
    font-weight: bold;
    text-decoration: none;
    padding: 0 5px;
    transition: color 0.3s ease;
}

.brand-sale a:hover {
    text-decoration: underline;
    color: #000;
}
.sale-text {
    font-style: italic;
    font-weight: normal;
    color: #444;
    margin-left: 5px;
}

/* Brand Social Links */
.brand-social {
    text-align: center;
    margin: 30px 0;
    padding: 20px;
    background-color: #3e3e3e;
    border-radius: 5px;
}

.brand-social p {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.brand-social a {
    display: inline-block;
    margin: 0 10px;
}

.youtube-site {
    background-color: #ff0000;
    color: white;
    transition: background-color 0.3s ease;
}

.youtube-site:hover {
    background-color: #cc0000;
}

/* Promo Codes Section */
.promo-codes {
    text-align: center;
    background-color: #444;
    color: white;
    padding: 15px;
    margin: 20px auto;
    border-radius: 5px;
    max-width: 600px;
}

.promo-codes h2 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #ffd700;
}

/* Promo Codes Grid */
.promo-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.promo-item {
    background-color: #555;
    padding: 10px;
    border-radius: 5px;
    flex: 1 1 250px;
    max-width: 250px;
    text-align: center;
}

.promo-description {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
}

.promo-expiration {
    font-size: 14px;
    font-style: italic;
}

.filters-button {
    color: white;
    font-weight: bold;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    border: none;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    display: inline-block;
    margin-top: 20px;
    text-align: center;
}

.filters-button:hover {
    text-decoration: underline;
    transform: scale(1.05);
}

/* Red button */
.filters-button.red {
    background-color: red;
}

.filters-button.red:hover {
    background-color: rgba(255, 0, 0, 0.8);
}

/* Blue button */
.filters-button.blue {
    background-color: blue;
}

.filters-button.blue:hover {
    background-color: rgba(0, 0, 255, 0.8);
}

/* Green button */
.filters-button.green {
    background-color: green;
}

.filters-button.green:hover {
    background-color: rgba(0, 128, 0, 0.8);
}

/*
        .menu-links {
            display: flex;
            justify-content: center;
            gap: 20px;
        }
            */
.back-to-camo {
    text-align: center;
    margin: 10px 0;
    font-size: 14px;
}

.back-to-camo a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.back-to-camo a:hover {
    text-decoration: underline;
}

.dropdown {
    text-align: center;
    margin: 10px 0;
}

.dropdown select {
    padding: 5px;
    font-size: 14px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.footer-copyright {
    font-size: 14px;
    text-align: center;
    margin-bottom: 10px;
    color: white;
    /* Adjust color as needed */
}

/* Brand Links Section */
.brand-links {
    text-align: center;
    margin: 20px auto;
    padding: 15px;
    background-color: #444;
    border-radius: 5px;
    max-width: 600px;
}

.brand-links p {
    font-size: 16px;
    margin: 10px 0;
}

.brand-links a {
    color: #ffd700;
    /* Gold color for contrast */
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
}

.brand-links a:hover {
    color: #ffa500;
    /* Slightly darker gold/orange on hover */
    text-decoration: underline;
}

/* Store Sales Section */
.store-sales {
    text-align: center;
    margin: 20px auto;
    padding: 15px;
    background-color: #444;
    border-radius: 5px;
    max-width: 600px;
}

.store-sales p {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: white;
}

/* Store Buttons */
.store-button {
    display: inline-block;
    padding: 10px 20px;
    margin: 5px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    color: white;
    background-color: #007bff;
    transition: background-color 0.3s ease-in-out, transform 0.2s;
}

.store-button:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}

/* Responsive Layout */
@media (max-width: 768px) {
    .store-sales {
        max-width: 90%;
    }

    .store-button {
        padding: 8px 16px;
        font-size: 14px;
    }
}

/* Additional Styles - Merged from Snippet */
.menu-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    padding: 10px;
    position: relative;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 4px;
    background-color: #000;
}

@media (max-width: 768px) {
    .menu-links {
        display: none;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .hamburger {
        display: flex;
    }

    .menu-links.active {
        display: flex;
    }

    .product-display {
        justify-content: center;
        align-items: center;
        margin: 20px auto;
        width: 100%;
        background-image: url('background1.jpg');
        background-size: cover;
        background-position: center;
        height: auto;
        max-height: none;
    }

    .sale-container .sale-button,
    .sale-container .shop-button,
    .sale-container .amazon-button {
        font-size: 11px;
        padding: 2.5px 6.65px;
    }
}

.center-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px 0;
    gap: 15px;
}

.back-to-camo a {
    color: white;
    font-weight: bold;
    text-decoration: none;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 8px 15px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    transition: background-color 0.3s, transform 0.2s;
}

.back-to-camo a:hover {
    background-color: rgba(255, 255, 255, 0.9);
    color: black;
    transform: scale(1.05);
}

.product-display {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 900px;
    height: auto;
}

.product-background {
    flex-grow: 1;
    width: 100%;
    height: auto;
    max-height: 90vh;
    min-width: 600px;
    min-height: 400px;
}

.product-image {
    position: relative;
    width: 20%;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 80%;
}

.product-title {
    font-size: 24px;
    font-weight: bold;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    text-align: center;
}

.simulation-instruction {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    margin: 20px auto;
    padding: 10px;
    color: white;
    background-color: #444;
    border-radius: 5px;
    max-width: 600px;
}

/* Feature Container - Groups brands under each feature */
.feature-container {
    background-color: #3e3e3e;
    /* Matches other section backgrounds */
    padding: 20px;
    margin: 30px auto;
    border-radius: 5px;
    max-width: 90%;
    min-width: 90%;
}

/* Feature Title - Header for each feature grouping */
.feature-title {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    color: #ffd700;
    /* Gold color for contrast */
    text-transform: uppercase;
    margin-bottom: 20px;
    border-bottom: 2px solid #d9534f;
    /* Red underline for emphasis */
    padding-bottom: 5px;
}

.ad_zone {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-align: center;
    margin: 10px 0;
}

.ad_zone img {
    max-width: 100%;
    height: auto;
}

.brand-button {
    display: inline-block;
    background-color: #ffcc00;
    /* Bright yellow */
    color: #222;
    /* Darker text for better contrast */
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
    border: 2px solid #000;
}

.brand-button:hover {
    background-color: #ff9900;
    /* Darker yellow on hover */
    color: #fff;
    /* White text on hover */
    border-color: #ff9900;
}

/* Horizontal pattern scrolling for mobile */
@media (max-width: 768px) {
    .product-scroll-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 10px 0;
    }

    .product-scroll {
        display: flex;
        flex-direction: row;
        gap: 15px;
        padding: 10px;
        scroll-snap-type: x mandatory;
    }

    .product-scroll .product-item {
        flex: 0 0 auto;
        width: 250px;
        scroll-snap-align: start;
    }

    .product-scroll::-webkit-scrollbar {
        display: none;
    }
}

@media (min-width: 769px) {
    .product-scroll {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        padding: 20px 0;
        box-sizing: border-box;
    }

    .product-scroll .product-item {
        flex: 0 0 auto;
        width: 100%;
        max-width: 260px;
        min-width: 240px;
        /* NEW: helps prevent stacking glitch */
        box-sizing: border-box;
    }

    .product-scroll-wrapper {
        overflow: visible;
    }

    .product-scroll::after {
        display: none;
        /* hide arrow on desktop */
    }
}

@media (max-width: 768px) {
    .product-item {
        opacity: 0;
        transform: translateX(20px);
        transition: opacity 0.5s ease, transform 0.5s ease;
    }

    .product-item.visible {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .product-scroll-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-left: 10px;
        position: relative;
    }

    .product-scroll .product-item {
        width: 180px;
        margin-right: 10px;
        background-color: #333;
        /* Darker background helps images pop */
        padding: 8px;
        border-radius: 5px;
    }

    .product-scroll .product-item img {
        max-width: 100%;
        height: auto;
        display: block;
        margin: auto;
    }

    .scroll-arrow.attention {
        animation: wiggle-right 1.2s ease-in-out 1;
    }

    /* Once it's animated, stay visible but stop motion */
    .scroll-arrow.animated-once {
        opacity: 0.7;
        transform: none;
    }

    .scroll-arrow {
        position: absolute;
        top: 40%;
        right: 10px;
        pointer-events: none;
        opacity: 0.6;
        transition: opacity 0.3s ease;
    }

    .scroll-arrow.hidden {
        display: none;
    }
}

@keyframes wiggle-right {

    0%,
    100% {
        transform: translateX(0);
        opacity: 0.6;
    }

    25% {
        transform: translateX(6px);
        opacity: 1;
    }

    50% {
        transform: translateX(3px);
        opacity: 0.8;
    }

    75% {
        transform: translateX(6px);
        opacity: 1;
    }
}



@media (min-width: 769px) {
    .scroll-arrow {
        display: none;
        /* hide on desktop if desired */
    }
}