@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #f5efe6;
}


/* ================= HEADER ================= */
.main-header {
    background: #ffffff; /* LIGHT FIX */
    padding: 8px 0;
    box-shadow: 0px 3px 10px rgba(0,0,0,0.08);
}

.top-header {
    height: 65px;
}

/* LOGO */
.logo img {
    height: 60px;
}


/* ================= ICONS ================= */
.header-icons {
    gap: 12px;
}

.icon-btn {
    width: 42px;
    height: 42px;
    background: #0f3b44;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 17px;
    transition: 0.3s;
}

.icon-btn:hover {
    background: #d4af37;
    transform: translateY(-3px);
}

.cart-icon{
    position:relative;
}

#cartCount{
    position:absolute;
    top:-6px;
    right:-6px;
    background:#d4af37;
    color:#000;
    font-size:12px;
    padding:2px 6px;
    border-radius:50%;
}
/* TOGGLE */
.menu-toggle {
    border: none;
    background: #0f3b44;
    color: white;
    font-size: 18px;
    padding: 7px 11px;
    border-radius: 5px;
}

/* SEARCH BOX */
.search-box {
    position: relative;
    width: 300px;
}

.search-box input {
    width: 100%;
    padding: 8px 12px;
    border-radius: 20px;
    border: 1px solid #ccc;
    outline: none;
}

/* DROPDOWN */
#searchResults {
    position: absolute;
    top: 40px;
    width: 100%;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0,0,0,0.1);
    display: none;
    max-height: 250px;
    overflow-y: auto;
    z-index: 999;
}

#searchResults div {
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
}

#searchResults div:hover {
    background: #f5f5f5;
}
/* ================= NAVBAR ================= */
.nav-bar {
    background: #f9f9f9;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.nav-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 18px;
    padding: 10px 0;
    margin: 0;
}

/* BOX STYLE NAV */
.nav-menu li a {
    text-decoration: none;
    color: #0f3b44;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    transition: 0.3s;
    background: transparent;
}

/* HOVER BOX EFFECT */
.nav-menu li a:hover {
    background: #0f3b44;
    color: #fff;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.15);
}


/* ================= MARQUEE ================= */
.marquee {
    background: #0f3b44;
    color: #fff;
    overflow: hidden;
    white-space: nowrap;
}

.marquee p {
    display: inline-block;
    padding: 6px 0;   /* HEIGHT REDUCED */
    animation: scroll 15s linear infinite;
    font-size: 13px;
}

@keyframes scroll {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}


/* ================= MOBILE ================= */
@media (max-width: 992px) {

    .nav-bar {
        display: none;
        position: absolute;
        width: 100%;
        background: #fff;
        top: 70px;
        left: 0;
        z-index: 999;
    }

    .nav-bar.active {
        display: block;
    }

    .nav-menu {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding: 20px 0;
    }

}


/* ================= HERO SLIDER ================= */
.hero-slider {
    position: relative;
    height: 700px;
    overflow: hidden;
}

/* SLIDE */
.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

/* IMAGE */
.hero-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 6s ease;
}

/* ZOOM EFFECT */
.hero-slide.active .hero-bg {
    transform: scale(1.08);
}


/* ================= MOBILE ================= */
@media (max-width: 768px) {

    .hero-slider {
        height: 220px;
    }

    .hero-bg {
        background-size: cover;
        background-position: center;
    }

}


/* FULL WIDTH SECTION */
.png-cat-section {
    width: 100%;
    padding: 80px 40px;
    background: #f5efe6;
    text-align: center;
}

/* TITLE */
.png-cat-section h2 {
    font-size: 34px;
    color: #0f3b44;
}

.png-cat-section p {
    color: #777;
    margin-bottom: 50px;
}

