/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
    /* Color Palette */
    --primary: #0d9488;          /* Elegant Teal */
    --primary-hover: #0f766e;
    --primary-light: #ccfbf1;
    --primary-light-hover: #99f6e4;
    --secondary: #0284c7;        /* Clean Clinical Blue */
    --secondary-hover: #0369a1;
    --accent: #10b981;           /* Healing Green */
    --accent-light: #d1fae5;
    --accent-red: #ef4444;       /* Urgent alert red */
    --accent-red-light: #fee2e2;
    --warning: #f59e0b;          /* Soft warning yellow */
    
    /* Neutral Colors */
    --bg-base: #f8fafc;
    --bg-surface: #ffffff;
    --bg-header: rgba(255, 255, 255, 0.85);
    --text-main: #0f172a;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --border-color: #e2e8f0;
    
    /* Layout Constants */
    --max-width: 1280px;
    --header-height: 80px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    
    /* Shadows & Transitions */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 10px 25px -5px rgba(13, 148, 136, 0.25);
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Typography Font Variables */
    --font-primary: 'Tajawal', 'Noto Kufi Arabic', 'Cairo', sans-serif;
}

h1, h2, h3, h4, h5, h6, .logo {
    font-family: 'Noto Kufi Arabic', 'Tajawal', sans-serif;
    line-height: 1.5;
}

/* Override font when English language is set */
:root:lang(en) {
    --font-primary: 'Outfit', sans-serif;
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-base);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

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

button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
    outline: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utilities */
.hidden {
    display: none !important;
}

/* ==========================================================================
   TOP ANNOUNCEMENT BAR
   ========================================================================== */
.announcement-bar {
    background-color: var(--text-main);
    color: #ffffff;
    font-size: 13.5px;
    font-weight: 500;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.announcement-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.top-bar-links {
    display: flex;
    align-items: center;
    gap: 16px;
}

.delivery-status {
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.status-indicator.online {
    background-color: var(--accent);
    box-shadow: 0 0 8px var(--accent);
    animation: pulse 2s infinite;
}

/* ==========================================================================
   MAIN HEADER
   ========================================================================== */
.main-header {
    background-color: var(--bg-header);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--header-height);
    display: flex;
    align-items: center;
    transition: var(--transition-normal);
}

.header-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    width: 100%;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 42px;
    height: 42px;
    background-color: var(--primary);
    color: #ffffff;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-glow);
    transition: var(--transition-fast);
}

.logo:hover .logo-icon {
    transform: rotate(15deg) scale(1.05);
}

.logo-icon svg {
    width: 24px;
    height: 24px;
}

.brand-name {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
    display: block;
    line-height: 1.1;
}

.brand-sub {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
    display: block;
}

/* Search Wrapper */
.search-wrapper {
    flex: 1;
    max-width: 550px;
}

.search-bar {
    display: flex;
    background-color: var(--bg-base);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 3px;
    transition: var(--transition-fast);
}

.search-bar:focus-within {
    border-color: var(--primary);
    background-color: var(--bg-surface);
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.15);
}

.search-bar input {
    border: none;
    background: none;
    padding: 10px 16px;
    font-size: 14.5px;
    width: 100%;
    color: var(--text-main);
    outline: none;
    font-family: inherit;
}

.search-btn {
    background-color: var(--primary);
    color: #ffffff;
    border-radius: var(--radius-sm);
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

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

.search-btn svg {
    width: 18px;
    height: 18px;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-icon-label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: var(--radius-md);
    background-color: transparent;
    border: 1px solid transparent;
    color: var(--text-main);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition-fast);
}

.btn-icon-label:hover {
    background-color: var(--primary-light);
    color: var(--primary);
}

.btn-icon-label svg {
    width: 20px;
    height: 20px;
}

/* Cart Specific Styles */
.cart-icon-container {
    position: relative;
    display: flex;
    align-items: center;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--accent-red);
    color: #ffffff;
    font-size: 10px;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    border: 2px solid var(--bg-surface);
}

/* Dynamic positioning in LTR */
html[dir="ltr"] .cart-badge {
    right: auto;
    left: -8px;
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
.nav-bar {
    background-color: var(--bg-surface);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    z-index: 90;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    display: block;
    padding: 16px 0;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-muted);
    border-bottom: 2px solid transparent;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.nav-links a.active::after,
.nav-links a:hover::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--primary);
    border-radius: 2px 2px 0 0;
}

