/* ============================================
   DIA'S CAKES - COMPLETE PREMIUM STYLESHEET
   Have a sweet day! | Premium Cakes & Pies
   Includes: Gift Card | WhatsApp Button | Page Transitions
   ============================================ */

:root {
    --white: #FFFFFF;
    --bg-light: #FFF8F0;
    --gray-light: #F0E6D8;
    --gray-mid: #E0D0C0;
    --text-dark: #4A2A1A;
    --text-muted: #8B6B4A;
    --primary-pink: #FF6B8A;
    --primary-brown: #C47A4A;
    --primary-cream: #FFDAB9;
    --green-primary: #4CAF50;
    --green-dark: #388E3C;
    --whatsapp-green: #25D366;
    --shadow: 0 4px 15px rgba(0,0,0,0.08);
    --shadow-hover: 0 12px 30px rgba(0,0,0,0.12);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Inter', sans-serif;
    background: var(--white);
    color: var(--text-dark);
    line-height: 1.5;
    overflow-x: hidden;
}

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

/* ========== PAGE TRANSITION ========== */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FF6B8A, #C47A4A);
    z-index: 9999;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.page-transition.active {
    opacity: 1;
}

/* ========== WHATSAPP FLOATING BUTTON ========== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--whatsapp-green);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #20b859;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: #333;
    color: white;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ========== GIFT CARD SECTION ========== */
.gift-card-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #FFF8F0, #FDF3E7);
}

.gift-card-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.gift-card-content {
    padding: 40px;
}

.gift-card-icon {
    position: relative;
    margin-bottom: 20px;
}

.gift-card-icon i:first-child {
    font-size: 50px;
    color: #FF6B8A;
}

