/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cairo', 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    direction: rtl;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(236, 72, 153, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
}

.btn-outline {
    background: transparent;
    color: #ec4899;
    border: 2px solid #ec4899;
}

.btn-outline:hover {
    background: #ec4899;
    color: white;
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25d366;
    color: white;
}

.btn-whatsapp:hover {
    background: #128c7e;
    transform: translateY(-2px);
}

.btn-phone {
    background: #ec4899;
    color: white;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}

.btn-phone:hover {
    background: #db2777;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(236, 72, 153, 0.4);
}

.btn-whatsapp-large {
    background: #25d366;
    color: white;
    padding: 16px 32px;
    font-size: 1.1rem;
    border-radius: 12px;
}

.btn-whatsapp-large:hover {
    background: #128c7e;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.nav-brand {
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #333;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ec4899 0%, #22c55e 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
}

/* Navigation */
.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #ec4899;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ec4899;
    transition: width 0.3s ease;
}

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

/* Language Selector */
.language-selector {
    position: relative;
    margin-left: 1rem;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.lang-btn:hover {
    background-color: #f3f4f6;
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    padding: 0.5rem 0;
    min-width: 150px;
    display: none;
    z-index: 1000;
}

.language-selector:hover .lang-dropdown {
    display: block;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    text-decoration: none;
    color: #666;
    transition: background-color 0.3s ease;
}

.lang-option:hover {
    background-color: #f3f4f6;
}

.lang-option.active {
    color: #ec4899;
    background-color: #fdf2f8;
}

/* Contact Buttons */
.contact-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-buttons .btn {
    height: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    gap: 8px;
    white-space: nowrap;
}

.contact-buttons .btn-whatsapp,
.contact-buttons .btn-phone {
    height: 44px;
    min-height: 44px;
    line-height: 1;
}

/* Mobile Menu */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: #333;
    position: relative;
    transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: #333;
    transition: all 0.3s ease;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

/* Breadcrumb */
.breadcrumb {
    background: #f8fafc;
    padding: 1rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.breadcrumb-list {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.breadcrumb-list li {
    color: #666;
}

.breadcrumb-list li:not(:last-child)::after {
    content: '>';
    margin-left: 0.5rem;
    color: #999;
}

.breadcrumb-list a {
    color: #ec4899;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-list a:hover {
    color: #db2777;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #fdf2f8 0%, #f0fdf4 100%);
    padding: 3rem 0;
    text-align: center;
}

.page-hero .hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.page-hero .hero-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #fdf2f8 0%, #f0fdf4 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.hero::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="50" cy="50" r="1" fill="%23ec4899" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.text-gradient {
    background: linear-gradient(135deg, #ec4899 0%, #22c55e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 2rem;
    color: #666;
    font-weight: 600;
}

.hero-description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.hero-img:hover {
    transform: scale(1.05);
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #333;
}

/* Wikipedia Information Section */
.wikipedia-info {
    padding: 5rem 0;
    background-color: #f9f9f9;
}

.wiki-content {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin-bottom: 2rem;
}

.wiki-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.wiki-source {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
    font-size: 0.9rem;
    color: #666;
}

.wiki-source a {
    color: #0078d7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.wiki-source a:hover {
    color: #005a9e;
    text-decoration: underline;
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #f3f4f6;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.feature-description {
    color: #666;
    line-height: 1.6;
}

/* Drug Info Section */
.drug-info {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.drug-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.drug-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.drug-details {
    margin-bottom: 2rem;
}

.detail-item {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
}

.detail-item:last-child {
    border-bottom: none;
}

.drug-image {
    display: flex;
    justify-content: center;
}

.drug-img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Countries Section */
.countries {
    padding: 5rem 0;
    background: white;
}

.countries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.country-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #f3f4f6;
}

.country-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.country-flag {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.country-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.country-card p {
    color: #666;
    margin: 0;
}

/* CTA Section */
.cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ec4899 0%, #22c55e 100%);
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Side Effects Specific Styles */
.warning-section {
    padding: 2rem 0;
    background: #fef3c7;
}

.warning-card {
    background: #fbbf24;
    color: #92400e;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #f59e0b;
}

.warning-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.side-effects {
    padding: 5rem 0;
    background: white;
}

.effects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.effect-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #f3f4f6;
    transition: all 0.3s ease;
}

.effect-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.effect-card.common {
    border-left: 4px solid #22c55e;
}

.effect-card.uncommon {
    border-left: 4px solid #f59e0b;
}

.effect-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.effect-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.effect-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.severity {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.effect-card.common .severity {
    background: #dcfce7;
    color: #166534;
}

.effect-card.uncommon .severity {
    background: #fef3c7;
    color: #92400e;
}

.less-common-effects {
    padding: 5rem 0;
    background: #f8fafc;
}

.medical-help {
    padding: 5rem 0;
    background: white;
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.help-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #f3f4f6;
}

.help-card.urgent {
    border-left: 4px solid #ef4444;
}

.help-card.important {
    border-left: 4px solid #f59e0b;
}

.help-card.normal {
    border-left: 4px solid #3b82f6;
}

.help-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.help-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.help-card ul {
    list-style: none;
    padding: 0;
}

.help-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f3f4f6;
    color: #666;
}

.help-card li:last-child {
    border-bottom: none;
}

.prevention {
    padding: 5rem 0;
    background: #f8fafc;
}

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

.prevention-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #f3f4f6;
    transition: all 0.3s ease;
}

.prevention-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.prevention-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.prevention-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.prevention-card ul {
    list-style: none;
    padding: 0;
}

.prevention-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f3f4f6;
    color: #666;
}

.prevention-card li:last-child {
    border-bottom: none;
}

/* Drug Info Detailed */
.drug-info-detailed {
    padding: 5rem 0;
    background: white;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #f3f4f6;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.info-card h2 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.info-card p {
    color: #666;
    line-height: 1.6;
}

/* Chemical Composition */
.chemical-composition {
    padding: 5rem 0;
    background: #f8fafc;
}

.composition-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.composition-text {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}

.composition-list {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.composition-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e5e7eb;
    color: #666;
}

.composition-list li:last-child {
    border-bottom: none;
}

.composition-image {
    display: flex;
    justify-content: center;
}

.composition-img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Medical Uses */
.medical-uses {
    padding: 5rem 0;
    background: white;
}

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

.use-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #f3f4f6;
}

