/* TOP BAR */
.top-bar {
    background: #F36F21;
    width: 100%;
    overflow: hidden;
}

.scroll-container {
    width: 100%;
    overflow: hidden;
}

.scroll-text {
    display: inline-block;
    white-space: nowrap;
    padding-left: 100%;
    /* start from right side */
    animation: full-scroll 25s linear infinite;
}

@keyframes full-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* NAVBAR */
.main-navbar {
    background-color: #f8f6f2;
    padding: 12px 0;
}

.brand-box {
    gap: 10px;
}

/* LOGO */
.brand-logo {
    height: 60px;
    /* Increased size */
    width: auto;
}

/* BRAND NAME */
.brand-name {
    font-size: 24px;
    font-weight: 700;
    color: #1c2b39;
    letter-spacing: 1px;
}

/* HOVER EFFECT */
.brand-name:hover {
    color: #d4a017;
}

/* NAV LINKS */
.navbar-nav .nav-link {
    color: #1c2b39;
    font-size: 15px;
    font-weight: 500;
    margin: 0 10px;
    transition: 0.3s;
}

/* HOVER EFFECT */
.navbar-nav .nav-link:hover {
    color: #d4a017;
}

/* DROPDOWN */
.dropdown-menu {
    border-radius: 8px;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* ICONS */
.nav-icons i {
    font-size: 18px;
    cursor: pointer;
    color: #1c2b39;
    transition: 0.3s;
}

.nav-icons i:hover {
    color: #d4a017;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .navbar-nav {
        text-align: center;
    }
}

/* HERO SECTION */
.hero-section {
    background-color: #f8f6f2;
    padding: 60px 0;
}

/* RATING */
/* IMPORT PREMIUM FONT */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Poppins:wght@300;400;500&display=swap');


/* RATING */
.rating {
    font-size: 16px;
    color: #F89A3C;
    margin-bottom: 15px;
}

.rating span {
    color: #333;
    margin-left: 10px;
    font-family: 'Poppins', sans-serif;
}

.stars {
    color: #F89A3C;
    font-size: 20px;
}


/* MAIN HEADING - PREMIUM TYPOGRAPHY */
.main-heading {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 800;
    color: #1c2b39;
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #1c2b39, #F36F21);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* SUB TEXT */
.sub-text {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

/* BOLD WORD */
.sub-text strong {
    font-weight: 600;
    color: #000;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .main-heading {
        font-size: 28px;
        letter-spacing: 1px;
        line-height: 1.2;
    }

    .sub-text {
        font-size: 14px;
    }

    .hero-section {
        padding: 40px 0;
        text-align: center;
    }
}

/* BUTTON - PREMIUM STYLE */
.shop-btn {
    background: linear-gradient(135deg, #F36F21, #ff8c42);
    color: #fff;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    box-shadow: 0 10px 20px rgba(243, 111, 33, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
    text-decoration: none;
}

.shop-btn:hover {
    background: linear-gradient(135deg, #ff8c42, #F36F21);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(243, 111, 33, 0.4);
    color: #fff;
}

/* IMAGE GRID */
.image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    transform: rotate(-8deg);
}

/* IMAGE STYLE */
.img-box {
    width: 100%;
    border-radius: 10px;
    background: white;
    padding: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .image-grid {
        grid-template-columns: repeat(2, 1fr);
        transform: rotate(-3deg);
        /* Slight rotation for style, but not excessive */
        margin-top: 30px;
    }
}

@media (max-width: 480px) {
    .image-grid {
        grid-template-columns: 1fr;
        transform: rotate(0deg);
        gap: 10px;
    }

    .img-box {
        max-width: 250px;
        margin: 0 auto;
    }
}

/* SECTION BACKGROUND */
.category-section {
    background-color: #f8f6f2;
}

/* CATEGORY ITEM */
.category-item {
    transition: 0.3s;
}

/* IMAGE STYLE */
.category-img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
    padding: 6px;
    border: 2px solid #d4a017;
    transition: 0.3s;
}

/* TEXT */
.category-item p {
    margin-top: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #1c2b39;
}

/* HOVER EFFECT */
.category-item:hover .category-img {
    transform: scale(1.08);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .category-img {
        width: 80px;
        height: 80px;
    }

    .category-item p {
        font-size: 13px;
    }
}

/* Testimonial Section */
.testimonial-section {
    background-color: #f8f6f2;
}

/* TITLE */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: #1c2b39;
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 50px;
    text-align: center;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #F36F21;
    border-radius: 2px;
}