.heart-icon {
    position: absolute;
    font-size: 20px;
    color: #FF6B8A;
    top: -5px;
    left: 35px;
    animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.gift-card-content h2 {
    font-size: 1.8rem;
    color: #4A2A1A;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.gift-card-content p {
    color: #8B6B4A;
    margin-bottom: 25px;
    line-height: 1.6;
}

.gift-amount {
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.gift-amount span {
    background: #FFF8F0;
    padding: 8px 20px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid #E0D0C0;
    font-weight: 500;
}

.gift-amount span:hover {
    background: #FF6B8A;
    color: white;
    border-color: #FF6B8A;
}

.gift-card-form input,
.gift-card-form textarea {
    width: 100%;
    margin-bottom: 12px;
}

.gift-btn {
    background: linear-gradient(135deg, #FF6B8A, #C47A4A);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s;
}

.gift-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,107,138,0.3);
}

.gift-card-preview {
    background: linear-gradient(135deg, #FF6B8A, #C47A4A);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.card-preview {
    width: 280px;
    height: 180px;
    background: white;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s;
}

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

.preview-front {
    padding: 20px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.preview-front i {
    font-size: 40px;
    color: #FF6B8A;
    margin-bottom: 10px;
}

.preview-front h3 {
    color: #4A2A1A;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
}

.preview-front p {
    color: #C47A4A;
    font-size: 0.8rem;
}

.preview-amount {
    margin-top: 15px;
    font-size: 1.5rem;
    font-weight: bold;
    color: #FF6B8A;
}

/* ========== HEADER ========== */
.main-header {
    background: rgba(255, 248, 240, 0.98);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
}

.logo a {
    text-decoration: none;
}

.logo h1 {
    font-size: 1.4rem;
    background: linear-gradient(135deg, #FF6B8A, #C47A4A);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-family: 'Playfair Display', serif;
}

.logo span {
    font-size: 0.7rem;
    color: #C47A4A;
    letter-spacing: 1px;
}

.desktop-nav {
    display: flex;
    gap: 32px;
}

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

.desktop-nav a:hover,
.desktop-nav a.active {
    color: #FF6B8A;
}

.btn-order {
    background: linear-gradient(135deg, #FF6B8A, #C47A4A);
    color: white;
    padding: 8px 22px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.btn-order:hover {
    transform: scale(0.96);
    opacity: 0.9;
}

/* ========== MOBILE SIDEBAR ========== */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.6rem;
    color: #FF6B8A;
    cursor: pointer;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

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

.mobile-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100%;
    background: white;
    z-index: 999;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    box-shadow: 2px 0 15px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}

.mobile-sidebar.open {
    transform: translateX(0);
}

.sidebar-header {
    padding: 24px 20px;
    border-bottom: 1px solid #F0E6D8;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sidebar-header h3 {
    color: #FF6B8A;
    font-family: 'Playfair Display', serif;
}

.close-sidebar {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
}

.sidebar-nav {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-nav a {
    text-decoration: none;
    color: #333;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 12px;
    transition: var(--transition);
}

.sidebar-nav a i {
    width: 24px;
    color: #FF6B8A;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
    background: rgba(255,107,138,0.1);
    color: #FF6B8A;
}

.sidebar-order-btn {
    margin: 20px;
    background: linear-gradient(135deg, #FF6B8A, #C47A4A);
    color: white;
    text-decoration: none;
    padding: 14px;
    text-align: center;
    border-radius: 40px;
    font-weight: 600;
}

.sidebar-footer {
    padding: 20px;
    border-top: 1px solid #F0E6D8;
    font-size: 0.7rem;
    color: #8B6B4A;
    line-height: 1.8;
}

.sidebar-footer i {
    width: 24px;
    color: #FF6B8A;
}

/* ========== HERO SECTION ========== */
.hero {
    position: relative;
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-overlay-light {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.35);
    z-index: 1;
}

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

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 16px;
    font-family: 'Playfair Display', serif;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero-content h1 .highlight {
    background: linear-gradient(135deg, #FF6B8A, #FFDAB9);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.hero-btn {
    background: linear-gradient(135deg, #FF6B8A, #C47A4A);
    color: white;
    padding: 12px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.hero-btn-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 12px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.hero-btn:hover,
.hero-btn-secondary:hover {
    transform: translateY(-3px);
}

/* ========== BEAUTIFUL COLORED LABEL CATEGORY STYLES ========== */
.category-wrapper {
    background: linear-gradient(135deg, #FFF8F0 0%, #FDF3E7 100%);
    padding: 25px 0;
    margin: 20px 0 10px;
    border-radius: 60px;
}

.category-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.cat-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border: none;
    border-radius: 60px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.cat-btn i {
    font-size: 1.1rem;
    transition: transform 0.2s;
}

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

.cat-btn:hover i {
    transform: scale(1.1);
}

/* Individual Colored Labels */
.cat-btn[data-cat="all"] {
    background: linear-gradient(135deg, #FF6B8A, #FF8E9E);
    color: white;
}
.cat-btn[data-cat="all"]:hover {
    background: linear-gradient(135deg, #FF8E9E, #FF6B8A);
}

.cat-btn[data-cat="cakes"] {
    background: linear-gradient(135deg, #F5A623, #F7C948);
    color: white;
}
.cat-btn[data-cat="cakes"]:hover {
    background: linear-gradient(135deg, #F7C948, #F5A623);
}

.cat-btn[data-cat="pies"] {
    background: linear-gradient(135deg, #C47A4A, #D4956A);
    color: white;
}
.cat-btn[data-cat="pies"]:hover {
    background: linear-gradient(135deg, #D4956A, #C47A4A);
}

.cat-btn[data-cat="specials"] {
    background: linear-gradient(135deg, #9B59B6, #AF7AC5);
    color: white;
}
.cat-btn[data-cat="specials"]:hover {
    background: linear-gradient(135deg, #AF7AC5, #9B59B6);
}

.cat-btn.active {
    box-shadow: 0 0 0 3px rgba(255,255,255,0.5), 0 4px 15px rgba(0,0,0,0.2);
    transform: scale(1.02);
}

/* ========== SECTION TITLES ========== */
.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin: 60px 0 30px;
    font-family: 'Playfair Display', serif;
    background: linear-gradient(135deg, #FF6B8A, #C47A4A);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, #FF6B8A, #C47A4A);
    border-radius: 3px;
}

.section-title-small {
    font-size: 1.6rem;
    margin: 30px 0 20px;
    color: #FF6B8A;
    font-family: 'Playfair Display', serif;
}

/* ========== PRODUCT CARDS ========== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.product-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow);
    border: 1px solid #F0E6D8;
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: #FF6B8A;
}

.card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s;
}

.product-card:hover .card-image {
    transform: scale(1.03);
}

.card-content {
    padding: 20px;
    position: relative;
}

.card-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #FF6B8A, #C47A4A);
    color: white;
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 600;
}

.card-content h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
}

.card-content p {
    color: #8B6B4A;
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.price {
    color: #FF6B8A;
    font-weight: 700;
    font-size: 1.3rem;
    margin: 12px 0;
}

.shop-now-btn {
    display: inline-block;
    background: linear-gradient(135deg, #FF6B8A, #C47A4A);
    color: white;
    padding: 8px 20px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    transition: var(--transition);
}

.shop-now-btn:hover {
    transform: translateX(5px);
}

/* ========== FEATURES SECTION ========== */
.features-section {
    padding: 60px 0;
    background: #FFF8F0;
}

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

.feature-card {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 20px;
    transition: var(--transition);
    border: 1px solid #F0E6D8;
}

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

.feature-card i {
    font-size: 2.5rem;
    color: #FF6B8A;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.feature-card p {
    color: #8B6B4A;
    font-size: 0.85rem;
}

/* ========== ABOUT SECTION ========== */
.about-section {
    padding: 60px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text h2 {
    font-size: 2.2rem;
    background: linear-gradient(135deg, #FF6B8A, #C47A4A);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.about-text p {
    margin-bottom: 20px;
    color: #8B6B4A;
    line-height: 1.7;
}

.stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.stat {
    text-align: center;
}

.stat .number {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FF6B8A, #C47A4A);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: block;
}

.about-values h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: #FF6B8A;
}

.about-values ul {
    list-style: none;
}

.about-values li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #8B6B4A;
}

.about-values li i {
    color: #4CAF50;
    width: 24px;
}

.quote-section {
    padding: 40px 0;
}

.quote-card {
    background: #FFF8F0;
    padding: 40px;
    border-radius: 30px;
    text-align: center;
}

.quote-card i {
    font-size: 2rem;
    color: #FF6B8A;
    opacity: 0.5;
    margin-bottom: 15px;
    display: block;
}

.quote-card p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 15px;
    color: #4A2A1A;
}

/* ========== SHOP/CART SECTION ========== */
.shop-section {
    padding: 40px 0;
}

.shop-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.cart-summary {
    background: #FFF8F0;
    padding: 25px;
    border-radius: 20px;
    border: 1px solid #F0E6D8;
}

.cart-summary h3 {
    margin-bottom: 20px;
    color: #FF6B8A;
}

.cart-items {
    min-height: 150px;
    max-height: 350px;
    overflow-y: auto;
    margin-bottom: 20px;
}

.empty-cart {
    text-align: center;
    padding: 40px;
    color: #8B6B4A;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #E0D0C0;
    flex-wrap: wrap;
    gap: 12px;
}

.cart-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f5f5f5;
    padding: 4px 12px;
    border-radius: 40px;
}

.qty-btn {
    width: 32px;
    height: 32px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.qty-btn:hover {
    background: #4CAF50;
    color: white;
    border-color: #4CAF50;
}

.item-qty {
    min-width: 30px;
    text-align: center;
    font-weight: 600;
}

.remove-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    opacity: 0.6;
    padding: 5px;
}

.remove-btn:hover {
    opacity: 1;
}

.item-total-price {
    font-weight: 600;
    color: #4CAF50;
    min-width: 80px;
    text-align: right;
}

.cart-total {
    text-align: right;
    padding-top: 15px;
    border-top: 2px solid #E0D0C0;
    font-size: 1.2rem;
}

.delivery-note {
    margin-top: 15px;
    text-align: center;
    font-size: 0.8rem;
}

.checkout-form {
    background: #FFF8F0;
    padding: 25px;
    border-radius: 20px;
    border: 1px solid #F0E6D8;
}

.checkout-form h3 {
    margin-bottom: 20px;
    color: #FF6B8A;
}

.checkout-form input,
.checkout-form select,
.checkout-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #E0D0C0;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
}

.form-row-small {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 12px;
}

.shop-item {
    background: #FFF8F0;
    padding: 12px 20px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #F0E6D8;
}

.add-to-cart-btn {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 6px 16px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

.add-to-cart-btn:hover {
    background: #388E3C;
    transform: scale(0.96);
}

/* ========== CONTACT SECTION ========== */
.contact-section {
    padding: 60px 0;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.contact-card {
    background: white;
    padding: 30px 20px;
    text-align: center;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid #F0E6D8;
    transition: var(--transition);
}

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

.icon-circle {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #FF6B8A, #C47A4A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.icon-circle i {
    font-size: 28px;
    color: white;
}

.contact-card h3 {
    margin-bottom: 8px;
    color: #FF6B8A;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    text-decoration: none;
    color: white;
    font-size: 22px;
}

.social-link.ig {
    background: linear-gradient(45deg, #f09433, #d62976);
}

.social-link.fb {
    background: #1877F2;
}

.social-link.tg {
    background: #0088cc;
}

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

.social-link:hover {
    transform: translateY(-3px);
}

#map {
    height: 350px;
    width: 100%;
    border-radius: 24px;
    margin: 30px 0;
}

.contact-form {
    background: #FFF8F0;
    padding: 40px;
    border-radius: 30px;
    box-shadow: var(--shadow);
}

.contact-form h3 {
    text-align: center;
    margin-bottom: 25px;
    color: #FF6B8A;
    font-size: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

input,
textarea,
select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #E0D0C0;
    border-radius: 16px;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
}

input:focus,
textarea:focus {
    outline: none;
    border-color: #FF6B8A;
    box-shadow: 0 0 0 3px rgba(255,107,138,0.1);
}

button {
    background: linear-gradient(135deg, #FF6B8A, #C47A4A);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: var(--transition);
}

button:hover {
    transform: translateY(-2px);
    opacity: 0.95;
}

/* ========== FOOTER ========== */
.main-footer {
    background: #1A0E08;
    color: #D4B896;
    padding: 50px 0 20px;
    margin-top: 60px;
}

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

.footer-logo {
    font-size: 1.4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FF6B8A, #C47A4A);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
}

.tagline {
    font-size: 0.8rem;
    color: #FF6B8A;
    margin-bottom: 15px;
}

.footer-col h4 {
    color: #FF6B8A;
    margin-bottom: 15px;
    font-size: 1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: #D4B896;
    text-decoration: none;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: #FF6B8A;
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.social-links a {
    width: 34px;
    height: 34px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: #D4B896;
    text-decoration: none;
}

.social-links a:hover {
    background: #FF6B8A;
    transform: translateY(-3px);
    color: white;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.contact-info li i {
    width: 22px;
    color: #FF6B8A;
}

.payment-badge {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.payment-badge span {
    display: block;
    margin-bottom: 8px;
    font-size: 0.7rem;
    color: #FF6B8A;
}

.payment-badge i {
    font-size: 1.2rem;
    margin-right: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.7rem;
}

.footer-heart {
    margin-top: 5px;
    color: #FF6B8A;
}

/* ========== TOAST NOTIFICATION ========== */
.toast-msg {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: linear-gradient(135deg, #FF6B8A, #C47A4A);
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    z-index: 2000;
    transition: transform 0.3s;
    font-weight: 500;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.toast-msg.show {
    transform: translateX(-50%) translateY(0);
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 900px) {
    .desktop-nav,
    .btn-order {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

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

    .shop-layout {
        grid-template-columns: 1fr;
    }

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

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

@media (max-width: 600px) {
    .contact-cards {
        grid-template-columns: 1fr;
    }

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

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

    .stats {
        flex-direction: column;
        align-items: center;
    }

    .container {
        padding: 0 16px;
    }

    .hero {
        min-height: 450px;
    }

    .toast-msg {
        white-space: normal;
        text-align: center;
        width: 85%;
        font-size: 0.85rem;
    }

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

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

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

    .category-wrapper {
        padding: 15px 0;
        border-radius: 40px;
    }

    .category-container {
        gap: 10px;
    }

    .cat-btn {
        padding: 8px 18px;
        font-size: 0.8rem;
    }

    .cat-btn i {
        font-size: 0.9rem;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 20px;
        right: 20px;
    }

    .gift-card-content {
        padding: 25px;
    }

    .gift-amount span {
        padding: 6px 14px;
        font-size: 0.8rem;
    }
}
