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

:root {
    --primary-color: #2563eb;
    --secondary-color: #7c3aed;
    --accent-color: #f59e0b;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --white: #ffffff;
    --lazada-color: #0f056b;
    --shopee-color: #ee4d2d;
    --tiktok-color: #000000;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-img {
    height: 32px;
    max-height: 32px;
    width: auto;
    display: block;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo h1 {
    font-size: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
}

.logo .tagline {
    font-size: 0.7rem;
    color: #10b981;
    font-weight: 500;
    font-style: italic;
    letter-spacing: 0.5px;
    text-align: right;
    display: block;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

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


/* Hero Section */
.hero {
    background: url('../images/skyline.jpg') center center / cover no-repeat;
    color: var(--white);
    padding: 0;
    text-align: center;
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
    width: 70%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    justify-content: center;
}

.hero-bottom {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 2;
}

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

.hero-quote-small {
    font-family: 'Amatic SC', cursive;
    font-size: 6vw;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.7);
    letter-spacing: 3px;
}

.hero-quote-large {
    font-family: 'Amatic SC', cursive;
    font-size: 10vw;
    font-weight: 700;
    margin: 0;
    color: var(--white);
    text-shadow: 4px 4px 15px rgba(0, 0, 0, 0.7);
    line-height: 0.95;
}

.hero-tagline {
    font-size: 1.1rem;
    color: var(--white);
    margin: 0 0 1rem 0;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-btn {
    font-size: 1rem;
    padding: 0.875rem 2.5rem;
    background-color: var(--white);
    color: var(--text-dark);
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.btn-order {
    display: block;
    width: 100%;
    margin-top: 1.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: var(--white);
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.btn-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Products Section */
.products-section {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
    font-weight: 700;
}

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

.product-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.product-image img,
.product-image video {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
    cursor: pointer;
}

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

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.product-info p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.fda-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #10b981;
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.product-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.fda-logo {
    width: 95px;
    height: 95px;
    object-fit: contain;
    flex-shrink: 0;
}

.shop-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.shop-links {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.shop-link {
    flex: 1;
    min-width: 80px;
    text-align: center;
    padding: 0.5rem;
    border-radius: 6px;
    text-decoration: none;
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.shop-link.lazada {
    background-color: var(--lazada-color);
}

.shop-link.shopee {
    background-color: var(--shopee-color);
}

.shop-link.tiktok {
    background-color: var(--tiktok-color);
}

.shop-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* About Section */
.about-section {
    padding: 5rem 0;
    text-align: center;
}

.about-section p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* Compact About Section */
.about-section-compact {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.about-header {
    text-align: center;
    margin-bottom: 2rem;
}

.about-header h2 {
    font-size: 1.75rem;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.about-tagline {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    letter-spacing: 2px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.about-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 1.25rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
}

.about-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    color: var(--white);
    font-size: 1.1rem;
}

.about-card h3 {
    font-size: 0.9rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.about-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-header h2 {
        font-size: 1.5rem;
    }
}

/* Product Detail Page */
.product-detail {
    padding: 3rem 0;
    background-color: var(--bg-light);
}

.breadcrumb {
    margin-bottom: 2rem;
    color: var(--text-light);
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.product-detail-grid > * {
    min-width: 0;
}

/* Media Carousel */
.media-carousel {
    position: sticky;
    top: 5rem;
    align-self: start;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 12px;
    background-color: #000;
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
}

.carousel-slide.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.video-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--text-dark);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background-color: var(--white);
    box-shadow: var(--shadow-lg);
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

.carousel-thumbnails {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.75rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--bg-light);
}

.carousel-thumbnails::-webkit-scrollbar {
    height: 6px;
}

.carousel-thumbnails::-webkit-scrollbar-track {
    background: var(--bg-light);
    border-radius: 3px;
}

.carousel-thumbnails::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
}

.thumbnail {
    min-width: 60px;
    width: 60px;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-light);
    flex-shrink: 0;
}

.thumbnail.active {
    border-color: var(--primary-color);
}

.thumbnail:hover {
    border-color: var(--secondary-color);
}

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

.thumbnail i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* Product Info Detail */
.product-info-detail h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.product-tagline {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.product-description {
    margin-bottom: 1.5rem;
}

.product-description h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.product-description h4 {
    font-size: 1rem;
    margin: 0.75rem 0 0.4rem;
    color: var(--text-dark);
}

.product-description p {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.product-description ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-description li {
    padding: 0.2rem 0;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

.product-description li i {
    color: #10b981;
    font-size: 1rem;
}

/* FDA Section */
.fda-section {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border-left: 4px solid #10b981;
}

.fda-section h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fda-section h3 i {
    color: #10b981;
}

.fda-details p {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.fda-details strong {
    color: var(--text-dark);
}

.fda-section-compact {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: var(--bg-light);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.fda-info-compact p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

.fda-info-compact p:first-child {
    color: var(--text-dark);
    font-size: 0.95rem;
}

.fda-badge-large {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #10b981;
    color: var(--white);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
}

.fda-badge-large i {
    font-size: 1.2rem;
}

/* Purchase Section */
.purchase-section {
    margin-top: 2rem;
}

.purchase-section h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.shop-links-large {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.shop-link-large {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.shop-link-large.lazada {
    background-color: var(--lazada-color);
}

.shop-link-large.shopee {
    background-color: var(--shopee-color);
}

.shop-link-large.tiktok {
    background-color: var(--tiktok-color);
}

.shop-link-large:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-lg);
}

.shop-link-large i {
    font-size: 1.5rem;
}

/* Related Products / Products Showcase */
.related-products,
.products-showcase {
    padding: 2rem 0;
    background-color: var(--bg-light);
}

.related-products .section-title,
.products-showcase .section-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.products-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.product-showcase-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.product-showcase-card:hover {
    transform: translateY(-3px);
}

.product-showcase-card img,
.product-showcase-card video {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.product-showcase-card .card-content {
    padding: 1rem;
    text-align: center;
}

.product-showcase-card h3 {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.product-showcase-card p {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.product-showcase-card .btn {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
}

@media (max-width: 768px) {
    .products-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .products-showcase-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer */
.footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.footer-logo-image {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 0;
}

.footer-logo .logo-img {
    height: 28px;
    filter: brightness(0) invert(1);
}

.company-info {
    font-style: italic;
    color: #9ca3af;
    margin-top: 0.5rem;
    font-size: 0.875rem;
}

.footer-section h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-section p {
    color: #9ca3af;
    line-height: 1.8;
}

.sitemap {
    list-style: none;
    padding: 0;
}

.sitemap li {
    margin-bottom: 0.5rem;
}

.sitemap a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sitemap a:hover {
    color: var(--white);
}

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

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 2rem 0;
    text-align: center;
    position: relative;
}

.contact-hero-content {
    position: relative;
    z-index: 1;
}

.contact-hero-content h2 {
    font-size: 2rem;
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.contact-hero-content p {
    font-size: 1rem;
    opacity: 0.9;
}

.contact-content {
    padding: 2rem 0;
    background-color: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-info-section,
.contact-form-section {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.contact-info-section h2,
.contact-form-section h2 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.contact-info-section > p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.contact-info-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    background-color: var(--bg-light);
}

.contact-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 0.85rem;
    margin-bottom: 0.1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.contact-details p {
    color: var(--text-light);
    line-height: 1.4;
    font-size: 0.8rem;
    margin: 0;
}

.contact-details a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.contact-details a:hover {
    color: var(--secondary-color);
}

/* Social Media */
.social-media {
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--bg-light);
}

.social-media h3 {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
}

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

.social-link {
    width: 35px;
    height: 35px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link.facebook {
    background: linear-gradient(135deg, #1877f2, #0d5bbf);
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link.twitter {
    background: linear-gradient(135deg, #1da1f2, #0d8bd9);
}

.social-link.tiktok {
    background: linear-gradient(135deg, #000000, #333333);
}

.social-link:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Follow Us Spiel (Product Cards) */
.follow-spiel {
    margin-top: 1rem;
    padding: 0.75rem;
    background: linear-gradient(135deg, #f0f4ff 0%, #faf0ff 100%);
    border-radius: 8px;
    text-align: center;
    border: 1px dashed var(--primary-color);
}

.follow-spiel p {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.follow-links {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.follow-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.75rem;
    border-radius: 6px;
    text-decoration: none;
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.follow-link.facebook {
    background: linear-gradient(135deg, #1877f2, #0d5bbf);
}

.follow-link.tiktok {
    background: linear-gradient(135deg, #000000, #333333);
}

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

/* Follow Spiel Large (Product Detail Pages) */
.follow-spiel-large {
    margin-top: 1.5rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, #f0f4ff 0%, #faf0ff 100%);
    border-radius: 10px;
    text-align: center;
    border: 2px dashed var(--primary-color);
}

.follow-spiel-large p {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.follow-spiel-large .follow-links {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.follow-spiel-large .follow-link {
    padding: 0.6rem 1.25rem;
    font-size: 0.9rem;
    border-radius: 8px;
}

/* Footer Social Links */
.footer-social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.footer-social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social-link.facebook {
    background: #1877f2;
}

.footer-social-link.tiktok {
    background: #000000;
    border: 1px solid #555;
}

.footer-social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* Shop On Section */
.shop-on-section {
    padding-top: 1rem;
    border-top: 1px solid var(--bg-light);
}

.shop-on-section h3 {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
    font-size: 0.85rem;
}

.required {
    color: var(--secondary-color);
}

.optional {
    color: #888;
    font-weight: 400;
    font-size: 0.85em;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.6rem 0.75rem;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-size: 0.9rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #ef4444;
}

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

.checkbox-group {
    flex-direction: row;
    align-items: center;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: normal;
    font-size: 0.8rem;
    color: var(--text-light);
}

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

.btn-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    color: var(--white);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-message {
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
    display: none;
    text-align: center;
    font-weight: 600;
}

.form-message.success {
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #10b981;
}

.form-message.error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #ef4444;
}

/* Map Section */
.map-section {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.map-section h2 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.map-placeholder {
    width: 100%;
    height: 250px;
    background-color: var(--bg-light);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

.map-placeholder i {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.map-placeholder p {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.map-note {
    font-size: 0.75rem;
    font-style: italic;
}

/* FAQ Section */
.faq-section {
    padding: 2rem 0;
    background-color: var(--white);
}

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

.faq-item {
    background-color: var(--bg-light);
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.faq-item:hover {
    border-left-color: var(--primary-color);
}

.faq-item h3 {
    font-size: 0.85rem;
    margin-bottom: 0.35rem;
    color: var(--text-dark);
    display: flex;
    align-items: flex-start;
    gap: 0.4rem;
}

.faq-item h3 i {
    color: var(--primary-color);
    font-size: 0.8rem;
    margin-top: 0.1rem;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.5;
    font-size: 0.8rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav ul {
        gap: 1rem;
    }

    .hero-quote-small {
        font-size: 8vw;
    }

    .hero-quote-large {
        font-size: 12vw;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .hero {
        padding: 0;
        min-height: 75vh;
        flex-direction: column;
    }

    .hero-content {
        width: 90%;
        padding: 1rem;
        padding-bottom: 100px;
    }

    .hero-quote-small {
        font-size: 6vw;
    }

    .hero-quote-large {
        font-size: 9vw;
    }

    .hero-bottom {
        bottom: 1rem;
        width: 90%;
    }

    .hero-tagline {
        font-size: 0.8rem;
        letter-spacing: 1px;
    }

    .hero-btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.85rem;
    }

    .product-detail {
        padding: 2rem 0;
    }

    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1rem;
    }

    .media-carousel {
        position: relative;
        top: 0;
    }

    .carousel-container {
        height: 280px;
    }

    .fda-section-compact {
        flex-wrap: wrap;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .fda-logo {
        width: 70px;
        height: 70px;
    }

    .shop-links {
        flex-direction: column;
    }

    .shop-link {
        min-width: 100%;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-hero-content h2 {
        font-size: 2rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 24px;
        max-height: 24px;
    }

    .logo h1 {
        font-size: 1.3rem;
    }

    .logo .tagline {
        font-size: 0.65rem;
    }

    .footer-logo {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.25rem 0.75rem;
    }

    .nav a {
        font-size: 0.85rem;
    }

    .hero {
        padding: 0;
        min-height: 75vh;
    }

    .hero-content {
        padding-bottom: 110px;
    }

    .hero-quote-small {
        font-size: 5vw;
    }

    .hero-quote-large {
        font-size: 8vw;
    }

    .hero-content h2 {
        font-size: 1.75rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-bottom {
        bottom: 0.75rem;
    }

    .hero-tagline {
        font-size: 0.7rem;
        margin-bottom: 0.5rem;
    }

    .hero-btn {
        padding: 0.5rem 1.2rem;
        font-size: 0.8rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .product-detail {
        padding: 1.5rem 0;
    }

    .product-detail-grid {
        padding: 0.75rem;
        gap: 1rem;
    }

    .carousel-container {
        height: 240px;
    }

    .product-info-detail h1 {
        font-size: 1.5rem;
    }

    .product-tagline {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .product-description h3 {
        font-size: 1.1rem;
    }

    .fda-badge-large {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }

    .shop-link-large {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .breadcrumb {
        margin-bottom: 1rem;
        font-size: 0.85rem;
    }

    .contact-hero {
        padding: 2rem 0;
    }

    .contact-hero-content h2 {
        font-size: 1.75rem;
    }

    .contact-content {
        padding: 2rem 0;
    }

    .social-links {
        justify-content: center;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* Trust Section */
.trust-section {
    padding: 1.5rem 0;
    background-color: var(--white);
    border-bottom: 1px solid var(--bg-light);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.trust-item {
    text-align: center;
    padding: 1rem;
}

.trust-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.trust-item h4 {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.trust-item p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
}

/* Testimonials Section */
.testimonials-section {
    padding: 3rem 0;
    background-color: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-stars {
    color: #f59e0b;
    margin-bottom: 0.75rem;
}

.testimonial-stars i {
    font-size: 0.9rem;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Floating Chat Buttons */
.floating-chat {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    z-index: 999;
}

.chat-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.chat-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.chat-btn.messenger {
    background: linear-gradient(135deg, #00B2FF, #006AFF);
}

.chat-btn.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

@media (max-width: 768px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .floating-chat {
        bottom: 1rem;
        right: 1rem;
    }

    .chat-btn {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}
