/* 
 * Gifty Toys — Centralized External Stylesheet
 * Consolidating all internal CSS for better maintainability and performance.
 */

:root {
    --theme-color: #008BA3;
    /* Teal Blue */
    --theme-color2: #FF7F50;
    /* Coral Orange */
    --accent-color: #FFF4A3;
    /* Soft Yellow */
    --title-color: #1A3C40;
    /* Dark Teal Navy */
    --body-color: #4A5A5A;
    --title-font: "Fredoka", sans-serif !important;
    --body-font: "Poppins", sans-serif !important;
    --th-body-background: #FFFDF7;
    /* Cream White */
}

/* =============================================
   1. CORE BASE & TYPOGRAPHY
============================================= */
body {
    font-family: var(--body-font) !important;
    font-size: 15px !important;
    line-height: 1.6 !important;
    background-color: var(--th-body-background) !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family: var(--title-font) !important;
    font-weight: 600 !important;
    margin-bottom: 0.75rem !important;
    color: var(--title-color);
}

h1,
.h1 {
    font-size: 40px !important;
    line-height: 1.2 !important;
}

h2,
.h2 {
    font-size: 32px !important;
    line-height: 1.3 !important;
}

h3,
.h3 {
    font-size: 28px !important;
    line-height: 1.3 !important;
}

h4,
.h4 {
    font-size: 22px !important;
    line-height: 1.4 !important;
}

h5,
.h5 {
    font-size: 18px !important;
    line-height: 1.4 !important;
}

h6,
.h6 {
    font-size: 16px !important;
    line-height: 1.5 !important;
}

/* =============================================
   2. GLOBAL UTILITIES & SECTIONS
============================================= */
.mp-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.mp-section-light {
    background: #F9FAFB;
}

.mp-section-white {
    background: #FFFFFF;
}