/* WRAPPER */
.png-wrapper {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

/* ITEM */
.png-item {
    text-decoration: none;
    text-align: center;
    transition: 0.3s;
}

/* CIRCLE */
.png-circle {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s;
}

/* COLORS */
.green { background: #7cc576; }
.purple { background: #7b4bb7; }
.blue { background: #4bbcd8; }
.yellow { background: #f4c542; }
.pink { background: #f06292; }
.teal { background: #26a69a; }

/* IMAGE */
.png-circle img {
    width: 95px;
    object-fit: contain;
    transition: 0.4s;
}

/* TITLE */
.png-item h4 {
    margin-top: 14px;
    font-size: 15px;
    color: #222;
}

/* HOVER */
.png-item:hover .png-circle {
    transform: translateY(-10px) scale(1.08);
}

.png-item:hover img {
    transform: scale(1.1);
}

.png-item:hover h4 {
    color: #0f3b44;
}

/* BUTTON */
.cat-btn-wrap {
    margin-top: 40px;
}

.cat-btn {
    display: inline-block;
    padding: 12px 34px;
    background: #0f3b44;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
}

.cat-btn:hover {
    background: #d4af37;
    color: #000;
}


/* SECTION */
.items-section{
    padding: 60px 20px;
    background: #f5efe6;
    text-align: center;
}

/* HEADING */
.section-title{
    font-size: 32px;
    color: #0f3b44;
    margin-bottom: 8px;
}

/* SUBTEXT */
.section-subtitle{
    color: #666;
    margin-bottom: 35px;
}
/* WRAPPER */
.marquee-wrapper {
    overflow: hidden;
    position: relative;
}

/* TRACK */
.marquee-track {
    display: flex;
    gap: 25px;
    width: max-content;
    animation: scrollMarquee 25s linear infinite;
}

/* PAUSE ON HOVER */
.marquee-wrapper:hover .marquee-track {
    animation-play-state: paused;
}


/* ================= UPDATED ITEM ================= */
.marquee-item {
    width: 220px;   /* INCREASED */
    height: 220px;  /* INCREASED */
    border-radius: 14px;
    overflow: hidden;
    flex-shrink: 0;

    /* DARK THEME */
    background: #0f3b44;
    padding: 6px;
    border: 2px solid #0f3b44;

    transition: 0.3s;
}

/* IMAGE */
.marquee-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* HOVER EFFECT */
.marquee-item:hover {
    transform: translateY(-8px) scale(1.07);
    border-color: #d4af37;
    box-shadow: 0px 8px 22px rgba(0,0,0,0.2);
}


/* ANIMATION */
@keyframes scrollMarquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}


/* ================= MOBILE ================= */
@media (max-width: 768px) {

    .marquee-item {
        width: 150px;
        height: 150px;
    }

}

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

/* BOX */
.modal-box{
    background:#fff;
    width:850px;
    padding:30px;
    border-radius:16px;
    position:relative;
}

/* CLOSE */
.modal-close{
    position:absolute;
    top:15px;
    left:20px;
    font-size:20px;
    cursor:pointer;
}

/* GRID */
.modal-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
}

/* IMAGE */
.modal-left img{
    width:100%;
    border-radius:12px;
}

/* RIGHT */
.modal-right h2{
    font-size:28px;
    margin-bottom:10px;
}

.modal-right p{
    color:#666;
    margin-bottom:15px;
}

.modal-right h3{
    font-size:26px;
    color:#0f3b44;
    margin-bottom:20px;
}

/* BUTTONS */
.wishlist-btn{
    background:#eee;
    border:none;
    padding:12px 20px;
    border-radius:25px;
    width:200px;
    margin-bottom:12px;
    cursor:pointer;
}

.cart-btn1{
    background:#0f3b44;
    color:#fff;
    border:none;
    padding:14px;
    border-radius:30px;
    width:220px;
    font-size:16px;
    cursor:pointer;
}

.cart-btn1:hover{
    background:#d4af37;
    color:#000;
}

/* MOBILE */
@media(max-width:768px){
    .modal-box{
        width:95%;
    }

    .modal-grid{
        grid-template-columns:1fr;
    }
}
/* ================= TRENDING ================= */
.trending-section {
    padding: 60px 0;
    background: #ffffff;
}

.trending-section h2 {
    font-size: 32px;
    color: #0f3b44;
    margin-bottom: 10px;
}

.trending-section p {
    color: #666;
    margin-bottom: 40px;
}

/* GRID */

.trending-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}
/* ================= FLIP CARD ================= */
.flip-card {
    perspective: 1000px;
    text-decoration: none;
}

.flip-inner {
    position: relative;
    width: 100%;
    height: 320px;
    transition: transform 0.7s;
    transform-style: preserve-3d;
}

/* HOVER FLIP */
.flip-card:hover .flip-inner {
    transform: rotateY(180deg);
}

/* FRONT & BACK */
.flip-front,
.flip-back {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 14px;
    overflow: hidden;
    backface-visibility: hidden;
}

/* FRONT */
.flip-front {
    background: #0f3b44;
}

.flip-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* PRICE TAG */
.price-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #d4af37;
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    z-index: 2;
}

/* BACK */
/* BACK SIDE FIX */
.flip-back {
    background: #f5efe6;   /* LIGHT PREMIUM BG */
    color: #0f3b44;        /* DARK TEXT */
    transform: rotateY(180deg);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 25px;
    border: 2px solid #0f3b44;
}

/* HEADING */
.flip-back h4 {
    margin-bottom: 10px;
    font-weight: 600;
}

/* TEXT */
.flip-back p {
    font-size: 14px;
    text-align: center;
    color: #444;
}

/* OPTIONAL: LITTLE GOLD LINE */
.flip-back h4::after {
    content: "";
    display: block;
    width: 40px;
    height: 2px;
    background: #d4af37;
    margin: 8px auto 0;
}

/* ================= SCROLL ANIMATION ================= */
.trending-section {
    opacity: 0;
    transform: translateY(40px);
    transition: 1s;
}

.trending-section.show {
    opacity: 1;
    transform: translateY(0);
}


/* ================= MOBILE ================= */
@media (max-width: 992px) {
    .trending-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .trending-grid {
        grid-template-columns: 1fr;
    }

    .flip-inner {
        height: 260px;
    }
}

/* BACK ACTIONS */
.card-actions{
    margin-top:12px;
    display:flex;
    justify-content:center;
    gap:10px;
}

/* WISHLIST BUTTON */
.wish-btn{
    width:40px;
    height:40px;
    border-radius:50%;
    border:none;
    background:#fff;
    color:#0f3b44;
    font-size:18px;
    cursor:pointer;
    transition:0.3s;
}

/* ACTIVE HEART */
.wish-btn.active{
    background:#ff4d6d;
    color:#fff;
}

/* CART BUTTON */
.cart-btn{
    padding:8px 14px;
    border:none;
    border-radius:20px;
    background:#0f3b44;
    color:#fff;
    cursor:pointer;
    font-size:13px;
    transition:0.3s;
}

.cart-btn:hover{
    background:#09282f;
}

/* ================= VIDEO SECTION ================= */
.video-section {
    padding: 70px 20px;
    background: #f5efe6;
}

.video-section h2 {
    font-size: 30px;
    color: #0f3b44;
}

.video-section p {
    color: #666;
    margin-bottom: 40px;
}

/* WRAPPER */
.video-wrapper {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

/* CARD (REELS STYLE) */
.video-card {
    width: 220px;
    height: 380px; /* 🔥 vertical */
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    display: block;

    background: #000;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);

    transition: 0.3s;
}

/* HOVER */
.video-card:hover {
    transform: translateY(-8px) scale(1.05);
}

/* IMAGE */
.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* DARK OVERLAY */
.video-thumb::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    top: 0;
    left: 0;
}

/* PLAY BUTTON */
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 55px;
    height: 55px;
    background: #ff0000;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 2;
}

.play-btn i {
    color: #fff;
    font-size: 20px;
}

/* MOBILE */
@media(max-width:768px){
    .video-card {
        width: 160px;
        height: 280px;
    }
}
/* ================= ABOUT SECTION ================= */
.about-section {
    position: relative;
    padding: 80px 20px;
    background: #ffffff;
    overflow: hidden;
}

/* CONTENT */
.about-content {
    max-width: 700px;
    margin: auto;
    position: relative;
    z-index: 2;
}

.about-content h2 {
    font-size: 34px;
    color: #0f3b44;
    margin-bottom: 20px;
}

.about-content p {
    color: #555;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 15px;
}


/* ================= BACKGROUND SHAPES ================= */
.bg-shapes span {
    position: absolute;
    border-radius: 50%;
    opacity: 0.2;
    animation: floatMove 8s infinite ease-in-out alternate;
}

/* DIFFERENT SHAPES */
.bg-shapes span:nth-child(1) {
    width: 120px;
    height: 120px;
    background: #d4af37;
    top: 10%;
    left: 10%;
}

.bg-shapes span:nth-child(2) {
    width: 180px;
    height: 180px;
    background: #0f3b44;
    bottom: 15%;
    left: 20%;
}

.bg-shapes span:nth-child(3) {
    width: 140px;
    height: 140px;
    background: #d4af37;
    top: 20%;
    right: 15%;
}

.bg-shapes span:nth-child(4) {
    width: 200px;
    height: 200px;
    background: #0f3b44;
    bottom: 10%;
    right: 10%;
}


/* FLOAT ANIMATION */
@keyframes floatMove {
    from {
        transform: translateY(0) scale(1);
    }
    to {
        transform: translateY(-30px) scale(1.1);
    }
}


/* ================= SCROLL ANIMATION ================= */
.about-section {
    opacity: 0;
    transform: translateY(40px);
    transition: 1s;
}

.about-section.show {
    opacity: 1;
    transform: translateY(0);
}


/* ================= MOBILE ================= */
@media (max-width: 768px) {

    .about-section {
        padding: 60px 15px;
    }

    .about-content h2 {
        font-size: 26px;
    }

}

/* ================= REVIEW SECTION ================= */
.review-section {
    padding: 70px 0;
    background: #f5efe6;
}

.review-section h2 {
    font-size: 32px;
    color: #0f3b44;
    margin-bottom: 10px;
}

.review-section p {
    color: #666;
    margin-bottom: 40px;
}


/* WRAPPER */
.review-wrapper {
    overflow: hidden;
}

/* TRACK */
.review-track {
    display: flex;
    gap: 25px;
    width: max-content;
    animation: scrollReviews 25s linear infinite;
}

/* PAUSE ON HOVER */
.review-wrapper:hover .review-track {
    animation-play-state: paused;
}


/* CARD */
.review-card {
    width: 300px;
    min-height: 220px;
    background: #ffffff;
    border-radius: 14px;
    padding: 20px;
    text-align: center;
    flex-shrink: 0;

    border: 2px solid #0f3b44;
    box-shadow: 0px 8px 20px rgba(0,0,0,0.15);
    transition: 0.3s;
}

/* IMAGE */
.review-card img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
    border: 2px solid #d4af37;
}

/* NAME */
.review-card h4 {
    margin: 5px 0;
    color: #0f3b44;
}

/* STARS */
.stars {
    color: #d4af37;
    margin-bottom: 10px;
    font-size: 16px;
}

/* TEXT */
.review-card p {
    font-size: 14px;
    color: #555;
}

/* HOVER */
.review-card:hover {
    transform: translateY(-8px);
    border-color: #d4af37;
}


/* ANIMATION */
@keyframes scrollReviews {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}


/* ================= MOBILE ================= */
@media (max-width: 768px) {

    .review-card {
        width: 240px;
        padding: 15px;
    }

}


/* ================= FAQ SECTION ================= */
.faq-section {
    padding: 70px 0;
    background: #ffffff;

    opacity: 0;
    transform: translateY(40px);
    transition: 1s;
}

.faq-section.show {
    opacity: 1;
    transform: translateY(0);
}

.faq-section h2 {
    font-size: 32px;
    color: #0f3b44;
    margin-bottom: 10px;
}

.faq-section p {
    color: #666;
    margin-bottom: 40px;
}


/* CONTAINER */
.faq-container {
    max-width: 800px;
    margin: auto;
}

/* ITEM */
.faq-item {
    border-bottom: 1px solid #ddd;
    padding: 15px 0;
}

/* QUESTION */
.faq-question {
    font-weight: 500;
    font-size: 16px;
    color: #0f3b44;
    cursor: pointer;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* PLUS ICON */
.faq-question span {
    font-size: 20px;
    transition: 0.3s;
}

/* ANSWER */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: 0.4s ease;
    font-size: 14px;
    color: #555;
    padding-right: 20px;
}

/* ACTIVE */
.faq-item.active .faq-answer {
    max-height: 200px;
    margin-top: 10px;
}

.faq-item.active .faq-question span {
    transform: rotate(45deg); /* + becomes × */
}


/* ================= MOBILE ================= */
@media (max-width: 768px) {

    .faq-section h2 {
        font-size: 26px;
    }

}

/* ================= FAQ BACKGROUND SHAPES ================= */
.faq-section {
    position: relative;
    overflow: hidden;
}

/* SHAPES CONTAINER */
.faq-bg-shapes span {
    position: absolute;
    border-radius: 20px;
    opacity: 0.12;
    z-index: 0;

    animation: floatZoom 10s infinite ease-in-out alternate;
}

/* SHAPE 1 */
.faq-bg-shapes span:nth-child(1) {
    width: 140px;
    height: 140px;
    background: #0f3b44;
    top: 10%;
    left: 5%;
}

/* SHAPE 2 */
.faq-bg-shapes span:nth-child(2) {
    width: 180px;
    height: 180px;
    background: #d4af37;
    top: 20%;
    right: 10%;
}

/* SHAPE 3 */
.faq-bg-shapes span:nth-child(3) {
    width: 120px;
    height: 120px;
    background: #0f3b44;
    bottom: 15%;
    left: 15%;
}

/* SHAPE 4 */
.faq-bg-shapes span:nth-child(4) {
    width: 200px;
    height: 200px;
    background: #d4af37;
    bottom: 10%;
    right: 5%;
}

/* SHAPE 5 */
.faq-bg-shapes span:nth-child(5) {
    width: 100px;
    height: 100px;
    background: #0f3b44;
    top: 50%;
    left: 50%;
}


/* FLOAT + ZOOM ANIMATION */
@keyframes floatZoom {
    0% {
        transform: translateY(0) scale(1);
    }
    100% {
        transform: translateY(-30px) scale(1.15);
    }
}


/* MAKE CONTENT ABOVE SHAPES */
.faq-section .container {
    position: relative;
    z-index: 2;
}

/* ================= FOOTER ================= */
.main-footer {
    background: #0f3b44;
    color: #fff;
    margin-top: 60px;
}

/* TOP LINE */
.footer-top-line {
    height: 4px;
    background: linear-gradient(90deg, #d4af37, #0f3b44, #d4af37);
}


/* GRID */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 50px 0;
}


/* LOGO */
.footer-logo {
    width: 140px;
    border-radius: 10px;
    margin-bottom: 15px;

    background: #ffffff;   /* WHITE BOX */
    padding: 8px;
}

/* SOCIAL */
.social-icons a {
    display: inline-flex;
    width: 38px;
    height: 38px;
    background: #ffffff;
    color: #0f3b44;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 10px;
    transition: 0.3s;
  text-decoration: none;
}

.social-icons a:hover {
    background: #d4af37;
    color: #fff;
}


/* HEADINGS */
.footer-col h4 {
    margin-bottom: 15px;
    color: #d4af37;
}

/* TEXT */
.footer-col p {
    font-size: 14px;
    line-height: 1.6;
}

/* LINKS */
.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #d4af37;
    padding-left: 5px;
}


