/*=================================================
        NEW DEX INDUSTRY
        PREMIUM VERSION 2.0
==================================================*/

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

html{
scroll-behavior:smooth;
}

body{

font-family:'Poppins',sans-serif;

background:#faf8f3;

color:#333;

overflow-x:hidden;

}

/*==========================
        HEADER
==========================*/

header{

position:fixed;

top:0;

left:0;

width:100%;

z-index:9999;

background:rgba(20,83,45,.92);

backdrop-filter:blur(18px);

box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.navbar{

width:90%;

max-width:1350px;

margin:auto;

height:85px;

display:flex;

justify-content:space-between;

align-items:center;

}

.logo img{

height:65px;

transition:.4s;

cursor:pointer;

}

.logo img:hover{

transform:scale(1.05);

}

/*==========================
      NAVIGATION
==========================*/

.nav-links{

display:flex;

list-style:none;

gap:45px;

}

.nav-links a{

text-decoration:none;

color:white;

font-size:17px;

font-weight:500;

position:relative;

transition:.4s;

}

.nav-links a::after{

content:"";

position:absolute;

left:0;

bottom:-8px;

width:0;

height:2px;

background:#d4af37;

transition:.4s;

}

.nav-links a:hover{

color:#d4af37;

}

.nav-links a:hover::after{

width:100%;

}

/*==========================
      HERO
==========================*/

.hero{

min-height:100vh;

display:flex;

align-items:center;

justify-content:space-between;

padding:130px 8% 70px;

background:

linear-gradient(120deg,#faf8f3,#ffffff,#eef7ef);

}

.hero-content{

flex:1;

animation:fadeLeft 1s;

}

.hero-content h1{

font-size:68px;

line-height:1.1;

color:#14532d;

margin-bottom:25px;

font-weight:700;

}

.hero-content p{

font-size:19px;

line-height:1.9;

color:#666;

max-width:620px;

margin-bottom:40px;

}

/*==========================
      BUTTONS
==========================*/

.hero-buttons{

display:flex;

gap:20px;

}

.btn{

padding:17px 38px;

background:#14532d;

color:white;

text-decoration:none;

border-radius:50px;

font-weight:600;

transition:.35s;

box-shadow:0 15px 30px rgba(20,83,45,.25);

}

.btn:hover{

background:#d4af37;

color:#111;

transform:translateY(-6px);

}

.btn2{

padding:17px 38px;

border:2px solid #14532d;

border-radius:50px;

text-decoration:none;

color:#14532d;

font-weight:600;

transition:.35s;

}

.btn2:hover{

background:#14532d;

color:white;

transform:translateY(-6px);

}

/*==========================
      HERO IMAGE
==========================*/

.hero-image{

flex:1;

display:flex;

justify-content:center;

align-items:center;

animation:fadeRight 1.2s;

}

.hero-image img{

width:500px;

max-width:100%;

filter:drop-shadow(0 25px 35px rgba(0,0,0,.18));

animation:floating 4s ease-in-out infinite;

}

@keyframes floating{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-18px);

}

100%{

transform:translateY(0);

}

}

/*==========================
      ANIMATIONS
==========================*/

@keyframes fadeLeft{

from{

opacity:0;

transform:translateX(-70px);

}

to{

opacity:1;

transform:translateX(0);

}

}

@keyframes fadeRight{

from{

opacity:0;

transform:translateX(70px);

}

to{

opacity:1;

transform:translateX(0);

}

}
/*==========================================
        FEATURED PRODUCTS
==========================================*/

.products{

    padding:100px 8%;
    background:linear-gradient(to bottom,#ffffff,#f7f8f4);

}

.section-title{

    text-align:center;
    margin-bottom:70px;

}

.section-title h2{

    font-size:48px;
    color:#14532d;
    font-weight:700;
    margin-bottom:15px;

}

.section-title p{

    color:#777;
    font-size:18px;

}

/*========== PRODUCT GRID ==========*/

.product-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:40px;

}

/*========== CARD ==========*/

.product-card{

    background:#fff;

    border-radius:25px;

    overflow:hidden;

    position:relative;

    text-align:center;

    padding:35px;

    transition:.45s;

    box-shadow:
    0 12px 30px rgba(0,0,0,.08);

}

/* Gold Top Border */

