/* =============================================
   AGYAPA TILES - MODERN STYLESHEET (UPDATED)
   ============================================= */

/* === MODERN VARIABLES === */
:root {
    --primary-color: #2D3748;
    --secondary-color: #4A5568;
    --accent-color: #F6AD55;
    --accent-hover: #ED8936;
    --success-color: #48BB78;
    --danger-color: #F56565;
    --light-bg: #F7FAFC;
    --white: #FFFFFF;
    --text-dark: #1A202C;
    --text-gray: #718096;
    --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);
    --shadow-xl: 0 20px 25px rgba(0,0,0,0.15);
    --border-radius: 12px;
}

/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--light-bg);
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* === HEADER & NAVIGATION === */
header {
    background: linear-gradient(135deg, #1A202C 0%, #2D3748 100%);
    backdrop-filter: blur(10px);
    color: white;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-lg);
    border-bottom: 3px solid var(--accent-color);
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    text-decoration: none;
}

.logo-img {
    height: 80px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover .logo-img {
    transform: scale(1.30);
}

.logo-text {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #F6AD55, #dfc907);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--accent-color);
}

/* Header Actions Container */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Phone Number in Header */
.header-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    padding: 0.6rem 1.2rem;
    background: rgba(255,255,255,0.1);
    border-radius: 50px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.header-phone:hover {
    background: rgba(246,173,85,0.2);
    color: var(--accent-color);
    transform: scale(1.05);
}

.header-phone svg {
    transition: transform 0.3s ease;
}

.header-phone:hover svg {
    transform: rotate(15deg);
}

.cart-icon {
    position: relative;
    cursor: pointer;
    font-size: 1.8rem;
    transition: transform 0.3s ease;
    padding: 0.5rem;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
}

.cart-icon:hover {
    transform: scale(1.1);
    background: rgba(255,255,255,0.2);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: linear-gradient(135deg, #F56565, #E53E3E);
    color: white;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(245,101,101,0.5);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* === HERO SECTION === */
.hero {
    background: linear-gradient(135deg, rgba(26,32,44,0.85), rgba(45,55,72,0.75));
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(246,173,85,0.1), transparent);
}

.hero-content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 900;
    line-height: 1.2;
    background: linear-gradient(135deg, #fff, #F6AD55);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    color: rgba(255,255,255,0.9);
    font-weight: 400;
}

/* === BUTTONS === */
.btn {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    color: white;
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 10px 25px rgba(246,173,85,0.3);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(246,173,85,0.4);
}

.btn:active {
    transform: translateY(-1px);
}

.btn-primary {
    background: linear-gradient(135deg, #F6AD55, #ED8936);
    color: white;
    box-shadow: 0 10px 25px rgba(246,173,85,0.3);
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    min-width: 180px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(246,173,85,0.4);
}

.btn-secondary {
    background: white;
    color: #2D3748;
    border: 2px solid #E2E8F0;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    min-width: 180px;
}

.btn-secondary:hover {
    background: #F7FAFC;
    border-color: #F6AD55;
}

/* === SECTION TITLE === */
.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-hover));
    border-radius: 2px;
}

/* === CATEGORIES SECTION === */
.categories {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
    background: var(--light-bg);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.category-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 1;
}

.category-card:hover::before {
    opacity: 0.1;
}

.category-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.category-img {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    position: relative;
    overflow: hidden;
}

.category-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.category-card:hover .category-img::after {
    left: 100%;
}

.category-info {
    padding: 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.category-info h3 {
    margin-bottom: 0.8rem;
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.category-info p {
    color: var(--text-gray);
    font-size: 1rem;
}

/* === PRODUCTS SECTION === */
.products {
    background: white;
    padding: 4rem 0;
    position: relative;
}

.products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, var(--light-bg), white);
}

.products-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.filter-bar {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: 0.8rem 2rem;
    background: white;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1rem;
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.filter-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2.5rem;
}

.product-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0,0,0,0.05);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-color);
}

.product-img {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    position: relative;
    overflow: hidden;
}

.product-info {
    padding: 2rem;
}

