

/* Global Styles */
:root {
    --primary-color: #e67e22;
    --secondary-color: #d35400;
    --text-color: #2c3e50;
    --light-gray: #ecf0f1;
    --white: #ffffff;
}

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

body {
    margin-right: -45px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    padding-top: 80px; /* Add padding for fixed header */
    opacity: 1;
    transition: opacity 0.4s ease;
}

body.fade-out {
    opacity: 0;
}

/* Header & Navigation */
header {
    background-color: #ffd700;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 10px 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    max-width: 1200px;
    margin: 0 auto;
    height: 75px;
}

.logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

.logo img {
    height: 200px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li a {
    text-decoration: none;
    color: var(--text-color);
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
    display: block;
}

.nav-links li a:hover {
    color: var(--primary-color);
}

.nav-links li > a.active:not(.dropdown-toggle) {
    color: var(--primary-color);
    font-weight: bold;
}

.mobile-menu {
    display: none;
    cursor: pointer;
    z-index: 1000;
}

.mobile-menu .menu-icon {
    width: 30px;
    height: 20px;
    position: relative;
    transition: all 0.3s ease;
}

.mobile-menu .menu-icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #333;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu .menu-icon span:first-child {
    top: 0;
}

.mobile-menu .menu-icon span:nth-child(2) {
    top: 8px;
}

.mobile-menu .menu-icon span:last-child {
    top: 16px;
}
/* Submenu styles for nested dropdowns */
/* Dropdown base */
.dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.dropdown-toggle i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
    margin-left: 0.2rem;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

/* First-level dropdown menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 200px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
}

.dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


.dropdown-menu li {
    border-bottom: 1px solid var(--light-gray);
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu a {
    padding: 0.8rem 1.2rem;
    display: block;
    color: var(--text-color);
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: var(--light-gray);
    color: var(--primary-color);
}

/* Submenu support */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -1px;
    position: absolute;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    min-width: 200px;
    z-index: 1100;
    background-color: var(--white);
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    list-style: none;
}

.dropdown-submenu:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


/* For mobile: show submenu below parent */
@media (max-width: 768px) {
    .dropdown-submenu > .dropdown-menu {
        position: static;
        left: 0;
        top: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: #f8f9fa;
        margin-top: 0;
        min-width: 100%;
        display: none;
    }
    .dropdown-submenu.active > .dropdown-menu {
        display: block;
    }
}


/* Hamburger Animation */
.mobile-menu.active .menu-icon span:first-child {
    transform: rotate(45deg);
    top: 8px;
}

.mobile-menu.active .menu-icon span:nth-child(2) {
    opacity: 0;
}

.mobile-menu.active .menu-icon span:last-child {
    transform: rotate(-45deg);
    top: 8px;
}

/* Hero Section */
#hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    padding: 0 20px;
    max-width: 800px;
}



.hero-content p {
    margin-top: 220px;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-button {
    margin-right: 20px;
    display: inline-flex;
    align-items: center;
    padding: 15px 30px;
    background: #e6e3d2;
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 2rem;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-button span {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.button-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #ffd700, #ffc107);
    transform: translateX(-100%);
    transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}

.button-effect i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
}

.hero-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.hero-button:hover .button-effect {
    transform: translateX(0);
}

.hero-button:hover span {
    transform: translateX(-10px);
}

.hero-button:hover .button-effect i {
    opacity: 1;
    transform: translate(0, -50%);
}

.hero-button:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .hero-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

/* Products Section */
#products {
    padding: 5rem 1rem;
    background-color: var(--light-gray);
}

#products h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    position: relative;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.8));
    z-index: 1;
}

.product-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    color: white;
    z-index: 2;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.product-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: white;
}

.product-card p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    color: white;
}