.product-card::before{

content:"";

position:absolute;

left:0;
top:0;

width:100%;
height:6px;

background:linear-gradient(90deg,#14532d,#d4af37);

}

/* Hover */

.product-card:hover{

transform:translateY(-15px);

box-shadow:

0 25px 50px rgba(0,0,0,.15);

}

/*========== IMAGE ==========*/

.product-card img{

width:230px;

height:230px;

object-fit:contain;

transition:.5s;

margin-bottom:20px;

}

.product-card:hover img{

transform:

scale(1.08)

rotate(-4deg);

}

/*========== TITLE ==========*/

.product-card h3{

font-size:26px;

color:#14532d;

margin-bottom:12px;

}

/*========== DESCRIPTION ==========*/

.product-card p{

color:#666;

line-height:1.8;

margin-bottom:22px;

font-size:16px;

}

/*========== PRICE ==========*/

.product-card h4{

font-size:32px;

color:#d4af37;

margin-bottom:25px;

font-weight:700;

}

/*========== BUTTON ==========*/

.product-card button{

width:100%;

padding:16px;

border:none;

border-radius:50px;

background:#14532d;

color:white;

font-size:17px;

font-weight:600;

cursor:pointer;

transition:.35s;

}

.product-card button:hover{

background:#d4af37;

color:#111;

transform:scale(1.03);

}

/*========== QUICK BADGE ==========*/

.product-card::after{

content:"Premium";

position:absolute;

top:18px;

right:-40px;

background:#d4af37;

color:#111;

padding:8px 50px;

font-size:13px;

font-weight:700;

transform:rotate(45deg);

}

/*========== IMAGE BG ==========*/

.product-card{

background-image:

radial-gradient(circle at top,#f9f5e9 0%,#ffffff 65%);

}

/*========== SHADOW GLOW ==========*/

.product-card:hover{

border:1px solid rgba(212,175,55,.4);

}
/*==========================================
          WHY CHOOSE US
==========================================*/

.why-us{

    padding:110px 8%;

    background:linear-gradient(180deg,#f8faf7,#ffffff);

}

.why-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:35px;

    margin-top:70px;

}

.why-card{

    background:rgba(255,255,255,.75);

    backdrop-filter:blur(12px);

    border:1px solid rgba(212,175,55,.25);

    border-radius:25px;

    padding:45px 30px;

    text-align:center;

    transition:.45s;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.why-card:hover{

    transform:translateY(-15px);

    box-shadow:0 30px 60px rgba(0,0,0,.15);

}

.icon{

    width:90px;

    height:90px;

    margin:auto;

    margin-bottom:25px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:42px;

    background:linear-gradient(135deg,#14532d,#1f7a43);

    color:#fff;

    box-shadow:0 15px 35px rgba(20,83,45,.25);

}

.why-card h3{

    font-size:26px;

    color:#14532d;

    margin-bottom:15px;

}

.why-card p{

    color:#666;

    line-height:1.9;

}

/*==========================================
            REVIEWS
==========================================*/

.reviews{

    padding:110px 8%;

    background:#fff;

}

.review-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(330px,1fr));

    gap:35px;

    margin-top:70px;

}

.review-card{

    position:relative;

    background:#ffffff;

    border-radius:25px;

    padding:40px;

    overflow:hidden;

    transition:.45s;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.review-card::before{

content:"❝";

position:absolute;

top:10px;

right:25px;

font-size:80px;

color:rgba(212,175,55,.15);

font-family:serif;

}

.review-card:hover{

transform:translateY(-12px);

box-shadow:0 30px 60px rgba(0,0,0,.14);

}

.review-card h3{

font-size:24px;

margin-bottom:18px;

color:#f4b400;

letter-spacing:3px;

}

.review-card p{

font-size:16px;

line-height:1.9;

color:#666;

margin-bottom:25px;

}

.review-card h4{

font-size:18px;

color:#14532d;

font-weight:600;

}

/* Gold Bottom Border */

.review-card::after{

content:"";

position:absolute;

left:0;

bottom:0;

width:100%;

height:5px;

background:linear-gradient(90deg,#14532d,#d4af37);

}
/*==========================================
            PREMIUM FOOTER
==========================================*/

footer{

    background:linear-gradient(135deg,#0f3d23,#14532d);

    color:#fff;

    margin-top:100px;

    position:relative;

    overflow:hidden;

}

footer::before{

    content:"";

    position:absolute;

    width:350px;
    height:350px;

    background:rgba(212,175,55,.08);

    border-radius:50%;

    top:-120px;
    right:-120px;

}

.footer-container{

    width:90%;
    max-width:1350px;

    margin:auto;

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    gap:60px;

    padding:80px 0;

    position:relative;
    z-index:2;

}

.footer-logo img{

    width:190px;

    margin-bottom:20px;

}

.footer-logo p{

    color:#ddd;

    line-height:1.9;

    max-width:320px;

}

.footer-links h3,
.footer-contact h3{

    color:#d4af37;

    font-size:22px;

    margin-bottom:22px;

}

.footer-links{

    display:flex;

    flex-direction:column;

}

.footer-links a{

    color:#ddd;

    text-decoration:none;

    margin-bottom:14px;

    transition:.35s;

}

.footer-links a:hover{

    color:#d4af37;

    padding-left:8px;

}

.footer-contact p{

    color:#ddd;

    margin-bottom:14px;

    line-height:1.8;

}

.copyright{

    text-align:center;

    padding:22px;

    border-top:1px solid rgba(255,255,255,.15);

    color:#ccc;

}

/*==========================================
        SCROLLBAR
==========================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#f2f2f2;

}

::-webkit-scrollbar-thumb{

    background:#14532d;

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:#d4af37;

}

/*==========================================
        SECTION ANIMATION
==========================================*/

.hero,
.products,
.why-us,
.reviews,
footer{

    animation:fadeUp .8s ease;

}

@keyframes fadeUp{

from{

opacity:0;

transform:translateY(40px);

}

to{

opacity:1;

transform:translateY(0);

}

}

/*==========================================
        MOBILE RESPONSIVE
==========================================*/

@media(max-width:992px){

.nav-links{

margin-top:18px;

flex-wrap:wrap;

justify-content:center;

gap:22px;

}

.hero{

flex-direction:column-reverse;

text-align:center;

padding-top:170px;

}

.hero-content h1{

font-size:48px;

}

.hero-content p{

margin:auto;

}

.hero-buttons{

justify-content:center;

flex-wrap:wrap;

}

.hero-image{

margin-bottom:40px;

}

.footer-container{

grid-template-columns:1fr;

text-align:center;

}

.footer-logo p{

margin:auto;

}

}

@media(max-width:768px){

.section-title h2{

font-size:34px;

}

.hero-content h1{

font-size:38px;

}

.hero-content p{

font-size:16px;

}

.hero-image img{

width:320px;

}

.product-grid,
.why-grid,
.review-grid{

grid-template-columns:1fr;

}

.btn,
.btn2{

width:100%;

text-align:center;

}

.hero-buttons{

flex-direction:column;

}

.footer-logo img{

width:150px;

}

}

/*==========================================
        HOVER EFFECTS
==========================================*/

img{

transition:.4s;

}

img:hover{

transform:scale(1.03);

}

button{

transition:.35s;

}

button:hover{

transform:translateY(-3px);

}

/*==========================================
        MOBILE HAMBURGER MENU
==========================================*/

.menu-toggle{
    display:none;
    flex-direction:column;
    justify-content:center;
    gap:6px;
    cursor:pointer;
    z-index:1001;
}

.menu-toggle span{
    width:30px;
    height:3px;
    background:#fff;
    border-radius:2px;
    transition:.3s;
}

.menu-toggle.active span:nth-child(1){
    transform:rotate(45deg) translate(7px,7px);
}

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

.menu-toggle.active span:nth-child(3){
    transform:rotate(-45deg) translate(7px,-7px);
}

@media(max-width:992px){

    .navbar{
        position:relative;
    }

    .menu-toggle{
        display:flex;
    }

    .nav-links{
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background:#14532d;
        flex-direction:column;
        align-items:center;
        gap:0;
        max-height:0;
        overflow:hidden;
        transition:.4s;
    }

    .nav-links.active{
        max-height:500px;
        padding:15px 0;
        box-shadow:0 15px 25px rgba(0,0,0,.2);
    }

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

    .nav-links a{
        display:block;
        padding:14px 0;
    }

}

/*========================================
    WISHLIST BUTTON (Featured Products)
========================================*/

.product-card .btn-group{

    display:flex;

    gap:10px;

}

.product-card .btn-group .wishlist{

    width:55px;

    flex:none;

    padding:16px 0;

    border-radius:12px;

    background:#f3f3f3;

    color:#222;

    font-size:20px;

}

.product-card .btn-group .wishlist:hover,
.product-card .btn-group .wishlist.active{

    background:#ff4d6d;

    color:#fff;

    transform:none;

}

.product-card .btn-group .cart-btn{

    flex:1;

}
