* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: #fef9f5;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 1000;
    padding: 15px 0 0 0;
    overflow: visible;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.main-header::after {
    content: "";
    display: block;
    position: absolute;
    bottom: -30px;
    left: 0;
    width: 100%;
    height: 30px;
    background: linear-gradient(-45deg, #fff0 75%, #fff 0) 0 50%, linear-gradient(45deg, #fff0 75%, #fff 0) 0 50%;
    background-repeat: repeat, repeat;
    background-size: auto, auto;
    background-size: 30px 30px;
    background-repeat: repeat-x;
    z-index: 999;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    background: linear-gradient(135deg, #e94b63 0%, #d43a52 100%);
    padding: 12px 25px;
    border-radius: 12px;
    transform: rotate(-2deg);
    box-shadow: 0 4px 8px rgba(233, 75, 99, 0.3);
}

.logo-text {
    font-family: 'Lobster', cursive;
    font-size: 24px;
    color: #fff;
    display: block;
    white-space: nowrap;
}

.main-nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: #333;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-family: 'Lobster', cursive;
    font-size: 18px;
    transition: color 0.3s;
    position: relative;
}

.nav-link:hover {
    color: #e94b63;
}

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

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

.hero-section {
    margin-top: 25px;
    padding: 60px 20px;
    background-color: #fef9f5;
    position: relative;
    overflow: hidden;
}

.hero-carousel-wrapper {
    display: flex;
    transition: transform 0.6s ease;
    will-change: transform;
}

.hero-slide {
    min-width: 100%;
    width: 100%;
    flex-shrink: 0;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
    padding: 2rem 1.5rem;
    min-height: 400px;
}

.hero-content {
    flex: 1;
    min-width: 300px;
}

.hero-title {
    font-family: 'Lobster', cursive;
    font-size: 56px;
    color: #e94b63;
    margin-bottom: 10px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 24px;
    color: #e94b63;
    font-weight: 400;
    margin-bottom: 25px;
}

.hero-text {
    color: #888;
    font-size: 16px;
    line-height: 1.8;
    max-width: 500px;
}

.hero-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.hero-slider {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 1rem 0 0;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease, width 0.2s ease;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    border: none;
    padding: 0;
}

.slider-dot.active {
    background: #f97373;
    width: 22px;
    transform: scale(1.1);
}

.slider-dot:hover {
    background-color: rgba(249, 115, 115, 0.6);
}

.text-section {
    padding: 80px 20px;
    background-color: #fff;
    text-align: center;
}

.text-container {
    max-width: 900px;
    margin: 0 auto;
}

.text-title {
    font-size: 32px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 400;
}

.text-subtitle {
    font-size: 20px;
    color: #333;
    font-weight: 700;
    margin-bottom: 30px;
}

.text-content {
    color: #888;
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.8;
}

.products-section {
    padding: 80px 120px;
    background-color: #fef9f5;
    position: relative;
}

.custom-designs-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #fff8f5 0%, #fff 100%);
}

.custom-designs-container,
.gallery-container {
    max-width: 1100px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-family: 'Lobster', cursive;
    font-size: 38px;
    color: #e94b63;
    margin-bottom: 15px;
}

.section-subtitle {
    color: #7a7a7a;
    font-size: 18px;
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.7;
}

.designs-grid,
.gallery-grid {
    display: grid;
    gap: 25px;
}

.designs-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.design-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 45px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.design-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
}

.design-image-wrapper {
    width: 100%;
    height: 260px;
    overflow: hidden;
    background: #fde1e5;
}

.design-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.design-card:hover .design-image-wrapper img {
    transform: scale(1.08);
}

.design-info {
    padding: 24px;
    text-align: center;
}

.design-name {
    font-family: 'Lobster', cursive;
    font-size: 24px;
    color: #e94b63;
    margin-bottom: 10px;
}

.design-price {
    font-weight: 700;
    color: #f97373;
    margin-bottom: 12px;
}

.design-description {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}

.section-empty {
    color: #999;
    text-align: center;
    font-size: 16px;
    margin-bottom: 35px;
}

.design-hint-card {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 0 20px;
    text-align: center;
}

.design-hint-card .hint-text {
    color: #888;
    font-size: 18px;
    font-weight: 300;
    font-style: italic;
    letter-spacing: 0.5px;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    position: relative;
    display: inline-block;
}

.design-hint-card .hint-text::before {
    content: '';
    display: inline-block;
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e94b63);
    margin-right: 15px;
    vertical-align: middle;
}

.design-hint-card .hint-text::after {
    content: '';
    display: inline-block;
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, #e94b63, transparent);
    margin-left: 15px;
    vertical-align: middle;
}

.gallery-section {
    padding: 80px 20px;
    background-color: #fef9f5;
}

.gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.gallery-item {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    padding-top: 100%;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
    background: #fdeff2;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
}

.gallery-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.carousel-arrow {
    background-color: #fff;
    border: 2px solid #e94b63;
    color: #e94b63;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    flex-shrink: 0;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    min-width: 44px;
    min-height: 44px;
}

