/*
Theme Name: KZ Web Theme
Theme URI: https://grupokz.com.mx
Author: Antigravity
Author URI: https://example.com
Description: Un tema de WordPress personalizado para Grupo KZ, basado en su diseño web original.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: kz-web-theme
*/

/* Global Styles */
:root {
    --primary-color: #29224D;
    /* Brand Deep Purple */
    --secondary-color: #03723d;
    /* User Request: Updated Green */
    /* Brand Green */
    --accent-color: #4a3e7a;
    /* Lighter Purple for accents */
    --text-dark: #1a1a1a;
    --text-light: #f5f5f5;
    --background-light: #f4f6f8;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Roboto', sans-serif;
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--background-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #bf360c;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

/* Header & Top Bar */
.top-bar {
    background-color: #000000;
    /* User Request: Black background */
    color: var(--white);
    padding: 10px 0;
    font-size: 0.9rem;
}

.top-bar .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.phone-highlight {
    font-weight: 700;
    font-size: 1.1rem;
    color: #ffffff;
    /* User Request: White text */
    /* Make it pop */
    display: flex;
    align-items: center;
    gap: 8px;
    background: #03723d;
    /* User Request: Updated Green */
    /* User Request: Green R54 G116 B95 */
    padding: 5px 15px;
    border-radius: 50px;
}

.phone-highlight i {
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-5px);
    }

    60% {
        transform: translateY(-3px);
    }
}

.btn-custom-green {
    background-color: #03723d !important;
    color: #ffffff !important;
    border: none !important;
}

.btn-custom-green:hover {
    background-color: #2b5c4b !important;
}

.main-header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
    /* Increased from 80px to fit larger logo */
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-logo {
    max-height: 80px;
    /* Increased from 50px */
    width: auto;
}

.main-nav ul {
    display: flex;
    gap: 30px;
    align-items: center;
}

.main-nav a {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 1rem;
    position: relative;
    padding-bottom: 5px;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* Hero Section with Slider */
.hero {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-slides-container {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 2.0s cubic-bezier(0.25, 1, 0.5, 1);
    /* Smooth bezel-like curve */
}

.hero-slide {
    min-width: 100%;
    position: relative;
    top: 0;
    left: 0;
    height: 100%;
    background-size: cover;
    background-position: center;
    /* Opacity always 1 for scroll effect */
    opacity: 1;
    visibility: visible;
}

.hero-slide.active {
    /* No changes needed for active state in scroll mode */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(34, 47, 40, 0.6), rgba(40, 55, 48, 0.6), rgba(43, 43, 43, 0.6), rgba(0, 0, 0, 0.6));
    /* Gradient overlay matching promo section with intermediate transparency */
    display: flex;
    align-items: center;
}

/* Navigation Arrows */
.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 2rem;
    padding: 15px;
    cursor: pointer;
    z-index: 10;
    border-radius: 5px;
    transition: var(--transition);
}

.hero-nav:hover {
    background: rgba(255, 255, 255, 0.4);
}

.hero-nav.prev {
    left: 20px;
}

.hero-nav.next {
    right: 20px;
}

.hero-content {
    max-width: 600px;
    color: var(--white);
    animation: slideUp 1s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: var(--white);
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Products Section */
.products-section {
    padding: 80px 0;
    background-color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    border-bottom: 4px solid var(--secondary-color);
    display: inline-block;
    padding-bottom: 10px;
}

.category-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    position: relative;
    /* Needed for tooltip positioning */
    padding: 8px 16px;
    border: 1px solid #ddd;
    border-radius: 20px;
    background: white;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
    color: #666;
}

/* Tooltip Styles */
.filter-btn:hover::after {
    content: attr(data-info);
    position: absolute;
    bottom: 120%;
    /* Position above the button */
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    padding: 10px;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 0.85rem;
    border-radius: 6px;
    text-align: center;
    z-index: 1000;
    white-space: normal;
    box-shadow: var(--shadow-md);
    opacity: 0;
    animation: fadeIn 0.3s forwards;
    pointer-events: none;
    /* Let clicks pass through if needed */
}

