.background {
    height: 110vh;
}

.content {
    top: 0%;
    width: 100%;
    height: auto;
    overflow: hidden;
    margin: 0;
}

.text {
    transform: translate(0%, 0%);
}

.text h1,
.text h2,
.text h3,
.text h4,
.text h5,
.text p {
    text-align: center;
    margin: 0;
}

h1 {
    font-size: 42px;
}

.text h2 {
    font-size: 24px;
    font-family: Arial, sans-serif;
}

.text h3 {
    font-size: 22px;
    font-family: Arial, sans-serif;
}

.text h4 {
    font-size: 26px;
    font-family: Arial, sans-serif;
}

.text h5 {
    font-size: 22px;
    font-family: Arial, sans-serif;
    color: #ff9900;
    text-shadow:
        -1px -1px 0 black,
        1px -1px 0 black,
        -1px 1px 0 black,
        1px 1px 0 black;
    font-weight: normal;
    padding-bottom: 3%;
}

.text p {
    font-size: 8px;
}

.image-container {
    transform: translate(00%, 0%);
    width: 100%;
    height: 500px;
    overflow: hidden;
    transition: transform 0.5s ease-in-out;
    position: relative;
}

.image-container img {
    width: auto;
    height: 500px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 0%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    z-index: 1;
}

.image-container img.active {
    opacity: 1;
    z-index: 2;
}

.addToCartButton {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 12px 24px;
    background-color: #1a1a1a;
    color: #ff7e05;
    border: 2px solid #ff8800;
    border-radius: 8px;
    font-size: 18px;
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    z-index: 3;
    box-shadow: 0 0 10px #ff6600, 0 0 20px #ff7300, 0 0 30px #ff8c00;
    transition: all 0.3s ease;
    text-shadow: 0 0 5px #ff7b00, 0 0 10px #ff8800;
}

.add-to-cart-btn:hover {
    background-color: #ff7300;
    color: #1a1a1a;
    box-shadow: 0 0 15px #ff7300, 0 0 25px #ff8c00, 0 0 40px #ff7300;
}

.add-to-cart-btn:active {
    transform: translate(-50%, -50%) scale(0.95);
}

.variant-select {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-300px, -50%);
    padding: 12px 24px; /* Match add-to-cart-btn */
    font-size: 18px; /* Match add-to-cart-btn */
    font-family: 'Arial', sans-serif;
    color: #ff7e05;
    background-color: #1a1a1a;
    border: 2px solid #ff8800;
    border-radius: 8px;
    margin-bottom: 10px;
    text-align: center;
    box-shadow: 0 0 10px #ff6600, 0 0 20px #ff7300, 0 0 30px #ff8c00;
    transition: all 0.3s ease;
    text-shadow: 0 0 5px #ff7b00, 0 0 10px #ff8800;
}

.variant-select:hover {
    background-color: #ff7300;
    color: #1a1a1a;
    box-shadow: 0 0 15px #ff7300, 0 0 25px #ff8c00, 0 0 40px #ff7300;
}