.nav-contact {
    display: flex;
    align-items: center;
    gap: 12px;
    border-inline-start: 1px solid var(--border-color);
    padding-inline-start: 24px;
}

.nav-contact svg {
    width: 22px;
    height: 22px;
    color: var(--primary);
}

.contact-title {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
}

.contact-number {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    background: linear-gradient(135deg, #f0fdfa 0%, #e0f2fe 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.08) 0%, transparent 70%);
    top: -100px;
    left: -100px;
}

.hero-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr 0.8fr;
    gap: 32px;
    align-items: center;
    position: relative;
    z-index: 2;
}

@media (max-width: 1024px) {
    .hero-grid-layout {
        grid-template-columns: 1fr;
    }
}

.hero-image-pane {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-img-container {
    position: relative;
    width: 100%;
    max-width: 380px;
    border-radius: var(--radius-lg);
    overflow: visible;
}

.hero-main-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px -10px rgba(13, 148, 136, 0.25);
    border: 4px solid #ffffff;
}

.floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    padding: 10px 16px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.badge-top-right {
    top: -15px;
    inset-inline-start: -15px;
}

.badge-bottom-left {
    bottom: -15px;
    inset-inline-end: -15px;
}

.badge-icon {
    font-size: 22px;
}

.badge-title {
    display: block;
    font-size: 13px;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.2;
}

.badge-sub {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
}

.hero-text-content {
    max-width: 650px;
}

.hero-badge {
    background-color: var(--primary-light);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 13.5px;
    font-weight: 700;
    display: inline-flex;
    margin-bottom: 20px;
}

.hero-text-content h1 {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.25;
    margin-bottom: 20px;
}

.hero-text-content p {
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 36px;
    line-height: 1.7;
}

.hero-actions-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 15px;
    transition: var(--transition-normal);
}

.btn-primary {
    background-color: var(--primary);
    color: #ffffff;
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 20px -6px rgba(13, 148, 136, 0.4);
}

.btn-secondary {
    background-color: var(--bg-surface);
    color: var(--primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background-color: var(--primary-light);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 13.5px;
    border-radius: var(--radius-sm);
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn svg {
    width: 20px;
    height: 20px;
}

/* Feature Cards Panel in Hero */
.fast-features-panel {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-card {
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    transition: var(--transition-normal);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.feature-card:hover {
    transform: translateX(-6px);
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
}

html[dir="ltr"] .feature-card:hover {
    transform: translateX(6px);
}

.glass {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.feat-icon-bg {
    width: 48px;
    height: 48px;
    background-color: var(--primary);
    color: #ffffff;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feat-icon-bg svg {
    width: 22px;
    height: 22px;
}

.feature-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-main);
}

.feature-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ==========================================================================
   SECTIONS STYLING
   ========================================================================== */
.section {
    padding: 80px 0;
}

.section-header {
    margin-bottom: 40px;
    max-width: 600px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.section-header p {
    font-size: 15px;
    color: var(--text-muted);
}

.section-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 24px;
}

.section-header-row .section-header {
    margin-bottom: 0;
}

/* ==========================================================================
   CATEGORIES SECTION
   ========================================================================== */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.category-card {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: var(--transition-normal);
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.category-card:hover::before {
    opacity: 1;
}

.cat-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: var(--bg-base);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition-normal);
}

.category-card:hover .cat-icon-wrapper {
    background-color: var(--primary);
    color: #ffffff;
    transform: scale(1.1);
}

.cat-icon-wrapper svg {
    width: 28px;
    height: 28px;
}

.category-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-main);
}

.category-card span {
    font-size: 12px;
    color: var(--text-muted);
}

/* ==========================================================================
   PRODUCTS SECTION
   ========================================================================== */
.product-filters {
    display: flex;
    gap: 8px;
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    padding: 6px;
    border-radius: var(--radius-md);
}

.filter-btn {
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

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

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.product-card {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition-normal);
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(13, 148, 136, 0.2);
}

/* Badges on Card */
.product-badge {
    position: absolute;
    top: 14px;
    inline-start: 14px;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    z-index: 5;
}

.product-badge.sale {
    background-color: var(--accent-red-light);
    color: var(--accent-red);
}