/* Tooltip Arrow */
.filter-btn:hover::before {
    content: '';
    position: absolute;
    bottom: 110%;
    /* Slightly lower than tooltip to touch it */
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: var(--primary-color) transparent transparent transparent;
    opacity: 0;
    animation: fadeIn 0.3s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}


.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    border: 1px solid #eee;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    height: 200px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-details {
    padding: 20px;
}

.product-details h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.product-details p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.product-list {
    margin-top: 15px;
    padding-left: 15px;
    border-left: 2px solid var(--secondary-color);
}

.product-list li {
    font-size: 0.9rem;
    margin-bottom: 5px;
    position: relative;
    padding-left: 10px;
}

.product-list li::before {
    content: '•';
    color: var(--secondary-color);
    position: absolute;
    left: -5px;
    font-weight: bold;
}

/* About Text Styles - formerly in .about-contact-section */
.about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 15px;
    color: #555;
    text-align: justify;
}

/* New About Section Split */
.about-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-carousel-container {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: relative;
    /* To contain absolute slides */
}

.about-carousel {
    width: 100%;
    height: 100%;
    position: relative;
}

.about-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.about-slide.active {
    opacity: 1;
}

/* Contact Section Split */
.contact-section {
    padding: 80px 0;
    background-color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-visuals {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 500px;
    /* Ensure enough height for both */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.map-container {
    flex: 1;
    /* Takes 50% height */
    overflow: hidden;
}

.social-info-container {
    flex: 1;
    /* Takes 50% height */
    background-color: #222;
    /* Dark background to match theme */
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    /* Align left */
    gap: 20px;
    padding: 20px 40px;
    /* Add padding for better spacing */
}

.social-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-item:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.social-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    width: 30px;
    text-align: center;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.value-item i {
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Promo / Advantages Section */
.promo-section {
    background: linear-gradient(to right, rgb(34, 47, 40), rgb(40, 55, 48), rgb(43, 43, 43), rgb(0, 0, 0));
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.promo-section h2 {
    color: #ffffff;
    margin-bottom: 10px;
}

.promo-logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 5px;
}

.promo-logo {
    max-width: 220px;
    height: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin-top: 50px;
}

.promo-item {
    background: rgb(96, 96, 96);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 10px;
    transition: var(--transition);
}

.promo-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.promo-item i {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #ffffff;
    /* Updated to White for better contrast on grey background */
}

.promo-item h3 {
    color: var(--white);
    margin-bottom: 10px;
}

/* Badges for Product Cards */
.badge {
    display: inline-block;
    padding: 4px 10px;
    background: var(--primary-color);
    color: white;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.badge-secondary {
    background: var(--secondary-color);
}

.badge-accent {
    background: #e65100;
}

/* Using orange for contrast on Celofan */
.badge-dark {
    background: #333;
}

/* Footer */
.main-footer {
    background-color: #111;
    color: #ccc;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

.footer-col a {
    color: #bbb;
}

.footer-col a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary-color);
    color: white;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .main-nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        /* Header height */
        left: 0;
        width: 100%;
        background: var(--white);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        padding: 20px;
        gap: 15px;
    }

    .main-nav ul.show {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .promo-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

/* Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-container {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.modal-overlay.active .modal-container {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #666;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.modal-close:hover {
    color: var(--primary-color);
}

.modal-header {
    text-align: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.modal-header h3 {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 5px;
    font-weight: 500;
}

.modal-header p {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.2;
}

.modal-body .form-group label {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 8px;
}

.modal-body .btn-primary {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

/* Modal Product Page Layout */
.modal-product-page {
    max-width: 1100px;
    max-height: 85vh;
    padding: 30px;
    overflow: hidden;
}

.modal-product-layout {
    display: flex;
    gap: 30px;
    max-height: calc(85vh - 60px);
}

/* Gallery Styles - Left Column */
.modal-gallery {
    display: flex;
    gap: 15px;
    flex: 0 0 45%;
}

.gallery-thumbnails {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 70px;
}

.gallery-thumb {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border: 2px solid #ddd;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-thumb:hover,
.gallery-thumb.active {
    border-color: var(--secondary-color);
}

.gallery-main {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    border-radius: 10px;
    min-height: 300px;
}

.gallery-main-image {
    max-width: 100%;
    max-height: 350px;
    object-fit: contain;
    border-radius: 8px;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #ddd;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
}

.gallery-nav:hover {
    background: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
}

.gallery-prev {
    left: 10px;
}

.gallery-next {
    right: 10px;
}

/* Product Details - Right Column */
.modal-product-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
    overflow-y: auto;
    max-height: 100%;
}

.product-header {
    margin-bottom: 5px;
}

.product-badge {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.modal-product-details h2 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.3;
}

.product-description {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Transparency Meter */
.transparency-meter {
    margin: 15px 0;
    padding: 10px 0;
}

.meter-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.meter-bar {
    position: relative;
    height: 8px;
    background: linear-gradient(to right, #ccc 0%, #999 50%, #666 100%);
    border-radius: 4px;
}

.meter-indicator {
    position: absolute;
    top: 100%;
    margin-top: 2px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 10px solid #333;
    transform: translateX(-50%);
    transition: left 0.3s ease;
}

.meter-scale {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #666;
    margin-top: 15px;
}

/* Feature List with Green Checkmarks */
.product-features {
    background: #f5f5f5;
    padding: 15px;
    border-radius: 8px;
}

.product-features h4 {
    font-size: 0.95rem;
    color: var(--primary-color);
    margin: 0 0 10px 0;
}

.feature-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    font-size: 0.85rem;
    color: #444;
}

.feature-list li i {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

/* Optional Features Section */
.feature-list .optional-section {
    display: block;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed #ddd;
}

.feature-list .optional-section strong {
    color: var(--primary-color);
    font-size: 0.8rem;
    display: block;
    margin-bottom: 4px;
}

.feature-list .optional-items {
    color: #666;
    font-size: 0.85rem;
}

/* Quote Section */
.quote-section {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.quote-section h4 {
    font-size: 0.95rem;
    color: var(--primary-color);
    margin: 0 0 12px 0;
}

/* Responsive for Modal */
@media (max-width: 768px) {
    .modal-product-layout {
        flex-direction: column;
    }

    .modal-gallery {
        flex: 1;
    }

    .gallery-thumbnails {
        flex-direction: row;
        width: 100%;
        order: 2;
    }

    .gallery-main {
        order: 1;
        min-height: 200px;
    }
}

/* Floating Action Button */
.quote-fab {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50%;
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    z-index: 1500;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.quote-fab:hover {
    transform: scale(1.1);
}

.quote-fab.hidden {
    transform: scale(0);
}

.quote-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #e65100;
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid white;
}

/* WhatsApp Floating Button */
.whatsapp-fab {
    position: fixed;
    bottom: 110px;
    /* 30px (bottom) + 60px (btn) + 20px (gap) */
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1500;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-fab:hover {
    transform: scale(1.1);
}

/* Quote List in Modal */
.quote-list {
    margin-bottom: 20px;
    max-height: 300px;
    overflow-y: auto;
}

.quote-list li {
    background: #f9f9f9;
    padding: 10px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 5px;
    margin-bottom: 8px;
}

.quote-list li .item-info {
    font-size: 0.9rem;
    color: #333;
}

.quote-list li .item-qty {
    font-weight: bold;
    color: var(--primary-color);
    margin-right: 15px;
}

.quote-list li .remove-item {
    color: #ff5252;
    cursor: pointer;
    font-size: 1rem;
    padding: 5px;
}