/* Media Queries */
@media (max-width: 375px) {
    .content {
        min-width: 320px;
        height: 700px;
        padding-bottom: 5%;
        padding-top: 180px;
        margin: 0 auto;
    }

    .text {
        width: 320px;
        height: auto;
    }

    .text h1 {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .text h2 {
        font-size: 15px;
        margin-bottom: 5px;
    }

    .text h3 {
        font-size: 15px;
        margin-bottom: 0px;
    }

    .text h4 {
        font-size: 15px;
        margin-bottom: 0px;
    }

    .text h5 {
        font-size: 24px;
    }

    .image-container {
        transform: translate(60px, 80px);
        width: 200px;
        height: 200px;
    }

    .image-container img {
        width: auto;
        height: 200px;
    }

    .addToCartButton {
        transform: translate(-190px, 50px);
        padding: 5px 15px;
        font-size: 12px;
        box-shadow: 0 0 6px #ff7b00, 0 0 12px #ff7b00, 0 0 18px #ff8c00;
    }

    .addToCartButton:hover {
        box-shadow: 0 0 12px #ff7b00, 0 0 18px #ff8c00, 0 0 25px #ff7b00;
    }

    .variant-select {
        padding: 5px 10px; /* Match add-to-cart-btn */
        font-size: 12px; /* Match add-to-cart-btn */
        transform: translate(-60px, 0%); /* Increased offset */
        margin-bottom: 8px;
        box-shadow: 0 0 6px #ff7b00, 0 0 12px #ff7b00, 0 0 18px #ff8c00;
    }

    .variant-select:hover {
        box-shadow: 0 0 12px #ff7b00, 0 0 18px #ff8c00, 0 0 25px #ff7b00;
    }
}


@media only screen and (min-width: 376px) and (max-width: 425px) {
    .content {
        min-width: 350px;
        height: 700px;
        padding-bottom: 5%;
        padding-top: 180px;
        margin: 0 auto;
        transform: translate(20px, 0px);
    }

    .text {
        width: 320px;
        height: auto;
    }

    .text h1 {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .text h2 {
        font-size: 15px;
        margin-bottom: 5px;
    }

    .text h3 {
        font-size: 15px;
        margin-bottom: 0px;
    }

    .text h4 {
        font-size: 15px;
        margin-bottom: 0px;
    }

    .text h5 {
        font-size: 24px;
    }

    .image-container {
        transform: translate(60px, 80px);
        width: 200px;
        height: 200px;
    }

    .image-container img {
        width: auto;
        height: 200px;
        left: 0%;
    }

    .addToCartButton {
        transform: translate(-183px, 60px);
        padding: 5px 15px;
        font-size: 12px;
        box-shadow: 0 0 6px #ff7b00, 0 0 12px #ff7b00, 0 0 18px #ff8c00;
    }

    .addToCartButton:hover {
        box-shadow: 0 0 12px #ff7b00, 0 0 18px #ff8c00, 0 0 25px #ff7b00;
    }

    .variant-select {
        padding: 5px 10px; /* Match add-to-cart-btn */
        font-size: 12px; /* Match add-to-cart-btn */
        transform: translate(-60px, 0%); /* Increased offset */
        margin-bottom: 8px;
        box-shadow: 0 0 6px #ff7b00, 0 0 12px #ff7b00, 0 0 18px #ff8c00;
    }

    .variant-select:hover {
        box-shadow: 0 0 12px #ff7b00, 0 0 18px #ff8c00, 0 0 25px #ff7b00;
    }
}

@media only screen and (min-width: 426px) and (max-width: 600px) {
    .content {
        min-width: 400px;
        height: 700px;
        padding-bottom: 5%;
        padding-top: 220px;
        margin: 0 auto;
        transform: translate(210px, 0px);
    }

    .text {
        width: 300px;
        height: auto;
    }

    .text h1 {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .text h2 {
        font-size: 15px;
        margin-bottom: 5px;
    }

    .text h3 {
        font-size: 15px;
        margin-bottom: 0px;
    }

    .text h4 {
        font-size: 15px;
        margin-bottom: 0px;
    }

    .text h5 {
        font-size: 24px;
    }

    .image-container {
        transform: translate(-160px, -180px);
        width: 200px;
        height: 200px;
    }

    .image-container img {
        width: auto;
        height: 200px;
        left: 0%;
    }

    .addToCartButton {
        transform: translate(-183px, 60px);
        padding: 5px 15px;
        font-size: 12px;
        box-shadow: 0 0 6px #ff7b00, 0 0 12px #ff7b00, 0 0 18px #ff8c00;
    }

    .addToCartButton:hover {
        box-shadow: 0 0 12px #ff7b00, 0 0 18px #ff8c00, 0 0 25px #ff7b00;
    }

    .variant-select {
        padding: 5px 10px; /* Match add-to-cart-btn */
        font-size: 12px; /* Match add-to-cart-btn */
        transform: translate(-60px, 0%); /* Increased offset */
        margin-bottom: 8px;
        box-shadow: 0 0 6px #ff7b00, 0 0 12px #ff7b00, 0 0 18px #ff8c00;
    }

    .variant-select:hover {
        box-shadow: 0 0 12px #ff7b00, 0 0 18px #ff8c00, 0 0 25px #ff7b00;
    }
}

@media only screen and (min-width: 601px) and (max-width: 767px) {
    .content {
        min-width: 550px;
        height: 700px;
        padding-bottom: 5%;
        padding-top: 220px;
        margin: 0 auto;
        transform: translate(420px, 0px);
    }

    .text {
        width: 300px;
        height: auto;
    }

    .text h1 {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .text h2 {
        font-size: 15px;
        margin-bottom: 5px;
    }

    .text h3 {
        font-size: 15px;
        margin-bottom: 0px;
    }

    .text h4 {
        font-size: 15px;
        margin-bottom: 0px;
    }

    .text h5 {
        font-size: 24px;
    }

    .image-container {
        transform: translate(-220px, -200px);
        width: 250px;
        height: 250px;
    }

    .image-container img {
        width: auto;
        height: 250px;
        left: 0%;
    }

    .addToCartButton {
        transform: translate(-183px, 60px);
        padding: 5px 15px;
        font-size: 12px;
        box-shadow: 0 0 6px #ff7b00, 0 0 12px #ff7b00, 0 0 18px #ff8c00;
    }

    .addToCartButton:hover {
        box-shadow: 0 0 12px #ff7b00, 0 0 18px #ff8c00, 0 0 25px #ff7b00;
    }

    .variant-select {
        padding: 5px 10px; /* Match add-to-cart-btn */
        font-size: 12px; /* Match add-to-cart-btn */
        transform: translate(-60px, 0%); /* Increased offset */
        margin-bottom: 8px;
        box-shadow: 0 0 6px #ff7b00, 0 0 12px #ff7b00, 0 0 18px #ff8c00;
    }

    .variant-select:hover {
        box-shadow: 0 0 12px #ff7b00, 0 0 18px #ff8c00, 0 0 25px #ff7b00;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
    .content {
        width: 750px;
        height: 700px;
        padding-bottom: 5%;
        padding-top: 250px;
        margin: 0 auto;
        transform: translate(110px, 0px);
    }

    .text {
        transform: translate(300px, 0px);
        width: 350px;
        height: auto;
    }

    .text h1 {
        font-size: 34px;
        margin-bottom: 30px;
    }

    .text h2 {
        font-size: 17px;
        margin-bottom: 5px;
    }

    .text h3 {
        font-size: 17px;
        margin-bottom: 0px;
    }

    .text h4 {
        font-size: 17px;
        margin-bottom: 0px;
    }

    .text h5 {
        font-size: 26px;
    }

    .image-container {
        transform: translate(50px, -250px);
        width: 300px;
        height: 300px;
    }

    .image-container img {
        width: auto;
        height: 300px;
        left: 0%;
    }

    .addToCartButton {
        transform: translate(-183px, 60px);
        padding: 5px 15px;
        font-size: 12px;
        box-shadow: 0 0 6px #ff7b00, 0 0 12px #ff7b00, 0 0 18px #ff8c00;
    }

    .addToCartButton:hover {
        box-shadow: 0 0 12px #ff7b00, 0 0 18px #ff8c00, 0 0 25px #ff7b00;
    }

    .variant-select {
        padding: 5px 10px; /* Match add-to-cart-btn */
        font-size: 12px; /* Match add-to-cart-btn */
        transform: translate(-60px, 0%); /* Increased offset */
        margin-bottom: 8px;
        box-shadow: 0 0 6px #ff7b00, 0 0 12px #ff7b00, 0 0 18px #ff8c00;
    }

    .variant-select:hover {
        box-shadow: 0 0 12px #ff7b00, 0 0 18px #ff8c00, 0 0 25px #ff7b00;
    }
}

@media only screen and (min-width: 1024px) and (max-width: 1439px) {
    .content {
        width: 900px;
        height: 700px;
        padding-bottom: 5%;
        padding-top: 250px;
        margin: 0 auto;
        transform: translate(0px, 0px);
    }

    .text {
        transform: translate(300px, 0px);
        width: 350px;
        height: auto;
    }

    .text h1 {
        font-size: 34px;
        margin-bottom: 30px;
    }

    .text h2 {
        font-size: 17px;
        margin-bottom: 5px;
    }

    .text h3 {
        font-size: 17px;
        margin-bottom: 0px;
    }

    .text h4 {
        font-size: 17px;
        margin-bottom: 0px;
    }

    .text h5 {
        font-size: 26px;
    }

    .image-container {
        transform: translate(50px, -250px);
        width: 300px;
        height: 300px;
    }

    .image-container img {
        width: auto;
        height: 300px;
        left: 0%;
    }

    .addToCartButton {
        transform: translate(-183px, 60px);
        padding: 5px 15px;
        font-size: 12px;
        box-shadow: 0 0 6px #ff7b00, 0 0 12px #ff7b00, 0 0 18px #ff8c00;
    }

    .addToCartButton:hover {
        box-shadow: 0 0 12px #ff7b00, 0 0 18px #ff8c00, 0 0 25px #ff7b00;
    }

    .variant-select {
        padding: 5px 10px; /* Match add-to-cart-btn */
        font-size: 12px; /* Match add-to-cart-btn */
        transform: translate(-60px, 0%); /* Increased offset */
        margin-bottom: 8px;
        box-shadow: 0 0 6px #ff7b00, 0 0 12px #ff7b00, 0 0 18px #ff8c00;
    }

    .variant-select:hover {
        box-shadow: 0 0 12px #ff7b00, 0 0 18px #ff8c00, 0 0 25px #ff7b00;
    }
}

@media only screen and (min-width: 1440px) and (max-width: 1918px) {
    .content {
        width: 1300px;
        height: 700px;
        padding-bottom: 5%;
        padding-top: 250px;
        margin: 0 auto;
        transform: translate(0px, 0px);
    }

    .text {
        transform: translate(550px, 0px);
        width: 350px;
        height: auto;
    }

    .text h1 {
        font-size: 34px;
        margin-bottom: 30px;
    }

    .text h2 {
        font-size: 17px;
        margin-bottom: 5px;
    }

    .text h3 {
        font-size: 17px;
        margin-bottom: 0px;
    }

    .text h4 {
        font-size: 17px;
        margin-bottom: 0px;
    }

    .text h5 {
        font-size: 26px;
    }

    .image-container {
        transform: translate(150px, -250px);
        width: 350px;
        height: 350px;
    }

    .image-container img {
        width: auto;
        height: 300px;
        left: 0%;
    }

    .addToCartButton {
        transform: translate(-183px, 60px);
        padding: 5px 15px;
        font-size: 12px;
        box-shadow: 0 0 6px #ff7b00, 0 0 12px #ff7b00, 0 0 18px #ff8c00;
    }

    .addToCartButton:hover {
        box-shadow: 0 0 12px #ff7b00, 0 0 18px #ff8c00, 0 0 25px #ff7b00;
    }

    .variant-select {
        padding: 5px 10px; /* Match add-to-cart-btn */
        font-size: 12px; /* Match add-to-cart-btn */
        transform: translate(-60px, 0%); /* Increased offset */
        margin-bottom: 8px;
        box-shadow: 0 0 6px #ff7b00, 0 0 12px #ff7b00, 0 0 18px #ff8c00;
    }

    .variant-select:hover {
        box-shadow: 0 0 12px #ff7b00, 0 0 18px #ff8c00, 0 0 25px #ff7b00;
    }
}

@media only screen and (min-width: 1919px) and (max-width: 1920px) {
    .content {
        width: 1800px;
        height: 800px;
        padding-bottom: 5%;
        padding-top: 350px;
        margin: 0 auto;
        transform: translate(0px, 0px);
    }

    .text {
        transform: translate(700px, 0px);
        width: 550px;
        height: auto;
    }

    .text h1 {
        font-size: 36px;
        margin-bottom: 30px;
    }

    .text h2 {
        font-size: 22px;
        margin-bottom: 5px;
    }

    .text h3 {
        font-size: 22px;
        margin-bottom: 0px;
    }

    .text h4 {
        font-size: 22px;
        margin-bottom: 0px;
    }

    .text h5 {
        font-size: 30px;
    }

    .image-container {
        transform: translate(250px, -300px);
        width: 380px;
        height: 380px;
    }

    .image-container img {
        width: auto;
        height: 380px;
        left: 0%;
    }

    .addToCartButton {
        transform: translate(-240px, 60px);
        padding: 5px 15px;
        font-size: 18px;
        box-shadow: 0 0 6px #ff7b00, 0 0 12px #ff7b00, 0 0 18px #ff8c00;
    }

    .addToCartButton:hover {
        box-shadow: 0 0 12px #ff7b00, 0 0 18px #ff8c00, 0 0 25px #ff7b00;
    }

    .variant-select {
        padding: 5px 10px;
        font-size: 18px;
        transform: translate(-75px, 0%);
        margin-bottom: 8px;
        box-shadow: 0 0 6px #ff7b00, 0 0 12px #ff7b00, 0 0 18px #ff8c00;
    }

    .variant-select:hover {
        box-shadow: 0 0 12px #ff7b00, 0 0 18px #ff8c00, 0 0 25px #ff7b00;
    }
}

@media only screen and (min-width: 1921px) and (max-width: 2300px) {
    .content {
        width: 1800px;
        height: 800px;
        padding-bottom: 5%;
        padding-top: 350px;
        margin: 0 auto;
        transform: translate(0px, 0px);
    }

    .text {
        transform: translate(700px, 0px);
        width: 550px;
        height: auto;
    }

    .text h1 {
        font-size: 40px;
        margin-bottom: 30px;
    }

    .text h2 {
        font-size: 24px;
        margin-bottom: 5px;
    }

    .text h3 {
        font-size: 24px;
        margin-bottom: 0px;
    }

    .text h4 {
        font-size: 24px;
        margin-bottom: 0px;
    }

    .text h5 {
        font-size: 32px;
    }

    .image-container {
        transform: translate(250px, -300px);
        width: 400px;
        height: 400px;
    }

    .image-container img {
        width: auto;
        height: 380px;
        left: 0%;
    }

    .addToCartButton {
        transform: translate(-245px, 60px);
        padding: 5px 15px;
        font-size: 18px;
        box-shadow: 0 0 6px #ff7b00, 0 0 12px #ff7b00, 0 0 18px #ff8c00;
    }

    .addToCartButton:hover {
        box-shadow: 0 0 12px #ff7b00, 0 0 18px #ff8c00, 0 0 25px #ff7b00;
    }

    .variant-select {
        padding: 5px 10px;
        font-size: 18px;
        transform: translate(-75px, 0%);
        margin-bottom: 8px;
        box-shadow: 0 0 6px #ff7b00, 0 0 12px #ff7b00, 0 0 18px #ff8c00;
    }

    .variant-select:hover {
        box-shadow: 0 0 12px #ff7b00, 0 0 18px #ff8c00, 0 0 25px #ff7b00;
    }
}

@media only screen and (min-width: 2301px) and (max-width: 2559px) {
    .content {
        width: 2200px;
        height: 800px;
        padding-bottom: 5%;
        padding-top: 350px;
        margin: 0 auto;
        transform: translate(0px, 0px);
    }

    .text {
        transform: translate(800px, 0px);
        width: 550px;
        height: auto;
    }

    .text h1 {
        font-size: 40px;
        margin-bottom: 30px;
    }

    .text h2 {
        font-size: 24px;
        margin-bottom: 5px;
    }

    .text h3 {
        font-size: 24px;
        margin-bottom: 0px;
    }

    .text h4 {
        font-size: 24px;
        margin-bottom: 0px;
    }

    .text h5 {
        font-size: 32px;
    }

    .image-container {
        transform: translate(250px, -300px);
        width: 400px;
        height: 400px;
    }

    .image-container img {
        width: auto;
        height: 380px;
        left: 0%;
    }

    .addToCartButton {
        transform: translate(-245px, 60px);
        padding: 5px 15px;
        font-size: 18px;
        box-shadow: 0 0 6px #ff7b00, 0 0 12px #ff7b00, 0 0 18px #ff8c00;
    }

    .addToCartButton:hover {
        box-shadow: 0 0 12px #ff7b00, 0 0 18px #ff8c00, 0 0 25px #ff7b00;
    }

    .variant-select {
        padding: 5px 10px;
        font-size: 18px;
        transform: translate(-75px, 0%);
        margin-bottom: 8px;
        box-shadow: 0 0 6px #ff7b00, 0 0 12px #ff7b00, 0 0 18px #ff8c00;
    }

    .variant-select:hover {
        box-shadow: 0 0 12px #ff7b00, 0 0 18px #ff8c00, 0 0 25px #ff7b00;
    }
}

@media only screen and (min-width: 2560px) {
    .content {
        width: 2400px;
        height: 800px;
        padding-bottom: 5%;
        padding-top: 350px;
        margin: 0 auto;
        transform: translate(0px, 0px);
    }

    .text {
        transform: translate(900px, 0px);
        width: 550px;
        height: auto;
    }

    .text h1 {
        font-size: 50px;
        margin-bottom: 30px;
    }

    .text h2 {
        font-size: 28px;
        margin-bottom: 5px;
    }

    .text h3 {
        font-size: 28px;
        margin-bottom: 0px;
    }

    .text h4 {
        font-size: 28px;
        margin-bottom: 0px;
    }

    .text h5 {
        font-size: 38px;
    }

    .image-container {
        transform: translate(350px, -320px);
        width: 400px;
        height: 400px;
    }

    .image-container img {
        width: auto;
        height: 400px;
        left: 0%;
    }

    .addToCartButton {
        transform: translate(-280px, 60px);
        padding: 5px 15px;
        font-size: 22px;
        box-shadow: 0 0 6px #ff7b00, 0 0 12px #ff7b00, 0 0 18px #ff8c00;
    }

    .addToCartButton:hover {
        box-shadow: 0 0 12px #ff7b00, 0 0 18px #ff8c00, 0 0 25px #ff7b00;
    }

    .variant-select {
        padding: 5px 10px;
        font-size: 22px;
        transform: translate(-80px, 0%);
        margin-bottom: 8px;
        box-shadow: 0 0 6px #ff7b00, 0 0 12px #ff7b00, 0 0 18px #ff8c00;
    }

    .variant-select:hover {
        box-shadow: 0 0 12px #ff7b00, 0 0 18px #ff8c00, 0 0 25px #ff7b00;
    }
}