/* ================= BOTTOM ================= */
.footer-bottom {
    text-align: center;
    padding: 15px;
    background: #0c2d34;
    font-size: 14px;
}


/* ACP LINK SPECIAL EFFECT */
.acp-link {
    color: #0f3b44;
    text-decoration: none;

    background: #ffffff;   /* ALWAYS WHITE BOX */
    padding: 4px 10px;
    border-radius: 6px;

    display: inline-block;
    transition: 0.3s;
}

/* HOVER EFFECT */
.acp-link:hover {
    background: #d4af37;
    color: #fff;
}



/* ================= MOBILE ================= */
@media (max-width: 768px) {

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

}


/* ================= FEATURED ================= */
.featured-section {
    padding: 70px 0;
    background: #ffffff;
}
/* SECTION */
.featured-section {
    padding: 70px 0;
    background: #ffffff;
}

/* HEADER */
.section-header h2 {
    font-size: 32px;
    color: #0f3b44;
    margin-bottom: 8px;
}

.section-header p {
    color: #666;
    margin-bottom: 40px;
}
/* GRID */
.featured-grid {
   display: grid;
    grid-template-columns: repeat(4, 220px); /* FIXED WIDTH */
    justify-content: center; /* CENTER GRID */
    gap: 25px;
}

/* CARD */
.product-card {
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
}

