.bg-white {
    background-color: #fff;
}

.text-center {
    text-align: center;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-sub {
    color: var(--gray);
    margin-bottom: 40px;
}

.bottom-bar {
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    width: 100%;
}

.bottom-bar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #C58F58;
}

.bottom-bar.center::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    color: #555;
    margin-bottom: 15px;
}

.title-bottom-space {
    margin-bottom: 30px;
}

.page-top-space {
    padding-top: 50px;
}



/* =========================================
   4. HERO BANNER (UPDATED)
   ========================================= */
.banner-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Using Grid to stack images on top of each other */
.banner-slider {
    display: grid;
    grid-template-areas: "stack";
}

.slide {
    grid-area: stack;
    position: relative;
    opacity: 0;
    transition: opacity .9s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

/* Image controls the height */
.slide img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    height: calc(100vh - 80px);
}

.slide .hero_phone {
    display: none;
}

/* Text Positioning (Left Aligned) */
.banner-content {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    color: white;
    z-index: 2;
    padding: 0 20px;
}

.banner-content h1,
.banner-content h2 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.6);
    margin-bottom: 10px;
    animation: slideUp 1s ease forwards;
    color: #fff;
}

.banner-content p {
    font-size: 18px;
    opacity: 0.9;
    animation: slideUp 1.2s ease forwards;
    max-width: 465px;
}

/* Banner Button Style */
.banner-btn {
    display: inline-block;
    margin-top: 45px;
    padding: 10px 20px;
    background-color: #956737;
    color: white;
    font-weight: 600;
    border-radius: 5px;
    font-size: 16px;
    transition: 0.3s ease;
    border: 2px solid #956737;
}

.banner-btn:hover {
    background-color: transparent;
    color: white;
    border-color: white;
}

.banner-btn i {
    margin-left: 8px;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Indicator (Right Side) */
.scroll-indicator a {
    position: absolute;
    bottom: 50px;
    left: 48px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    gap: 5px;
}

.scroll-text {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    writing-mode: vertical-rl;
    margin-bottom: 5px;
    opacity: 0.8;
    transform: rotate(180deg);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

/* Line Animation */
.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #C58F58;
    ;
    animation: scrollDown 2s infinite;
}

.scroll-indicator i {
    font-size: 14px;
    color: #C58F58;
    ;
    animation: bounce 2s infinite;
}

@keyframes scrollDown {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(100%);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-5px);
    }

    60% {
        transform: translateY(-3px);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .banner-content h2 {
        font-size: 26px;
    }

    .banner-content p {
        font-size: 14px;
    }

    .scroll-indicator {
        right: 20px;
        bottom: 20px;
    }

    .slide img {
        min-height: 250px;
        object-position: center;
    }
}


/* --- MARQUEE INFINITE SCROLL --- */
.marquee-container {
    background: #1a1a1a;
    color: white;
    padding: 12px 0;
    overflow: hidden;
    border-top: 3px solid #c58f58;
    display: flex;
    white-space: nowrap;
}

.marquee-text {
    animation: scroll 40s linear infinite;
    font-size: 15px;
    letter-spacing: 0.5px;
    padding-right: 50px;
    flex-shrink: 0;
}

/* Scroll Animation Logic */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}




/* ===============================
   TESTIMONIAL SLIDER
================================ */

.testimonial-section {
    padding-left: 30px;
    padding-right: 30px;
    display: none;
}

.testimonial-section .section-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.testimonial-section .section-subtitle {
    font-size: 15px;
    color: #666;
    margin-bottom: 40px;
}

.testimonialSwiper {
    width: 100%;
    padding: 40px 0;
    max-width: 1000px;
    margin: auto;
}

.testimonialSwiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.testimonialSwiper img {
    width: 100%;
    max-width: 420px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    background: #fff;
}

/* Navigation Arrows */
.testimonialSwiper .swiper-button-next,
.testimonialSwiper .swiper-button-prev {
    color: #1a1a1a;
}

.testimonialSwiper .swiper-button-next::after,
.testimonialSwiper .swiper-button-prev::after {
    font-size: 18px;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
    .testimonialSwiper img {
        max-width: 300px;
    }
}





/* =========================================
   5. PRODUCTS SECTION
   ========================================= */
.product-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 15px;
}

.view-btn {
    padding: 8px 12px;
    border: 1px solid #ddd;
    background: transparent;
    cursor: pointer;
    border-radius: 4px;
    color: #777;
    transition: 0.3s;
}

.view-btn.active {
    background: #1a1a1a;
    color: white;
    border-color: #1a1a1a;
}

