html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial;
}

body {
    background: #75fbf5;
    color: #222;
    padding-top: 0;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;

    padding: 12px 5%;

    color: white;

    position: sticky;
    top: 0;
    z-index: 9999;

    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
}

.logo {
    font-size: 28px;
    font-weight: bold;
}

nav a {
    color: rgb(64, 73, 75);
    text-decoration: none;
    margin-left: 20px;
}

.hero {
    height: 90vh;
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)),
        url("https://images.unsplash.com/photo-1523381210434-271e8be1f52b");
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 60px;
    animation: fadeIn 2s;
}

.hero-content p {
    margin: 20px 0;
    font-size: 22px;
}

.hero button {
    padding: 14px 30px;
    border: none;
    background: #ff9800;
    color: white;
    font-size: 18px;
    border-radius: 8px;
    cursor: pointer;
    transition: .4s;
    animation: pulse 2s infinite;
}

.hero button:hover {
    transform: scale(1.1);
    background: #ff6600;
}

.search-box {
    padding: 40px 8%;
}

.search-box input {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-size: 18px;
}

.categories {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    padding: 20px 8%;
}


.category {
    background: white;
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .1);
    transition: .4s;
    cursor: pointer;
}

.category:hover {
    transform: translateY(-10px) scale(1.05);
    background: #111;
    color: white;
}

nav a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    transition: .3s;
}

nav a:hover {
    color: #ff9800;
}

.products {
    padding: 40px 3%;
}

#productContainer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media(max-width:768px) {
    #productContainer {
        grid-template-columns: repeat(2, 1fr);
    }
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, .1);
    transition: .3s;
}

.product-card:hover {
    transform: translateY(-8px);
}

.product-card:hover {
    transform: translateY(-12px) scale(1.03);
}

.whatsapp {
    animation: float 2s ease-in-out infinite;
}

.product-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 18px;
    height: 45px;
    overflow: hidden;
}

.price {
    color: #ff9800;
    font-size: 22px;
    font-weight: bold;
}

.rating {
    color: gold;
    font-size: 18px;
    margin: 10px 0;
}


.btn-group {
    display: flex;
    gap: 8px;
}

.cart-btn,
.buy-btn {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
}

.cart-btn {
    background: #111;
    color: white;
}

.buy-btn {
    background: #25D366;
    color: white;
}

.reviews {
    padding: 50px 8%;
}

.review-box {
    background: rgb(169, 244, 236);
    padding: 20px;
    margin-top: 20px;
    border-radius: 10px;
}

footer {
    background: #111;
    color: rgb(250, 210, 210);
    text-align: center;
    padding: 30px;
}

.socials a {
    color: rgb(115, 210, 245);
    margin: 0 10px;
    font-size: 25px;
}

.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    text-decoration: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact {
    padding: 60px 8%;
    background: white;
    text-align: center;
}

.contact h2 {
    margin-bottom: 20px;
    font-size: 35px;
}

.contact p {
    margin-top: 15px;
    font-size: 20px;
}

.contact a {
    color: #ff9800;
    text-decoration: none;
    font-weight: bold;
}

@keyframes pulse {

    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }

    100% {
        transform: scale(1);
    }

}

@keyframes float {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }

}

/* CONTACT SECTION */