/* IMAGE BOX */
   .img-box {
    position: relative;
    width: 100%;
    height: 300px;   /* INCREASED HEIGHT */
    border-radius: 12px;
    overflow: hidden;
    background: transparent;
}

/* BOTH IMAGES FULL OVERLAY */
.img-box img {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;
    object-fit: cover;
 pointer-events: none;
    transition: opacity 0.5s ease-in-out, transform 0.5s;
}

/* DEFAULT IMAGE */
.img1 {
    opacity: 1;
    z-index: 1;
}

/* HOVER IMAGE */
.img2 {
    opacity: 0;
    z-index: 2;
}

/* HOVER EFFECT */
.product-card:hover .img1 {
    opacity: 0;
}

.product-card:hover .img2 {
    opacity: 1;
}

/* ZOOM */
.product-card:hover .img-box img {
    transform: scale(1.08);
}


/* PRICE */
.price-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #d4af37;
    color: #fff;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    z-index: 3;
}

/* WISHLIST */
.wishlist {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ffffff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0f3b44;
    font-size: 14px;
    z-index: 3;
    transition: 0.3s;
}

.wishlist:hover {
    background: #d4af37;
    color: #fff;
}

/* ADD TO CART BUTTON */
.cart-btn {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    background: #0f3b44;
    color: #fff;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 13px;
    transition: 0.4s;
}

