/* Base Variables */
:root {
    --primary-color: #e63946;
    /* Vibrant Red */
    --secondary-color: #1d3557;
    /* Deep Blue/Black */
    --text-color: #333333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --black: #000000;
    --gray: #6c757d;
    --border-radius: 8px;
    --transition: all 0.3s ease;
    --font-main: 'Geom', sans-serif;
    --font-heading: 'Fugaz One', cursive;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Custom Page Loader */
#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 99999;
    background-color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#loader-wrapper.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.loader-wheel {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s infinite linear;
}

.loader-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--secondary-color);
    letter-spacing: 1px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Reset & Global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #c92a37;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 57, 70, 0.3);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--black);
}

.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 10px;
}

.section-line {
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 0 auto 20px;
}

.text-center {
    text-align: center;
}

/* Announcement Bar */
.announcement-bar {
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 8px 0;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Header */
.header {
    background-color: rgba(255, 255, 255, 0.85);
    /* Semi-transparent */
    backdrop-filter: blur(12px);
    /* Frosted glass effect */
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    /* Use Fugaz One */
    font-size: 2rem;
    font-weight: 400;
    /* Fugaz works best at 400 */
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo span {
    color: var(--primary-color);
}

.nav-list {
    display: flex;
    gap: 10px;
    /* Reduced gap for pills */
    align-items: center;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-color);
    padding: 8px 16px;
    border-radius: 20px;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
    background-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
}

/* Remove old underline effect */
.nav-link::after {
    display: none;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lang-switch {
    font-weight: 600;
    cursor: pointer;
    padding: 5px 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.85rem;
    transition: var(--transition);
}

.lang-switch:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
}


/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    /* Full screen hero */
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Center horizontally */
    color: var(--white);
    overflow: hidden;
    text-align: center;
    /* Center text */
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: top;
    z-index: -2;
    transform: scale(1.05);
    /* Baseline zoom */
    transition: transform 10s ease;
    /* Slow zoom potential */
}

