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

:root {
    --primary-color: #c8a882;
    --secondary-color: #a68b6b;
    --accent-color: #f8f6f3;
    --light-beige: #faf9f7;
    --soft-pink: #f5e8e3;
    --text-dark: #3a3a3a;
    --text-light: #7a7a7a;
    --white: #ffffff;
    --black: #000000;
    --whatsapp-green: #25d366;
    --gradient-light: linear-gradient(135deg, #faf9f7 0%, #f5e8e3 100%);
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 6px 20px rgba(0, 0, 0, 0.12);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

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

/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: none;
}

.logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    color: var(--text-dark);
}

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

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

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s;
}

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

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

.mobile-menu-link:hover,
.mobile-menu-link:active {
    background: var(--accent-color);
    color: var(--primary-color);
    padding-left: 2rem;
}

.btn-whatsapp-nav {
    background: var(--whatsapp-green);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-nav:hover {
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
    transition: all 0.3s ease;
}

.mobile-menu-btn:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 4px;
    border-radius: 4px;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

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

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    overflow-y: auto;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    background: var(--white);
    width: 85%;
    max-width: 400px;
    height: 100%;
    padding: 2rem;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
}

.mobile-menu-overlay.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--accent-color);
}

.mobile-menu-close {
    background: transparent;
    border: none;
    font-size: 2.5rem;
    color: var(--text-dark);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: var(--accent-color);
    transform: rotate(90deg);
}

.mobile-menu-list {
    list-style: none;
    flex: 1;
    padding: 0;
}

.mobile-menu-list li {
    margin-bottom: 1rem;
}

.mobile-menu-link {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mobile-menu-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-color);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.mobile-menu-link:hover,
.mobile-menu-link:active {
    background: var(--accent-color);
    color: var(--primary-color);
    padding-left: 2rem;
    transform: translateX(10px);
}

.mobile-menu-link:hover::before,
.mobile-menu-link:active::before {
    transform: scaleY(1);
}

.mobile-menu-footer {
    padding-top: 2rem;
    border-top: 2px solid var(--accent-color);
}

.mobile-order-btn {
    width: 100%;
    text-align: center;
    display: block;
}

/* Hero Section */
.hero {
    height: 90vh;
    background: linear-gradient(135deg, #faf9f7 0%, #f5e8e3 50%, #e8ddd4 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.btn-primary {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    background: var(--secondary-color);
    box-shadow: var(--shadow-hover);
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

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

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
}

/* Products Section */
.products-section {
    background: var(--white);
}

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

.wishlist-summary {
    margin-top: 0.8rem;
    color: var(--text-dark);
    font-weight: 600;
}

.wishlist-view-btn {
    margin-top: 1rem;
}

.product-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    position: relative;
}

.product-card:hover {
    box-shadow: var(--shadow-hover);
}