.product-badge.hot {
    background-color: #fef3c7;
    color: #d97706;
}

/* Product Media */
.product-image-container {
    height: 180px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-base);
    position: relative;
}

.product-image-container svg {
    width: 64px;
    height: 64px;
    color: var(--text-light);
    transition: var(--transition-normal);
}

.product-card:hover .product-image-container svg {
    transform: scale(1.15) rotate(5deg);
    color: var(--primary);
}

.product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-sm);
    transition: var(--transition-normal);
}

.product-card:hover .product-image-container img {
    transform: scale(1.08);
}

/* Product Info */
.product-info-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.prod-category {
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.prod-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.4;
    margin-bottom: 10px;
    height: 42px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.rating-row {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 16px;
}

.stars-svg {
    display: flex;
    color: var(--warning);
}

.stars-svg svg {
    width: 14px;
    height: 14px;
}

.rating-count {
    font-size: 12px;
    color: var(--text-muted);
}

/* Price & Button Action */
.card-action-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid var(--border-color);
}

.price-box {
    display: flex;
    flex-direction: column;
}

.current-price {
    font-size: 17px;
    font-weight: 800;
    color: var(--primary);
}

.old-price {
    font-size: 12px;
    color: var(--text-muted);
    text-decoration: line-through;
}

.btn-add-to-cart {
    background-color: var(--primary-light);
    color: var(--primary);
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.btn-add-to-cart:hover {
    background-color: var(--primary);
    color: #ffffff;
    transform: scale(1.05);
}

.btn-add-to-cart svg {
    width: 18px;
    height: 18px;
}

/* No products found placeholder styling */
.no-products {
    text-align: center;
    padding: 60px 20px;
    background-color: var(--bg-surface);
    border: 1px dashed var(--border-color);
    border-radius: var(--radius-lg);
    max-width: 480px;
    margin: 40px auto 0;
}

.no-products svg {
    width: 54px;
    height: 54px;
    color: var(--text-light);
    margin-bottom: 16px;
}

.no-products h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}

.no-products p {
    font-size: 14px;
    color: var(--text-muted);
}

/* ==========================================================================
   PRESCRIPTION UPLOAD PORTAL
   ========================================================================== */
.prescription-section {
    background-color: #f1f5f9;
}

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

.prescription-info .info-badge {
    background-color: var(--accent-light);
    color: var(--accent);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
}

.prescription-info h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.25;
    margin-bottom: 16px;
}

.prescription-info p {
    font-size: 15.5px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

/* Upload Steps */
.info-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}

.step-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--primary);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.step-item h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-main);
}

.step-item p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Dropzone styling */
.prescription-upload-box {
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: var(--shadow-lg);
}

.upload-header {
    text-align: center;
    margin-bottom: 24px;
}

.upload-header h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}

.upload-header p {
    font-size: 12.5px;
    color: var(--text-muted);
}

.upload-dropzone {
    border: 2px dashed rgba(13, 148, 136, 0.3);
    border-radius: var(--radius-md);
    background-color: rgba(255, 255, 255, 0.5);
    padding: 40px 20px;
    text-align: center;
    cursor: pointer;
    position: relative;
    transition: var(--transition-normal);
}

.upload-dropzone:hover,
.upload-dropzone.dragover {
    border-color: var(--primary);
    background-color: rgba(13, 148, 136, 0.04);
}

.file-hidden-input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.dropzone-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.upload-icon-pulse {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: var(--transition-fast);
}

.upload-dropzone:hover .upload-icon-pulse {
    transform: scale(1.1);
}

.upload-icon-pulse svg {
    width: 26px;
    height: 26px;
}

.drop-text-bold {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 4px;
}

.drop-text-sub {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

/* Loading state spinner */
.progress-spinner {
    width: 40px;
    height: 40px;
    border: 3.5px solid var(--border-color);
    border-top: 3.5px solid var(--primary);
    border-radius: 50%;
    animation: rotate 1s linear infinite;
    margin-bottom: 16px;
}

.progress-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 12px;
}

.progress-bar-container {
    width: 100%;
    max-width: 240px;
    height: 6px;
    background-color: var(--border-color);
    border-radius: 3px;
    overflow: hidden;
}