.contact-box {
    background: linear-gradient(135deg, #111, #1f1f1f);
    padding: 40px;
    border-radius: 20px;
    width: 85%;
    margin: 50px auto;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: fadeIn 1s ease;
}

.contact-box h2 {
    color: white;
    font-size: 35px;
    margin-bottom: 25px;
}

.contact-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.contact-links a {
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: bold;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
    color: white;
    background: #222;
    border: 2px solid transparent;
}

/* Hover Animation */

.contact-links a:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

/* WhatsApp */

.whatsapp-btn {
    background: #25D366;
}

.whatsapp-btn:hover {
    background: #1ebe5d;
}

/* Instagram */

.instagram-btn {
    background: linear-gradient(45deg, #ff0066, #ff9900);
}

.instagram-btn:hover {
    filter: brightness(1.1);
}

/* Facebook */

.facebook-btn {
    background: #1877f2;
}

.facebook-btn:hover {
    background: #0d65d9;
}

/* Call */

.call-btn {
    background: #ff3b3b;
}

.call-btn:hover {
    background: #e02828;
}

/* Smooth Fade */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* PREMIUM FOOTER */

.premium-footer {
    background: linear-gradient(135deg, #0f0f0f, #1c1c1c);
    padding: 60px 20px;
    text-align: center;
    margin-top: 80px;
    color: white;
    animation: footerFade 1s ease;
}

.footer-content h2 {
    font-size: 32px;
    margin-top: 20px;
    margin-bottom: 15px;
}

.footer-content p {
    color: #cfcfcf;
    font-size: 17px;
    margin: 10px 0;
    line-height: 1.7;
}

.footer-bottom {
    margin-top: 30px;
    font-size: 15px;
    color: #999;
}

/* PHOTO */

.owner-photo {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    cursor: pointer;
    transition: 0.5s;
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

/* Hover Zoom */

.owner-photo:hover {
    transform: scale(1.18);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.4);
}

/* Animation */

@keyframes footerFade {

    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* BUY BUTTON PREMIUM */

.buy-btn {
    display: inline-block;
    padding: 14px 28px;
    background: linear-gradient(45deg, #ff6600, #ff0066);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: bold;
    transition: 0.4s ease;
    box-shadow: 0 8px 20px rgba(255, 0, 102, 0.3);
    position: relative;
    overflow: hidden;
}

/* Hover Effect */

.buy-btn:hover {
    transform: translateY(-5px) scale(1.07);
    box-shadow: 0 12px 30px rgba(255, 0, 102, 0.5);
}

/* Click Effect */

.buy-btn:active {
    transform: scale(0.95);
}

/* Shine Animation */

.buy-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transition: 0.5s;
}

.buy-btn:hover::before {
    left: 100%;
}

/* PREMIUM BRAND LOGO */

.brand-logo {

    font-size: 24px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 8px;
    letter-spacing: 2px;
    text-transform: uppercase;

    background: linear-gradient(90deg,
            #ff0066,
            #ff9900,
            #00e5ff,
            #ff0066);

    background-size: 300%;

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    animation:
        glowText 6s linear infinite,
        zoomText 3s ease-in-out infinite;

}

/* COLOR MOVING */

@keyframes glowText {

    0% {
        background-position: 0%;
    }

    100% {
        background-position: 300%;
    }

}

/* SMOOTH ZOOM */

@keyframes zoomText {

    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }

}

.brand-logo {

    padding: 20px 40px;
    border-radius: 20px;

    background-color: rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(10px);

    box-shadow:
        0 8px 30px rgba(255, 0, 102, .3);

    display: inline-block;

}

/* BUTTON GROUP */

.btn-group {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

/* ADD TO CART */

.cart-btn {

    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;

    background: #111;
    color: white;

    transition: .3s;
}

.cart-btn:hover {

    transform: translateY(-3px);
    background: #333;

}

.cart-btn:hover {

    transform: translateY(-3px);
    background: #333;

}

/* BUY NOW */

.buy-btn {

    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;

    background: linear-gradient(45deg, #ff0066, #ff9900);
    color: white;

    transition: .3s;
}

.buy-btn:hover {

    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 0, 102, .3);

}

/* OUT OF STOCK */

.out-stock {

    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;

    background: #999;
    color: white;
    cursor: not-allowed;

}


/* CART COUNT */

#cart-count {

    background: #ff0066;

    padding: 4px 8px;

    border-radius: 50%;

    margin-left: 5px;

    font-size: 14px;

}



#cart-count {

    background: red;
    color: rgb(251, 243, 243);
    padding: 2px 8px;
    border-radius: 50%;
    font-size: 14px;

}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 350px;
    height: 100%;
    background: #111;
    color: white;
    padding: 20px;
    transition: 0.4s;
    z-index: 9999;
    overflow-y: auto;
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.cart-header span {
    cursor: pointer;
    font-size: 25px;
}

.cart-item {
    background: #222;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.cart-item button {

    background: red;
    color: white;
    border: none;
    padding: 6px 10px;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 5px;

}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 350px;
    height: 100%;
    background: white;
    z-index: 9999;
    transition: 0.4s;
    padding: 20px;
    overflow-y: auto;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.cart-item {
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
}

.cart-item button {
    background: red;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
}

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    background: rgba(0, 0, 0, 0.35);
}

.hero-content h1 {
    font-size: 72px;
    font-weight: 900;
    color: #ffffff;

    text-shadow:
        0 0 10px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(0, 0, 0, 0.7),
        4px 4px 12px rgba(0, 0, 0, 0.9);

    background: rgba(0, 0, 0, 0.35);
    padding: 10px 25px;
    border-radius: 12px;

    display: inline-block;
}

.hero-content p {
    font-size: 30px;
    font-weight: 700;
    color: #ffffff;

    text-shadow:
        0 0 8px rgba(0, 0, 0, 0.8),
        2px 2px 10px rgba(0, 0, 0, 0.9);

    background: rgba(0, 0, 0, 0.45);
    padding: 8px 18px;
    border-radius: 10px;

    display: inline-block;
}

.hero-content button {
    padding: 14px 30px;
    border: none;
    border-radius: 8px;

    background: #ff9800;
    color: white;

    font-size: 18px;
    cursor: pointer;

    transition: 0.3s;
}

.hero-content button:hover {
    background: black;
    transform: scale(1.05);
}

.filter-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 30px 0;
}

.filter-buttons button {
    padding: 12px 25px;
    border: none;
    border-radius: 30px;
    background: black;
    color: white;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.filter-buttons button:hover {
    background: #ff9800;
    transform: scale(1.08);
}

.product-card {
    transition: 0.4s ease;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 35px rgba(255, 152, 0, 0.25);
}

.product-card img {
    transition: 0.4s ease;
}

.product-card:hover img {
    transform: scale(1.08);
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;

    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.85);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

nav a {
    position: relative;
}

nav a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -5px;

    width: 0%;
    height: 2px;

    background: orange;

    transition: 0.3s;
}

nav a:hover::after {
    width: 100%;
}

.whatsapp-float {

    position: fixed;

    bottom: 20px;
    right: 20px;

    width: 65px;
    height: 65px;

    background: white;

    border-radius: 50%;

    display: flex;
    justify-content: center;
    align-items: center;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);

    z-index: 9999;

    transition: 0.3s;

}