.use-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.use-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.use-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.use-card p {
    color: #666;
    line-height: 1.6;
}

/* Dosage Information */
.dosage-info {
    padding: 5rem 0;
    background: #f8fafc;
}

.dosage-content {
    max-width: 800px;
    margin: 0 auto;
}

.dosage-warning {
    background: #fef3c7;
    color: #92400e;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 3rem;
    border: 2px solid #f59e0b;
}

.dosage-table {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.table th,
.table td {
    padding: 1rem;
    text-align: right;
    border-bottom: 1px solid #e5e7eb;
}

.table th {
    background: #f8fafc;
    font-weight: 600;
    color: #333;
}

.table tr:hover {
    background: #f8fafc;
}

/* Precautions */
.precautions {
    padding: 5rem 0;
    background: white;
}

.precautions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.precaution-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #f3f4f6;
}

.precaution-card.warning {
    border-left: 4px solid #ef4444;
}

.precaution-card.info {
    border-left: 4px solid #3b82f6;
}

.precaution-card.alert {
    border-left: 4px solid #f59e0b;
}

.precaution-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.precaution-card ul {
    list-style: none;
    padding: 0;
}

.precaution-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f3f4f6;
    color: #666;
}

.precaution-card li:last-child {
    border-bottom: none;
}

/* Drug Images */
.drug-images {
    padding: 5rem 0;
    background: #f8fafc;
}

.images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.image-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #f3f4f6;
}

