/* === RESET & BASE STYLES === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #fafafa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* === HEADER & NAVIGATION === */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

nav h1 a {
    color: #2c3e50;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-decoration: none;
    transition: color 0.3s ease;
}
nav h1 a:hover {
    color: #667eea;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin-left: 2.5rem;
}

.nav-menu li a {
    text-decoration: none;
    color: #5a6c7d;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
    letter-spacing: 0.5px;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: width 0.3s ease;
    border-radius: 1px;
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    width: 100%;
}

.nav-menu li a:hover {
    color: #764ba2;
    transform: translateY(-1px);
}

.nav-menu li a.active {
    color: #ff22ad;
    font-weight: 600;
}

.nav-menu li a.active::after {
    width: 100%;
}

/* === DROPDOWN MENU === */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    display: none;
    z-index: 1000;
    padding: 0.5rem 0;
    border-radius: 4px;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu a {
    display: block;
    padding: 0.5rem 1rem;
    color: #333;
    text-decoration: none;
}

.dropdown-menu a:hover {
    background: #f5f5f5;
}

/* === HERO SECTION === */
.hero {
    background: linear-gradient(135deg, #ff22ad 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 100px;
    margin-top: 70px; /* Adjust based on header height */
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    text-align: left;
    animation: fadeInLeft 1s ease-out forwards;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.hero h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.1;
}

.hero p {
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 500px;
    text-align: justify;
}

.hero-stats {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

@media (min-width: 768px) {
    .hero-stats {
        transform: translateX(-2cm);
    }
}

.stat {
    text-align: left;
    background: white;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin: 0.5rem;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff22ad;
}

.stat-label {
    font-size: 0.9rem;
    color: #ff22ad;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-left: 0;
}

.hero-buttons a {
    padding: 1rem 2rem;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 2px solid transparent;
    display: inline-block;
}

.hero-buttons .btn-primary {
    background: #f88c3c;
    color: white;
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.hero-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: #667eea;
    border-color: #fff;
    backdrop-filter: blur(10px);
}

.hero-buttons .btn-secondary:hover {
    background: #667eea;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.hero-image {
    position: relative;
    animation: fadeInRight 1s ease-out 0.4s forwards;
    opacity: 0;
}

.hero-image-stack {
    position: relative;
    width: 350px;
    height: 450px;
    margin: 0 auto;
}

.hero-img {
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    position: absolute;
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

.hero-img.main {
    width: 300px;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.hero-img.overlay-1 {
    width: 200px;
    height: 250px;
    top: 0;
    right: 0;
    z-index: 2;
    transform: rotate(10deg);
}

.hero-img.overlay-2 {
    width: 180px;
    height: 220px;
    bottom: 0;
    left: 0;
    z-index: 1;
    transform: rotate(-8deg);
}

.hero-image:hover .hero-img.main {
    transform: translate(-50%, -50%) scale(1.05);
}
.hero-image:hover .hero-img.overlay-1 {
    transform: rotate(5deg) translate(10px, -10px);
}
.hero-image:hover .hero-img.overlay-2 {
    transform: rotate(-3deg) translate(-10px, 10px);
}

.floating-elements {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
}

.floating-emoji {
    position: absolute;
    font-size: 2.5rem;
    animation: float 6s ease-in-out infinite;
    opacity: 0.5;
}

.floating-emoji:nth-child(1) { top: 10%; left: 15%; animation-delay: 0s; }
.floating-emoji:nth-child(2) { top: 25%; right: 10%; animation-delay: -1.5s; }
.floating-emoji:nth-child(3) { bottom: 20%; left: 25%; animation-delay: -3s; }
.floating-emoji:nth-child(4) { bottom: 15%; right: 20%; animation-delay: -4.5s; }

/* === KEYFRAME ANIMATIONS === */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(15deg); }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* === GENERAL SECTION STYLING === */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: #2c3e50;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-header p {
    color: #7f8c8d;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* === FEATURES SECTION === */
.features {
    background: #f8f9fa;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.feature-item h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.feature-item p {
    color: #7f8c8d;
    line-height: 1.6;
}

/* === TESTIMONIALS SECTION === */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #ff22ad;
    opacity: 0.3;
    font-family: Georgia, serif;
}

.testimonial-content p {
    font-style: italic;
    line-height: 1.6;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    margin: 0;
    color: #2c3e50;
    font-size: 1rem;
    font-weight: 600;
}

.testimonial-author span {
    color: #7f8c8d;
    font-size: 0.9rem;
}

/* === PRODUCTS SECTION === */
.products {
    background-color: #fff;
    padding: 100px 0;
}

.products .container > p {
    text-align: center;
    color: #fff;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.search-container {
    margin-bottom: 2rem;
    text-align: center;
}

.search-container input {
    width: 100%;
    max-width: 400px;
    padding: 1rem 1.5rem;
    border: 2px solid #e1e8ed;
    border-radius: 25px;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.search-container input:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    transform: translateY(-1px);
}

.search-container input::placeholder {
    color: #95a5a6;
    font-style: italic;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.product {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.product:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.product img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.product figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.product:hover figcaption {
    transform: translateY(0);
}

.product h3 {
    margin: 0 0 0.5rem 0;
    color: white;
    font-size: 1.3rem;
}

.product p {
    margin: 0 0 1rem 0;
    color: #ddd;
}

/* === NEWSLETTER SECTION === */
.newsletter {
    background: linear-gradient(135deg, #ff22ad 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.newsletter-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input {
    flex: 1;
    min-width: 250px;
    padding: 1rem;
    border: 1px solid transparent;
    border-radius: 25px 0 0 25px;
    font-size: 1rem;
    outline: none;
}

.newsletter-form button {
    padding: 1rem 2rem;
    border-radius: 0 25px 25px 0;
}

/* === BUTTON STYLES === */
.btn-primary {
    background: linear-gradient(135deg, #ff22ad 0%, #764ba2 100%);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    display: inline-block;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
    border-color: rgba(255,255,255,0.3);
}

.text-center {
    text-align: center;
}

/* === MOBILE MENU === */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    background: rgba(102, 126, 234, 0.2);
}

.bar {
    width: 20px;
    height: 2px;
    background-color: #ff22ad;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 1px;
}

.menu-toggle.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-4px, 5px);
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
    transform: translateX(10px);
}

.menu-toggle.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-4px, -5px);
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 65px; /* Match header height */
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
        z-index: 1000;
        border-top: 1px solid rgba(0,0,0,0.05);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
        margin-left: 0;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-content {
        text-align: center;
        order: 2;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero h2 {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.4;
    }

    .hero-stats {
        justify-content: flex-start;
        margin-bottom: 1.5rem;
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .hero-stats, .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        order: 1;
        display: block;
    }

    .hero-image-stack {
        width: 250px;
        height: 300px;
        margin: 0 auto;
    }

    .hero-img.main {
        width: 200px;
        height: 250px;
    }

    .hero-img.overlay-1 {
        width: 150px;
        height: 180px;
    }

    .hero-img.overlay-2 {
        width: 120px;
        height: 150px;
    }

    .floating-elements {
        display: none; /* Hide floating elements on mobile */
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-text h2 {
        font-size: 1.8rem;
    }

    .about-text p {
        font-size: 1rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form,
    .contact-info {
        padding: 1.5rem;
    }

    .stores-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .store-card {
        padding: 1.5rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .blog-post {
        margin-bottom: 1rem;
    }

    .blog-header h1 {
        font-size: 2rem;
    }

    .blog-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        margin-left: 30px;
    }

    .blog-content {
        padding: 0 1rem;
    }

    .featured-image {
        height: 250px;
    }

    .blog-navigation {
        flex-direction: column;
        gap: 1rem;
    }

    .blog-navigation a {
        text-align: center;
    }

    .related-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .related-post {
        margin-bottom: 1rem;
    }

    .related-content {
        flex-direction: column;
    }

    .related-content img {
        width: 100%;
        height: 180px;
    }

    .related-text {
        padding: 1rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .social-links {
        justify-content: center;
    }
}
/* === FOOTER === */
footer {
    background: #2c3e50;
    color: #bdc3c7;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: white;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.social-link img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.social-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #46627f;
    padding-top: 1.5rem;
    margin-top: 2rem;
    text-align: center;
    color: #95a5a6;
    font-size: 0.9rem;
}

/* === PRICE STYLING === */
.price {
    padding: 0 1.5rem 1.5rem;
    color: #ff22ad;
    font-weight: bold;
    font-size: 1.2rem;
}

/* === ABOUT SECTION === */
.about {
    padding: 100px 0;
    background: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text h2 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    margin-top: 2rem;
}

.about-text h2:first-of-type {
    margin-top: 0;
}

.about-text p {
    color: #7f8c8d;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    text-align: justify;
}

.about-text ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.about-text li {
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    transition: transform 0.3s ease;
}


/* === CONTACT SECTION === */
.contact {
    padding: 100px 0;
    background: #fff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form h2,
.contact-info h2 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e1e8ed;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.btn {
    background: #667eea;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn:hover {
    background: #5a67d8;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.contact-info {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
}

.info-item {
    margin-bottom: 2rem;
}

.info-item h3 {
    color: #2c3e50;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.info-item p {
    color: #7f8c8d;
    line-height: 1.6;
    margin: 0;
}

/* === ONLINE STORES SECTION === */
.online-stores {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    color: #2c3e50;
}

.online-stores .section-header h2 {
    color: #2c3e50;
}

.online-stores .section-header p {
    color: #5a6c7d;
}

.stores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.store-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.store-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.store-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 50%;
    overflow: hidden;
}

.store-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.store-icon-fallback {
    font-size: 2.5rem;
}

.store-card h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.store-card p {
    color: #7f8c8d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.store-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #ff22ad 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 34, 173, 0.3);
}

.store-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 34, 173, 0.4);
}

/* === BLOG SECTION === */
.blog {
    padding: 100px 0;
    background: #fff;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.blog-post {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.blog-post img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-post h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: #2c3e50;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.4;
}

.blog-post .date {
    padding: 0 1.5rem;
    color: #ff22ad;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-post p {
    padding: 0.5rem 1.5rem 1rem;
    color: #7f8c8d;
    line-height: 1.6;
}

.read-more {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    margin: 0 1.5rem 1.5rem;
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #667eea;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.read-more:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

/* === BLOG HEADER SECTION === */
.blog-header {
    padding: 120px 0 60px;
    background: #fff;
    border-bottom: 1px solid #e1e8ed;
    margin-top: 70px;
}

.blog-header h1 {
    color: #2c3e50;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.blog-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.blog-info .date,
.blog-info .category,
.blog-info .read-time {
    color: #7f8c8d;
    font-size: 0.95rem;
    font-weight: 500;
}

.blog-info .separator {
    color: #bdc3c7;
    font-weight: bold;
}

/* === BLOG DETAIL SECTION === */
.blog-detail {
    padding: 60px 0;
    background: #fff;
}

.blog-content {
    max-width: 800px;
    margin: 0 auto;
}

.featured-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.blog-text {
    line-height: 1.8;
    color: #2c3e50;
}

.blog-text h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin: 2rem 0 1rem 0;
    font-weight: 600;
}

.blog-text p {
    margin-bottom: 1.5rem;
    color: #5a6c7d;
}

.blog-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e1e8ed;
}

.related-box {
  border: 1px solid #f5a5b5;
  border-radius: 8px;
  padding: 12px 18px;
  margin: 30px auto;
  max-width: 700px;
  text-align: center; /* pusatkan teks */
  transition: all 0.3s ease;
}

.related-link {
  text-decoration: none;
  color: #c2185b;
  font-size: 14px;
  font-weight: 600;
  display: inline-block; /* agar bisa center */
  text-align: center;
}

.related-link:hover {
  color: #e91e63;
}

.related-label {
  font-weight: 700;
  text-transform: uppercase;
  margin-right: 3px;
}

.arrow {
  font-size: 16px;
  margin-left: 6px;
  color: #e91e63;
  transition: transform 0.3s ease;
  display: inline-block;
}

.related-link:hover .arrow {
  transform: translateX(4px);
}

/* Responsive */
@media (max-width: 600px) {
  .related-box {
    padding: 12px;
  }
}


/* === RELATED ARTICLES SECTION === */
.related-articles {
    padding: 60px 0;
    background: #f8f9fa;
}

.related-articles h2 {
    color: #2c3e50;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 600;
}

.related-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.related-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.related-post {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-content {
    display: flex;
    align-items: center;
}

.related-content img {
    width: 150px;
    height: 120px;
    object-fit: cover;
    flex-shrink: 0;
}

.related-text {
    padding: 1.5rem;
    flex: 1;
}

.related-text h3 {
    color: #2c3e50;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.related-text p {
    color: #7f8c8d;
    line-height: 1.5;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

/* === GALLERY SECTION === */
.gallery {
    padding: 100px 0;
    background: #f8f9fa;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.gallery-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.gallery-item figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 1rem;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover figcaption {
    transform: translateY(0);
}

/* === GALLERY POPUP === */
.gallery-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.gallery-popup.active {
    opacity: 1;
    visibility: visible;
}

.popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.popup-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    margin: 5vh auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.popup-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.popup-prev,
.popup-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-prev {
    left: -75px;
}

.popup-next {
    right: -75px;
}

.popup-prev:hover,
.popup-next:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

@media (max-width: 768px) {
    .popup-content {
        width: 95%;
        margin: 2vh auto;
    }

    .popup-close {
        top: -40px;
        width: 35px;
        height: 35px;
        font-size: 20px;
    }

    .popup-prev,
    .popup-next {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .popup-prev {
        left: -55px;
    }

    .popup-next {
        right: -55px;
    }
}