/* OVERALL RATING */
.overall-rating {
    color: #f5c518;
    font-size: 18px;
}

.overall-rating p {
    color: #666;
    font-size: 14px;
    margin-top: 5px;
}

/* SCROLL ON SMALL DEVICES */
.testimonial-row {
    overflow-x: auto;
}

/* STARS */
.stars {
    color: #f5c518;
    font-size: 18px;
    margin-bottom: 10px;
}

.testimonial-box {
    padding: 20px;
    min-height: 200px;
}

/* TITLE */
.testimonial-box h5 {
    font-weight: 600;
    font-size: 16px;
    color: #000;
}

/* TEXT */
.testimonial-box p {
    font-size: 14px;
    color: #444;
    line-height: 1.6;
}

/* AUTHOR */
.author {
    display: block;
    margin-top: 10px;
    font-size: 13px;
    color: #777;
}

/* ARROW */
.arrow {
    font-size: 40px;
    color: #d4a017;
    font-weight: bold;
    cursor: pointer;
}

/* Position the arrows to the sides of the content */
.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    opacity: 1;
    /* Make them always visible */
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    display: none;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .section-title {
        font-size: 22px;
    }
}

/* Product Section */
.product-section h2 {
    letter-spacing: 1px;
}

/* Product Card Refresh */
.product-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    padding-bottom: 20px;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.product-img {
    height: 380px;
    overflow: hidden;
    position: relative;
    border-radius: 20px 20px 0 0;
}

