/* ShopGhanazan International - Professional B2B Styling */

:root {
    --ghana-gold: #fcd116;
    --ghana-red: #ce1126;
    --ghana-green: #006b3f;
    --dark-text: #1a1a1a;
    --light-bg: #f8f9fa;
    --white: #ffffff;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body.international-page {
    font-family: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--light-bg);
    color: var(--dark-text);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Ticker Animation */
.ticker-wrap {
    width: 100%;
    overflow: hidden;
    background: linear-gradient(90deg, var(--ghana-red) 0%, var(--ghana-gold) 50%, var(--ghana-green) 100%);
    color: white;
    padding: 12px 0;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.ticker {
    display: flex;
    align-items: center;
    animation: scroll 20s linear infinite;
}

.ticker-item {
    flex-shrink: 0;
    padding: 0 50px;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Welcome Section */
.welcome-section {
    text-align: center;
    padding: 40px 20px;
    background: white;
}

.welcome-section h1 {
    font-size: 3rem;
    color: var(--ghana-green);
    margin-bottom: 10px;
}

.welcome-section p {
    font-size: 1.2rem;
    color: #666;
}

/* Hero Section */
.international-hero {
    color: white;
    padding: 40px 20px;
    text-align: center;
    position: relative;
    z-index: 3;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 0;
}

.international-hero .description {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 30px;
    opacity: 0.9;
    line-height: 1.8;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.7);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 24px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

.trust-badge i {
    font-size: 1.5rem;
    color: var(--ghana-gold);
}

/* Categories Section */
.categories-section {
    padding: 80px 20px;
    background: white;
}

.categories-section .container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--ghana-green);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Video Category Cards - Split Layout */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.category-card {
    display: flex;
    flex-direction: column;
    height: auto;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: white;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

/* Video wrapper - 1:1 aspect ratio */
.category-card-video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    /* 1:1 aspect ratio */
    overflow: hidden;
}

.category-card-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* White content area */
.category-card-content {
    background: white;
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.category-card-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--ghana-gold);
}

.category-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    font-weight: 700;
    color: var(--dark-text);
}

.category-card p {
    font-size: 0.95rem;
    margin-bottom: 20px;
    color: #666;
    line-height: 1.6;
}

.learn-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--ghana-gold);
    color: var(--dark-text);
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
}

.learn-more-btn:hover {
    background: #e6bd0f;
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(252, 209, 22, 0.4);
}

.learn-more-btn i {
    transition: transform 0.3s ease;
}

/* All Products Section */
.all-products-section {
    padding: 80px 20px;
    background: var(--light-bg);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.product-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, var(--ghana-gold) 0%, var(--ghana-red) 50%, var(--ghana-green) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
}

.product-info {
    padding: 20px;
}

.product-category {
    font-size: 0.85rem;
    color: var(--ghana-green);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.product-info h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--dark-text);
}

.product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--ghana-red);
    margin-bottom: 10px;
}

.product-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.product-badge.bestseller {
    background: var(--ghana-gold);
    color: var(--dark-text);
}

.product-badge.premium {
    background: var(--ghana-green);
    color: white;
}

.product-badge.new {
    background: var(--ghana-red);
    color: white;
}

/* Contact CTA */
.contact-cta {
    background: linear-gradient(135deg, var(--ghana-green) 0%, #004d38 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.contact-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 16px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-btn.primary {
    background: var(--ghana-gold);
    color: var(--dark-text);
}

.cta-btn.primary:hover {
    background: #e6bd0f;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(252, 209, 22, 0.3);
}

.cta-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-btn.secondary:hover {
    background: white;
    color: var(--ghana-green);
}

/* Responsive */
@media (max-width: 768px) {
    .category-grid {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}