.whatsapp-float img {

    width: 40px;

}

.whatsapp-float:hover {

    transform: scale(1.12);

}

nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0%;
    height: 2px;
    background: #ff9800;
    transition: 0.4s;
}

nav a:hover::after {
    width: 100%;
}

@keyframes gradientMove {

    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }

}

.product-card {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

#loader {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    display: none;
    top: 0;
    left: 0;
}

.loader-logo {
    font-size: 40px;
    font-weight: bold;
    color: #ff9800;
    letter-spacing: 4px;
    animation: pulse 1s infinite alternate;
}

@keyframes pulse {

    from {
        transform: scale(1);
        opacity: 0.7;
    }

    to {
        transform: scale(1.1);
        opacity: 1;
    }

}

.slider {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;

    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slider {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.product-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    overflow: hidden;
    transition: 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.product-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

.product-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: 0.4s ease;
}

.product-card:hover img {
    transform: scale(1.08);
}

.product-card h3 {
    font-size: 22px;
    margin-top: 15px;
    color: white;
}

.product-card p {
    color: #ffcc70;
    font-size: 20px;
    font-weight: bold;
}

.product-card button {
    background: linear-gradient(45deg, #ff9800, #ff3d00);
    color: white;
    border: none;
    padding: 12px 22px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease;
    margin-top: 12px;
}

.product-card button:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 25px rgba(255, 152, 0, 0.5);
}

body {
    animation: fadeIn 1s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width:768px) {

    header {
        position: sticky;
        top: 0;
        z-index: 9999;

        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;

        padding: 12px 5%;

        background: rgba(0, 0, 0, 0.85);
        backdrop-filter: blur(10px);
    }

    .logo {
        width: auto;
        text-align: center;
        font-size: 18px;
        margin: 0;
    }

    .theme-toggle {
        position: absolute;
        left: 15px;
        top: 80px;
    }

    .cart-icon {
        position: absolute;
        right: 10px;
        top: 10px;

        display: flex;
        align-items: center;
        gap: 6px;

        padding: 6px 12px;
        border-radius: 30px;

        font-size: 14px;
        height: 42px;
    }

    nav {
        display: none;
    }

    .hero-text h1 {
        font-size: 40px;
    }

    .hero-text p {
        font-size: 18px;
    }

    .products {
        grid-template-columns: repeat(2, 1fr);
    }
}

.product-card button {
    width: 90%;
    padding: 12px;
    border: none;
    border-radius: 10px;
    background: #ff9800;
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin: 15px auto;
    display: block;
}

.product-card button:hover {
    background: #ffb300;
}

.product-features,
.delivery-info {
    margin-top: 20px;
    padding: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.product-features h3,
.delivery-info h3 {
    margin-bottom: 10px;
    color: #111;
}

.product-features ul {
    padding-left: 20px;
}

.product-features li {
    margin-bottom: 6px;
}

.delivery-info p {
    line-height: 1.8;
}

.offer-badge {
    display: inline-block;
    background: #ff4d4d;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
}

@media (max-width: 768px) {

    header {
        padding: 10px !important;
    }

    .nav-links {
        margin-top: 0 !important;
        padding-top: 0 !important;
        gap: 10px !important;
    }

    .hero {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    .products {
        grid-template-columns: 1fr !important;
    }

}

@media (max-width: 768px) {

    .nav-links {
        position: relative;
        top: -25px;
    }

}

@media (max-width:768px) {

    nav {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px;
        margin-top: -30px;
    }

    nav a {
        display: none !important;
    }

}

.menu-btn {
    position: absolute;
    left: 10px;
    top: 10px;
    font-size: 28px;
    color: white;
    cursor: pointer;
    z-index: 99999;
}

.side-menu {
    position: fixed;
    left: -250px;
    top: 0;
    width: 250px;
    height: 100%;
    background: black;
    padding-top: 80px;
    transition: .4s;
    z-index: 99999;
}

.side-menu a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 15px 20px;
    font-size: 18px;

    .logo {
        font-size: 20px;
    }
}

.order-form {
    margin-top: 20px;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.order-form h3 {
    margin-bottom: 15px;
}

.order-form input,
.order-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    box-sizing: border-box;
}

.order-form textarea {
    height: 100px;
    resize: none;
}

.order-form .buy-btn {
    border: none;
    cursor: pointer;
}