.mp-section-head-v2 {
    margin-bottom: 40px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.mp-section-head-v2 h2 {
    margin: 0 !important;
    font-size: 32px !important;
    font-weight: 800 !important;
    color: #111;
    letter-spacing: -0.5px;
}

.mp-section-head-v2 .view-all {
    font-weight: 700;
    color: var(--theme-color);
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mp-section-head-v2 .view-all:hover {
    color: var(--theme-color2);
}

.space {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
}

.space-top {
    padding-top: 60px !important;
}

.space-bottom {
    padding-bottom: 60px !important;
}

.toy-shadow {
    box-shadow: 0 10px 30px rgba(26, 11, 91, 0.08);
}

/* Buttons */
.toy-btn-primary,
.btn-toy-primary {
    background: var(--theme-color);
    color: #fff;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 700;
    border: none;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.toy-btn-primary:hover,
.btn-toy-primary:hover {
    background: var(--title-color);
    transform: scale(1.05);
    color: #fff;
}

.toy-btn-orange,
.btn-toy-orange {
    background: var(--theme-color2);
    color: #fff;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 700;
    border: none;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.toy-btn-orange:hover,
.btn-toy-orange:hover {
    opacity: 0.9;
    transform: scale(1.05);
    color: #fff;
}

.th-btn {
    border-radius: 4px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    font-size: 14px !important;
    padding: 12px 24px !important;
}

/* Animations */
@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.floating-toy {
    animation: bounce 4s infinite ease-in-out;
}

.floating-toy-delay {
    animation: bounce 5s infinite ease-in-out 1s;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

/* Livewire Progress Bar */
#nprogress .bar {
    background: var(--theme-color) !important;
    height: 3px !important;
}

#nprogress .peg {
    box-shadow: 0 0 10px var(--theme-color), 0 0 5px var(--theme-color) !important;
}

#nprogress .spinner-icon {
    border-top-color: var(--theme-color) !important;
    border-left-color: var(--theme-color) !important;
}

/* =============================================
   3. HEADER STYLES
============================================= */
.announcement-bar {
    background-color: #1A0B5B;
    color: #fff;
    height: 40px;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-flex;
    animation: marqueeAnimation 40s linear infinite;
    align-items: center;
}

.marquee-content:hover {
    animation-play-state: paused;
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    padding: 0 50px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.marquee-item span {
    margin-right: 10px;
    font-size: 16px;
}

@keyframes marqueeAnimation {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.gifty-header {
    background: #fff;
    font-family: 'Poppins', sans-serif;
}

.gifty-logo {
    text-decoration: none !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 32px;
}

.logo-text {
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #0D8BFF;
    line-height: 1;
}

.logo-text .text-accent {
    color: #FF6B00;
}

.logo-text .text-store {
    display: block;
    font-size: 12px;
    color: #1A0B5B;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 2px;
}

.gifty-search-wrap {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.gifty-search-input {
    width: 100%;
    height: 50px;
    background: #F8F9FA;
    border: 2px solid #F0F0F0;
    border-radius: 25px;
    padding: 0 60px 0 25px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.gifty-search-input:focus {
    border-color: #0D8BFF;
    background: #fff;
    box-shadow: 0 5px 20px rgba(13, 139, 255, 0.1);
    outline: none;
}

.gifty-search-btn {
    position: absolute;
    right: 5px;
    top: 5px;
    width: 40px;
    height: 40px;
    background: #0D8BFF;
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s;
}

.gifty-search-btn:hover {
    transform: scale(1.1);
}

.gifty-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

.action-link {
    text-decoration: none !important;
    color: #1A0B5B;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 11px;
    font-weight: 600;
    gap: 4px;
    transition: color 0.2s;
}

.action-link i {
    font-size: 20px;
}

.action-link:hover {
    color: #0D8BFF;
}

.user-avatar-header {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #eee;
    transition: all 0.2s;
}

.user-avatar-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gifty-nav-wrap {
    background: #fff;
    border-top: 1px solid #f5f5f5;
    border-bottom: 2px solid #f5f5f5;
}

.nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    width: 100%;
    position: relative;
}

.nav-menu>li {
    position: relative;
}

.nav-menu>li.has-mega-menu {
    position: static;
}

.nav-menu>li>a {
    display: block;
    padding: 12px 10px;
    color: #1A0B5B;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none !important;
    border-radius: 12px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.nav-menu>li>a:hover,
.nav-menu>li>a.active {
    color: #FF6B00;
    background: rgba(255, 107, 0, 0.05);
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 40px 100px rgba(26, 11, 91, 0.12);
    padding: 40px 0;
    visibility: hidden;
    z-index: 1000;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-radius: 0 0 40px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
}

.mega-menu::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 20px;
    background: transparent;
}

.has-mega-menu:hover .mega-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.mega-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px;
    background: #fff;
    border-radius: 22px;
    text-decoration: none !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
}

.mega-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(13, 139, 255, 0.12);
    border-color: var(--theme-color);
}

.mega-card-icon {
    width: 55px;
    height: 55px;
    background: rgba(0, 139, 163, 0.08);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    transition: all 0.3s ease;
}

.mega-card:hover .mega-card-icon {
    background: var(--theme-color);
    color: #fff;
    transform: rotate(10deg);
}

.mega-card-content h6 {
    margin-bottom: 2px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    color: var(--title-color);
}

.mega-card-content span {
    font-size: 12px;
    color: #718096;
}

.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    min-width: 280px;
    box-shadow: 0 30px 70px rgba(26, 11, 91, 0.15);
    list-style: none;
    padding: 20px;
    margin: 0;
    visibility: hidden;
    border-radius: 24px;
    z-index: 1000;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.sub-menu::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    right: 0;
    height: 15px;
    background: transparent;
}

.sub-menu::after {
    content: '';
    position: absolute;
    top: -8px;
    left: 30px;
    width: 16px;
    height: 16px;
    background: #fff;
    transform: rotate(45deg);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-left: 1px solid rgba(0, 0, 0, 0.05);
    z-index: -1;
}

.sub-menu li {
    margin-bottom: 4px;
}

.sub-menu li:last-child {
    margin-bottom: 0;
}

.sub-menu li a {
    display: flex;
    align-items: center;
    padding: 12px 18px;
    color: #4A5568;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none !important;
    border-radius: 14px;
    transition: all 0.2s ease;
}

.sub-menu li a:hover {
    background: rgba(0, 139, 163, 0.08);
    color: var(--theme-color);
    padding-left: 25px;
    box-shadow: 0 4px 15px rgba(0, 139, 163, 0.05);
}

.sub-menu li a::before {
    content: '→';
    position: absolute;
    left: 10px;
    opacity: 0;
    transition: all 0.3s ease;
    font-weight: 700;
}

.sub-menu li a:hover::before {
    opacity: 1;
    left: 12px;
}

.has-dropdown:hover .sub-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.deals-btn {
    background: linear-gradient(135deg, #FF6B00, #FFC107);
    color: #fff !important;
    padding: 8px 18px !important;
    border-radius: 20px !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
    animation: pulseDeals 2s infinite;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

@keyframes pulseDeals {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.03);
    }

    100% {
        transform: scale(1);
    }
}

.sticky-wrapper.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    animation: slideDown 0.4s ease;
}

/* =============================================
   4. PRODUCT CARD STYLES
============================================= */
.toy-product-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 20px;
    padding: 12px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 20px rgba(26, 11, 91, 0.03);
    position: relative;
    overflow: hidden;
}