/* Enhanced Gradient Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.7) 100%);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 40px;
    /* Glassmorphism Panel */
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.hero-title {
    font-size: 4.5rem;
    /* Larger title */
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    /* Text shadow for depth */
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

.hero-description {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    /* Center buttons */
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
    opacity: 0;
}

.hero-buttons .btn {
    padding: 15px 35px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .hero-content {
        padding: 20px;
        background: transparent;
        /* Remove glass box on small mobile for space */
        backdrop-filter: none;
        box-shadow: none;
        border: none;
    }

    .hero-buttons {
        flex-direction: column;
    }
}



/* Services */
.services {
    background-color: var(--light-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-card p {
    color: var(--gray);
    margin-bottom: 20px;
}

.link-arrow {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--primary-color);
}

.link-arrow i {
    transition: var(--transition);
}

.service-card:hover .link-arrow i {
    transform: translateX(5px);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    left: -20px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 20px 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 20px rgba(230, 57, 70, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.badg-num {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.badg-text {
    font-size: 0.9rem;
    font-weight: 500;
}

.features-list {
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.features-list li i {
    color: var(--primary-color);
}

.mt-4 {
    margin-top: 1.5rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

/* Footer */
.footer {
    background-color: #111;
    color: #eee;
    padding: 80px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    color: var(--white);
    display: inline-block;
    margin-bottom: 20px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #aaa;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #aaa;
}

.social-links {
    margin-top: 25px;
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #777;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .experience-badge {
        left: 20px;
    }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: var(--white);
        padding: 30px 20px;
        /* More padding */
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        flex-direction: column;
        border-top: 1px solid #eee;
    }

    .nav.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 20px;
        /* Restore gap for mobile list */
        width: 100%;
        text-align: center;
    }

    .nav-link {
        display: block;
        /* Full width tap area */
        font-size: 1.1rem;
    }

    .mobile-toggle {
        display: block;
        order: 3;
        /* Ensure it's on the right */
        font-size: 1.8rem;
    }

    .header-actions {
        /* On mobile, we might want to hide only the desktop specific actions or restyle them */
        /* For now, let's keep the Cart visible but maybe hide the desktop Contact button if we add it to menu */
        display: flex;
        gap: 10px;
    }

    .header-actions .contact-btn,
    .header-actions .lang-switch {
        display: none;
        /* Hide desktop extras on mobile header */
    }

    /* Add Contact to mobile menu manually via JS or duplicate link if not present */
    /* Since we removed it from nav-list, users won't see Contact in menu. 
       We should probably un-hide the contact button or ensure it's accessible.
       Let's keep the header Contact button visible but smaller? 
       Or better: Re-add Contact to nav-list for mobile only? 
       For this step, let's just make the header cleaner. */

    .hero-title {
        font-size: 2.2rem;
        /* responsive size */
    }

    .hero-content {
        padding: 20px;
        /* Mobile specific adjustments handled in hero block */
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-info li {
        justify-content: center;
        /* Center contact info in footer */
    }

    .footer-logo {
        margin: 0 auto 20px;
    }

    .social-links {
        justify-content: center;
    }
}

/* Gallery Section */
.gallery {
    padding-bottom: 80px;
    overflow: hidden;
    /* Prevent horizontal page scroll */
}

.gallery-grid {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    margin-top: 40px;
    padding-bottom: 20px;
    /* Space for shadow */
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    /* Smooth scrolling on iOS */
    scrollbar-width: none;
    /* Hide scrollbar Firefox */
}

.gallery-grid::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar Chrome/Safari */
}

.gallery-item {
    flex: 0 0 300px;
    /* Fixed width */
    scroll-snap-align: start;
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 400px;
    /* Taller images for better impact */
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-icon {
    font-size: 2rem;
    color: var(--white);
    transform: translateY(20px);
    transition: var(--transition);
}

.gallery-item:hover .gallery-icon {
    transform: translateY(0);
}

/* Gallery Controls */
.gallery-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.scroll-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

.scroll-left {
    left: 10px;
}

.scroll-right {
    right: 10px;
}

@media (max-width: 768px) {

    /* .scroll-btn { display: none; } - Keeping buttons visible for better control */
    .scroll-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        background: rgba(255, 255, 255, 0.8);
    }

    .scroll-left {
        left: 5px;
    }

    .scroll-right {
        right: 5px;
    }
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.lightbox.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
}

.lightbox-img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: var(--white);
    font-size: 2.5rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 2001;
    /* Ensure above image */
}

.lightbox-close:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 3rem;
    cursor: pointer;
    transition: var(--transition);
    padding: 20px;
    z-index: 2001;
}

.lightbox-nav:hover {
    color: var(--white);
    background: rgba(0, 0, 0, 0.2);
    border-radius: 5px;
}

.lb-prev {
    left: 20px;
}

.lb-next {
    right: 20px;
}

@media (max-width: 768px) {
    .lightbox-nav {
        font-size: 2rem;
        padding: 10px;
    }

    .lb-prev {
        left: 5px;
    }

    .lb-next {
        right: 5px;
    }

    .lightbox-close {
        top: 20px;
        right: 20px;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Magic Star Button - Adapted from Uiverse.io */
/* Magic Star Button - PRO Applied */
.btn-primary {
    position: relative;
    padding: 15px 15px;
    background: var(--primary-color);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    box-shadow: 0px 0px 10px 0px rgba(230, 57, 70, 0.5);
    border-radius: 100px;
    border: none;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    overflow: visible;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
}

.btn-primary .star-1,
.btn-primary .star-2,
.btn-primary .star-3,
.btn-primary .star-4,
.btn-primary .star-5,
.btn-primary .star-6 {
    position: absolute;
    z-index: -5;
    width: auto;
    height: auto;
}

.star-1 {
    top: 20%;
    left: 20%;
    width: 25px;
}

.star-2 {
    top: 45%;
    left: 45%;
    width: 15px;
    transition: all 0.8s cubic-bezier(0, 0.4, 0, 1.01);
}

.star-3 {
    top: 40%;
    left: 40%;
    width: 5px;
    transition: all 0.8s cubic-bezier(0, 0.4, 0, 1.01);
}

.star-4 {
    top: 20%;
    left: 40%;
    width: 8px;
    transition: all 0.8s cubic-bezier(0, 0.4, 0, 1.01);
}

.star-5 {
    top: 25%;
    left: 45%;
    width: 15px;
    transition: all 0.8s cubic-bezier(0, 0.4, 0, 1.01);
}

.star-6 {
    top: 5%;
    left: 50%;
    width: 5px;
    transition: all 0.8s cubic-bezier(0, 0.4, 0, 1.01);
}

.btn-primary:hover {
    background: var(--white);
    color: var(--primary-color);
    box-shadow: 0 0 30px rgba(230, 57, 70, 0.5);
    transform: translateY(-2px);
}

.btn-primary:hover .star-1 {
    top: -20%;
    left: -20%;
    width: 20px;
    filter: drop-shadow(0 0 10px #e63946);
    z-index: 2;
}

.btn-primary:hover .star-2 {
    top: 35%;
    left: -25%;
    width: 15px;
    filter: drop-shadow(0 0 10px #e63946);
    z-index: 2;
}

.btn-primary:hover .star-3 {
    top: 80%;
    left: -10%;
    width: 10px;
    filter: drop-shadow(0 0 10px #e63946);
    z-index: 2;
}

.btn-primary:hover .star-4 {
    top: -25%;
    left: 105%;
    width: 20px;
    filter: drop-shadow(0 0 10px #e63946);
    z-index: 2;
}

.btn-primary:hover .star-5 {
    top: 30%;
    left: 115%;
    width: 15px;
    filter: drop-shadow(0 0 10px #e63946);
    z-index: 2;
}

.btn-primary:hover .star-6 {
    top: 80%;
    left: 105%;
    width: 10px;
    filter: drop-shadow(0 0 10px #e63946);
    z-index: 2;
}

.btn-primary svg {
    fill: var(--white);
    transition: fill 0.3s;
}

.btn-primary:hover svg {
    fill: var(--primary-color);
}

.fil0 {
    fill: inherit;
    /* inherit from parent svg fill */
}

/* Reviews Section */
.reviews-section {
    background-color: #f8f9fa;
    /* Light gray to stand out */
    padding: 80px 0;
}

/* Reviews Scrollable Container */
.reviews-wrapper {
    position: relative;
    padding: 20px 0;
}

.reviews-scroll-container {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 20px 5px;
    /* Padding for shadow */
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox */
}

.reviews-scroll-container::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.review-card {
    min-width: 300px;
    /* Fixed width for horizontal scroll */
    max-width: 350px;
    flex: 0 0 auto;
    /* Prevent shrinking */
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    height: auto;
    border: 1px solid #eee;
}

.reviews-scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    color: var(--primary-color);
    transition: var(--transition);
}

.reviews-scroll-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

.r-prev {
    left: -20px;
}

.r-next {
    right: -20px;
}

@media (max-width: 768px) {
    .r-prev {
        left: -10px;
    }

    .r-next {
        right: -10px;
    }
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    left: 30px;
    /* Left side to distinguish from Cart */
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: transform 0.3s;
    text-decoration: none;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    color: white;
}

@media (max-width: 768px) {
    .header-cart-btn {
        display: none !important;
    }
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.review-author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #ddd;
    /* Placeholder color */
    object-fit: cover;
}

.review-info h4 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
}

.review-stars {
    color: #fbbc04;
    /* Google Star Color */
    font-size: 0.9rem;
}

.review-date {
    font-size: 0.8rem;
    color: #777;
    margin-top: 2px;
    display: block;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444;
    font-style: italic;
}

.google-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    transition: var(--transition);
}

.google-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.google-icon {
    width: 24px;
    height: 24px;
}