.product-card .learn-more {
    background-color: #ffd700;
    color: black;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-card .learn-more:hover {
    background-color: white;
    transform: translateY(-2px);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.product-card:hover .product-card-content {
    transform: translateY(-10px);
}

.product-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.know-more-btn {
    background-color: #ffd700;
    color: #333;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.know-more-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.know-more-btn:hover {
    background-color: white;
    transform: translateY(-2px);
}

.know-more-btn:hover i {
    transform: translateX(3px);
}

/* Features Section */
#features {
    padding: 5rem 1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature {
    text-align: center;
    padding: 2rem;
}

.feature i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}


/* Footer */
footer {
    background-color: #2c3e50;
    color: var(--white);
    padding: 3rem 1rem 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: var(--white);
    font-size: 1.5rem;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

footer a[href^="tel:"],a[href^="mailto:"] {
    color: #ffd700 !important;
    text-decoration: underline;
}


/* Mobile Dropdown */
@media (max-width: 768px) {
    .mobile-menu {
        padding-right: 20px;
        display: block;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: white;
        padding: 20px;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
    }

    .nav-links.active {
        display: flex;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        box-shadow: none;
        background-color: #f8f9fa;
        margin-top: 10px;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-toggle i {
        transition: transform 0.3s ease;
    }

    .dropdown.active .dropdown-toggle i {
        transform: rotate(180deg);
    }

    #hero {
        height: calc(100vh - 80px);
        margin-top: -16px;
    }

    .video-background {
        height: 100%;
    }

    .video-background video {
        height: 100%;
        width: 100vw;
        object-fit: cover;
        object-position: center 20%;
    }

    .hero-content {
        padding: 0 20px;
        margin-top: -40px;
    }

    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }
}

@media (orientation: portrait) and (max-width: 768px) {
    .video-background video {
        height: 100%;
        width: auto;
        min-width: 100%;
    }
}

@media (orientation: landscape) and (max-width: 768px) {
    #hero {
        height: calc(100vh - 60px);
    }

    .video-background video {
        width: 100%;
        height: auto;
        min-height: 100%;
    }
}

/* For ultra-wide screens */
@media (min-aspect-ratio: 16/9) {
    .video-background video {
        width: 100%;
        height: auto;
    }
}

/* For taller screens */
@media (max-aspect-ratio: 16/9) {
    .video-background video {
        width: auto;
        height: 100%;
    }
}

.promo-bar {
    background-color: #e3e2d9;
    color: #333;
    padding: 6px  0;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 10;
    margin-top: 16px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.promo-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    transition: all 0.3s ease;
}

.promo-item i {
    font-size: 1.2rem;
    color: #333;
}

.promo-item span {
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
}

@media (max-width: 768px) {
    .promo-bar {
        gap: 0px;
        padding: 15px;
    }
    
    .promo-item {
        width: 100%;
        justify-content: center;
    }
}



/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.modal video {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 10px;
}

#feedback {
    padding-left: 4rem;
    padding: 5rem 0;
    background-color: #f8f9fa;
}

#feedback h2 {
    text-align: center;
    margin-bottom: 0.5rem;
    color: #333;
    font-size: 2.5rem;
}

.section-desc {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
}



.rating-container {
    margin-bottom: 2rem;
    text-align: center;
}

.rating-container p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #333;
}

/* Star Rating System */
.star-rating {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 1rem 0;
}

.star-rating input[type="radio"] {
    display: none;
}

.star-label {
    font-size: 2.5rem;
    color: #ddd;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-block;
    line-height: 1;
}

.star-label:hover {
    transform: scale(1.15);
}

.star-label.active {
    color: #ffd700;
}

.rating-text {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    min-height: 20px;
}



.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #ffd700;
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.2);
    outline: none;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: #ffd700;
    border: none;
    border-radius: 8px;
    color: #000;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}


.info-card {
    background: #ffd700;
    padding: 2rem;
    border-radius: 15px;
    color: #000;
    text-align: center;
}

.info-card i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.info-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .feedback-container {
        grid-template-columns: 1fr;
    }

    .satisfaction-stats {
        grid-template-columns: 1fr;
    }
}

/* Page Transition Styles */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffd700;
    z-index: 9999;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.6s cubic-bezier(0.76, 0, 0.24, 1);
    pointer-events: none;
}

.page-transition.active {
    transform: scaleY(1);
}