.toy-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(13, 139, 255, 0.1);
    border-color: rgba(13, 139, 255, 0.3);
}

.toy-product-card .img-wrap {
    width: 100%;
    aspect-ratio: 1;
    background: #f8f9fa;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 12px;
    position: relative;
}

.toy-img-hover-effect .main-img,
.toy-img-hover-effect .hover-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: #f8f8f8;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.toy-img-hover-effect .hover-img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transform: scale(1.05);
}

.toy-product-card:hover .main-img {
    opacity: 0;
}

.toy-product-card:hover .hover-img {
    opacity: 1;
    transform: scale(1);
}

.toy-product-card .cat {
    font-size: 9px;
    text-transform: uppercase;
    font-weight: 700;
    color: #888;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    display: block;
    text-decoration: none;
}

.toy-product-card .title {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 6px;
    line-height: 1.4;
    height: 36px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.toy-product-card .title a {
    color: var(--title-color);
    text-decoration: none;
    transition: color 0.3s;
}

.toy-product-card .title a:hover {
    color: var(--theme-color);
}

.toy-product-card .price {
    margin-top: auto;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.toy-product-card .current-price {
    font-size: 15px;
    font-weight: 800;
    color: var(--theme-color);
}

.toy-product-card .old-price {
    font-size: 11px;
    color: #adb5bd;
    text-decoration: line-through;
}

.toy-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 10;
    padding: 4px 10px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background-color: var(--theme-color);
    color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.sale-badge {
    background: #FF6B00;
}

.new-badge {
    background: #0D8BFF;
}

.wishlist-pos {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
}

/* ATC & Quantity Pill */
.mp-qty-pill {
    display: inline-flex !important;
    align-items: center !important;
    background: #f8f9fa !important;
    border: 2px solid #f0f0f0 !important;
    border-radius: 20px !important;
    padding: 4px 8px !important;
    gap: 15px !important;
    width: 100% !important;
    justify-content: space-between !important;
    transition: all 0.3s;
}

.mp-qty-pill:hover {
    border-color: var(--theme-color);
    background: #fff !important;
}

.mp-qty-num {
    color: var(--theme-color) !important;
    font-weight: 800 !important;
    font-size: 13px !important;
    padding: 0 4px !important;
}

.mp-qty-btn {
    width: 22px !important;
    height: 22px !important;
    border-radius: 50% !important;
    border: none !important;
    background: var(--theme-color) !important;
    color: #fff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 12px !important;
    padding: 0 !important;
    transition: all 0.2s;
}

.mp-qty-btn:hover {
    background: var(--title-color) !important;
    transform: scale(1.05);
}

.mp-atc-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    padding: 10px !important;
    background: linear-gradient(135deg, var(--theme-color2), #ff8c00) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 12px !important;
    font-weight: 700 !important;
    font-size: 12px !important;
    gap: 8px !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.2) !important;
    cursor: pointer !important;
    text-transform: none !important;
}

.mp-atc-btn:hover:not(:disabled) {
    background: var(--title-color) !important;
    transform: translateY(-2px) !important;
    color: #fff !important;
    box-shadow: 0 6px 15px rgba(26, 11, 91, 0.2) !important;
}

/* =============================================
   5. WELCOME PAGE & SECTION SPECIFICS
============================================= */
.shop-age-title {
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    color: var(--theme-color);
    font-size: 48px;
    text-align: center;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.shop-age-subtitle {
    color: var(--theme-color2);
    font-size: 20px;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 500;
}

.age-premium-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    text-decoration: none !important;
    display: block;
    text-align: center;
}

.age-premium-card:hover {
    transform: translateY(-15px) scale(1.02);
}

.age-img-container {
    width: 100%;
    aspect-ratio: 0.8;
    background: #E3F2FD;
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.age-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.age-range-text {
    font-family: 'Fredoka', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--title-color);
    margin-top: 10px;
}

/* Irregular shapes for age cards */
.shape-1 {
    border-radius: 40px 15px 50px 20px;
}

.shape-2 {
    border-radius: 20px 50px 15px 45px;
}

.shape-3 {
    border-radius: 50px 25px 40px 15px;
}

.shape-4 {
    border-radius: 15px 45px 25px 50px;
}

.shape-5 {
    border-radius: 45px 20px 50px 25px;
}

.shape-6 {
    border-radius: 25px 50px 15px 45px;
}

.cat-premium-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    text-decoration: none !important;
    display: block;
    text-align: center;
}