.product-img img {
    transition: transform 0.8s cubic-bezier(0.2, 0, 0.2, 1);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card:hover .product-img img {
    transform: scale(1.1);
}

.product-code {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    margin-top: 15px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-name {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: #1c2b39;
    text-align: center;
    margin: 5px 15px;
}

.product-price {
    font-size: 20px;
    font-weight: 800;
    color: #F36F21;
    text-align: center;
}

.add-cart-btn {
    background-color: #F89A3C;
    border: none;
    color: #fff;
    font-weight: 500;
    box-shadow: 0 4px 10px rgba(248, 154, 60, 0.3);

}

.add-cart-btn:hover {
    background-color: #e6892f;
}

/* Landscape Support */
.product-card.landscape .product-img {
    height: 220px;
    /* Shorter for landscape */
}

@media (max-width: 768px) {
    .product-card.landscape .product-img {
        height: 160px;
    }
}

/* OVERLAY FOR ICONS */
.product-img {
    position: relative;
    overflow: hidden;
}

.product-overlay {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 15px;
    transition: all 0.4s ease;
    opacity: 0;
    pointer-events: none;
}

.product-card:hover .product-overlay {
    bottom: 0;
    opacity: 1;
}

/* ICON CONTAINER - REMOVING OLD BELOW IMAGE */
.product-icons {
    display: none;
}

/* ICON STYLE */
.icon-btn {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 20px;
    color: #1c2b39;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
}

/* HOVER */
.icon-btn:hover {
    background: #F36F21;
    color: #fff;
    transform: scale(1.2) rotate(10deg);
}

.wishlist-btn.active {
    background: #ff4757 !important;
    color: #fff !important;
}

.service-section {
    background: #f5f5f5;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.service-box {
    padding: 25px 15px;
    border-right: 1px solid #ddd;
    transition: 0.3s;
}

.service-box:last-child {
    border-right: none;
}

@media (max-width: 768px) {
    .service-box {
        border-right: none;
        border-bottom: 1px solid #ddd;
    }

    .service-box:last-child {
        border-bottom: none;
    }
}

.service-box i {
    font-size: 35px;
    color: #f57c00;
    margin-bottom: 10px;
    display: block;
}

.service-box h6 {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 5px;
}

.service-box p {
    font-size: 16px;
    color: #777;
    margin: 0;
}

/* Hover Effect */
.service-box:hover {
    background: #fff;
}

.footer-section {
    background: #3f3f3f;
}

.contact-section {
    background: #f8f9fa;
}

/* Card */
.contact-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 10px;
    transition: 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* Hover */
.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Icon */
.icon-box {
    width: 70px;
    height: 70px;
    background: #ff6a00;
    color: #fff;
    font-size: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

/* Text */
.contact-card h5 {
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-card p {
    font-size: 14px;
    color: #777;
    margin: 0;
}

/* Footer */
.footer-title {
    color: #ff8c00;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-section p {
    color: #fff;
    font-size: 14px;
}


.footer-section a {
    color: #fff;
    /* white color */
    text-decoration: none;
    /* remove underline */
}

.footer-section a:hover {
    color: #F89A3C;
    /* your brand orange on hover */
}

/* List */
.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    color: #fff;
    margin-bottom: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.footer-section ul li a {
    transition: 0.3s;
}

.footer-section ul li a:hover {
    padding-left: 5px;
    /* small slide effect */
}

.footer-section ul li::before {
    content: ">";
    margin-right: 8px;
    color: #ff8c00;
}

.footer-section ul li:hover {
    color: #fff;
}

/* Newsletter */
.newsletter-box {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    margin-top: 15px;
}

.newsletter-box input {
    border: none;
    padding: 10px 15px;
    width: 70%;
    outline: none;
}

.newsletter-box button {
    border: none;
    background: #ff8c00;
    color: #fff;
    padding: 10px 20px;
}


/* add to cart page */
.cart-box,
.summary-box {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
}

.qty-btn {
    width: 30px;
    height: 30px;
    text-align: center;
}

/* checkout page */

.checkout-box {
    background: #fff;
    padding: 20px;
    border-radius: 10px
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    font-size: 24px;
    padding: 15px;
    border-radius: 50%;
    text-align: center;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.whatsapp-float:hover {
    background: #1ebe5d;
    color: white;
}

/* Contact Us Page */
/* Page Title */
.contact-header {
    background: linear-gradient(to right, #ff6a00, #ff8c00);
    color: white;
    padding: 60px 0;
    text-align: center;
}

/* Contact Section */
.contact-section {
    padding: 30px 0;
}

/* Form */
.contact-form {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

/* Contact Info */
.contact-info {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
}

.contact-info i {
    font-size: 22px;
    color: #ff6a00;
    margin-right: 10px;
}

/* Button */
.btn-contact {
    background: #ff6a00;
    color: #fff;
}

.btn-contact:hover {
    background: #e65c00;
}

/* Map */
.map iframe {
    width: 100%;
    height: 300px;
    border-radius: 10px;
}

/* About Us Page */

.about-image-section {
    background: url("images/banner.jpg") center center / cover no-repeat;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-box h3 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .about-box h3 {
        font-size: 28px;
    }

    .about-box p {
        font-size: 16px;
    }
}


.about-box p {
    color: #555;
    line-height: 1.8;
    font-size: 18px;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

/* ICON BOX */
.icon-box {
    width: 80px;
    height: 80px;
    background: #F89A3C;
    color: #fff;
    /* default white */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 30px;
    transition: 0.3s;
}

.about-box:hover .icon-box {
    background: #e6892f;
    /* darker orange */
    color: #fff;
    /* stays white */
    transform: scale(1.1);
}

.offer-card {
    padding: 30px;
    border-radius: 15px;
    background: #fff;
    transition: 0.3s;
}

.offer-card i {
    font-size: 35px;
    color: #F89A3C;
    margin-bottom: 15px;
}

.offer-card:hover {
    background: #F89A3C;
    color: #fff;
}

.offer-card:hover i {
    color: #fff;
}

.our-story p {
    color: #555;
    line-height: 1.8;
    font-size: 16px;
}

.stats-section {
    background: linear-gradient(135deg, #2F7FA3, #F26A21);
}

.stat-card {
    background: white;
    border-radius: 15px;
    padding: 30px 15px;
    transition: 0.3s;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stat-card h2 {
    font-size: 28px;
    font-weight: bold;
    color: #F26A21;

}

.stat-card p {
    margin: 0;
    color: #555;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* Privacy Policy Page */
/* HEADER */
.policy-header {
    background: linear-gradient(135deg, #F89A3C, #ffb366);
    color: #fff;
    padding: 30px 0;
    text-align: center;
}

.policy-header h1 {
    font-weight: 700;
}

/* CONTENT BOX */
.policy-box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    margin-top: -40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

/* HEADINGS */
.policy-box h4 {
    margin-top: 25px;
    font-weight: 600;
    color: #1c2b39;
}

/* TEXT */
.policy-box p {
    color: #555;
    line-height: 1.8;
}


/* Terms & Conditions Page */
.terms-header {
    background: linear-gradient(135deg, #F89A3C, #ffb366);
    color: #fff;
    padding: 30px 0;
    text-align: center;
}

.terms-header h1 {
    font-weight: 700;
}

/* CONTENT BOX */
.terms-box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    margin-top: -40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

/* HEADINGS */
.terms-box h4 {
    margin-top: 25px;
    font-weight: 600;
    color: #1c2b39;
}

/* TEXT */
.terms-box p {
    color: #555;
    line-height: 1.8;
}

/* AUTH PAGES */
.auth-section {
    background-color: #f8f6f2;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.auth-card {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 450px;
    margin: auto;
}

.auth-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: #1c2b39;
    margin-bottom: 30px;
    text-align: center;
}

.auth-form .form-label {
    font-weight: 500;
    color: #555;
}

.auth-form .form-control {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.auth-btn {
    background-color: #F36F21;
    color: #fff;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    width: 100%;
    border: none;
    margin-top: 20px;
    transition: 0.3s;
}

.auth-btn:hover {
    background-color: #e65c00;
}

.auth-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #666;
}

.auth-footer a {
    color: #F36F21;
    font-weight: 600;
    text-decoration: none;
}

.eye-toggle {
    position: absolute;
    top: 70%;
    right: 15px;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    color: #290202;
}

.eye-toggle:hover {
    color: #000;
}

/* Address Page */
.form-control {
    border-radius: 8px;
    padding: 10px;
    max-width: 800px;
}

.card {
    border: none;
}

.btn-warning {
    background-color: #ffd814;
    border: none;
}

.form-select {
    max-width: 500px;
}

.form-check {
    cursor: pointer;
}

/* Address Card */
.address-card {
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.25s ease;
    margin-bottom: 15px;
}

/* Hover effect */
.address-card:hover {
    border-color: #007185;
    background: #f8fcff;
}

/* Selected state */
.address-card.active {
    border: 2px solid #007185;
    background: #f0fbff;
}

/* Top row */
.address-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Default badge */
.default-badge {
    background: #198754;
    color: #fff;
    padding: 2px 8px;
    border-radius: 8px;
    font-size: 12px;
}

/* Product Details Page */
.product-main-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 12px;
}

.product-title {
    font-weight: 600;
}

.price {
    font-size: 28px;
}

.buy-box {
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 10px;
    background: #fafafa;
}

.review-box {
    background: #f5f5f5;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 8px;
}

.product-features {
    padding-left: 15px;
}

.product-features li {
    margin-bottom: 5px;
}

.btn-orange {
    background-color: #ff9900;
    color: white;
}

.rating-bar {
    display: flex;
    align-items: center;
    margin-bottom: 6px;
    gap: 10px;
}

.rating-bar span {
    width: 60px;
    font-size: 14px;
}

.bar {
    flex: 1;
    height: 8px;
    background: #ddd;
    border-radius: 5px;
    overflow: hidden;
}

.bar div {
    height: 100%;
    background: #ff9900;
}

.review-box {
    background: #f8f8f8;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 10px;
}

.review-tags span {
    display: inline-block;
    background: #eef6ff;
    padding: 6px 10px;
    border-radius: 20px;
    margin: 5px;
    font-size: 13px;
}

.review-form-container {
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 10px;
    background: #fafafa;
}

.star-rating span {
    font-size: 24px;
    cursor: pointer;
    color: #ccc;
}

.star-rating span.active {
    color: gold;
}

/* Track Order Page */
.timeline {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    position: relative;
}

.timeline::before {
    content: "";
    position: absolute;
    top: 12px;
    left: 0;
    right: 0;
    height: 3px;
    background: #ddd;
    z-index: 0;
}

.step {
    position: relative;
    background: #ddd;
    padding: 10px 15px;
    border-radius: 20px;
    font-size: 14px;
    z-index: 1;
}

.step.active {
    background: #28a745;
    color: white;
}

.product-row img {
    width: 85px;
    height: 85px;
    object-fit: cover;
}

@media(max-width:768px) {
    .timeline {
        flex-direction: column;
        gap: 15px;
    }

    .timeline::before {
        display: none;
    }

    .step {
        width: 100%;
    }
}

.review-box {
    background: #f8f9fa;
    border-radius: 10px;
    transition: 0.2s;
}

.review-box:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}