.product-card {
    background: white;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: 0.4s;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    /*transform: translateY(-5px);*/
    border-color: #ddd;
}

/* Grid View Image (4:3 Ratio) */
.card-img-wrap {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #f9f9f9;
    position: relative;
}

.card-img-wrap img {
    transition: transform 0.6s ease;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card:hover .card-img-wrap img {
    transform: scale(1.1);
}

.card-info {
    padding: 18px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-name {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.short-desc {
    display: none;
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.price-box {
    margin-top: auto;
    margin-bottom: 15px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.regular-price {
    text-decoration: line-through;
    color: #aaa;
    font-size: 14px;
}

.offer-price {
    color: #1a1a1a;
    font-weight: 700;
    font-size: 18px;
}

.details-btn {
    width: 100%;
    padding: 10px 0;
    background: transparent;
    border: 1px solid #1a1a1a;
    color: #1a1a1a;
    font-weight: 600;
    text-align: center;
    border-radius: 4px;
    transition: 0.3s;
    font-size: 14px;
}

.details-btn:hover {
    background: #1a1a1a;
    color: white;
}

/* List View Specifics (1:1 Ratio) */
.product-container.list-view {
    grid-template-columns: repeat(2, 1fr);
}

.product-container.list-view .product-card {
    flex-direction: row;
    align-items: stretch;
    padding: 0;
}

.product-container.list-view .card-img-wrap {
    width: 40%;
    aspect-ratio: 1 / 1;
    border-radius: 0;
    flex-shrink: 0;
}

.product-container.list-view .card-info {
    width: 60%;
    padding: 25px;
    justify-content: center;
}

.product-container.list-view .short-desc {
    display: block;
    margin-top: 0;
}



.product-search {}

.product-search input {
    background: transparent;
    transition: .4s;
}



/* =========================================
   6. ABOUT US & WHY US
   ========================================= */

section#about {
    overflow: hidden;
}

.creative-about-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    margin: 0 auto;
    position: relative;
}

.about-image-side {
    flex: 1;
    position: relative;
    order: 1;
}

.about-image-side img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 20px 20px 0px rgba(197, 143, 88, 0.2);
    border: 2px solid white;
}

.about-text-side {
    flex: 1;
    padding-left: 20px;
    order: 2;
}

.about-text-side h3 {
    font-size: 18px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.about-text-side p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

/* Floating Badge */
.floating-badge {
    position: absolute;
    bottom: 30px;
    right: -30px;
    background: white;
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: float 3s ease-in-out infinite;
}

.floating-badge i {
    font-size: 24px;
    color: #C58F58;
}

.floating-badge span {
    font-weight: 700;
    font-size: 16px;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Why Us Grid */
.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-us-grid .why-content {
    padding-bottom: 30px;
}

.feature-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 500;
}

.feature-list li i {
    color: #C58F58;
    font-size: 20px;
}

.return-policy-box {
    background: #fdf6ec;
    padding: 18px;
    border-radius: 8px;
    border-left: 5px solid #C58F58;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-top: 30px;
}

.policy-icon {
    font-size: 18px;
    color: #C58F58;
}

.return-policy-box .policy-text {
    font-size: 14px;
    line-height: 1.6;
}

.why-image img {
    border-radius: 10px;
    box-shadow: 20px 20px 0 #eee;
}

/* =========================================
   7. CONTACT
   ========================================= */
.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    /* margin-bottom: 60px; */
}

.c-card {
    background: white;
    padding: 40px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    margin-top: 10px;
}

.c-card:hover {
    transform: translateY(-5px);
}

.c-card i {
    font-size: 30px;
    color: #555;
    margin-bottom: 20px;
}

.c-card h4 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.c-card p {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}

.dark-hook-box {
    background: #151515;
    color: white;
    padding: 60px 20px;
    border-radius: 10px;
}

.social-links-big {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 20px;
}

.social-links-big a {
    width: 40px;
    height: 40px;
    background: #f4f4f4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;

}

.social-links-big a:hover {
    background: #1a1a1a;
}

.social-links-big a i {
    font-size: 18px;
    margin: 0;
    color: #1a1a1a !important;
}

.social-links-big a:hover i {
    color: white !important;
}



/*Responsive*/

/* =========================================
   10. RESPONSIVE MEDIA QUERIES
   ========================================= */
@media (max-width: 1024px) {
    :root {
        --container-width: 95%;
    }

    .product-container {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .creative-about-wrapper {
        flex-direction: column-reverse;
        gap: 30px;
    }

    .about-image-side {
        order: 1;
    }

    .about-text-side {
        order: 2;
        padding-left: 0;
    }

    .banner-content h1,
    .banner-content h2 {
        font-size: 34px;
    }

    .banner-content p {
        font-size: 17px;
        max-width: 400px;
    }

    .divider-line {
        margin: 0 auto 25px auto;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        /* Tablet: 2 cols */
    }

    .process-grid {
        width: 100%;
    }


    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

}


@media (max-width: 900px) {
    .slide .hero_pc {
        display: none;
    }

    .slide .hero_phone {
        display: block;
    }

    .banner-content {
        display: none;
    }

    .slide img {
        object-fit: contain;
        height: auto;
    }
}


@media (max-width: 768px) {

    .container {
        padding: 0 15px;
        max-width: 100%;
    }

    .product-name {
        font-size: 16px;
        line-height: 1.3;
    }

    .details-btn {
        padding: 8px 0;
        font-size: 13px;
    }

    .product-header {
        margin-bottom: 16px;
    }

    .scroll-indicator a {
        display: none;
    }

    .nav-links,
    .desktop-call {
        display: none;
    }

    .mobile-icons {
        display: flex;
    }

    .section-title {
        font-size: 22px;
        margin-bottom: 0;
    }

    .section-title.centered::after {
        width: 40px;
        height: 2px;
    }

    .banner-text h2 {
        font-size: 24px;
    }

    .section-padding {
        padding: 70px 0;
    }

    .product-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    /* Mobile List View */
    .product-container.list-view {
        grid-template-columns: 1fr;
    }

    .product-container.list-view .card-img-wrap {
        width: 150px;
        aspect-ratio: 1/1;
    }

    .product-container.list-view .product-name {
        font-size: 15px;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .contact-cards-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .process-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .p-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .process-item h4 {
        font-size: 13px;
    }

    .process-item p {
        display: block;
        font-size: 11px;
    }

    .process-item {
        position: relative;
    }

    .process-item:not(:nth-child(3n))::after {
        content: '\f054';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        position: absolute;
        right: -12px;
        top: 20px;
        color: #ddd;
        font-size: 10px;
    }

    /* Small Chat Icon */
    .chat-toggle-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .chat-options {
        bottom: 65px;
    }

    .chat-option-btn {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    /* Full Width */

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .blog-thumb {
        height: 200px;
    }

    .blog-title {
        font-size: 18px;
    }

    .process-grid {
        width: 90%;
        gap: 30px 15px;
    }

    .short-desc {
        font-size: 12px;
        margin-bottom: 5px;
        line-height: 1.4;
    }

    .product-container.list-view .card-info {
        width: calc(100% - 150px);
        padding: 15px;
    }

    .product-search {
        width: calc(100% - 140px) !important;
        overflow: hidden;
    }

    .price-box {
        margin-bottom: 8px;
    }

    .floating-badge {
        right: -20px;
        padding: 10px 14px;
        border-radius: 10px;
    }

    .floating-badge span {
        font-size: 14px;
    }

    .floating-badge i {
        font-size: 20px;
    }

    .single-page-banner h1 {
        font-size: 28px;
    }


}



@media (max-width: 499px) {

    header.header-shrink .navbar {
        height: 60px;
    }

    .header-shrink .logo-text a img {
        width: 106px;
    }

    .banner-content h1,
    .banner-content h2 {
        font-size: 20px;
        display: inline-block;
    }

    .scroll-indicator {
        display: none;
    }

    .slide .hero_pc {
        display: block;
    }

    .slide .hero_phone {
        display: none;
    }

    .banner-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .banner-content p {
        display: none;
    }


    .slide img {
        object-fit: cover;
        height: auto;
        object-position: center center !important;
    }

    .banner-btn {
        margin-top: 10px;
        padding: 5px 8px;
        font-size: 12px;
    }

    .banner-content {

        top: 51%;
    }

    .banner-btn i {
        margin-left: 2px;
    }
}

@media (max-width: 499px) {

    .banner-content h1,
    .banner-content h2 {
        font-size: 20px;
    }

    .card-info {
        padding: 13px;
    }

    .details-btn {
        padding: 5px 0;
        font-size: 13px;
    }

    .product-card {
        border: 1px solid #95673747;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    }

    .offer-price {
        font-size: 16px;
    }

}


@media (max-width: 420px) {
    .slide img {
        object-position: -20px center !important;
    }

    .banner-content h1,
    .banner-content h2 {
        font-size: 19px;
    }
}