.progress-bar {
    width: 0%;
    height: 100%;
    background-color: var(--primary);
    border-radius: 3px;
    transition: width 0.1s linear;
}

/* Success upload view */
.success-icon-bg {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background-color: var(--accent-light);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.success-icon-bg.large {
    width: 72px;
    height: 72px;
    margin-bottom: 24px;
}

.success-icon-bg svg {
    width: 24px;
    height: 24px;
}

.success-icon-bg.large svg {
    width: 32px;
    height: 32px;
}

.success-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 6px;
}

.success-file-name {
    font-size: 13px;
    color: var(--text-main);
    font-weight: 600;
    background-color: var(--bg-base);
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 12px;
}

.success-text-desc {
    font-size: 12.5px;
    color: var(--text-muted);
    margin-bottom: 20px;
    max-width: 320px;
}

/* Insurance Select styling */
.insurance-input-group {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: start;
}

.insurance-input-group label {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-main);
}

.insurance-input-group select {
    padding: 12px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    background-color: var(--bg-surface);
    font-family: inherit;
    font-size: 13.5px;
    color: var(--text-main);
    outline: none;
    cursor: pointer;
    transition: var(--transition-fast);
}

.insurance-input-group select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.15);
}

/* ==========================================================================
   INTERACTIVE BRANCHES LOCATOR
   ========================================================================== */
.locator-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 32px;
    height: 520px;
}

.branches-sidebar {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.search-filter-box {
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.search-filter-box input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 13.5px;
    outline: none;
    font-family: inherit;
    transition: var(--transition-fast);
}

.search-filter-box input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.15);
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    user-select: none;
}

.checkbox-wrapper input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--primary);
    cursor: pointer;
}

.checkbox-wrapper label {
    font-size: 12.5px;
    color: var(--text-muted);
    font-weight: 600;
    cursor: pointer;
}

.branches-list {
    flex-grow: 1;
    overflow-y: auto;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.branch-item-card {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 16px;
    cursor: pointer;
    transition: var(--transition-normal);
    text-align: start;
}

.branch-item-card:hover {
    border-color: var(--primary);
    background-color: rgba(13, 148, 136, 0.02);
}

.branch-item-card.active {
    border-color: var(--primary);
    background-color: var(--primary-light);
}

.branch-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.branch-name-txt {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--text-main);
}

.branch-status-tag {
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
}

.branch-status-tag.open-24 {
    background-color: var(--accent-light);
    color: var(--accent);
}

.branch-status-tag.regular {
    background-color: #e0f2fe;
    color: #0369a1;
}

.branch-info-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.branch-info-row svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* Map Mock Box */
.map-view-box {
    background-color: #cbd5e1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border-color);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    position: relative;
    background-color: #e2e8f0;
}

/* Abstract Map design using Grid lines */
.map-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(#94a3b8 1px, transparent 0),
        linear-gradient(rgba(148, 163, 184, 0.15) 1px, transparent 0),
        linear-gradient(90deg, rgba(148, 163, 184, 0.15) 1px, transparent 0);
    background-size: 24px 24px, 48px 48px, 48px 48px;
    opacity: 0.75;
}

/* Map Pins */
.map-pin {
    position: absolute;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--transition-normal);
}

.pin-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--primary);
    border: 3px solid #ffffff;
    box-shadow: var(--shadow-md);
}

.pin-pulse {
    position: absolute;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(13, 148, 136, 0.4);
    top: -8px;
    left: -8px;
    z-index: -1;
    animation: pulse 2s infinite;
}

.pin-card {
    background-color: var(--text-main);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 6px;
    white-space: nowrap;
    position: absolute;
    bottom: 24px;
    box-shadow: var(--shadow-md);
    opacity: 0.7;
    transform: translateY(4px);
    transition: var(--transition-normal);
}

.map-pin.active .pin-dot {
    background-color: var(--accent-red);
    transform: scale(1.25);
}

.map-pin.active .pin-card {
    opacity: 1;
    transform: translateY(0);
    background-color: var(--accent-red);
}

/* Pin positions (mock relative coordinates) */
.pin-1 { top: 35%; left: 45%; }
.pin-2 { top: 60%; left: 25%; }
.pin-3 { top: 20%; left: 70%; }

.map-watermark {
    position: absolute;
    bottom: 16px;
    inline-end: 16px;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 6px 12px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    box-shadow: var(--shadow-sm);
}

