/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #303030;
    background: linear-gradient(135deg, 
        #FFD700 0%, 
        #FFF8DC 15%, 
        #E6E6FA 30%, 
        #C0C0C0 45%, 
        #F5F5DC 60%, 
        #FFE4B5 75%, 
        #D3D3D3 90%, 
        #FFFACD 100%
    );
    background-size: 400% 400%;
    animation: shimmerBackground 8s ease-in-out infinite;
    position: relative;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

/* Shimmer animation for background */
@keyframes shimmerBackground {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Add overlay for better readability */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(192, 192, 192, 0.1) 0%, transparent 50%),
                linear-gradient(45deg, rgba(255, 215, 0, 0.05) 0%, rgba(192, 192, 192, 0.05) 100%);
    pointer-events: none;
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.content-box {
    background: #FFFFFF;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    margin: 20px 0;
    overflow: hidden;
    border: 1px solid #E5E7EB;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #FFFFFF;
    border-bottom: 1px solid #E5E7EB;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo .logo {
    width: 250px;
    height: 80px;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(225, 200, 129, 0.3);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #E1C881 0%, #C7A54F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #303030;
    font-weight: 500;
    padding: 12px 20px;
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(225, 200, 129, 0.3), transparent);
    transition: left 0.6s;
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover {
    background: linear-gradient(135deg, #E1C881 0%, #C7A54F 100%);
    color: #303030;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(225, 200, 129, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background: linear-gradient(135deg, #E1C881 0%, #C7A54F 100%);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Main Content */
.main {
    margin-top: 80px;
}

/* Section Styles */
section {
    padding: 40px 0;
    position: relative;
}

section .container {
    background: #FFFFFF;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    padding: 60px 40px;
    margin: 20px auto;
    border: 1px solid #E5E7EB;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #303030;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: linear-gradient(135deg, #303030 0%, #5B5B5B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title i {
    font-size: 2rem;
    background: linear-gradient(135deg, #E1C881 0%, #C7A54F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #5B5B5B;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 500;
}

/* Welcome Section */
.welcome-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #FEF7E0 0%, #FDF4D3 100%);
}

.welcome-section .container {
    background: #FFFFFF;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    padding: 80px 60px;
    margin: 20px auto;
    border: 1px solid #E5E7EB;
}

.welcome-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.welcome-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #303030;
    margin-bottom: 24px;
    line-height: 1.2;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.welcome-icon {
    font-size: 3rem;
    background: linear-gradient(135deg, #E1C881 0%, #C7A54F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.welcome-subtitle {
    font-size: 1.3rem;
    color: #5B5B5B;
    margin-bottom: 40px;
    font-weight: 500;
}

.welcome-features {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.8) 0%, rgba(248, 249, 251, 0.6) 100%);
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(48, 48, 48, 0.1);
    font-weight: 600;
    color: #303030;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(225, 200, 129, 0.3), transparent);
    transition: left 0.6s ease;
}

.feature-item:hover::before {
    left: 100%;
}

.feature-item:hover {
    background: linear-gradient(145deg, rgba(254, 247, 224, 0.95) 0%, rgba(253, 244, 211, 0.85) 100%);
    box-shadow: 0 8px 25px rgba(225, 200, 129, 0.25), 0 0 0 1px rgba(225, 200, 129, 0.2);
    transform: translateY(-2px) scale(1.02);
    color: #8B6914;
}

.feature-item i {
    color: #C7A54F;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.feature-item:hover i {
    color: #B8860B;
    transform: scale(1.1);
}

.welcome-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    border: none;
    cursor: pointer;
    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-primary {
    background: linear-gradient(135deg, #E1C881 0%, #C7A54F 100%);
    color: #303030;
    box-shadow: 0 6px 20px rgba(225, 200, 129, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #C7A54F 0%, #E1C881 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(225, 200, 129, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, #BABABA 0%, #8F97A5 100%);
    color: #303030;
    box-shadow: 0 6px 20px rgba(186, 186, 186, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #8F97A5 0%, #BABABA 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(186, 186, 186, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

/* Welcome Image */
.welcome-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-icon {
    font-size: 8rem;
    background: linear-gradient(135deg, #E1C881 0%, #C7A54F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-item {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #303030;
    animation: orbit 8s linear infinite;
}

.floating-item.gold {
    background: linear-gradient(135deg, #E1C881 0%, #C7A54F 100%);
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.floating-item.silver {
    background: linear-gradient(135deg, #BABABA 0%, #8F97A5 100%);
    bottom: 20%;
    left: 10%;
    animation-delay: -2.7s;
}

.floating-item.platinum {
    background: linear-gradient(135deg, #D4D4D4 0%, #A3A3A3 100%);
    top: 50%;
    left: -10%;
    animation-delay: -5.3s;
}

@keyframes orbit {
    0% { transform: rotate(0deg) translateX(120px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(120px) rotate(-360deg); }
}

/* Service Section */
.service-section {
    background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #E5E7EB;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #E1C881 0%, #C7A54F 50%, #BABABA 100%);
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(225, 200, 129, 0.1), transparent);
    transition: left 0.8s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border-color: #C7A54F;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #E1C881 0%, #C7A54F 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #303030;
    box-shadow: 0 8px 25px rgba(225, 200, 129, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #303030;
    margin-bottom: 16px;
}

.service-description {
    color: #5B5B5B;
    margin-bottom: 24px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    text-align: left;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #303030;
    font-weight: 500;
}

.service-features i {
    color: #16A34A;
    font-size: 1rem;
}

/* Pricelist Section */
.pricelist-section {
    background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
}

.price-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.price-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #E5E7EB;
}

.price-card.gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #E1C881 0%, #C7A54F 100%);
}

.price-card.silver::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #BABABA 0%, #8F97A5 100%);
}

.price-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border-color: #C7A54F;
}

.price-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 30px;
}

.price-header i {
    font-size: 2.5rem;
}

.price-card.gold .price-header i {
    background: linear-gradient(135deg, #E1C881 0%, #C7A54F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-card.silver .price-header i {
    background: linear-gradient(135deg, #BABABA 0%, #8F97A5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #303030;
}

.price-content {
    margin-bottom: 24px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding: 12px 0;
    border-bottom: 1px solid #E7E6DF;
}

.price-label {
    font-weight: 500;
    color: #5B5B5B;
}

.price-value {
    font-weight: 700;
    font-size: 1.2rem;
    color: #303030;
}

.price-buy {
    color: #2563EB !important;
}

.price-sell {
    color: #16A34A !important;
}

/* Specific styling for price-value combinations */
.price-value.price-buy {
    color: #16A34A !important; /* Hijau untuk price-buy */
}

.price-value.price-sell {
    color: #2563EB !important; /* Biru untuk price-sell */
}

.update-time {
    text-align: center;
    margin: 10px 0 20px 0;
    color: #6B7280;
    font-size: 0.9rem;
}

.update-time i {
    margin-right: 8px;
    color: #C7A54F;
}

.update-time strong {
    color: #303030;
}

.gold-category {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #E7E6DF;
}

.gold-category:last-of-type {
    border-bottom: none;
    margin-bottom: 10px;
}

.category-title {
    font-size: 1rem;
    font-weight: 600;
    color: #C7A54F;
    margin-bottom: 12px;
    text-align: center;
    background: linear-gradient(135deg, #FEF7E0 0%, #FDF4D3 100%);
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid #E1C881;
}

.price-change {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.price-change.positive {
    background: rgba(22, 163, 74, 0.1);
    color: #16A34A;
}

.price-change.negative {
    background: rgba(220, 38, 38, 0.1);
    color: #DC2626;
}

.price-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #5B5B5B;
    font-weight: 500;
}

.info-item i {
    color: #C7A54F;
}

/* Price Table Section */
.price-table-section {
    background: linear-gradient(135deg, #FFF7ED 0%, #FFEDD5 100%);
}

.table-container {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid #E5E7EB;
    overflow: hidden;
}

.table-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    gap: 20px;
    flex-wrap: wrap;
}

.search-box {
    position: relative;
    flex: 1;
    min-width: 250px;
}

.search-box i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #9CA3AF;
    font-size: 16px;
}

.search-box input {
    width: 100%;
    padding: 12px 16px 12px 48px;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    font-size: 16px;
    background: #F9FAFB;
    transition: all 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: #C7A54F;
    background: #FFFFFF;
    box-shadow: 0 0 0 3px rgba(199, 165, 79, 0.1);
}

.filter-box select {
    padding: 12px 16px;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    font-size: 16px;
    background: #F9FAFB;
    color: #374151;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 150px;
}

.filter-box select:focus {
    outline: none;
    border-color: #C7A54F;
    background: #FFFFFF;
    box-shadow: 0 0 0 3px rgba(199, 165, 79, 0.1);
}

.table-wrapper {
    overflow-x: auto;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
    margin-bottom: 24px;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    background: #FFFFFF;
    font-size: 14px;
}

.price-table thead {
    background: linear-gradient(135deg, #E1C881 0%, #C7A54F 100%);
}

.price-table thead th {
    padding: 16px 12px;
    text-align: left;
    font-weight: 600;
    color: #303030;
    border-bottom: 2px solid #B8860B;
    white-space: nowrap;
}

.price-table tbody tr {
    transition: all 0.2s ease;
    border-bottom: 1px solid #F3F4F6;
}

.price-table tbody tr:hover {
    background: #F9FAFB;
}

.price-table tbody tr:nth-child(even) {
    background: #FAFAFA;
}

.price-table tbody tr:nth-child(even):hover {
    background: #F3F4F6;
}

.price-table tbody td {
    padding: 14px 12px;
    color: #374151;
    vertical-align: middle;
    border-bottom: 1px solid #F3F4F6;
}

.price-table .row-number {
    font-weight: 600;
    color: #6B7280;
    text-align: center;
    font-size: 14px;
}

.price-table .product-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.price-table .product-name {
    font-weight: 600;
    color: #1F2937;
    font-size: 14px;
    line-height: 1.3;
}

.price-table .product-purity {
    font-size: 12px;
    color: #6B7280;
    font-weight: 400;
}

.price-table .brand-badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    color: #FFFFFF;
}

.price-table .brand-badge.antam {
    background: #6B7280;
}

.price-table .brand-badge.eoa {
    background: #6B7280;
}

.price-table .brand-badge.ubs {
    background: #6B7280;
}

.price-table .brand-badge.galeri {
    background: #6B7280;
}

.price-table .category-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
}

.price-table .category-badge.emas {
    background: #FEF3C7;
    color: #D97706;
}

.price-table .category-badge.perak {
    background: #DBEAFE;
    color: #2563EB;
}

.price-table .weight {
    font-weight: 500;
    color: #374151;
}

.price-table .price-buy {
    font-weight: 600;
    color: #2563EB;
}

.price-table .price-sell {
    font-weight: 600;
    color: #059669;
}

.price-table .price-contact {
    font-weight: 500;
    color: #6B7280;
    font-style: italic;
}

.price-table .action-cell {
    text-align: center;
}

.price-table .whatsapp-btn {
    background: #25D366;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 16px;
}

.price-table .whatsapp-btn:hover {
    background: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* External Link Button for Idle Products */
.price-table .external-link-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
}

.price-table .external-link-btn:hover {
    background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.loading-row td {
    text-align: center;
    padding: 40px 20px;
}

.loading-spinner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #6B7280;
}

.loading-spinner i {
    font-size: 20px;
    color: #C7A54F;
}

.table-pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.pagination-info {
    color: #6B7280;
    font-size: 14px;
}

.pagination-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pagination-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    color: #374151;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    cursor: pointer;
}

.pagination-btn:hover:not(:disabled) {
    background: #F9FAFB;
    border-color: #C7A54F;
    color: #C7A54F;
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #F3F4F6;
}

.pagination-numbers {
    display: flex;
    align-items: center;
    gap: 5px;
}

.page-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #E5E7EB;
    border-radius: 6px;
    color: #374151;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    background: #fff;
}

.page-number:hover {
    background: #F9FAFB;
    border-color: #C7A54F;
    color: #C7A54F;
}

.page-number.active {
    background: #C7A54F;
    border-color: #C7A54F;
    color: white;
    cursor: default;
}

.pagination-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #9CA3AF;
    font-weight: bold;
    font-size: 16px;
}

.page-ellipsis {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9CA3AF;
    font-size: 14px;
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(135deg, #F0FDF4 0%, #DCFCE7 100%);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #FFFFFF;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid #E5E7EB;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-color: #C7A54F;
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(225, 200, 129, 0.1);
}

.faq-icon {
    color: #C7A54F;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #303030;
    flex: 1;
}

.faq-answer {
    padding: 0 30px 24px 62px;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.faq-answer p {
    color: #5B5B5B;
    line-height: 1.6;
}

/* Products Grid Section */
.products-section {
    background: linear-gradient(135deg, #FEF7E0 0%, #FDF4D3 100%);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #E5E7EB;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(199, 165, 79, 0.15);
    border-color: #C7A54F;
}

.product-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #E1C881 0%, #C7A54F 100%);
    color: #FFFFFF;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(199, 165, 79, 0.3);
}

.product-info {
    padding: 20px;
}

.product-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 12px;
    line-height: 1.3;
}

.product-details {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 15px;
}

.product-brand {
    background: #F3F4F6;
    color: #6B7280;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    width: fit-content;
}

.product-weight,
.product-purity {
    font-size: 13px;
    color: #4B5563;
    font-weight: 500;
}

.product-price {
    margin-bottom: 20px;
    padding: 12px;
    background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
    border-radius: 8px;
    border-left: 4px solid #C7A54F;
}

.product-prices {
    margin-bottom: 20px;
    padding: 12px;
    background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
    border-radius: 8px;
    border-left: 4px solid #C7A54F;
}

.product-prices-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
    padding: 12px;
    background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
    border-radius: 8px;
    border-left: 4px solid #C7A54F;
}

.price-column {
    text-align: center;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.price-row:last-child {
    margin-bottom: 0;
}

.price-label {
    font-size: 12px;
    color: #6B7280;
    font-weight: 500;
}

.price-buy {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2563EB;
}

.price-sell {
    font-size: 1.1rem;
    font-weight: 700;
    color: #16A34A;
}

.price-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2563EB;
}

.product-actions {
    display: flex;
    gap: 10px;
}

.btn-order {
    flex: 1;
    background: linear-gradient(135deg, #C7A54F 0%, #B8860B 100%);
    border: none;
    color: #FFFFFF;
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.btn-order:hover {
    background: linear-gradient(135deg, #B8860B 0%, #9A7209 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(199, 165, 79, 0.3);
    color: #FFFFFF;
}

.btn-whatsapp {
    flex: 1;
    background: #25D366;
    border: none;
    color: #FFFFFF;
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-full {
    width: 100%;
    background: linear-gradient(135deg, #25D366 0%, #20B358 100%);
    border: none;
    color: #FFFFFF;
    padding: 16px 24px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-whatsapp-full::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.btn-whatsapp-full:hover::before {
    left: 100%;
}

.btn-whatsapp-full:hover {
    background: linear-gradient(135deg, #128C7E 0%, #0F7A6B 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.btn-whatsapp-full:active {
    transform: translateY(-1px) scale(1.01);
    transition: all 0.1s ease;
}

.btn-whatsapp-full i {
    font-size: 18px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Webstore Section */
.webstore-section {
    background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
    padding: 80px 0;
}

.webstore-badge {
    background: linear-gradient(135deg, #3B82F6 0%, #1D4ED8 100%);
    color: #FFFFFF;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.webstore-info {
    color: #64748B;
    font-size: 14px;
    margin: 10px 0;
    font-style: italic;
}

.btn-webstore-full {
    width: 100%;
    background: linear-gradient(135deg, #3B82F6 0%, #1D4ED8 100%);
    border: none;
    color: #FFFFFF;
    padding: 16px 24px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-webstore-full::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.btn-webstore-full:hover::before {
    left: 100%;
}

.btn-webstore-full:hover {
    background: linear-gradient(135deg, #1D4ED8 0%, #1E40AF 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5);
}

.btn-webstore-full:active {
    transform: translateY(-1px) scale(1.01);
    transition: all 0.1s ease;
}

.btn-webstore-full i {
    font-size: 18px;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-3px); }
    60% { transform: translateY(-1px); }
}

/* Brand Section */
.brand-section {
    background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%);
}

.brand-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.brand-question {
    margin-bottom: 40px;
}

.brand-question h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 20px;
}

.brand-list {
    margin-bottom: 40px;
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
    max-width: 800px;
    margin: 0 auto;
}

.brand-item {
    background: linear-gradient(145deg, #FFFFFF 0%, #F8FAFC 100%);
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.brand-item:hover {
    background: linear-gradient(145deg, #FEF7E0 0%, #FDF4D3 100%);
    border-color: #C7A54F;
    color: #8B6914;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(199, 165, 79, 0.2);
}

.brand-description {
    margin-bottom: 30px;
}

.brand-description p {
    font-size: 1.1rem;
    color: #4B5563;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.brand-cta {
    margin-top: 30px;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #FAF5FF 0%, #F3E8FF 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #E1C881 0%, #C7A54F 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #303030;
    box-shadow: 0 6px 20px rgba(225, 200, 129, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #303030;
    margin-bottom: 8px;
}

.contact-details p {
    color: #5B5B5B;
    line-height: 1.6;
}

.contact-form {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #E5E7EB;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #303030;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    font-size: 16px;
    color: #303030;
    background: #FFFFFF;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #C7A54F;
    box-shadow: 0 0 0 3px rgba(199, 165, 79, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: #1F2937;
    color: #FFFFFF;
    padding: 60px 0 20px;
    margin-top: 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-main-logo {
    width: 250px;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.footer-description {
    color: #BABABA;
    line-height: 1.6;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #E1C881 0%, #C7A54F 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #303030;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(225, 200, 129, 0.3);
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(225, 200, 129, 0.4);
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #BABABA;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #E1C881;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact .contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #BABABA;
}

.footer-contact .contact-item i {
    color: #C7A54F;
    width: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #404040;
    color: #BABABA;
}

/* Responsive Design */
@media (max-width: 1024px) and (min-width: 769px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: #FFFFFF;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        border-top: 1px solid #E5E7EB;
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        padding: 16px 20px;
        width: 100%;
        justify-content: center;
        border-radius: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .main {
        margin-top: 70px;
    }

    section {
        padding: 30px 0;
    }
    
    section .container {
        padding: 40px 20px;
        margin: 15px auto;
    }
    
    .welcome-section .container {
        padding: 60px 30px;
        margin: 15px auto;
    }

    .section-title {
        font-size: 2rem;
        flex-direction: column;
        gap: 12px;
    }

    .section-title i {
        font-size: 1.5rem;
    }

    .welcome-section {
        padding: 80px 0;
    }

    .welcome-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .welcome-title {
        font-size: 2.5rem;
        justify-content: center;
    }

    .welcome-features {
        justify-content: center;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
        padding: 16px;
    }

    .welcome-cta {
        justify-content: center;
    }

    .btn {
        padding: 14px 24px;
        font-size: 1rem;
    }

    .image-container {
        width: 250px;
        height: 250px;
    }

    .main-icon {
        font-size: 6rem;
    }

    .floating-item {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 30px 20px;
    }

    .price-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .price-card {
        padding: 30px 20px;
    }

    .price-info {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .table-container {
        padding: 20px;
    }

    .table-controls {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

    .search-box {
        min-width: auto;
    }

    .price-table {
        font-size: 12px;
    }

    .price-table thead th,
    .price-table tbody td {
        padding: 10px 8px;
    }

    .table-pagination {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .pagination-controls {
        justify-content: center;
        flex-wrap: wrap;
    }

    .brand-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 10px;
    }

    .brand-item {
        padding: 10px 12px;
        font-size: 13px;
    }

    .brand-question h3 {
        font-size: 1.3rem;
    }

    .brand-description p {
        font-size: 1rem;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .product-image {
        height: 180px;
    }

    .product-info {
        padding: 16px;
    }

    .product-actions {
        flex-direction: column;
        gap: 8px;
    }

    .footer-main-logo {
        width: 200px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .nav-container {
        padding: 0 15px;
    }

    .welcome-title {
        font-size: 2rem;
    }

    .welcome-icon {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .service-card,
    .price-card,
    .contact-form {
        padding: 20px 15px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(8, 1fr);
        gap: 16px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .product-image {
        height: 160px;
    }

    .product-info {
        padding: 14px;
    }

    .product-name {
        font-size: 1rem;
    }

    .price-value {
        font-size: 1.1rem;
    }

    .image-container {
        width: 200px;
        height: 200px;
    }

    .main-icon {
        font-size: 4rem;
    }

    .floating-item {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    @keyframes orbit {
        0% { transform: rotate(0deg) translateX(80px) rotate(0deg); }
        100% { transform: rotate(360deg) translateX(80px) rotate(-360deg); }
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1000;
    cursor: pointer;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(100px);
    opacity: 0;
    overflow: hidden;
    max-width: 60px;
    height: 60px;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float.show {
    transform: translateY(0);
    opacity: 1;
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.2);
    max-width: 200px;
    animation: none;
}

.whatsapp-float:hover::before {
    opacity: 1;
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
    opacity: 0;
}

.whatsapp-float:hover::before {
    left: 100%;
    opacity: 1;
}

.whatsapp-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.whatsapp-text {
    color: white;
    font-weight: 600;
    font-size: 14px;
    padding-right: 20px;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.whatsapp-float:hover .whatsapp-text {
    opacity: 1;
    transform: translateX(0);
}

@keyframes whatsappPulse {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3), 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    50% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3), 0 0 0 10px rgba(37, 211, 102, 0);
    }
}

@keyframes whatsappBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        max-width: 55px;
        height: 55px;
    }
    
    .whatsapp-float:hover {
        max-width: 180px;
    }
    
    .whatsapp-icon {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }
    
    .whatsapp-text {
        font-size: 13px;
        padding-right: 15px;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        max-width: 50px;
        height: 50px;
    }
    
    .whatsapp-float:hover {
        max-width: 160px;
    }
    
    .whatsapp-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
    
    .whatsapp-text {
        font-size: 12px;
        padding-right: 12px;
    }
}

/* Additional hover effects */
.whatsapp-float:active {
    transform: translateY(-2px) scale(0.98);
    transition: all 0.1s ease;
}

/* Accessibility */
.whatsapp-float:focus {
    outline: 3px solid rgba(37, 211, 102, 0.5);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .whatsapp-float {
        border: 2px solid #000;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .whatsapp-float {
        animation: none;
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
    
    .whatsapp-float:hover {
        transform: none;
    }
    
    @keyframes whatsappPulse {
        0%, 100% {
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
        }
    }
}

/* WhatsApp Contact Section Styles */
.whatsapp-contact {
    margin-top: 2rem;
}

.whatsapp-info-card {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    color: white;
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.3);
    position: relative;
    overflow: hidden;
}

.whatsapp-info-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

.whatsapp-header {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.whatsapp-header .whatsapp-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.whatsapp-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.whatsapp-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.95;
    position: relative;
    z-index: 2;
}

.whatsapp-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 1rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.service-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.service-item i {
    font-size: 1.2rem;
    opacity: 0.9;
}

.service-item span {
    font-weight: 600;
    font-size: 0.95rem;
}

.btn-whatsapp-large {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: #25D366;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-whatsapp-large:hover {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    color: #128C7E;
}

.btn-whatsapp-large:active {
    transform: translateY(-1px) scale(1.02);
    transition: all 0.1s ease;
}

.btn-whatsapp-large i {
    font-size: 1.3rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* WhatsApp Buttons Container */
.whatsapp-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* WhatsApp Channel Button */
.btn-whatsapp-channel {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 220px;
    justify-content: center;
    cursor: pointer;
}

.btn-whatsapp-channel::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.btn-whatsapp-channel:hover::before {
    left: 100%;
}

.btn-whatsapp-channel:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.2) 100%);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    color: #ffffff;
}

.btn-whatsapp-channel:active {
    transform: translateY(0) scale(1);
    transition: all 0.1s ease;
}

.btn-whatsapp-channel i {
    font-size: 1.2rem;
    animation: pulse-channel 2s ease-in-out infinite;
}

@keyframes pulse-channel {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Responsive Design for WhatsApp Buttons */
@media (max-width: 768px) {
    .whatsapp-buttons {
        gap: 0.75rem;
    }
    
    .btn-whatsapp-large,
    .btn-whatsapp-channel {
        width: 100%;
        max-width: 280px;
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .btn-whatsapp-channel {
        min-width: auto;
    }
}

/* Table Info Styles */
.table-info {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 15px;
    padding: 1.5rem;
    margin-top: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.products-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.products-count {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: #495057;
    font-size: 1rem;
}

.whatsapp-info {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: #25D366;
    font-size: 1rem;
}

.products-count i,
.whatsapp-info i {
    margin-right: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .whatsapp-info-card {
        padding: 2rem 1.5rem;
    }
    
    .whatsapp-header h3 {
        font-size: 1.5rem;
    }
    
    .whatsapp-description {
        font-size: 1rem;
    }
    
    .whatsapp-services {
        grid-template-columns: 1fr;
    }
    
    .btn-whatsapp-large {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    
    .products-info {
        flex-direction: column;
        text-align: center;
    }
}
