html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

/* Floating Action Button (FAB) */
.fab {
  position: absolute;
  z-index: 1050;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 9999px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.fab .fab__icon { line-height: 1; }
.fab .fab__label { font-weight: 500; }

/* Sizes */
.fab-sm { padding: 8px 12px; font-size: 0.85rem; }
.fab-md { padding: 12px 16px; font-size: 1rem; }
.fab-lg { padding: 16px 20px; font-size: 1.125rem; }
.fab-sm .fab__icon { font-size: 18px; }
.fab-md .fab__icon { font-size: 22px; }
.fab-lg .fab__icon { font-size: 26px; }

/* Positions */
.fab-bottom-right { right: 24px; bottom: 24px; }
.fab-bottom-left { left: 24px; bottom: 24px; }
.fab-top-right { right: 24px; top: 24px; }
.fab-top-left { left: 24px; top: 24px; }

/* Utility when label is empty, keep it circular */
.fab:not(:has(.fab__label)) { border-radius: 9999px; }

/* Floating Social Media Button Styles */
.floating-social-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.floating-social-menu {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.floating-social-item {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 20px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform: scale(0);
    opacity: 0;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.floating-social-item:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.floating-social-item::before {
    content: attr(data-tooltip);
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1001;
}

.floating-social-item::after {
    content: '';
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: rgba(0, 0, 0, 0.8);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.floating-social-item:hover::before,
.floating-social-item:hover::after {
    opacity: 1;
    visibility: visible;
}

/* Social Media Brand Colors */
.floating-social-item.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.floating-social-item.facebook {
    background: linear-gradient(135deg, #1877F2, #0A5F9A);
}

.floating-social-item.instagram {
    background: linear-gradient(135deg, #E4405F, #C13584, #833AB4, #F77737, #FCAF45);
}

.floating-social-item.twitter {
    background: linear-gradient(135deg, #1DA1F2, #0D8BD9);
}

.floating-social-item.linkedin {
    background: linear-gradient(135deg, #0077B5, #005885);
}

.floating-social-item.youtube {
    background: linear-gradient(135deg, #FF0000, #CC0000);
}

/* Main Toggle Button */
.floating-social-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1002;
}

.floating-social-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
}

.floating-social-toggle:active {
    transform: scale(0.95);
}

/* Animation for toggle button icon */
.floating-social-toggle i {
    transition: transform 0.3s ease;
}

.floating-social-toggle.active i {
    transform: rotate(45deg);
}

/* Menu States */
.floating-social-menu.active .floating-social-item {
    transform: scale(1);
    opacity: 1;
}

.floating-social-menu.active .floating-social-item:nth-child(1) {
    transition-delay: 0.1s;
}

.floating-social-menu.active .floating-social-item:nth-child(2) {
    transition-delay: 0.2s;
}

.floating-social-menu.active .floating-social-item:nth-child(3) {
    transition-delay: 0.3s;
}

.floating-social-menu.active .floating-social-item:nth-child(4) {
    transition-delay: 0.4s;
}

.floating-social-menu.active .floating-social-item:nth-child(5) {
    transition-delay: 0.5s;
}

.floating-social-menu.active .floating-social-item:nth-child(6) {
    transition-delay: 0.6s;
}

/* Pulse animation for main button */
@keyframes pulse {
    0% {
        box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    }
    50% {
        box-shadow: 0 6px 20px rgba(102, 126, 234, 0.8), 0 0 0 10px rgba(102, 126, 234, 0.1);
    }
    100% {
        box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    }
}

.floating-social-toggle.pulse {
    animation: pulse 2s infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
    .floating-social-container {
        bottom: 15px;
        right: 15px;
    }
    
    .floating-social-item {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .floating-social-toggle {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }
    
    .floating-social-item::before {
        right: 55px;
        font-size: 11px;
        padding: 6px 10px;
    }
    
    .floating-social-item::after {
        right: 45px;
    }
}

@media (max-width: 480px) {
    .floating-social-container {
        bottom: 10px;
        right: 10px;
    }
    
    .floating-social-item {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .floating-social-toggle {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .floating-social-item::before {
        right: 50px;
        font-size: 10px;
        padding: 5px 8px;
    }
    
    .floating-social-item::after {
        right: 40px;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .floating-social-item::before {
        background: rgba(255, 255, 255, 0.9);
        color: #333;
    }
    
    .floating-social-item::after {
        border-left-color: rgba(255, 255, 255, 0.9);
    }
}

/* Modern Mobile Bottom Navigation Bar */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1e1e2e 0%, #2d2d44 100%);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: none;
    z-index: 1000;
    padding: 12px 8px 8px;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.4);
    border-radius: 20px 20px 0 0;
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 12px 8px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: #8b8b9d;
    text-decoration: none;
    border-radius: 16px;
    margin: 0 4px;
    position: relative;
    overflow: hidden;
}

.mobile-nav-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 16px;
}

.mobile-nav-item:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.mobile-nav-item:hover::before {
    opacity: 1;
}

.mobile-nav-item.active {
    color: #ffffff;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    transform: translateY(-3px);
}

.mobile-nav-item.active::before {
    opacity: 0;
}

.mobile-nav-item i {
    font-size: 20px;
    margin-bottom: 6px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.mobile-nav-item:hover i {
    transform: scale(1.15) translateY(-2px);
}

.mobile-nav-item.active i {
    transform: scale(1.1) translateY(-2px);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.mobile-nav-item span {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    line-height: 1;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.mobile-nav-item.active span {
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Ripple effect for mobile nav items */
.mobile-nav-item::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.mobile-nav-item:active::after {
    width: 120px;
    height: 120px;
}

/* Show mobile nav only on mobile devices */
@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: flex;
    }
    
    /* Add bottom padding to body to prevent content from being hidden behind nav */
    body {
/*        padding-bottom: 90px;*/
    }
    
    /* Adjust floating social button position on mobile */
    .floating-social-container {
        bottom: 100px;
    }
}

/* Enhanced mobile styles */
@media (max-width: 480px) {
    .mobile-nav-item {
        padding: 10px 6px;
    }
    
    .mobile-nav-item i {
        font-size: 18px;
        margin-bottom: 4px;
    }
    
    .mobile-nav-item span {
        font-size: 10px;
        letter-spacing: 0.6px;
    }
}

/* Very small screens optimization */
@media (max-width: 360px) {
    .mobile-nav-item {
        padding: 8px 4px;
        margin: 0 2px;
    }
    
    .mobile-nav-item i {
        font-size: 16px;
        margin-bottom: 3px;
    }
    
    .mobile-nav-item span {
        font-size: 9px;
        letter-spacing: 0.4px;
    }
}

/* Landscape orientation adjustments */
@media (max-width: 768px) and (orientation: landscape) {
    .mobile-bottom-nav {
        padding: 8px 8px 6px;
    }
    
    .mobile-nav-item {
        padding: 8px 6px;
    }
    
    .mobile-nav-item i {
        font-size: 16px;
        margin-bottom: 2px;
    }
    
    .mobile-nav-item span {
        font-size: 9px;
    }
}

/* Modern animations and effects */
@keyframes slideUpIn {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.mobile-bottom-nav {
    animation: slideUpIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Pulse animation for active item */
@keyframes pulseActive {
    0% {
        box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    }
    50% {
        box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6), 0 0 0 4px rgba(102, 126, 234, 0.1);
    }
    100% {
        box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    }
}

.mobile-nav-item.active {
    animation: pulseActive 2s infinite;
}

/* Ripple effect for touch interactions */
.mobile-nav-item {
    position: relative;
    overflow: hidden;
}

.mobile-nav-item::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    pointer-events: none;
}

.mobile-nav-item:active::after {
    width: 120px;
    height: 120px;
}

/* Enhanced hover effects */
.mobile-nav-item:hover {
    transform: translateY(-3px) scale(1.02);
}

.mobile-nav-item.active:hover {
    transform: translateY(-4px) scale(1.05);
}

/* Modern Contact Page Styles */
.breadcrumb-section {
    position: relative;
    overflow: hidden;
}

.breadcrumb-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.contact-info-card,
.contact-form-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.contact-info-card:hover,
.contact-form-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15) !important;
}

.contact-icon {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-item:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 12px 16px;
    transition: all 0.3s ease;
    font-size: 16px;
}

.form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
    transform: translateY(-2px);
}

.btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.contact-method-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0,0,0,0.05);
}

.contact-method-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-color: #667eea;
}

.method-icon {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-method-card:hover .method-icon {
    transform: scale(1.1) rotate(10deg);
}

/* Map overlay animation */
.map-overlay {
    animation: slideInRight 0.6s ease-out;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive adjustments for contact page */
@media (max-width: 768px) {
    .breadcrumb-section {
        padding: 60px 0 30px !important;
    }
    
    .breadcrumb-section h1 {
        font-size: 2rem !important;
    }
    
    .contact-info-card,
    .contact-form-card {
        padding: 30px 20px !important;
        margin-bottom: 20px;
    }
    
    .map-section {
        height: 400px;
    }
    
    .map-overlay {
        position: relative !important;
        top: auto !important;
        right: auto !important;
        margin: 20px;
        max-width: none !important;
    }
}

@media (max-width: 576px) {
    .breadcrumb-section {
        padding: 40px 0 20px !important;
    }
    
    .breadcrumb-section h1 {
        font-size: 1.5rem !important;
    }
    
    .contact-info-card,
    .contact-form-card {
        padding: 20px 15px !important;
    }
    
    .form-control {
        font-size: 14px;
        padding: 10px 12px;
    }
}

/* AC Service Specific Styles */
.service-feature-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.service-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-color: #667eea;
}

.feature-icon {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(10deg);
}

.badge {
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
}

/* AC Service Form Enhancements */
.form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
    transform: translateY(-2px);
}

select.form-control {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m1 6 7 7 7-7'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    padding-right: 2.5rem;
}

/* AC Service Icons Animation */
@keyframes pulseAC {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.fa-snowflake {
    animation: pulseAC 2s infinite;
}

/* Service Type Badge Styles */
.service-type-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 15px;
    margin: 0.25rem;
}

.service-type-badge.installation {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
}

.service-type-badge.repair {
    background: linear-gradient(135deg, #dc3545, #fd7e14);
    color: white;
}

.service-type-badge.maintenance {
    background: linear-gradient(135deg, #007bff, #6610f2);
    color: white;
}

/* Emergency Service Highlight */
.emergency-service {
    background: linear-gradient(135deg, #dc3545, #fd7e14);
    color: white;
    border-radius: 15px;
    padding: 1rem;
    margin: 1rem 0;
    text-align: center;
    animation: pulse 2s infinite;
}

.emergency-service h5 {
    margin: 0;
    font-weight: 700;
}

.emergency-service p {
    margin: 0.5rem 0 0 0;
    opacity: 0.9;
}


/* ========================================
   Modern Card Styles for Services & Products
   ======================================== */

.modern-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.modern-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.modern-card-product {
    border-color: rgba(25, 135, 84, 0.1);
}

.modern-card-product:hover {
    box-shadow: 0 12px 24px rgba(25, 135, 84, 0.15);
}

/* Badge */
.modern-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
    display: flex;
    align-items: center;
    gap: 4px;
}

.modern-badge-success {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    box-shadow: 0 4px 12px rgba(17, 153, 142, 0.4);
}

/* Image Wrapper */
.modern-img-wrapper {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.modern-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.modern-card:hover .modern-img {
    transform: scale(1.08);
}

/* Overlay */
.modern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modern-card:hover .modern-overlay {
    opacity: 1;
}

/* Modern Buttons */
.btn-modern {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-modern-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.btn-modern-primary:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(102, 126, 234, 0.5);
}

.btn-modern-success {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    color: #fff;
}

.btn-modern-success:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(17, 153, 142, 0.5);
}

/* Content */
.modern-content {
    padding: 16px;
}

.modern-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 6px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.modern-desc {
    font-size: 0.8rem;
    color: #6c757d;
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Price Row */
.modern-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.modern-price-old {
    font-size: 0.8rem;
    color: #999;
    text-decoration: line-through;
}

.modern-price-new {
    font-size: 1.1rem;
    font-weight: 700;
    color: #667eea;
}

/* Small Buttons */
.btn-modern-sm {
    padding: 8px 16px;
    border-radius: 20px;
    border: none;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-modern-primary-sm {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.btn-modern-primary-sm:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.btn-modern-success-sm {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    color: #fff;
    box-shadow: 0 2px 8px rgba(17, 153, 142, 0.3);
}

.btn-modern-success-sm:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(17, 153, 142, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .modern-img-wrapper {
        height: 160px;
    }
    
    .modern-title {
        font-size: 0.95rem;
    }
    
    .modern-desc {
        font-size: 0.75rem;
    }
    
    .modern-price-new {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .modern-img-wrapper {
        height: 140px;
    }
    
    .modern-content {
        padding: 12px;
    }
}


/* ========================================
   Seasonal Offers Banner Styles
   ======================================== */

.seasonal-offer-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.seasonal-offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2) !important;
}

.seasonal-offer-card .card {
    background: white;
    transition: all 0.3s ease;
}

.seasonal-offer-card:hover .card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}
