/* ===================================
   MAGPYEHUB LTD - MAIN STYLESHEET
   Ghana Heritage Food Products Website
   =================================== */

/* ========== CSS VARIABLES ========== */
:root {
    /* Ghana Flag Colors - Primary Palette */
    --ghana-red: #DC143C;
    --ghana-gold: #FFD700;
    --ghana-green: #228B22;
    
    /* Extended Color Palette */
    --heritage-red: #CE1126;
    --golden-yellow: #FFC000;
    --forest-green: #006B3F;
    --deep-red: #B91C1C;
    --warm-gold: #F59E0B;
    
    /* Neutral Colors */
    --cream: #FEF7E0;
    --light-cream: #FFFBF0;
    --warm-white: #FAFAFA;
    --charcoal: #374151;
    --dark-charcoal: #1F2937;
    --light-gray: #F3F4F6;
    --medium-gray: #9CA3AF;
    --border-gray: #E5E7EB;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    
    /* Spacing */
    --section-padding: 120px 0;
    --container-padding: 0 24px;
    --container-max-width: 1200px;
    
    /* Animations */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Effects */
    --shadow-soft: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-large: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--charcoal);
    background-color: var(--warm-white);
    overflow-x: hidden;
}

/* ========== LOADING SCREEN ========== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--ghana-red), var(--ghana-gold), var(--ghana-green));
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader {
    text-align: center;
    color: white;
}

.ghana-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 0.5em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

p {
    margin-bottom: 1em;
    font-size: 1.1rem;
    line-height: 1.7;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* ========== LAYOUT ========== */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: var(--container-padding);
}

.section-padding {
    padding: var(--section-padding);
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--ghana-gold), var(--warm-gold));
    color: var(--charcoal);
    box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    background: linear-gradient(135deg, var(--warm-gold), var(--ghana-gold));
}

.btn-secondary {
    background: transparent;
    color: var(--charcoal);
    border: 2px solid var(--charcoal);
}

.btn-secondary:hover {
    background: var(--charcoal);
    color: white;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--ghana-red);
    border: 2px solid var(--ghana-red);
}

.btn-outline:hover {
    background: var(--ghana-red);
    color: white;
}

/* ========== HEADER ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition-smooth);
    border-bottom: 1px solid var(--border-gray);
}

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

.logo-img {
    height: 50px;
    width: auto;
    max-width: 180px;
    transition: transform 0.3s ease;
    object-fit: contain;
    border-radius: 8px;
}

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

/* Hero Background Image */
.hero-background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

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

.nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 500;
    color: var(--charcoal);
    text-decoration: none;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--ghana-red);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--ghana-gold);
    transition: var(--transition-smooth);
}

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

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: var(--shadow-medium);
    border-radius: var(--radius-md);
    padding: 12px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-smooth);
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 12px 20px;
    color: var(--charcoal);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.dropdown-content a:hover {
    background: var(--light-cream);
    color: var(--ghana-red);
}

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

.language-selector select {
    background: transparent;
    border: 1px solid var(--border-gray);
    border-radius: var(--radius-sm);
    padding: 8px 12px;
    font-size: 0.9rem;
    cursor: pointer;
}

.cart-btn {
    position: relative;
    background: var(--ghana-gold);
    color: var(--charcoal);
    border: none;
    padding: 12px;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.cart-btn:hover {
    background: var(--warm-gold);
    transform: scale(1.05);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--ghana-red);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 6px;
    border-radius: 50%;
    min-width: 20px;
    text-align: center;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--charcoal);
    transition: var(--transition-smooth);
}