.product-name {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.product-price {
    font-size: 2rem;
    color: var(--accent-color);
    font-weight: 800;
    margin: 1.2rem 0;
}

.product-description {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.add-to-cart {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.add-to-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(45,55,72,0.3);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

/* === PRODUCT SEARCH STYLES === */
.search-bar-container {
    max-width: 700px;
    margin: 2rem auto 1.5rem;
    position: relative;
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.search-bar {
    width: 100%;
    padding: 1.2rem 3.5rem 1.2rem 1.5rem;
    font-size: 1.1rem;
    border: 3px solid var(--accent-color);
    border-radius: 50px;
    background: white;
    box-shadow: 0 10px 30px rgba(246,173,85,0.2);
    transition: all 0.3s ease;
    font-family: inherit;
}

.search-bar:focus {
    outline: none;
    box-shadow: 0 15px 40px rgba(246,173,85,0.3);
    transform: translateY(-2px);
    border-color: var(--accent-hover);
}

.search-bar::placeholder {
    color: var(--text-gray);
}

.search-icon {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--accent-color);
    pointer-events: none;
}

.search-results-info {
    text-align: center;
    margin: 1rem 0 1.5rem;
    color: var(--text-gray);
    font-size: 1rem;
    animation: fadeIn 0.3s ease;
    min-height: 30px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.search-results-info strong {
    color: var(--accent-color);
    font-weight: 700;
}

.no-results {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-gray);
    grid-column: 1 / -1;
}

.no-results-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.no-results h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.no-results p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.clear-search-btn {
    background: var(--danger-color);
    color: white;
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    margin: 0.5rem 0.3rem;
    display: inline-block;
}

.clear-search-btn:hover {
    background: #E53E3E;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(245,101,101,0.3);
}

.quick-search-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 1.5rem 0;
}

.quick-search-btns .btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
}

.search-highlight {
    background: linear-gradient(135deg, rgba(246,173,85,0.3), rgba(237,137,54,0.3));
    padding: 0 0.3rem;
    border-radius: 3px;
    font-weight: 600;
}

/* See More Button Styles */
.see-more-btn,
.show-less-btn {
    background: linear-gradient(135deg, #F6AD55, #ED8936);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(246, 173, 85, 0.3);
}

.see-more-btn:hover,
.show-less-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(246, 173, 85, 0.4);
}

.show-less-btn {
    background: linear-gradient(135deg, #718096, #4A5568);
    box-shadow: 0 4px 15px rgba(113, 128, 150, 0.3);
}

.show-less-btn:hover {
    box-shadow: 0 8px 25px rgba(113, 128, 150, 0.4);
}

/* === CART MODAL === */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26,32,44,0.8);
    backdrop-filter: blur(5px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    max-width: 650px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--light-bg);
}

.modal-header h2 {
    color: var(--primary-color);
    font-size: 2rem;
}

.close-modal {
    font-size: 2.5rem;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--text-gray);
    transition: all 0.3s;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-modal:hover {
    background: var(--light-bg);
    color: var(--danger-color);
    transform: rotate(90deg);
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--light-bg);
    transition: background 0.3s;
}

.cart-item:hover {
    background: var(--light-bg);
}

.cart-total {
    font-size: 2rem;
    font-weight: 800;
    text-align: right;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 3px solid var(--accent-color);
    color: var(--primary-color);
}

.checkout-btn {
    width: 100%;
    margin-top: 1.5rem;
}

.clear-cart-btn {
    flex: 1;
    background: linear-gradient(135deg, var(--danger-color), #E53E3E);
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.clear-cart-btn:hover {
    background: linear-gradient(135deg, #E53E3E, #C53030);
    box-shadow: 0 15px 35px rgba(245,101,101,0.4);
}

.checkout-btn {
    flex: 2;
    margin-top: 0;
}

/* === CONTACT FORM STYLES === */
.contact-calbank-style {
    padding: 4rem 2rem;
    background: #f5f5f5;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2rem;
    align-items: center;
    background: linear-gradient(135deg, #FFD700 0%, #FFC700 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.contact-left {
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.05);
}

.support-image-framed {
    width: 600px;
    height: 400px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
    object-fit: cover;
    border: 10px solid white;
    background: white;
    align-content: center;
}

.support-image-framed:hover {
    transform: translateY(-5px) scale(1.090);
    box-shadow: 0 25px 60px rgba(0,0,0,0.25), 0 15px 30px rgba(0,0,0,0.2);
}

.support-image-framed {
    margin: right;
}

.contact-right { 
    padding: 3rem;
    background: #FFD700;
}

.contact-title {
    font-size: 2rem;
    color: #1A202C;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.contact-subtitle {
    color: #2D3748;
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.6;
}

.calbank-contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-input {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    background: white;
    color: #2D3748;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.form-input:focus {
    outline: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

.form-input::placeholder {
    color: #A0AEC0;
}

textarea.form-input {
    resize: vertical;
    min-height: 60px;
    font-family: inherit;
}

.submit-btn {
    background: #000000;
    color: white;
    padding: 1.2rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 0.5rem;
}

.submit-btn:hover {
    background: #2D3748;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.submit-btn:active {
    transform: translateY(-1px);
}

.preview-header {
    text-align: center;
    padding: 2rem;
    background: white;
    margin-bottom: 2rem;
}

.preview-header h1 {
    color: #F6AD55;
    margin-bottom: 0.5rem;
}

.preview-header p {
    color: #666;
}

.note {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 1.5rem;
    background: #FFF3CD;
    border-left: 4px solid #F6AD55;
    border-radius: 8px;
}

.note h3 {
    color: #856404;
    margin-bottom: 0.5rem;
}

.note p {
    color: #856404;
    line-height: 1.6;
}

/* === MAP SECTION === */
.map-section {
    background: white;
    padding: 4rem 0;
}

.map-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.map-wrapper {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    margin-top: 2rem;
    border: 3px solid var(--accent-color);
}

.map-iframe {
    width: 100%;
    height: 500px;
    border: none;
    display: block;
}

.location-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.location-card {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.location-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.location-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.location-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.location-card p {
    color: var(--text-gray);
    margin: 0.5rem 0;
    line-height: 1.6;
}

.location-card a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.location-card a:hover {
    color: var(--accent-hover);
}

.directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #4285F4, #34A853);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
}

.directions-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(66, 133, 244, 0.4);
}

/* === REVIEWS SECTION === */
.reviews-section {
    background: white;
    padding: 4rem 0;
}

.reviews-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.review-card {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.reviewer-info {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

.reviewer-name {
    margin: 0 0 0.3rem 0;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.review-stars {
    font-size: 1rem;
}

.review-date {
    color: var(--text-gray);
    font-size: 0.85rem;
}

.review-comment {
    color: var(--secondary-color);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.review-product {
    color: var(--text-gray);
    font-style: italic;
}

.admin-review-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--accent-color);
}

.review-admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.review-admin-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

/* === FOOTER === */
footer {
    background: linear-gradient(135deg, #1A202C, #2D3748);
    color: white;
    padding: 3rem 2rem 2rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--accent-color);
}

.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    transition: all 0.3s;
}

.footer-section p {
    margin: 0.4rem 0;
}

.footer-section p svg {
    width: 27px;
    height: 27px;
    opacity: 0.8;
    transition: 0.3s ease;
}

.footer-section p span,
.footer-section p a {
    line-height: 1.4;
}

.footer-section a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-bottom {
    margin-top: 4rem;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    color: #9fb1c3;
}

.footer-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0.6rem 0;
}

.footer-item svg {
    display: inline-block;
}

/* === WHATSAPP FLOATING BUTTON === */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    cursor: pointer;
    z-index: 9999;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: whatsappPulse 2s infinite;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.15);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.7);
}