.cat-img-wrapper {
    width: 100%;
    aspect-ratio: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    overflow: hidden;
    background: transparent;
}

.cat-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 2;
    transition: transform 0.5s;
}

.cat-name {
    font-family: 'Fredoka', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--title-color);
    margin-top: 5px;
}

/* FAQ & Expert Content */
.faq-accordion .accordion-button {
    background: #fff !important;
    color: var(--title-color) !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 20px !important;
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--theme-color) !important;
}

.faq-accordion .accordion-item {
    border: none !important;
    margin-bottom: 15px;
}

.faq-accordion .accordion-body {
    padding-top: 0;
    font-size: 15px;
    line-height: 1.7;
}

.text-teal {
    color: var(--theme-color) !important;
}

.text-coral {
    color: var(--theme-color2) !important;
}

.icon-circle {
    transition: transform 0.3s ease;
}

.trust-signal-card:hover .icon-circle {
    transform: scale(1.1);
}

.promo-banner {
    height: 380px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    padding: 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-decoration: none !important;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.promo-glass-content {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 35px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    max-width: 350px;
    position: relative;
    z-index: 2;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* =============================================
   6. FOOTER STYLES
============================================= */
.gifty-footer {
    background: #101828;
    color: #fff;
    padding-top: 0;
    position: relative;
    overflow: hidden;
}

.footer-shape {
    position: relative;
    width: 100%;
    line-height: 0;
    z-index: 1;
}

.footer-newsletter {
    position: relative;
    z-index: 10;
    margin-top: -50px;
    margin-bottom: 60px;
}

.newsletter-wrap {
    background: var(--theme-color);
    background: linear-gradient(135deg, var(--theme-color) 0%, #00acc1 100%);
    padding: 50px;
    border-radius: 35px;
    box-shadow: 0 25px 60px rgba(0, 139, 163, 0.3);
}

.newsletter-title {
    color: #fff !important;
    font-size: 32px !important;
    margin-bottom: 10px !important;
    font-weight: 800 !important;
}

.newsletter-text {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 16px;
}

.newsletter-form .form-group {
    position: relative;
    display: flex;
    background: #fff;
    padding: 6px;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.newsletter-form input {
    border: none;
    background: transparent;
    padding: 10px 25px;
    flex-grow: 1;
    font-weight: 500;
    font-size: 15px;
    outline: none;
}

.newsletter-btn {
    background: #101828;
    color: #fff;
    border: none;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s;
}

.newsletter-btn:hover {
    background: var(--theme-color2);
    transform: scale(1.05);
}

@media (max-width: 575px) {
    .newsletter-wrap {
        padding: 30px 20px !important;
        border-radius: 24px !important;
    }
    .newsletter-title {
        font-size: 26px !important;
    }
    .newsletter-form .form-group {
        display: block !important;
        background: transparent !important;
        box-shadow: none !important;
        padding: 0 !important;
    }
    .newsletter-form input {
        background: #fff !important;
        border-radius: 30px !important;
        margin-bottom: 12px !important;
        width: 100% !important;
        padding: 14px 25px !important;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05) !important;
        display: block !important;
    }
    .newsletter-btn {
        width: 100% !important;
        padding: 14px 35px !important;
        border-radius: 30px !important;
        display: block !important;
        text-align: center !important;
    }
}

.footer-features {
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--theme-color);
}

.feature-icon {
    width: 55px;
    height: 55px;
    background: rgba(0, 139, 163, 0.15);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-color);
    font-size: 24px;
    flex-shrink: 0;
}

.feature-info h6 {
    color: #fff;
    margin: 0 0 5px 0 !important;
    font-size: 17px !important;
    font-weight: 700 !important;
}

.feature-info p {
    margin: 0;
    color: #94a3b8;
    font-size: 13px;
}

.widget-area {
    padding-top: 80px;
    padding-bottom: 80px;
    position: relative;
    z-index: 2;
}

.gifty-logo-footer {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
}

.gifty-logo-footer .logo-text {
    font-family: var(--title-font);
    font-size: 30px;
    font-weight: 800;
    color: #fff;
}

.text-coral {
    color: var(--theme-color2);
}

.footer-about-text {
    color: #94a3b8;
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 15px;
}

.widget-title {
    font-family: var(--title-font);
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px !important;
    position: relative;
    letter-spacing: 0.5px;
}

.widget-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 30px;
    height: 3px;
    background: var(--theme-color);
    border-radius: 10px;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 18px;
}