.cart-btn1{
    padding:10px 16px;
    background:#0f3b44;
    color:#fff;
    border:none;
    border-radius:8px;
    cursor:pointer;
    margin-top:10px;
    transition:0.3s;
}

.cart-btn1:hover{
    background:#d4af37;
    color:#000;
}

/* SHOW ON HOVER */
.product-card:hover .cart-btn {
    bottom: 15px;
}

/* TITLE */
.product-card h4 {
    margin-top: 14px;
    font-size: 16px;
    color: #0f3b44;
}

.product-card p {
    font-size: 13px;
    color: #666;
    margin-top: 5px;
}

/* HOVER LIFT */
.product-card:hover {
    transform: translateY(-6px);
}

/* ================= MOBILE ================= */
@media (max-width: 992px) {
    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .featured-grid {
        grid-template-columns: 1fr;
    }

    .img-box {
        height: 220px;
    }
}

@media (max-width: 992px) {
    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .featured-grid {
        grid-template-columns: 1fr;
    }

    .img-box {
        height: 240px;
    }
}

/* ================= PRODUCT MODAL ================= */

.product-modal{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.75);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:9999;
    padding:20px;
}

.product-modal-content{
    width:1100px;
    max-width:100%;
    max-height:90vh;
    overflow-y:auto;
    background:#fff;
    border-radius:20px;
    padding:25px;
    position:relative;
}