.carousel-arrow:hover {
    background-color: #e94b63;
    color: #fff;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    flex: 1;
    overflow: hidden;
    transition: transform 0.3s ease;
    min-width: 0;
    will-change: transform;
}

.products-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.product-card {
    background-color: #fff;
    border-radius: 15px;
    overflow: visible;
    transition: transform 0.3s, box-shadow 0.3s;
    min-width: 0;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

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

.product-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 75%;
    overflow: visible;
    border-radius: 15px;
}

.product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.product-badge {
    position: absolute;
    bottom: -30px;
    right: 20px;
    z-index: 0;
    pointer-events: none;
}

.product-badge-inner {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #f97373;
    border: 2px solid #fff;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.product-title {
    font-family: 'Lobster', cursive;
    font-size: 22px;
    color: #333;
    margin: 60px 20px 10px;
    font-weight: 400;
    padding: 10px 15px;
    border-radius: 8px;
    position: relative;
    z-index: 1;
    line-height: 1.2;
    color: #e94b63;
    text-align: -webkit-center;
}

.product-description {
    font-family: 'Lobster';
    color: #000;
    font-size: 16px;
    line-height: 1.8;
    margin: 0 20px 20px;
    background-color: transparent;
    font-weight: 300;
    text-align: -webkit-center;
}

.social-section {
    padding: 60px 20px;
    background-color: #fff;
}