.product-image {
    height: 350px;
    background: linear-gradient(135deg, var(--light-beige) 0%, var(--soft-pink) 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Image Gallery Styles */
.product-image-gallery {
    min-height: 390px;
    height: 390px;
    position: relative;
    overflow: hidden;
    background: var(--light-beige);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.gallery-container {
    width: 100%;
    height: 390px;
    min-height: 390px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-wrapper {
    width: 100%;
    height: 100%;
    min-height: 390px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-skeleton {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(
        110deg,
        #ece8e4 0%,
        #f5f1ed 45%,
        #ece8e4 90%
    );
    background-size: 200% 100%;
    animation: gallery-shimmer 1.25s ease-in-out infinite;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.gallery-container.gallery-loaded .gallery-skeleton {
    opacity: 0;
    animation: none;
}

@keyframes gallery-shimmer {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.gallery-image {
    width: 100%;
    height: 100%;
    max-height: 390px;
    object-fit: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    cursor: grab;
    z-index: 1;
}

.gallery-image.active {
    opacity: 1;
    z-index: 2;
}

.gallery-image:active {
    cursor: grabbing;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 24px;
    color: var(--primary-color);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    opacity: 0;
}

.product-card:hover .gallery-nav {
    opacity: 1;
}

.gallery-nav:hover {
    background: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    transform: translateY(-50%) scale(1.1);
}

.gallery-prev {
    left: 15px;
}

.gallery-next {
    right: 15px;
}

.gallery-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s;
}

.product-card:hover .gallery-dots {
    opacity: 1;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.dot.active {
    background: var(--white);
    width: 12px;
    height: 12px;
}

.dot:hover {
    background: var(--white);
    transform: scale(1.2);
}

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

.btn-order--disabled,
.btn-order:disabled {
    background: #b0b0b0 !important;
    color: var(--white);
    cursor: not-allowed;
    opacity: 0.9;
}

.wishlist-btn {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: #c46a6a;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    z-index: 12;
    transition: transform 0.2s ease, background 0.2s ease;
}

.wishlist-btn:hover {
    transform: scale(1.08);
}

.wishlist-btn.active {
    background: #ffe5e5;
    color: #d93030;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(200, 168, 130, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

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

.btn-view {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--white);
    padding: 0.875rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
    white-space: nowrap;
}

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

.product-info {
    padding: 1.5rem;
}

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

.product-description {
    color: var(--text-light);
    margin-bottom: 0.45rem;
    font-size: 0.95rem;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* Same pill shape as Order, but not a button — distinct unavailable palette */
.product-status-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1;
    white-space: nowrap;
    user-select: none;
    cursor: default;
    color: #faf7f8;
    background: linear-gradient(145deg, #7a6b7d 0%, #5c4f5f 100%);
    box-shadow: 0 3px 12px rgba(74, 62, 76, 0.22);
    letter-spacing: 0.02em;
}

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

.btn-order {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.btn-order:hover {
    background: var(--secondary-color);
}

/* Size chart */
.size-chart-section {
    background: var(--light-beige);
}

.size-chart-card {
    background: var(--white);
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: 1rem;
}

.size-chart-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: 10px;
}

/* Wishlist section */
.wishlist-section {
    background: var(--white);
}

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

.wishlist-empty {
    text-align: center;
    color: var(--text-light);
}

.wishlist-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 1px solid #eee;
}

.wishlist-image {
    width: 100%;
    height: 260px;
    object-fit: contain;
    background: var(--light-beige);
}

.wishlist-info {
    padding: 1rem;
}

.wishlist-info h3 {
    margin-bottom: 0.5rem;
}

.wishlist-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.75rem;
    gap: 1rem;
}

.wishlist-actions {
    margin-top: 0.8rem;
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.wishlist-remove {
    border: 1px solid #d95555;
    color: #d95555;
    background: var(--white);
    padding: 0.75rem 1rem;
    border-radius: 24px;
    cursor: pointer;
    font-weight: 600;
}

.wishlist-remove:hover {
    background: #fff3f3;
}

/* Customer info block */
.customer-info-section {
    background: var(--light-beige);
}

.customer-info-card {
    background: var(--white);
    border-left: 4px solid var(--primary-color);
    border-radius: 14px;
    padding: 1rem 1.2rem;
    box-shadow: var(--shadow);
}

.customer-info-card p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    font-size: 1.05rem;
}

.feedback-social {
    margin-top: 0.8rem;
    display: flex;
    gap: 0.8rem;
}

.feedback-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
}

.feedback-social a.fb {
    background: #1877f2;
}

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

.feedback-social a.tt {
    background: #000;
}

/* Upcoming Section */
.upcoming-section {
    background: var(--light-beige);
}

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

.upcoming-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.upcoming-card:hover {
    box-shadow: var(--shadow-hover);
}

.upcoming-image {
    height: 300px;
    background: linear-gradient(135deg, var(--soft-pink) 0%, var(--light-beige) 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coming-soon-badge {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    position: absolute;
    top: 20px;
    left: 20px;
    white-space: nowrap;
}

.upcoming-info {
    padding: 1.5rem;
}

.upcoming-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.upcoming-description {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.upcoming-date {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
}

/* Social Media Section */
.social-section {
    background: var(--white);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: var(--shadow);
    min-width: 160px;
    justify-content: center;
}

.social-link svg {
    width: 24px;
    height: 24px;
}

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

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

.social-link.twitter {
    background: #1da1f2;
}

.social-link.pinterest {
    background: #bd081c;
}

.social-link.tiktok {
    background: #000000;
}

.social-link:hover {
    box-shadow: var(--shadow-hover);
}

/* Contact Section */
.contact-section {
    background: var(--soft-pink);
    color: var(--text-dark);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.75rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.feature-icon {
    font-size: 1.5rem;
}

.whatsapp-cta {
    text-align: center;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--whatsapp-green);
    color: var(--white);
    padding: 1.5rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn svg {
    width: 32px;
    height: 32px;
}

.whatsapp-note {
    margin-top: 1rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Footer */
.footer {
    background: 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-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer-logo .logo-text {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.footer-description {
    color: rgba(255, 255, 255, 0.9);
    margin-top: 1rem;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

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

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

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--whatsapp-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s;
    animation: pulse 2s infinite;
}

.floating-whatsapp:hover {
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.floating-whatsapp svg {
    width: 28px;
    height: 28px;
    fill: var(--white);
}

.floating-wishlist {
    position: fixed;
    bottom: 105px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #f6d6d6;
    color: #c63737;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: var(--shadow);
    z-index: 999;
    font-weight: 700;
}

.floating-wishlist small {
    font-size: 0.7rem;
    line-height: 1;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 5px 30px rgba(37, 211, 102, 0.8);
    }
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Enhanced Interactive Elements */
.product-card {
    cursor: default;
}

/* Touch-friendly button sizes */
@media (max-width: 768px) {
    .btn-primary,
    .btn-order,
    .btn-view {
        min-height: 44px;
        min-width: 44px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .nav-menu {
        display: none;
    }

    .btn-whatsapp-nav {
        display: none;
    }

    .logo-img {
        height: 60px;
    }

    .logo-text {
        font-size: 1.5rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

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

    .products-grid,
    .upcoming-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .product-card {
        margin-bottom: 1rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-features {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
    }

    .floating-wishlist {
        bottom: 88px;
        right: 20px;
        width: 52px;
        height: 52px;
    }

    .social-link {
        min-width: 140px;
        padding: 0.875rem 1.5rem;
    }

    /* Gallery mobile styles */
    .product-image-gallery {
        min-height: 320px;
        height: 320px;
        padding: 0;
    }

    .gallery-container {
        min-height: 320px;
        height: 320px;
    }

    .gallery-wrapper {
        min-height: 320px;
    }

    .gallery-image {
        max-height: 320px;
    }

    .gallery-nav {
        width: 40px;
        height: 40px;
        font-size: 20px;
        opacity: 0.7 !important;
    }

    .gallery-nav:hover {
        opacity: 1;
    }

    .gallery-dots {
        opacity: 1 !important;
    }

    /* Simple mobile touch interactions */
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

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

    .mobile-menu-content {
        width: 100%;
        max-width: 100%;
    }

    .logo-img {
        height: 50px;
    }
}