.footer-menu li a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-menu li a:hover {
    color: var(--theme-color2);
    transform: translateX(5px);
}

.view-all-link {
    color: var(--theme-color) !important;
    font-weight: 700;
    font-size: 14px !important;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.03);
    padding: 18px 22px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: var(--theme-color2);
    background: rgba(255, 255, 255, 0.05);
}

.contact-card .icon-box {
    width: 50px;
    height: 50px;
    background: rgba(255, 127, 80, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-color2);
    font-size: 20px;
    flex-shrink: 0;
}

.info-content label {
    display: block;
    color: #64748b;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 2px;
}

.info-content span,
.info-content a {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}

.info-content a:hover {
    color: var(--theme-color2);
}

.social-links-wrap {
    display: flex;
    gap: 15px;
}

.social-btn {
    width: 48px;
    height: 48px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 20px;
}

.social-btn:hover {
    background: var(--theme-color);
    border-color: var(--theme-color);
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 15px 35px rgba(0, 139, 163, 0.25);
}

.footer-bottom {
    background: #0b101b;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.copyright-text {
    color: #64748b;
    margin: 0;
    font-size: 14px;
}

.payment-methods {
    display: flex;
    gap: 15px;
    align-items: center;
}

.payment-methods img {
    height: 32px;
    filter: grayscale(1);
    opacity: 0.6;
    transition: all 0.3s;
    cursor: pointer;
}

.payment-methods img:hover {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.1);
}

.trust-badges .badge-item {
    color: #94a3b8;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.trust-badges .badge-item i {
    color: #22c55e;
    font-size: 16px;
}

/* =============================================
   7. MOBILE NAVIGATION & RESPONSIVE
============================================= */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.12);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 10px 10px calc(12px + env(safe-area-inset-bottom, 0px));
    z-index: 99999;
    border-top: 1px solid #eee;
    transition: transform 0.3s ease;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.mobile-bottom-nav .nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #888;
    text-decoration: none;
    font-size: 10px;
    font-weight: 600;
    gap: 4px;
    transition: all 0.2s ease;
    padding-bottom: 5px;
}

.mobile-bottom-nav .nav-item i {
    font-size: 20px;
}

.mobile-bottom-nav .nav-item.active {
    color: var(--theme-color);
}

.nav-item-center-wrap {
    position: relative;
    flex: 1.2;
    display: flex;
    justify-content: center;
}

.nav-item-center {
    position: absolute;
    bottom: calc(15px + env(safe-area-inset-bottom, 0px));
    width: 60px;
    height: 60px;
    background: var(--theme-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(227, 24, 55, 0.4);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    border: 5px solid #fff;
}

.nav-item-center:hover,
.nav-item-center.active {
    transform: translateY(-8px) scale(1.05);
    background: #c0142d;
    color: #fff;
}

@media (max-width: 991px) {
    body {
        padding-bottom: calc(90px + env(safe-area-inset-bottom, 0px)) !important;
    }

    .th-header.header-layout2 {
        position: fixed !important;
        top: 0 !important;
        left: 0;
        right: 0;
        z-index: 10000 !important;
        background: #fff;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .gifty-footer {
        padding-bottom: 80px;
    }
}

/* =============================================
   8. BUTTER-SMOOTH SLIDER NAVIGATION BUTTONS
   ============================================= */
.mp-nav-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    background: #ffffff !important;
    color: var(--theme-color) !important;
    border: 1px solid rgba(0, 139, 163, 0.12) !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04) !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
    font-size: 15px !important;
    outline: none !important;
}

.mp-nav-btn:hover {
    background: var(--theme-color) !important;
    color: #ffffff !important;
    border-color: var(--theme-color) !important;
    transform: translateY(-2px) scale(1.08) !important;
    box-shadow: 0 12px 25px rgba(0, 139, 163, 0.25) !important;
}

.mp-nav-btn:active {
    transform: translateY(0) scale(0.95) !important;
}

/* Swiper disabled state style */
.mp-nav-btn.swiper-button-disabled {
    opacity: 0.45 !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
    background: #f1f5f9 !important;
    color: #94a3b8 !important;
    border-color: #e2e8f0 !important;
    box-shadow: none !important;
    transform: none !important;
}

/* =============================================
   9. INSTAGRAM GALLERY STYLES
   ============================================= */
.instagram-item-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 139, 163, 0.25) !important;
}

.instagram-item-card:hover img {
    transform: scale(1.1);
}

.instagram-item-card:hover .insta-hover-overlay {
    opacity: 1 !important;
}