/* ========== HERO SECTION ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--cream), var(--light-cream));
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.9), 
        rgba(220, 20, 60, 0.8), 
        rgba(34, 139, 34, 0.9));
    opacity: 0.8;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding-top: 80px;
}

.hero-text {
    color: white;
}

.heritage-text {
    display: block;
    font-size: 1.2em;
    font-weight: 400;
    opacity: 0.9;
    margin-bottom: 8px;
}

.main-text {
    display: block;
    font-weight: 700;
    background: linear-gradient(45deg, var(--ghana-gold), var(--warm-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.95;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--ghana-gold);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

.hero-image {
    position: relative;
    height: 500px;
}

.floating-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-element {
    position: absolute;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-large);
    overflow: hidden;
    animation: float 6s ease-in-out infinite;
}

.floating-element img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.palm-oil {
    top: 20%;
    left: 10%;
    width: 200px;
    height: 250px;
    animation-delay: 0s;
}

.snack-1 {
    top: 10%;
    right: 20%;
    width: 150px;
    height: 150px;
    animation-delay: 2s;
}

.snack-2 {
    bottom: 20%;
    left: 30%;
    width: 180px;
    height: 180px;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(2deg); }
    66% { transform: translateY(-10px) rotate(-1deg); }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    animation: bounce 2s infinite;
}

.scroll-text {
    font-size: 0.9rem;
    margin-bottom: 8px;
    opacity: 0.8;
}

.scroll-arrow {
    font-size: 1.2rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ========== SECTIONS ========== */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-badge {
    display: inline-block;
    background: var(--ghana-gold);
    color: var(--charcoal);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-title {
    margin-bottom: 20px;
    color: var(--charcoal);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ========== FEATURED PRODUCTS ========== */
.featured-products {
    padding: var(--section-padding);
    background: var(--warm-white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.product-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-large);
}

.product-card.featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--ghana-red);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 50px;
    z-index: 2;
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.featured .product-image {
    height: 100%;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    opacity: 0;
    transition: var(--transition-smooth);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.quick-view-btn,
.add-to-cart-btn {
    background: white;
    color: var(--charcoal);
    border: none;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.add-to-cart-btn {
    background: var(--ghana-gold);
}

.quick-view-btn:hover,
.add-to-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.product-content {
    padding: 24px;
}

.product-category {
    color: var(--ghana-red);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-title {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--charcoal);
}

.product-description {
    color: var(--medium-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.product-sizes,
.product-variants {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.size,
.variant {
    background: var(--light-cream);
    color: var(--charcoal);
    font-size: 0.8rem;
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid var(--border-gray);
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 20px;
}

.price-from {
    color: var(--medium-gray);
    font-size: 0.9rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ghana-red);
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--medium-gray);
    font-size: 0.9rem;
}

.feature i {
    color: var(--ghana-green);
}

.section-footer {
    text-align: center;
}

/* ========== HERITAGE STORY ========== */
.heritage-story {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--cream), var(--light-cream));
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-text {
    order: 1;
}

.story-description {
    margin-bottom: 40px;
}

.story-description p {
    color: var(--medium-gray);
    margin-bottom: 20px;
}

.heritage-features {
    margin-bottom: 40px;
}

.heritage-feature {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--ghana-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--charcoal);
    font-size: 1.2rem;
}

.feature-content h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--charcoal);
}

.feature-content p {
    color: var(--medium-gray);
    font-size: 0.95rem;
}

.story-actions {
    display: flex;
    gap: 20px;
}

.story-media {
    order: 2;
}

.story-image-grid {
    position: relative;
    height: 400px;
    margin-bottom: 40px;
}

.story-image {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-image.main {
    width: 60%;
    height: 70%;
    top: 0;
    left: 0;
}

.story-image.secondary {
    width: 45%;
    height: 50%;
    top: 20%;
    right: 0;
}

.story-image.tertiary {
    width: 35%;
    height: 40%;
    bottom: 0;
    left: 25%;
}

.heritage-timeline {
    border-left: 3px solid var(--ghana-gold);
    padding-left: 20px;
}

.timeline-item {
    margin-bottom: 30px;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -26px;
    top: 5px;
    width: 12px;
    height: 12px;
    background: var(--ghana-red);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 3px var(--ghana-gold);
}

.timeline-year {
    font-weight: 700;
    color: var(--ghana-red);
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.timeline-content {
    color: var(--medium-gray);
    font-size: 0.95rem;
}

/* ========== WHY CHOOSE US ========== */
.why-choose-us {
    padding: var(--section-padding);
    background: white;
}

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

.feature-card {
    text-align: center;
    padding: 40px 20px;
    border-radius: var(--radius-lg);
    background: var(--light-cream);
    transition: var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.feature-card .feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--ghana-gold), var(--warm-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--charcoal);
    margin: 0 auto 24px;
}

.feature-title {
    font-size: 1.3rem;
    color: var(--charcoal);
    margin-bottom: 16px;
}

.feature-description {
    color: var(--medium-gray);
    line-height: 1.6;
}

/* ========== RESTAURANT PREVIEW ========== */
.restaurant-preview {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--ghana-red), var(--heritage-red));
    color: white;
}

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