.map-watermark svg {
    width: 14px;
    height: 14px;
}

/* ==========================================================================
   SLIDE-OUT CART DRAWER & OVERLAY
   ========================================================================== */
.cart-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(4px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    top: 0;
    bottom: 0;
    inline-end: 0;
    width: 100%;
    max-width: 440px;
    background-color: var(--bg-surface);
    z-index: 1001;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

html[dir="rtl"] .cart-drawer {
    transform: translateX(100%);
}

html[dir="ltr"] .cart-drawer {
    transform: translateX(100%);
}

/* Override cart drawer translate base on HTML direction */
html[dir="rtl"] .cart-drawer.active {
    transform: translateX(0);
}
html[dir="ltr"] .cart-drawer.active {
    transform: translateX(0);
}

/* For clean translation animation, keep JS control over active sliding */
.cart-drawer.active {
    transform: translateX(0) !important;
}

/* Modify drawer location for LTR to be slide from right (or left? in Arabic RTL it slides from right. In English LTR it should slide from right as well, just correct margin. Let's fix drawer inline placement) */
.cart-drawer {
    right: 0;
    left: auto;
}
html[dir="ltr"] .cart-drawer {
    right: 0;
    left: auto;
}
/* By using direct coordinate "right: 0" we keep it sliding from right for both, which is standard. For translating back, sliding in to x:0 works for both.
To slide out, the initial transform is translate 100%. That means slide right. Perfect! */

.cart-drawer-header {
    padding: 24px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-drawer-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 800;
    color: var(--text-main);
}

.cart-drawer-title svg {
    width: 22px;
    height: 22px;
    color: var(--primary);
}

.cart-count-pill {
    background-color: var(--primary);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 12px;
}

.btn-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--bg-base);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.btn-close:hover {
    background-color: var(--accent-red-light);
    color: var(--accent-red);
    transform: rotate(90deg);
}

.btn-close svg {
    width: 18px;
    height: 18px;
}

/* Cart Body & Item layouts */
.cart-items-body {
    flex-grow: 1;
    overflow-y: auto;
    padding: 24px;
}

.cart-empty-state {
    text-align: center;
    padding: 60px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.empty-cart-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--bg-base);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.empty-cart-icon svg {
    width: 36px;
    height: 36px;
}

.cart-empty-state h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
}

.cart-empty-state p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