.whatsapp-float:active {
    transform: scale(1.05);
}

@keyframes whatsappPulse {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    }
    50% {
        box-shadow: 0 8px 35px rgba(37, 211, 102, 0.8);
    }
}

.whatsapp-float::before {
    content: 'Chat with us!';
    position: absolute;
    right: 75px;
    background: white;
    color: #128C7E;
    padding: 0.8rem 1.2rem;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
    font-family: 'Segoe UI', sans-serif;
}

.whatsapp-float:hover::before {
    opacity: 1;
    right: 80px;
}

/* === SCROLL ANIMATIONS === */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 968px) {
    .header-phone span {
        display: none;
    }
    
    .header-phone {
        padding: 0.6rem;
        border-radius: 50%;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .contact-left {
        display: none;
    }
    
    .contact-right {
        padding: 2rem 1.5rem;
    }
    
    .contact-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .logo-img {
        height: 40px;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    nav {
        padding: 0 1rem;
    }
    
    .nav-links {
        gap: 1.5rem;
        font-size: 0.9rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2.2rem;
    }
    
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .category-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-header {
        flex-direction: column;
        text-align: center;
    }
    
    .map-iframe {
        height: 350px;
    }
    
    .location-info {
        grid-template-columns: 1fr;
    }
    
    .whatsapp-float {
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
        font-size: 2rem;
    }
    
    .whatsapp-float::before {
        display: none;
    }
    
    .search-bar-container {
        margin: 1.5rem 1rem 1rem;
    }
    
    .search-bar {
        padding: 1rem 3rem 1rem 1.2rem;
        font-size: 1rem;
        border-width: 2px;
    }
    
    .search-icon {
        font-size: 1.3rem;
        right: 1rem;
    }
    
    .search-results-info {
        font-size: 0.9rem;
        margin: 0.8rem 0 1rem;
    }
    
    .no-results {
        padding: 3rem 1.5rem;
    }
    
    .no-results-icon {
        font-size: 3rem;
    }
    
    .no-results h3 {
        font-size: 1.5rem;
    }
    
    .quick-search-btns {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .quick-search-btns .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .contact-calbank-style {
        padding: 2rem 1rem;
    }
    
    .contact-subtitle {
        font-size: 0.9rem;
    }
    
    .modal-content {
        width: 95%;
        max-width: 95%;
        margin: 1rem;
        padding: 1rem;
        max-height: 90vh;
        overflow-y: auto;
    }
    
    .modal-header h2 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .header-phone {
        display: none;
    }
    
    .search-bar {
        font-size: 0.95rem;
    }
    
    .clear-search-btn {
        padding: 0.5rem 1.2rem;
        font-size: 0.9rem;
    }
}