.restaurant-info .section-badge {
    background: rgba(255, 215, 0, 0.2);
    color: var(--ghana-gold);
    border: 1px solid var(--ghana-gold);
}

.restaurant-info .section-title {
    color: white;
}

.restaurant-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 40px;
    opacity: 0.9;
}

.restaurant-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.restaurant-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.restaurant-feature i {
    color: var(--ghana-gold);
    font-size: 1.1rem;
}

.restaurant-actions {
    display: flex;
    gap: 20px;
}

.restaurant-visual {
    position: relative;
}

.restaurant-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-large);
}

.restaurant-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.restaurant-image:hover .image-overlay {
    opacity: 1;
}

.play-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    background: rgba(255, 215, 0, 0.9);
    color: var(--charcoal);
    border: none;
    padding: 20px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-bounce);
}

.play-btn:hover {
    transform: scale(1.1);
}

.play-btn i {
    font-size: 2rem;
}

.play-btn span {
    font-weight: 600;
    font-size: 0.9rem;
}

/* ========== NEWSLETTER ========== */
.newsletter {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--ghana-green), var(--forest-green));
    color: white;
}

.newsletter-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-title {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 20px;
}

.newsletter-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.form-input {
    flex: 1;
    padding: 16px 20px;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
    background: white;
    color: var(--charcoal);
}

.form-input::placeholder {
    color: var(--medium-gray);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9rem;
    opacity: 0.9;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 4px;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--dark-charcoal);
    color: white;
    padding: 80px 0 0;
}

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

.footer-logo img {
    height: 60px;
    margin-bottom: 20px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 30px;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 215, 0, 0.1);
    color: var(--ghana-gold);
    border: 1px solid var(--ghana-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.social-link:hover {
    background: var(--ghana-gold);
    color: var(--charcoal);
    transform: translateY(-2px);
}

.footer-title {
    font-size: 1.2rem;
    color: var(--ghana-gold);
    margin-bottom: 20px;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--ghana-gold);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.contact-item i {
    color: var(--ghana-gold);
    margin-top: 2px;
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
}

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

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.footer-bottom-links a:hover {
    color: var(--ghana-gold);
}

.certifications {
    display: flex;
    gap: 16px;
}

.cert-logo {
    height: 30px;
    opacity: 0.7;
    transition: var(--transition-smooth);
}

.cert-logo:hover {
    opacity: 1;
}

/* ========== CART SIDEBAR ========== */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100%;
    background: white;
    box-shadow: var(--shadow-large);
    z-index: 1001;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    right: 0;
}

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

.cart-close-btn {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 8px;
    color: var(--medium-gray);
}

.cart-content {
    flex: 1;
    padding: 24px;
    overflow-y: auto;
}

.empty-cart {
    text-align: center;
    padding: 60px 20px;
    color: var(--medium-gray);
}

.empty-cart i {
    font-size: 3rem;
    margin-bottom: 20px;
    opacity: 0.5;
}

.cart-footer {
    border-top: 1px solid var(--border-gray);
    padding: 24px;
}

.cart-total {
    margin-bottom: 20px;
}

.total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.total-row.total {
    font-weight: 700;
    font-size: 1.1rem;
    border-top: 1px solid var(--border-gray);
    padding-top: 8px;
    margin-top: 12px;
}

.cart-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ========== OVERLAY ========== */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

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

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.animate-left {
    animation: fadeInLeft 0.8s ease forwards;
}

.animate-right {
    animation: fadeInRight 0.8s ease forwards;
}

/* ========== UTILITY CLASSES ========== */
.d-none { display: none !important; }
.d-block { display: block !important; }
.d-flex { display: flex !important; }
.d-grid { display: grid !important; }

.text-ghana-red { color: var(--ghana-red) !important; }
.text-ghana-gold { color: var(--ghana-gold) !important; }
.text-ghana-green { color: var(--ghana-green) !important; }

.bg-ghana-red { background-color: var(--ghana-red) !important; }
.bg-ghana-gold { background-color: var(--ghana-gold) !important; }
.bg-ghana-green { background-color: var(--ghana-green) !important; }

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

.p-0 { padding: 0 !important; }
.p-1 { padding: 0.5rem !important; }
.p-2 { padding: 1rem !important; }
.p-3 { padding: 1.5rem !important; }
.p-4 { padding: 2rem !important; }
.p-5 { padding: 3rem !important; }