.image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.drug-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.image-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.image-card p {
    color: #666;
    margin: 0;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.footer-description {
    color: #d1d5db;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 8px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #ec4899;
    transform: translateY(-2px);
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ec4899;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #d1d5db;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
    color: #9ca3af;
}

.disclaimer {
    color: #fbbf24 !important;
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 1000;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.8);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

/* Icons */
.icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .drug-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .composition-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Ensure contact buttons maintain height on medium screens */
    .contact-buttons .btn {
        height: 44px;
        min-height: 44px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        padding: 1rem;
        border-top: 1px solid #e5e7eb;
    }
    
    .nav-menu.active {
        display: block;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .contact-buttons {
        display: none;
    }
    
    /* Show contact buttons in mobile menu */
    .nav-menu.active .contact-buttons {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid #e5e7eb;
    }
    
    .nav-menu.active .contact-buttons .btn {
        height: 44px;
        min-height: 44px;
        width: 100%;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .countries-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-btn {
        width: 50px;
        height: 50px;
    }
    
    .effects-grid,
    .help-grid,
    .prevention-grid,
    .info-grid,
    .uses-grid,
    .precautions-grid,
    .images-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features,
    .drug-info,
    .countries,
    .cta,
    .side-effects,
    .less-common-effects,
    .medical-help,
    .prevention,
    .drug-info-detailed,
    .chemical-composition,
    .medical-uses,
    .dosage-info,
    .precautions,
    .drug-images {
        padding: 3rem 0;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }

/* Notifications */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    z-index: 10000;
    max-width: 400px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    animation: slideInRight 0.3s ease-out;
}

.notification-success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.notification-error {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.notification-info {
    background: #eff6ff;
    color: #1d4ed8;
    border: 1px solid #bfdbfe;
}

.notification-warning {
    background: #fef3c7;
    color: #92400e;
    border: 1px solid #fde68a;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s ease-in-out infinite;
}

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

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus Styles for Accessibility */
.btn:focus,
.nav-link:focus,
.social-link:focus {
    outline: 2px solid #ec4899;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .whatsapp-float {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .hero,
    .cta {
        background: white !important;
        color: black !important;
    }
} 

/* Contact Page Styles */
.contact-options {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.contact-methods {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.contact-form-section {
    padding: 4rem 0;
    background: white;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #374151;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #f9fafb;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ec4899;
    background: white;
    box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
}

.form-status {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
}

.form-status.success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.form-status.error {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.form-status.loading {
    background: #eff6ff;
    color: #1d4ed8;
    border: 1px solid #bfdbfe;
}

/* Responsive adjustments for contact page */
@media (max-width: 768px) {
    .contact-methods {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-form {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .form-group input,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }
}

@media (max-width: 480px) {
    .contact-form {
        padding: 1rem;
    }
    
    .contact-methods .btn {
        width: 100%;
        max-width: 300px;
    }
} 

/* Medical Abortion Section */
.medical-abortion {
    padding: 4rem 0;
    background: linear-gradient(135deg, #fef7ff 0%, #f3e8ff 100%);
}

.abortion-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.abortion-info {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.abortion-warning {
    background: #fef3c7;
    border: 1px solid #fde68a;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.abortion-warning .warning-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.abortion-warning h3 {
    color: #92400e;
    margin-bottom: 0.5rem;
}

.abortion-warning p {
    color: #92400e;
    margin: 0;
    line-height: 1.6;
}

.abortion-details h3 {
    color: #7c3aed;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.abortion-details h3:first-child {
    margin-top: 0;
}

.abortion-details p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #374151;
}

.abortion-list,
.side-effects-list,
.emergency-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.abortion-list li,
.side-effects-list li,
.emergency-list li {
    padding: 0.5rem 0;
    padding-right: 1.5rem;
    position: relative;
    color: #374151;
}

.abortion-list li::before,
.side-effects-list li::before {
    content: "•";
    color: #7c3aed;
    font-weight: bold;
    position: absolute;
    right: 0;
}

.emergency-list li::before {
    content: "⚠️";
    position: absolute;
    right: 0;
}

.protocol-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    counter-reset: protocol-counter;
}

.protocol-list li {
    padding: 0.75rem 0;
    padding-right: 2rem;
    position: relative;
    color: #374151;
    counter-increment: protocol-counter;
}

.protocol-list li::before {
    content: counter(protocol-counter);
    background: #7c3aed;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: bold;
    position: absolute;
    right: 0;
    top: 0.5rem;
}

.abortion-cta {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: sticky;
    top: 2rem;
}

.abortion-cta h3 {
    color: #7c3aed;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.abortion-cta p {
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.abortion-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.abortion-buttons .btn {
    width: 100%;
    justify-content: center;
}

/* Responsive adjustments for abortion section */
@media (max-width: 1024px) {
    .abortion-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .abortion-cta {
        position: static;
    }
}

@media (max-width: 768px) {
    .medical-abortion {
        padding: 2rem 0;
    }
    
    .abortion-info,
    .abortion-cta {
        padding: 1.5rem;
    }
    
    .abortion-warning {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
    }
    
    .abortion-warning .warning-icon {
        align-self: center;
    }
}

@media (max-width: 480px) {
    .abortion-info,
    .abortion-cta {
        padding: 1rem;
    }
    
    .abortion-details h3 {
        font-size: 1.1rem;
    }
} 

/* Image Source Styling */
.image-source {
    display: block;
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 0.5rem;
    font-style: italic;
    text-align: center;
}

.composition-image .image-source {
    text-align: center;
    margin-top: 0.75rem;
}

/* Drug Image Sections for Different Pages */
.drug-image-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: center;
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.drug-image-section .image-container {
    text-align: center;
}

.drug-image-section .drug-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.drug-image-section .image-info h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.drug-image-section .image-info p {
    color: #666;
    line-height: 1.6;
}

/* Package Images Section */
.drug-package-section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.package-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.package-images .image-container {
    text-align: center;
}

.package-images .package-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.package-info h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.package-info p {
    color: #666;
    line-height: 1.6;
}

/* FAQ Images Section */
.drug-images-faq {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.drug-images-faq .image-container {
    text-align: center;
}

.drug-images-faq .drug-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Blog Images Section */
.drug-images-blog {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    margin-bottom: 3rem;
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.drug-images-blog .image-container {
    text-align: center;
}

.drug-images-blog .drug-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.blog-info h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.blog-info p {
    color: #666;
    line-height: 1.6;
}

/* Contact Images Section */
.drug-image-contact {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    margin-bottom: 3rem;
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.drug-image-contact .image-container {
    text-align: center;
}

.drug-image-contact .drug-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-info-text h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contact-info-text p {
    color: #666;
    line-height: 1.6;
}

/* Blog Preview Section */
.blog-preview {
    padding: 4rem 0;
    background-color: #f8fafc;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.article-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.article-image {
    height: 200px;
    overflow: hidden;
}

.article-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.article-card:hover .article-img {
    transform: scale(1.05);
}

.article-content {
    padding: 1.5rem;
}

.article-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #333;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    color: #666;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.article-excerpt {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.view-all-link {
    text-align: center;
}

/* Responsive Design for Image Sections */
@media (max-width: 768px) {
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .drug-image-section,
    .drug-package-section,
    .drug-images-faq,
    .drug-images-blog,
    .drug-image-contact {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .package-images {
        grid-template-columns: 1fr;
    }
    
    .drug-image-section .image-info,
    .package-info,
    .blog-info,
    .contact-info-text {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .drug-image-section,
    .drug-package-section,
    .drug-images-faq,
    .drug-images-blog,
    .drug-image-contact {
        padding: 1rem;
    }
    
    .drug-image-section .image-info h3,
    .package-info h3,
    .blog-info h3,
    .contact-info-text h3 {
        font-size: 1.1rem;
    }
} 

/* Doctors Info Styles */
.doctors-info,
.doctors-info-hero {
    background: rgba(255, 255, 255, 0.98);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 1.5rem 0;
    border: 2px solid #ec4899;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}

.doctors-info h4,
.doctors-info-hero h4 {
    color: #be185d;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.doctors-info ul,
.doctors-info-hero ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.doctors-info li,
.doctors-info-hero li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f3f4f6;
    color: #1f2937;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 500;
}

.doctors-info li:last-child,
.doctors-info-hero li:last-child {
    border-bottom: none;
}

.doctors-info strong,
.doctors-info-hero strong {
    color: #dc2626;
    font-weight: 700;
}

/* Hero specific styling */
.doctors-info-hero {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border: 2px solid #22c55e;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.doctors-info-hero h4 {
    color: #047857;
}

.doctors-info-hero strong {
    color: #059669;
}

/* Responsive design for doctors info */
@media (max-width: 768px) {
    .doctors-info,
    .doctors-info-hero {
        padding: 1rem;
        margin: 1rem 0;
    }
    
    .doctors-info h4,
    .doctors-info-hero h4 {
        font-size: 1.1rem;
    }
    
    .doctors-info li,
    .doctors-info-hero li {
        font-size: 0.95rem;
        padding: 0.5rem 0;
    }
}

@media (max-width: 480px) {
    .doctors-info,
    .doctors-info-hero {
        padding: 0.75rem;
    }
    
    .doctors-info h4,
    .doctors-info-hero h4 {
        font-size: 1rem;
    }
    
    .doctors-info li,
    .doctors-info-hero li {
        font-size: 0.9rem;
    }
} 

/* WhatsApp Order Banner Styles */
.whatsapp-order-banner {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 100;
    max-width: 350px;
}

.order-content {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    animation: slideInLeft 0.6s ease-out;
}

.order-text h3 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.3;
}

.order-text p {
    color: #e8f5e8;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.order-whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.95);
    color: #25d366;
    padding: 12px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.order-whatsapp-btn:hover {
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    color: #128c7e;
}

.whatsapp-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive design for order banner */
@media (max-width: 1024px) {
    .whatsapp-order-banner {
        position: relative;
        top: auto;
        left: auto;
        margin-bottom: 2rem;
        max-width: 100%;
    }
    
    .order-content {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .whatsapp-order-banner {
        margin-bottom: 1.5rem;
    }
    
    .order-content {
        padding: 1.25rem;
    }
    
    .order-text h3 {
        font-size: 1rem;
    }
    
    .order-text p {
        font-size: 0.85rem;
    }
    
    .order-whatsapp-btn {
        padding: 10px 16px;
        font-size: 0.95rem;
    }
    
    .whatsapp-icon {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .order-content {
        padding: 1rem;
    }
    
    .order-text h3 {
        font-size: 0.95rem;
    }
    
    .order-text p {
        font-size: 0.8rem;
    }
    
    .order-whatsapp-btn {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
    
    .whatsapp-icon {
        width: 18px;
        height: 18px;
    }
}