/* Page Content Fade */
body {
    opacity: 1;
    transition: opacity 0.4s ease;
}

body.fade-out {
    opacity: 0;
}

/* About Page Enter Animation */
.about-enter {
    opacity: 0;
    animation: fadeIn 0.8s ease-out 0.4s forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Journey section entrance animation */
.journey-grid {
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s cubic-bezier(0.65, 0, 0.35, 1);
}

.journey-grid.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Product Popup Styles */
.product-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-popup.active {
    opacity: 1;
}

.popup-content {
    background: white;
    width: 90%;
    max-width: 800px;
    border-radius: 15px;
    position: relative;
    padding: 40px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.product-popup.active .popup-content {
    transform: translateY(0);
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
}

.popup-header h2 {
    color: #333;
    font-size: 2rem;
    margin: 0;
}

.close-popup {
    background: none;
    border: none;
    color: #666;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s ease;
}

.close-popup:hover {
    color: #333;
}

.popup-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.product-image {
    border-radius: 10px;
    overflow: hidden;
}

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

.product-details h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.product-details p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.product-features {
    margin-top: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.feature-item i {
    color: #ffd700;
}

@media (max-width: 768px) {
    .popup-content {
        padding: 20px;
    }

    .popup-body {
        grid-template-columns: 1fr;
    }

    .popup-header h2 {
        font-size: 1.5rem;
    }
}

.amazon-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #ffd700;
    color: #333;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.amazon-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.amazon-btn:hover {
    background-color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.amazon-btn:hover i {
    transform: translateX(3px);
}

.typing-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    margin-bottom: 2rem;
}

.typing-text {
    font-size: 1.2rem;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    margin: 0;
}


@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Feedback section side-by-side layout */
.feedback-flex {
    padding-left: 4rem;
    padding-right: 4rem;
    display: flex;
    gap: 2rem; /* space between form and info */
    align-items: flex-start;
}

#feedback-form {
    flex: 2;
    min-width: 300px;
}

.feedback-info {
    flex: 1;
    min-width: 250px;
    /* Optional: add some margin or styling */
}

/* Responsive: stack on small screens */
@media (max-width: 768px) {
    .feedback-flex {
        flex-direction: column;
    }
    .feedback-info, #feedback-form {
        min-width: 0;
        width: 100%;
    }
}
#upcoming-products {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 15px;
    background-color: #f8f9fa;
}

#upcoming-products h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.5rem;
    color: #2c3e50;
    font-weight: 700;
    position: relative;
}

#upcoming-products h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #e74c3c;
}

.slideshow-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border-radius: 15px;
    overflow: hidden;
}

.mySlides {
    position: relative;
    width: 100%;
    transition: transform 0.5s ease;
}

.mySlides img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.mySlides:hover img {
    transform: scale(1.05);
}

.mySlides .text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: #fff;
    padding: 20px 15px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    transition: background 0.3s ease;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: 50px;
    height: 50px;
    transform: translateY(-50%);
    background-color: rgba(255,255,255,0.2);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background-color 0.3s ease;
    border-radius: 50%;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.prev:hover, .next:hover {
    background-color: rgba(255,255,255,0.4);
}

.fade {
    animation: fade 1s ease-in-out;
}

@keyframes fade {
    from { opacity: 0.7; }
    to { opacity: 1; }
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    #upcoming-products h2 {
        font-size: 2rem;
    }

    .slideshow-container {
        max-width: 100%;
    }

    .mySlides img {
        height: 250px;
    }

    .mySlides .text {
        font-size: 1rem;
        padding: 15px 10px;
    }

    .prev, .next {
        width: 40px;
        height: 40px;
    }
}

@media screen and (max-width: 480px) {
    #upcoming-products {
        padding: 20px 10px;
    }

    #upcoming-products h2 {
        font-size: 1.8rem;
    }

    .mySlides img {
        height: 200px;
    }
}

/* Product Page Responsive Styles */
@media (max-width: 768px) {
    .product-hero {
        height: 50vh !important;
        min-height: 300px !important;
    }
    
    main[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
}