/* Filled list styles */
.cart-filled-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cart-item-row {
    display: flex;
    gap: 16px;
    align-items: center;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.cart-item-media {
    width: 60px;
    height: 60px;
    background-color: var(--bg-base);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cart-item-media svg {
    width: 24px;
    height: 24px;
    color: var(--text-light);
}

.cart-item-details {
    flex-grow: 1;
    text-align: start;
}

.cart-item-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.4;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cart-item-price {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--primary);
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.quantity-controller {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    background-color: var(--bg-base);
}

.qty-btn {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.qty-btn:hover {
    color: var(--primary);
    background-color: var(--border-color);
}

.qty-val {
    width: 28px;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-main);
}

.btn-item-delete {
    color: var(--text-light);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.btn-item-delete:hover {
    color: var(--accent-red);
    background-color: var(--accent-red-light);
}

.btn-item-delete svg {
    width: 16px;
    height: 16px;
}

/* Cart Footer Panel */
.cart-drawer-footer {
    padding: 24px;
    border-top: 1px solid var(--border-color);
    background-color: var(--bg-base);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--text-muted);
}

.summary-row.total-row {
    font-size: 17px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 20px;
}

.summary-val {
    font-weight: 700;
    color: var(--text-main);
}

.summary-val.free-text {
    color: var(--accent);
}

.summary-val.total-val {
    color: var(--primary);
    font-size: 19px;
}

.summary-divider {
    border: none;
    border-top: 1px solid var(--border-color);
    margin: 12px 0;
}

.checkout-btn {
    box-shadow: var(--shadow-glow);
}

/* ==========================================================================
   MODAL DIALOG (CHECKOUT THANK YOU)
   ========================================================================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(6px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: var(--bg-surface);
    width: 90%;
    max-width: 480px;
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: var(--shadow-lg);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-content h2 {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 12px;
}

.modal-content p {
    font-size: 14.5px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.order-number-display {
    background-color: var(--primary-light);
    color: var(--primary);
    font-size: 20px;
    font-weight: 800;
    padding: 10px 24px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.modal-note {
    font-size: 12px !important;
    color: var(--text-light) !important;
    margin-bottom: 24px !important;
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.footer {
    background-color: var(--text-main);
    color: #cbd5e1;
    padding: 80px 0 0;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 40px;
    padding-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand .logo-icon {
    box-shadow: none;
}

.footer-brand .brand-name {
    color: #ffffff;
}

.footer-desc {
    font-size: 13.5px;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 320px;
    text-align: start;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.social-link:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.social-link svg {
    width: 18px;
    height: 18px;
}

.footer-column {
    text-align: start;
}

.footer-column h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    inline-start: 0;
    width: 32px;
    height: 2px;
    background-color: var(--primary);
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-column ul a {
    font-size: 13.5px;
    color: #94a3b8;
}

.footer-column ul a:hover {
    color: var(--primary-light-hover);
    padding-inline-start: 4px;
}

.contact-list svg {
    width: 18px;
    height: 18px;
    color: var(--primary);
    flex-shrink: 0;
}

.contact-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 13.5px;
    color: #94a3b8;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 24px 0;
    font-size: 13px;
    color: #64748b;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.payment-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.pay-badge {
    background-color: rgba(255, 255, 255, 0.05);
    color: #94a3b8;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-grid-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .prescription-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .locator-layout {
        grid-template-columns: 1fr;
        height: auto;
    }
    
    .map-view-box {
        height: 360px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-bar {
        display: none; /* In a full app, we would use a mobile menu. Let's simplify this since it's a model */
    }
    
    .header-grid {
        gap: 12px;
    }
    
    .search-wrapper {
        order: 3;
        max-width: 100%;
        width: 100%;
    }
    
    .main-header {
        height: auto;
        padding: 16px 0;
    }
    
    .header-grid {
        flex-wrap: wrap;
    }
    
    .hero-text-content h1 {
        font-size: 30px;
    }
    
    .hero-text-content p {
        font-size: 15px;
    }
    
    .section-header h2 {
        font-size: 26px;
    }
    
    .section-header-row {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .hero-actions-btns {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
    }
    
    .btn-icon-label .action-label {
        display: none; /* Hide label text on tiny screens, show icon only */
    }
    
    .btn-icon-label {
        padding: 8px;
    }
    
    .logo-text {
        display: none; /* Show logo icon only to save space */
    }
}

/* Payment Badges in Footer */
.payment-methods-footer {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.pay-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted, #94a3b8);
}

.pay-icons-grid {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.pay-card {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #f8fafc;
    transition: all 0.2s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.pay-card i {
    font-size: 16px;
}

.pay-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.pay-card.visa {
    background: linear-gradient(135deg, #1a1f71 0%, #2b32b2 100%);
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.pay-card.mastercard {
    background: linear-gradient(135deg, #eb001b 0%, #ff5f00 100%);
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.pay-card.mada {
    background: linear-gradient(135deg, #00875a 0%, #00b87c 100%);
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.pay-card.applepay {
    background: #000000;
    border-color: #333333;
    color: #ffffff;
}

.pay-card.stcpay {
    background: linear-gradient(135deg, #4f2d7f 0%, #7b3fb0 100%);
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.pay-card.cod {
    background: linear-gradient(135deg, #0f766e 0%, #14b8a6 100%);
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

/* Social Media Icons Styling */
.social-links-list {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.social-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #f8fafc;
  font-size: 16px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.social-icon-btn:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.social-icon-btn.instagram:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #ffffff;
  border-color: transparent;
}

.social-icon-btn.twitter:hover {
  background: #000000;
  color: #ffffff;
  border-color: #333;
}

.social-icon-btn.facebook:hover {
  background: #1877f2;
  color: #ffffff;
  border-color: transparent;
}

.social-icon-btn.snapchat:hover {
  background: #fffc00;
  color: #000000;
  border-color: transparent;
}

.social-icon-btn.tiktok:hover {
  background: #000000;
  color: #00f2fe;
  border-color: transparent;
}

.social-icon-btn.whatsapp:hover {
  background: #25d366;
  color: #ffffff;
  border-color: transparent;
}