.product-modal-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
}

/* LEFT */

.main-modal-image{
    width:100%;
    height:520px;
    object-fit:cover;
    border-radius:16px;
}

.modal-gallery{
    display:flex;
    gap:12px;
    margin-top:15px;
    overflow-x:auto;
}

.modal-gallery img{
    width:90px;
    height:90px;
    object-fit:cover;
    border-radius:12px;
    cursor:pointer;
    border:2px solid transparent;
    transition:0.3s;
}

.modal-gallery img:hover{
    border-color:#0f3b44;
}

/* RIGHT */

.modal-right h2{
    font-size:32px;
    color:#0f3b44;
    margin-bottom:15px;
}

.modal-price{
    font-size:28px;
    color:#d4af37;
    font-weight:700;
    margin-bottom:20px;
}

.modal-right p{
    color:#555;
    line-height:32px;
    font-size:15px;
}

/* BUTTONS */

.modal-btns{
    margin-top:30px;
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.wishlist-btn-modal{
    background:#f2f2f2;
    border:none;
    padding:14px 30px;
    border-radius:40px;
    cursor:pointer;
    font-size:15px;
    transition:0.3s;
}

.wishlist-btn-modal:hover{
    background:#ddd;
}

.cart-btn-modal{
    background:#0f3b44;
    color:#fff;
    border:none;
    padding:14px 35px;
    border-radius:40px;
    cursor:pointer;
    font-size:15px;
    transition:0.3s;
}

.cart-btn-modal:hover{
    background:#d4af37;
    color:#000;
}

/* CLOSE */

.close-modal{
    position:absolute;
    top:15px;
    right:20px;
    font-size:34px;
    cursor:pointer;
    color:#000;
}

/* MOBILE */

@media(max-width:768px){

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

    .main-modal-image{
        height:320px;
    }

    .modal-right h2{
        font-size:24px;
    }

    .modal-price{
        font-size:24px;
    }

    .modal-right p{
        line-height:28px;
    }

    .modal-gallery img{
        width:70px;
        height:70px;
    }
}