.social-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.social-block {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.social-link-wrapper {
    text-decoration: none;
    color: inherit;
    display: block;
}

.social-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #e94b63;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    margin: 0 auto 15px;
    box-shadow: 0 5px 15px rgba(233, 75, 99, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-icon svg {
    width: 40px;
    height: 40px;
    fill: currentColor;
}

.social-icon.whatsapp-icon {
    background-color: #25D366;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.social-icon.facebook-icon {
    background-color: #1877F2;
    box-shadow: 0 5px 15px rgba(24, 119, 242, 0.3);
}

.social-icon.instagram-icon {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 5px 15px rgba(188, 24, 136, 0.3);
}

.social-link-wrapper:hover .social-icon {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(233, 75, 99, 0.4);
}

.social-link-wrapper:hover .social-icon.whatsapp-icon {
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.social-link-wrapper:hover .social-icon.facebook-icon {
    box-shadow: 0 8px 20px rgba(24, 119, 242, 0.4);
}

.social-link-wrapper:hover .social-icon.instagram-icon {
    box-shadow: 0 8px 20px rgba(188, 24, 136, 0.4);
}

.social-link {
    color: #333;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 8px;
}

.social-text {
    color: #888;
    font-size: 14px;
    text-transform: lowercase;
}

.payment-section {
    padding: 70px 20px;
    background-color: #fff;
}

.payment-container {
    max-width: 1000px;
    margin: 0 auto;
}

.payment-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.payment-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: #fff;
    border: 2px solid #e94b63;
    border-radius: 30px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
    box-shadow: 0 4px 10px rgba(233, 75, 99, 0.1);
}

.payment-badge:hover {
    background: linear-gradient(135deg, #e94b63, #d43a52);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(233, 75, 99, 0.3);
    border-color: #e94b63;
}

.payment-badge img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.payment-icon {
    font-size: 20px;
    display: inline-block;
}

.payment-name {
    font-family: 'Lobster', cursive;
    font-size: 18px;
}

.main-footer {
    background-color: #e94b63;
    color: #fff;
    padding-top: 60px;
    position: relative;
}

.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: linear-gradient(to bottom, #fef9f5 0%, #fef9f5 50%, transparent 50%);
    background-size: 100% 20px;
    background-image: 
        radial-gradient(circle at 50% 0%, transparent 20px, #e94b63 20px);
    background-repeat: repeat-x;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    text-align: center;
}

.footer-column {
    min-width: 0;
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-nav li {
    margin-bottom: 10px;
}

.footer-link {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.3s;
}

.footer-link:hover {
    opacity: 0.8;
}

.footer-text {
    color: #fff;
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-form {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.footer-input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    outline: none;
}

.footer-button {
    padding: 10px 25px;
    background-color: #fff;
    color: #e94b63;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.footer-button:hover {
    background-color: #f0f0f0;
}

.footer-copyright {
    text-align: center;
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 14px;
}

@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .hero-text {
        font-size: 15px;
    }
    
    .product-title {
        font-size: 42px;
    }
    
    .product-description {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .main-header {
        padding: 10px 0 0 0;
    }
    
    
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        gap: 15px;
        padding: 0 15px;
        position: relative;
        flex-wrap: wrap;
    }
    
    .logo {
        padding: 10px 20px;
    }
    
    .logo-text {
        font-size: 22px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        background-color: #fff;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        width: 100%;
        flex-basis: 100%;
        order: 3;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
        padding: 0;
        margin-top: 0;
        z-index: 1000;
    }
    
    .main-nav.active {
        max-height: 400px;
        padding: 20px 0;
    }
    
    .nav-link {
        font-size: 16px;
        padding: 15px 20px;
        display: block;
        text-align: left;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .nav-link:hover {
        background-color: #fef9f5;
    }
    
    .hero-section {
        margin-top: 110px;
        padding: 40px 15px;
    }
    
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .hero-content {
        text-align: center;
        min-width: 100%;
    }
    
    .hero-text {
        margin: 0 auto;
        max-width: 100%;
    }
    
    .hero-image {
        min-width: 100%;
    }
    
    .hero-image img {
        max-width: 100%;
    }
    
    .hero-slider {
        margin-top: 30px;
        gap: 10px;
    }
    
    .text-section {
        padding: 60px 15px;
    }
    
    .text-title {
        font-size: 28px;
    }
    
    .text-subtitle {
        font-size: 18px;
    }
    
    .text-content {
        font-size: 15px;
    }
    
    .products-section {
        padding: 60px 15px;
    }
    
    .products-container {
        flex-direction: column;
        position: relative;
        padding: 0 40px;
    }
    
    .carousel-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .carousel-arrow-left {
        left: 0;
    }
    
    .carousel-arrow-right {
        right: 0;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        width: 100%;
        gap: 20px;
    }
    
    .product-title {
        margin: 50px 15px 10px;
        font-size: 36px;
    }
    
    .product-description {
        margin: 0 15px 15px;
        font-size: 14px;
    }

    .section-title {
        font-size: 32px;
    }

    .section-subtitle {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .designs-grid,
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    }

    .design-hint-card {
        padding: 18px;
    }

    .design-hint-card p {
        font-size: 14px;
    }
    
    .product-badge-inner {
        width: 56px;
        height: 56px;
        font-size: 0.9rem;
    }
    
    .social-section {
        padding: 50px 15px;
    }
    
    .social-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .social-block {
        min-width: 100%;
    }
    
    .payment-section {
        padding: 50px 15px;
    }
    
    .payment-grid {
        gap: 15px;
    }
    
    .payment-badge {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .payment-badge img {
        width: 20px;
        height: 20px;
    }
    
    .payment-name {
        font-size: 16px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 15px 20px;
    }
    
    .footer-title {
        font-size: 16px;
    }
    
    .footer-text {
        font-size: 13px;
    }
    
    .footer-form {
        flex-direction: column;
    }
    
    .footer-button {
        width: 100%;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .main-header {
        padding: 8px 0 0 0;
    }
    
    
    .header-container {
        gap: 12px;
        padding: 0 10px;
    }
    
    .logo {
        padding: 8px 15px;
    }
    
    .logo-text {
        font-size: 18px;
    }
    
    .nav-link {
        font-size: 15px;
        padding: 12px 15px;
    }
    
    .hero-section {
        margin-top: 100px;
        padding: 30px 10px;
    }
    
    .hero-container {
        gap: 20px;
    }
    
    .hero-title {
        font-size: 28px;
        margin-bottom: 8px;
    }
    
    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .hero-text {
        font-size: 13px;
    }
    
    .hero-slider {
        margin-top: 20px;
        gap: 8px;
    }
    
    .slider-dot {
        width: 10px;
        height: 10px;
    }
    
    .text-section {
        padding: 40px 10px;
    }
    
    .text-title {
        font-size: 22px;
        margin-bottom: 15px;
    }
    
    .text-subtitle {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .text-content {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .products-section {
        padding: 40px 10px;
    }
    
    .products-container {
        padding: 0 35px;
    }
    
    .carousel-arrow {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
    
    .product-title {
        margin: 40px 10px 8px;
        font-size: 28px;
    }
    
    .product-description {
        margin: 0 10px 12px;
        font-size: 13px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .design-hint-card .hint-text {
        font-size: 15px;
        letter-spacing: 0.3px;
    }
    
    .design-hint-card .hint-text::before,
    .design-hint-card .hint-text::after {
        width: 25px;
        margin-right: 10px;
        margin-left: 10px;
    }
    
    .product-badge {
        top: 8px;
        right: 8px;
    }
    
    .product-badge-inner {
        width: 48px;
        height: 48px;
        font-size: 0.8rem;
    }
    
    .social-section {
        padding: 40px 10px;
    }
    
    .social-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
    
    .social-link {
        font-size: 15px;
    }
    
    .social-text {
        font-size: 13px;
    }
    
    .payment-section {
        padding: 40px 10px;
    }
    
    .payment-grid {
        gap: 12px;
    }
    
    .payment-badge {
        padding: 10px 18px;
        font-size: 13px;
    }
    
    .payment-badge img {
        width: 18px;
        height: 18px;
    }
    
    .payment-name {
        font-size: 15px;
    }
    
    .footer-container {
        padding: 25px 10px 15px;
        gap: 25px;
    }
    
    .footer-title {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .footer-text {
        font-size: 12px;
        margin-bottom: 8px;
    }
    
    .footer-copyright {
        padding: 15px;
        font-size: 12px;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #20BA5A;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

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

@media (max-width: 768px) {
    .whatsapp-float {
        width: 56px;
        height: 56px;
        bottom: 15px;
        right: 15px;
        font-size: 28px;
    }
    
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 12px;
        right: 12px;
        font-size: 24px;
    }
    
    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
}

