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

:root {
    --theme-color: #1B6FD8;
    /* Primary Blue */
    --theme-color2: #F5C518;
    /* Primary Accent Yellow */
    --accent-color: #F26722;
    /* Highlight Orange */
    --title-color: #0D1B3E;
    /* Dark Navy Blue */
    --body-color: #4A5A5A;
    --title-font: "Fredoka", sans-serif !important;
    --body-font: "Poppins", sans-serif !important;
    --th-body-background: #FAFAF5;
    /* Light Beige/Off-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: 60px 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: var(--title-color);
    /* Dark Navy Blue for high-contrast on Yellow background */
    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 {
    background: var(--title-color);
    color: #fff;
    transform: scale(1.05);
    animation: toy-shake 0.6s ease-in-out;
}

.toy-btn-orange:hover i.fa-bell {
    display: inline-block;
    animation: bell-wiggle 0.6s ease-in-out infinite alternate;
}

@keyframes toy-shake {
    0%, 100% { transform: rotate(0deg) scale(1.05); }
    15% { transform: rotate(-3deg) scale(1.05); }
    30% { transform: rotate(3deg) scale(1.05); }
    45% { transform: rotate(-3deg) scale(1.05); }
    60% { transform: rotate(3deg) scale(1.05); }
    75% { transform: rotate(-1.5deg) scale(1.05); }
    90% { transform: rotate(1.5deg) scale(1.05); }
}

@keyframes bell-wiggle {
    0% { transform: rotate(-25deg); }
    100% { transform: rotate(25deg); }
}

.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.25s ease;
    position: relative;
}

.sub-menu li a:hover {
    background: rgba(27, 111, 216, 0.06);
    color: var(--theme-color);
    padding-left: 28px;
    box-shadow: 0 4px 15px rgba(27, 111, 216, 0.05);
}

.sub-menu li a::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 50%;
    width: 6px;
    height: 6px;
    border-top: 2px solid var(--theme-color);
    border-right: 2px solid var(--theme-color);
    transform: translateY(-50%) rotate(45deg);
    opacity: 0;
    transition: all 0.25s ease;
}

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

.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);
    display: flex;
    flex-direction: column;
    height: 100%;
    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: #fff;
    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: transparent;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.toy-product-card .details {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.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;
}

@media (max-width: 767px) {
    .toy-product-card .price {
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
    }
}

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

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

.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: var(--theme-color) !important;
}

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

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

.toy-cart-btn {
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 767px) {
    .toy-cart-btn {
        font-size: 10px !important;
        padding: 8px 4px !important;
        letter-spacing: 0px !important;
    }

    .toy-cart-btn i {
        font-size: 10px !important;
        margin-right: 4px !important;
    }
}

/* 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: 40px;
    margin-bottom: 40px;
}

.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: 40px;
    border-bottom: none;
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid rgba(27, 111, 216, 0.08);
    box-shadow: 0 10px 30px rgba(27, 111, 216, 0.03);
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: #ffffff;
    border-color: var(--theme-color);
    box-shadow: 0 12px 30px rgba(27, 111, 216, 0.12) !important;
}

.feature-icon {
    width: 55px;
    height: 55px;
    background: rgba(27, 111, 216, 0.08);
    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: #0D1B3E !important;
    margin: 0 0 5px 0 !important;
    font-size: 17px !important;
    font-weight: 700 !important;
}

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

.widget-area {
    padding-top: 50px;
    padding-bottom: 50px;
    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-color);
    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: 16px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: transparent !important;
    padding: 0 !important;
    border-radius: 0;
    border: none !important;
    transition: all 0.3s ease;
}

.contact-card:hover {
    background: transparent !important;
}

.contact-card .icon-box {
    width: 42px;
    height: 42px;
    background: rgba(27, 111, 216, 0.1) !important;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-color) !important;
    font-size: 18px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-card:hover .icon-box {
    background: var(--theme-color) !important;
    color: #fff !important;
    transform: translateY(-2px);
}

.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: #cbd5e1;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}

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

.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: 20px 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: 15px;
}

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

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

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

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

.trust-badges .badge-item {
    color: #64748b;
    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 .mobile-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;
    background: transparent !important;
    border-left: none !important;
    border-right: none !important;
}

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

.mobile-bottom-nav .mobile-nav-item.active {
    color: var(--theme-color) !important;
    background: transparent !important;
    border: none !important;
}

.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;
}

/* =============================================
   10. MOBILE VIEWS SPACING & REFINEMENTS
   ============================================= */
@media (max-width: 767px) {
    .mp-section {
        padding: 40px 0 !important;
    }

    .counter-section {
        padding: 40px 0 !important;
    }

    .mp-section .mb-5 {
        margin-bottom: 20px !important;
    }

    .shop-age-title,
    .section-title {
        font-size: 26px !important;
        margin-bottom: 15px !important;
    }

    .shop-age-subtitle {
        margin-bottom: 20px !important;
    }

    /* Reduce hero slider height or spacing if needed */
    /* .hero-slide-item {
        padding: 40px 0 !important;
    } */
    .hero-title {
        font-size: 32px !important;
    }

    /* Spacing between slider contents */
    .swiper {
        padding-top: 5px !important;
        padding-bottom: 5px !important;
    }
}

/* Global Fix for Swiper Slide Vertical Stretching Bug */
.swiper-slide {
    height: auto !important;
    /* Forces flexbox to respect actual content height */
}

.swiper-wrapper {
    align-items: stretch !important;
    /* Ensures all cards in a row are equal height */
}

/* Mobile Submenu Styling */
.th-mobile-menu .th-submenu {
    display: none;
    padding-left: 20px !important;
    list-style: none !important;
    margin: 5px 0 10px 0 !important;
    text-align: left !important;
}

.th-mobile-menu .th-submenu.th-open {
    display: block !important;
}

.th-mobile-menu .th-submenu li {
    margin-bottom: 10px !important;
}

.th-mobile-menu .th-submenu li a {
    font-size: 14px !important;
    color: #555555 !important;
}

.th-mobile-menu .th-submenu li a:hover {
    color: #1B6FD8 !important;
}

/* Premium Blog Feed Container Padding */
.toy-blog-feed-card {
    padding: 40px;
}

@media (max-width: 767px) {
    .toy-blog-feed-card {
        padding: 24px 16px !important;
    }
}

/* Premium Blog Feed Card Redesign */
.toy-blog-item {
    display: flex;
    flex-direction: row;
    gap: 24px;
    padding: 20px 0;
    background: transparent;
    text-decoration: none !important;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
}

.row.g-4>div:last-child .toy-blog-item {
    border-bottom: none;
    padding-bottom: 0;
}

.row.g-4>div:first-child .toy-blog-item {
    padding-top: 0;
}

.toy-blog-item:hover {
    background: transparent;
    transform: translateX(4px);
}

.toy-blog-img-wrap {
    width: 140px;
    height: auto;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.toy-blog-img-wrap img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.toy-blog-item:hover .toy-blog-img-wrap img {
    transform: scale(1.08);
}

.toy-blog-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.toy-blog-content h6 {
    transition: color 0.3s ease;
    font-size: 16px;
    line-height: 1.4;
    color: var(--title-color);
}

.toy-blog-item:hover .toy-blog-content h6 {
    color: var(--theme-color) !important;
}

/* Mobile responsive blog grid stack */
@media (max-width: 767px) {
    .toy-blog-item {
        flex-direction: column !important;
        gap: 12px !important;
        padding: 24px 0 !important;
        background: transparent !important;
        border-bottom: 1px solid #eee !important;
    }

    .toy-blog-item:hover {
        transform: translateY(-2px) !important;
    }

    .toy-blog-img-wrap {
        width: 100% !important;
        height: auto !important;
        border-radius: 16px !important;
    }

    .toy-blog-content {
        padding: 5px 0 0 0 !important;
    }

    .toy-blog-content h6 {
        font-size: 17px !important;
        line-height: 1.45 !important;
        margin-bottom: 12px !important;
    }
}

/* Swiper Pagination Styling for Blog */
.blog-pagination {
    bottom: -5px !important;
}

.blog-pagination .swiper-pagination-bullet {
    background: #ccc;
    opacity: 0.5;
    width: 8px;
    height: 8px;
    transition: all 0.3s ease;
}

.blog-pagination .swiper-pagination-bullet-active {
    background: var(--theme-color) !important;
    opacity: 1 !important;
    width: 20px !important;
    border-radius: 4px !important;
}

/* =============================================
   8. CHECKOUT PAGE DYNAMIC STYLING
   ============================================= */
.milan-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #636e72;
    margin-bottom: 8px;
    display: block;
    letter-spacing: 0.8px;
}

.milan-input {
    border: 2px solid #f1f2f6 !important;
    border-radius: 15px !important;
    padding: 14px 18px !important;
    font-size: 14px !important;
    background: #fdfdfd !important;
    transition: all 0.2s !important;
}

.milan-input:focus {
    border-color: var(--theme-color) !important;
    background: #fff !important;
    box-shadow: 0 8px 20px rgba(0, 139, 163, 0.08) !important;
}

.payment-card-label {
    cursor: pointer;
    border: 2px solid #f1f2f6;
    border-radius: 24px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: #fff;
    position: relative;
    overflow: hidden;
    width: 100%;
    display: block;
}

.payment-card-label:hover {
    border-color: #e2e2e2;
    transform: translateY(-2px);
}

.payment-card-label.active {
    border-color: var(--theme-color);
    background: #f0fbfc;
    box-shadow: 0 10px 30px rgba(0, 139, 163, 0.1);
}

.payment-card-content {
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.payment-icon-wrap {
    width: 54px;
    height: 54px;
    background: #f8fafc;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #64748b;
    flex-shrink: 0;
    transition: all 0.3s;
}

.payment-card-label.active .payment-icon-wrap {
    background: var(--theme-color);
    color: #fff;
}

.payment-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex-grow: 1;
}

.payment-name {
    display: block;
    font-weight: 700;
    color: #1e293b;
    font-size: 16px;
    white-space: nowrap;
}

.payment-desc {
    display: block;
    font-size: 12px;
    color: #94a3b8;
}

.payment-check {
    font-size: 22px;
    color: #e2e8f0;
    opacity: 0;
    transition: all 0.3s;
}

.payment-card-label.active .payment-check {
    opacity: 1;
    color: var(--theme-color);
}

.payment-card-footer {
    padding: 12px 25px;
    background: rgba(0, 0, 0, 0.02);
    border-top: 1px dashed rgba(0, 0, 0, 0.05);
}

.stripe-badge {
    font-size: 10px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.complete-order-btn {
    background: var(--theme-color) !important;
    border: none !important;
    border-radius: 20px !important;
    font-weight: 800 !important;
    font-size: 18px !important;
    transition: all 0.3s !important;
    border-bottom: 4px solid rgba(0, 0, 0, 0.1) !important;
}

.complete-order-btn:hover {
    transform: translateY(-3px) scale(1.01) !important;
    filter: brightness(1.1) !important;
    box-shadow: 0 15px 35px rgba(0, 139, 163, 0.25) !important;
}

.complete-order-btn:active {
    transform: translateY(-1px) !important;
    border-bottom-width: 2px !important;
}

/* =============================================
   9. SHOP INDEX PAGE STYLING
   ============================================= */
.shop-sidebar {
    position: sticky;
    top: 20px;
}

.sb-widget {
    margin-bottom: 24px;
}

.sb-title {
    font-size: 12px !important;
    font-weight: 700 !important;
    color: #111 !important;
    margin-bottom: 10px !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding-bottom: 8px;
    border-bottom: 1px solid #f0f0f0;
}

.sb-cat-list {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 280px;
    overflow-y: auto;
    padding-right: 4px;
}

.sb-cat-list::-webkit-scrollbar {
    width: 4px;
}

.sb-cat-list::-webkit-scrollbar-track {
    background: #f5f5f5;
    border-radius: 4px;
}

.sb-cat-list::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 4px;
}

.sb-cat-list::-webkit-scrollbar-thumb:hover {
    background: var(--theme-color);
}

.sb-cat-list li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 13px;
    color: #555;
    text-decoration: none;
    transition: all 0.15s;
}

.sb-cat-list li a:hover {
    background: #fef2f2;
    color: var(--theme-color);
}

.sb-cat-list li a.active {
    background: var(--theme-color);
    color: #fff;
    font-weight: 600;
}

.sb-cat-list li a span {
    font-size: 11px;
    color: #aaa;
    background: #f5f5f5;
    padding: 1px 6px;
    border-radius: 10px;
    min-width: 20px;
    text-align: center;
}

.sb-cat-list li a.active span {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
}

.sb-input {
    width: 100%;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    padding: 7px 10px;
    font-size: 13px;
    outline: none;
    background: #fff;
    transition: border 0.15s;
}

.sb-input:focus {
    border-color: var(--theme-color);
}

.sb-filter-btn {
    width: 100%;
    padding: 8px;
    border: none;
    border-radius: 4px;
    background: var(--theme-color);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
}

.sb-filter-btn:hover {
    opacity: 0.9;
}

.sb-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.sb-tags a {
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid #e5e5e5;
    color: #555;
    text-decoration: none;
    transition: all 0.15s;
}

.sb-tags a:hover,
.sb-tags a.active {
    background: var(--theme-color);
    color: #fff;
    border-color: var(--theme-color);
}

.shop-sort-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 4px;
    padding: 10px 16px;
}

.shop-sort-bar .result-count {
    font-size: 13px;
    color: #888;
}

/* =============================================
   10. PRODUCT DETAILS PAGE STYLING
   ============================================= */
.toy-detail-wishlist .toy-wishlist-btn {
    width: 55px !important;
    height: 55px !important;
    border-radius: 15px !important;
}

.toy-detail-wishlist .toy-wishlist-btn i {
    font-size: 22px !important;
}

.butter-tab {
    background: #111 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 15px 30px !important;
    font-weight: 800 !important;
    font-size: 14px !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    transition: all 0.3s ease !important;
    opacity: 0.7;
    display: inline-block !important;
    visibility: visible !important;
}

.butter-tab.active {
    opacity: 1 !important;
    background: var(--theme-color) !important;
    box-shadow: 0 10px 20px rgba(255, 107, 107, 0.2);
}

.butter-tab:hover {
    opacity: 1;
    transform: translateY(-2px);
    color: #fff !important;
}

/* =============================================
   11. HOMEPAGE HELPER & TRANSITION STYLING
   ============================================= */
.transition-up {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.transition-up:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08) !important;
}

.hover-bg-light {
    transition: background 0.3s ease;
}

.hover-bg-light:hover {
    background: #fcfcfc;
}

.group:hover .group-hover-scale {
    transform: scale(1.1);
}

.group:hover .group-hover-theme {
    color: var(--theme-color) !important;
}

/* =============================================
   12. STATIC PAGES STYLING (ABOUT/CMS)
   ============================================= */
.page-content-wrap {
    border: 1px solid #f0f4f9;
}

.toy-description-content {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
}

.toy-description-content h2 {
    font-family: 'Fredoka', sans-serif;
    color: #1A0B5B;
    margin-top: 30px;
    margin-bottom: 20px;
    font-weight: 700;
}

.toy-description-content p {
    margin-bottom: 20px;
}

/* =============================================
   13. WISHLIST PAGE STYLING
   ============================================= */
.wishlist-wrapper {
    min-height: 60vh;
    background-color: #fcfcfc;
}

.wishlist-item-card {
    transition: all 0.3s ease;
}

.remove-wish-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 50;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    border: 1px solid #eee;
    color: #ff4d4d;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.remove-wish-btn:hover {
    background: #ff4d4d;
    color: #fff;
    transform: rotate(90deg) scale(1.1);
    border-color: #ff4d4d;
}

.empty-wishlist-state {
    padding: 80px 20px;
}

.animate-float {
    animation: floatWish 3s ease-in-out infinite;
}

@keyframes floatWish {
    0% {
        transform: translateY(0px);
    }

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

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

/* Adjust product card within wishlist to accommodate the remove button if needed */
.wishlist-item-card .toy-product-card {
    padding-top: 20px;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .wishlist-header-area {
        text-align: center;
        padding: 30px 0;
    }

    .wishlist-header-area h1 {
        font-size: 24px !important;
    }
}

/* =============================================
   14. SEARCH SUGGESTIONS DROPDOWN STYLING
   ============================================= */
.suggestion-item:hover {
    background: #F8FBFF !important;
}

.suggestion-item:hover .arrow-icon {
    color: #0D8BFF !important;
    transform: translateX(3px);
}

.suggestion-item:hover div div:first-child {
    color: #0D8BFF !important;
}

/* =============================================
   15. USER DASHBOARD & PROFILE STYLING
   ============================================= */
.nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 25px;
    color: #555;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
    border-left: 3px solid transparent;
}

.nav-item i {
    width: 20px;
    font-size: 16px;
}

.nav-item:hover {
    background: #f9fafb;
    color: var(--theme-color);
}

.nav-item.active {
    background: rgba(0, 139, 163, 0.05);
    color: var(--theme-color);
    border-left-color: var(--theme-color);
    font-weight: 600;
}

.content-card {
    background: #fff;
    border-radius: 15px;
    border: 1px solid #eee;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.card-header-milan {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f5f5f5;
}

.icon-wrap {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(0, 139, 163, 0.08);
    color: var(--theme-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.milan-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 8px;
    display: block;
    letter-spacing: 0.5px;
}

.milan-input {
    border: 1.5px solid #eee !important;
    border-radius: 10px !important;
    padding: 12px 15px !important;
    font-size: 14px !important;
    background: #fafafa !important;
    transition: all 0.2s !important;
}

.milan-input:focus {
    border-color: var(--theme-color) !important;
    background: #fff !important;
    box-shadow: 0 0 0 4px rgba(0, 139, 163, 0.05) !important;
}

/* Order tracking step and details */
.dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 0 0 1px #eee;
    position: relative;
    z-index: 2;
}

.tracking-step.active span {
    color: var(--theme-color);
}

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

.btn-download-invoice {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: rgba(0, 139, 163, 0.05);
    color: var(--theme-color);
    text-decoration: none !important;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s;
    border: 1px solid rgba(0, 139, 163, 0.1);
}

.btn-download-invoice:hover {
    background: var(--theme-color);
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 139, 163, 0.2);
}

/* My Orders View classes */
.profile-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    color: #636e72;
    text-decoration: none !important;
    font-size: 15px;
    font-weight: 500;
    border-radius: 15px;
    margin-bottom: 5px;
    transition: all 0.2s;
}

.profile-nav-link i {
    font-size: 18px;
    width: 22px;
}

.profile-nav-link:hover {
    background: rgba(0, 139, 163, 0.05);
    color: var(--theme-color);
}

.profile-nav-link.active {
    background: var(--theme-color);
    color: #fff;
    box-shadow: 0 8px 20px rgba(0, 139, 163, 0.2);
}

.custom-orders-table {
    border-collapse: separate;
    border-spacing: 0 15px;
}

.custom-orders-table thead th {
    border: none;
    padding: 0 20px 10px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #94a3b8;
    font-weight: 700;
}

.order-row {
    background: #fff;
    border-radius: 20px;
    transition: all 0.3s;
}

.order-row td {
    border: 1px solid #f1f5f9;
    border-width: 1px 0;
    padding: 20px;
}

.order-row td:first-child {
    border-left: 1px solid #f1f5f9;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

.order-row td:last-child {
    border-right: 1px solid #f1f5f9;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

.order-row:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}

.status-pill {
    padding: 6px 14px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.btn-view-details {
    background: #f8fafc;
    color: #334155;
    border: none;
    border-radius: 12px;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.2s;
}

.btn-view-details:hover {
    background: var(--theme-color);
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 139, 163, 0.2);
}

/* =============================================
   16. CART PAGE STYLING
   ============================================= */
.cart-item-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05) !important;
    background: #fff !important;
}

.qty-pill button:hover {
    color: var(--theme-color) !important;
    transform: scale(1.2);
}

.btn-primary:hover {
    transform: scale(1.02);
    filter: brightness(1.1);
}

.x-small {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =============================================
   17. AUTHENTICATION PORTALS STYLING (LOGIN/REGISTER)
   ============================================= */
.custom-input {
    background: #f3f4f6 !important;
    border: none !important;
    padding: 12px 20px 12px 45px !important;
    border-radius: 12px !important;
    font-size: 14px !important;
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
}

.social-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.2s ease;
}

.social-btn:hover {
    background: var(--theme-color);
    color: #fff;
    border-color: var(--theme-color);
}

.hover-primary:hover {
    color: var(--theme-color) !important;
}

.animate-float {
    animation: floatAuth 4s ease-in-out infinite;
}

@keyframes floatAuth {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(5deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

.form-control:focus {
    border-color: var(--theme-color) !important;
    background: #fff !important;
    box-shadow: 0 0 0 4px rgba(0, 139, 163, 0.1) !important;
}

@media (max-width: 767px) {
    .welcome-panel {
        width: 100% !important;
        border-radius: 0 0 100px 100px !important;
        padding: 40px 20px !important;
        order: -1;
    }

    .auth-card-split {
        border-radius: 20px !important;
    }
}

/* =============================================
   18. ADD TO WISHLIST CARD BUTTON STYLING
   ============================================= */
.toy-wishlist-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.toy-wishlist-btn {
    width: 35px;
    height: 35px;
    border-radius: 10px;
    background: #fff !important;
    border: 1px solid #eee !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: #bbb;
    transition: all 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    padding: 0;
}

.toy-wishlist-btn:hover {
    transform: scale(1.1);
    border-color: var(--theme-color) !important;
    color: var(--theme-color);
}

.toy-wishlist-btn.active {
    background: #fff !important;
    color: #ff4757;
    border-color: #ffe0e3 !important;
}

.toy-wishlist-btn i {
    font-size: 16px !important;
}

/* =============================================
   19. PRODUCT VARIANTS SELECTOR STYLING
   ============================================= */
.toy-variant-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border: 2px solid #eee;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
    min-width: 80px;
    text-align: center;
}

.variant-img-wrap {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    overflow: hidden;
    background: #f8f8f8;
}

.variant-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.variant-no-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 20px;
}

.variant-name {
    font-weight: 700;
    font-size: 11px;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.toy-variant-input:checked+.toy-variant-label {
    border-color: var(--theme-color);
    background: rgba(255, 107, 107, 0.05);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.1);
}

.toy-variant-input:checked+.toy-variant-label .variant-name {
    color: var(--theme-color);
}

/* =============================================
   20. GUEST LAYOUT & FALLBACK ADD TO CART STYLING
   ============================================= */
.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;
    gap: 8px !important;
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.2) !important;
    cursor: pointer !important;
    text-decoration: none !important;
}

/* =============================================
   21. MOBILE BOTTOM NAVIGATION STYLING
   ============================================= */
.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: center;
    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 .mobile-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;
    background: transparent !important;
    border-left: none !important;
    border-right: none !important;
}

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

.mobile-bottom-nav .mobile-nav-item.active {
    color: var(--theme-color) !important;
    background: transparent !important;
    border: none !important;
}

.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));
    left: 50%;
    transform: translateX(-50%);
    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: translate(-50%, -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);
    }

    .th-header .header-button .cart-badge {
        display: none !important;
    }

    .sticky-wrapper.sticky {
        position: relative !important;
        box-shadow: none !important;
        animation: none !important;
    }

    .th-header.header-layout2 .menu-area {
        padding: 10px 0 !important;
    }

    .header-logo img {
        max-height: 55px !important;
    }
}

/* =============================================
   22. FLOATING CONTACT ACTIONS (PHONE & WHATSAPP)
   ============================================= */
.floating-contact-wrap {
    position: fixed;
    bottom: 30px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 99998;
}

.floating-lang-wrap {
    position: fixed;
    bottom: 30px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 99998;
}

.lang-btn {
    width: 45px;
    height: 45px;
    background: var(--title-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-family: 'Fredoka', sans-serif;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    text-decoration: none;
    font-size: 16px;
    border: 2px solid #fff;
    transition: all 0.3s ease;
}

.lang-btn::after {
    display: none !important;
}

.lang-btn:hover {
    transform: scale(1.1);
    color: #fff;
}

.float-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    transition: all 0.3s ease;
}

.call-btn {
    background: var(--theme-color);
}

.whatsapp-btn {
    background: #25d366;
}

.float-btn:hover {
    transform: scale(1.1);
    color: #fff;
}

.btn-pulse {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: inherit;
    z-index: -1;
    animation: mp-pulse 2s infinite;
    opacity: 0.6;
}

.floating-lang-wrap .dropdown-menu {
    display: none;
    pointer-events: none;
}

.floating-lang-wrap .dropdown-menu.show {
    display: block !important;
    pointer-events: auto !important;
    position: absolute !important;
    bottom: 55px !important;
    left: 0 !important;
    right: auto !important;
    top: auto !important;
    transform: none !important;
}

@keyframes mp-pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

@media (max-width: 991px) {
    .floating-contact-wrap {
        bottom: calc(90px + env(safe-area-inset-bottom, 0px)) !important;
        right: 15px !important;
        flex-direction: row !important;
        gap: 10px !important;
        z-index: 100000 !important;
    }

    .floating-lang-wrap {
        bottom: calc(90px + env(safe-area-inset-bottom, 0px)) !important;
        left: 15px !important;
        flex-direction: row !important;
        gap: 10px !important;
        z-index: 100000 !important;
    }

    .float-btn, .lang-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    /* Mobile Sticky / Collapsible Header Styling */
    .gifty-header {
        position: relative;
        z-index: 10000;
        background: #fff;
    }

    .gifty-logo img {
        max-height: 42px !important;
    }

    .th-menu-toggle {
        width: 42px !important;
        height: 42px !important;
        font-size: 16px !important;
        border-radius: 8px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .mobile-top-bar {
        transition: all 0.3s ease;
        padding-top: 10px !important;
        padding-bottom: 10px !important;
    }

    .gifty-search-input {
        height: 42px !important;
        font-size: 12px !important;
        padding: 0 50px 0 20px !important;
    }

    .gifty-search-btn {
        width: 34px !important;
        height: 34px !important;
        top: 4px !important;
        right: 4px !important;
    }

    .mobile-sticky-header {
        background: #fff;
        width: 100%;
        transition: all 0.3s ease;
        border-bottom: 1px solid #eee;
    }

    .mobile-categories-row {
        background: #fff;
    }

    .mobile-categories-scroll {
        display: flex;
        gap: 16px;
        overflow-x: auto;
        padding: 5px 15px 5px 15px;
        scrollbar-width: none; /* Firefox */
        -webkit-overflow-scrolling: touch;
    }

    .mobile-categories-scroll::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }

    .mobile-cat-pill {
        white-space: nowrap;
        padding: 4px 0 !important;
        margin: 0 4px !important;
        background: transparent !important;
        color: #4A5568 !important;
        border: none !important;
        border-bottom: 2px solid transparent !important;
        border-radius: 0 !important;
        font-size: 11px !important;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.2s ease;
        display: inline-block;
    }

    .mobile-cat-pill.active, .mobile-cat-pill:hover {
        background: transparent !important;
        color: var(--theme-color) !important;
        border-color: var(--theme-color) !important;
    }

    /* Collapsed Header State on Scroll */
    .gifty-header.header-scrolled {
        padding-top: 88px; /* Height of the sticky portion (search row + categories row) */
    }

    .gifty-header.header-scrolled .mobile-top-bar {
        height: 0;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        overflow: hidden;
        opacity: 0;
        border: none !important;
    }

    .gifty-header.header-scrolled .mobile-sticky-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        z-index: 10000;
        animation: slideDown 0.3s ease;
    }

    @keyframes slideDown {
        from {
            transform: translateY(-50px);
        }
        to {
            transform: translateY(0);
        }
    }
}

/* =============================================
   23. CONTACT FORM & INTL-TEL-INPUT OVERRIDES
   ============================================= */
.iti {
    display: flex !important;
    gap: 10px;
}

.iti__flag-container {
    position: relative !important;
    width: auto !important;
}

.iti__selected-dial-code {
    display: none !important;
}

.iti__selected-flag {
    background: #fafafa !important;
    border: 1px solid #eee !important;
    border-radius: 10px !important;
    padding: 0 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 48px !important;
    width: 55px !important;
}

.iti--allow-dropdown input {
    padding-left: 52px !important;
}

.iti__country-list {
    z-index: 10000 !important;
    background-color: #fff !important;
    border-radius: 10px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
    border: 1px solid #eee !important;
    width: 300px !important;
}

.contact-input {
    padding-top: 12px;
    padding-right: 18px;
    padding-bottom: 12px;
    border-radius: 10px;
    border: 1px solid #eee;
    background: #fafafa;
    font-size: 14px;
    width: 100%;
}

/* =============================================
   24. ORBITAL COUNTERS & MILESTONES STYLING
   ============================================= */
.counter-section {
    background: linear-gradient(135deg, #f8fbff 0%, #edf4ff 100%);
    overflow: hidden;
    position: relative;
    padding: 100px 0;
}

.counter-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(var(--theme-color) 0.5px, transparent 0.5px);
    background-size: 30px 30px;
    opacity: 0.05;
    z-index: 0;
}

.counter-content {
    position: relative;
    z-index: 2;
}

.counter-title {
    font-family: 'Fredoka', sans-serif;
    font-weight: 800;
    font-size: 54px;
    color: var(--title-color);
    line-height: 1.1;
    margin-bottom: 25px;
}

.text-theme-underline {
    position: relative;
    display: inline-block;
    color: var(--theme-color);
}

.text-theme-underline::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 12px;
    background: var(--accent-color);
    z-index: -1;
    opacity: 0.7;
    border-radius: 10px;
}

.counter-desc {
    font-size: 17px;
    color: #64748b;
    line-height: 1.8;
    max-width: 480px;
    margin-bottom: 30px;
}

.link-btn {
    color: var(--title-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s;
}

.link-btn:hover {
    color: var(--theme-color);
    transform: translateX(5px);
}

.milestone-viz-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 550px;
    position: relative;
    z-index: 1;
}

.viz-container {
    position: relative;
    width: 450px;
    height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.rotating-aura {
    position: absolute;
    width: 380px;
    height: 380px;
    background: conic-gradient(from 0deg, transparent, var(--theme-color), transparent, var(--theme-color2), transparent);
    border-radius: 50%;
    opacity: 0.15;
    filter: blur(20px);
    animation: rotateAura 10s linear infinite;
}

@keyframes rotateAura {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.main-circle {
    width: 340px;
    height: 340px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 25px 50px rgba(0, 139, 163, 0.1);
    z-index: 3;
    animation: floatMain 6s infinite ease-in-out;
}

@keyframes floatMain {

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

    50% {
        transform: translateY(-10px) scale(1.02);
    }
}

.stat-num {
    font-family: 'Fredoka', sans-serif;
    font-weight: 800;
    font-size: 56px;
    color: var(--theme-color);
    margin-bottom: 5px;
    letter-spacing: -1px;
}

.glow-text {
    text-shadow: 0 0 20px rgba(0, 139, 163, 0.2);
}

.stat-label {
    font-weight: 700;
    color: var(--title-color);
    margin-bottom: 10px;
    font-size: 18px;
}

.stat-stars {
    font-size: 14px;
    letter-spacing: 2px;
}

.stat-orbit {
    position: absolute;
    z-index: 10;
}

.orbit-circle {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 15px;
    border: 2px solid rgba(255, 255, 255, 1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05) !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.orbit-circle:hover {
    transform: scale(1.1);
    background: #fff;
    box-shadow: 0 20px 40px rgba(0, 139, 163, 0.15) !important;
    border-color: var(--theme-color);
    z-index: 15;
}

.orbit-num {
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: var(--theme-color2);
    margin-bottom: 2px;
}

.orbit-label {
    font-size: 11px;
    font-weight: 700;
    color: #64748b;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.orbit-1 {
    top: 20px;
    right: 20px;
    animation: floatAnim1 5s infinite ease-in-out;
}

.orbit-2 {
    bottom: 20px;
    right: 20px;
    animation: floatAnim2 6s infinite ease-in-out;
}

.orbit-3 {
    bottom: 20px;
    left: 20px;
    animation: floatAnim3 4.5s infinite ease-in-out;
}

.orbit-4 {
    top: 20px;
    left: 20px;
    animation: floatAnim4 5.5s infinite ease-in-out;
}

@keyframes floatAnim1 {

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

    50% {
        transform: translate(5px, -10px);
    }
}

@keyframes floatAnim2 {

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

    50% {
        transform: translate(5px, 10px);
    }
}

@keyframes floatAnim3 {

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

    50% {
        transform: translate(-5px, 10px);
    }
}

@keyframes floatAnim4 {

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

    50% {
        transform: translate(-5px, -10px);
    }
}

@media (max-width: 991px) {
    .milestone-viz-wrap {
        height: 450px;
        margin-top: 60px;
    }

    .viz-container {
        width: 350px;
        height: 350px;
    }

    .main-circle {
        width: 280px;
        height: 280px;
    }

    .stat-num {
        font-size: 42px;
    }

    .orbit-circle {
        width: 100px;
        height: 100px;
    }

    .orbit-num {
        font-size: 20px;
    }

    .counter-title {
        font-size: 42px;
    }
}

/* =============================================
   25. BREADCRUMB INDICATORS & DECORATIVE BALLS STYLING
   ============================================= */
.toy-breadcrumb-wrapper {
    background: #f8fbff;
    padding: 40px 0;
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
    border-bottom: 1px solid #eef4ff;
}

.toy-breadcrumb-inner {
    position: relative;
    z-index: 2;
}

.toy-breadcrumb-title {
    font-family: 'Fredoka', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #1A0B5B;
    margin-bottom: 10px;
}

.breadcrumb {
    background: transparent;
    padding: 0;
}

.breadcrumb-item {
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "\f105";
    font-family: "Font Awesome 6 Pro", "Font Awesome 5 Free";
    font-weight: 900;
    color: #0D8BFF;
    font-size: 12px;
    margin-top: 2px;
}

.breadcrumb-item a {
    color: #0D8BFF;
    text-decoration: none;
    transition: all 0.3s;
}

.breadcrumb-item a:hover {
    color: #FF6B00;
}

.breadcrumb-item.active {
    color: #888;
}

.breadcrumb-decor {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    gap: 20px;
    opacity: 0.1;
}

.decor-ball {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.ball-blue {
    background: #0D8BFF;
    transform: translateY(-20px);
}

.ball-orange {
    background: #FF6B00;
    transform: translateY(20px);
}

.ball-yellow {
    background: #FFC107;
    transform: translateX(-40px);
}

@media (max-width: 768px) {
    .toy-breadcrumb-wrapper {
        padding: 30px 0;
    }

    .toy-breadcrumb-title {
        font-size: 24px;
    }

    .breadcrumb-decor {
        display: none;
    }
}

/* =============================================
   26. BRAND PREMIUM CARDS HOVER STYLING
   ============================================= */
.brand-premium-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
    border-color: var(--theme-color) !important;
}

.brand-premium-card:hover img {
    transform: scale(1.05);
}

/* =============================================
   27. BLOG INDEX GRID & ARTICLE CARDS STYLING
   ============================================= */
.rounded-20 {
    border-radius: 20px;
}

.rounded-30 {
    border-radius: 30px;
}

.transition-up {
    transition: all 0.3s ease;
}

.transition-up:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
}

.transition-scale:hover {
    transform: scale(1.1);
}

.category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.95);
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--theme-color2);
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.object-fit-cover {
    object-fit: cover;
}

/* =============================================
   28. BLOG DETAILS & SOCIAL SHARE BUTTONS STYLING
   ============================================= */
.rounded-15 {
    border-radius: 15px;
}

.blog-content p {
    margin-bottom: 1.5rem;
}

.blog-content h2,
.blog-content h3 {
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    margin: 2rem 0 1rem;
    color: var(--title-color);
}

.share-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    transition: all 0.3s;
    text-decoration: none;
}

.share-btn:hover {
    background: var(--theme-color);
    color: #fff;
    border-color: var(--theme-color);
    transform: translateY(-3px);
}

/* =============================================
   29. LIGHT PREMIUM INPUT PLACEHOLDERS
   ============================================= */
input::placeholder,
textarea::placeholder,
select::placeholder {
    color: #a0aec0 !important;
    opacity: 1 !important;
    font-weight: 300 !important;
    font-size: 14px !important;
}

::-webkit-input-placeholder {
    color: #a0aec0 !important;
    opacity: 1 !important;
    font-weight: 300 !important;
    font-size: 14px !important;
}

:-ms-input-placeholder {
    color: #a0aec0 !important;
    opacity: 1 !important;
    font-weight: 300 !important;
    font-size: 14px !important;
}

::-moz-placeholder {
    color: #a0aec0 !important;
    opacity: 1 !important;
    font-weight: 300 !important;
    font-size: 14px !important;
}

:-moz-placeholder {
    color: #a0aec0 !important;
    opacity: 1 !important;
    font-weight: 300 !important;
    font-size: 14px !important;
}

/* ==========================================================================
   Product Details Mobile & Tablet Responsiveness Fix
   ========================================================================== */
@media (max-width: 991px) {
    /* Force vertical column stacking on mobile and tablet viewports */
    .product-details .row {
        display: flex !important;
        flex-direction: column !important;
    }
    
    /* Force full-width behavior for grid columns to prevent horizontal squeeze */
    .product-details .col-12.col-lg-6 {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
        float: none !important;
    }
    
    /* Center the thumbnail gallery on mobile for a premium visual flow */
    .product-thumb-group {
        justify-content: center !important;
        margin-top: 15px !important;
        margin-bottom: 25px !important;
    }
    
    /* Space out product info below the images */
    .product-about {
        margin-top: 20px !important;
        padding-top: 0 !important;
    }
    
    /* Reset title sizing & margin to prevent overlapping */
    .product-about .product-title {
        font-size: 26px !important;
        line-height: 1.3 !important;
        margin-bottom: 12px !important;
    }
}

/* =============================================
   11. HERO COUNTDOWN TIMER STYLES
   ============================================= */
.hero-slide-item {
    position: relative !important;
}

.hero-countdown-overlay {
    position: absolute;
    top: 40px;
    right: 40px;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    padding: 16px 20px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    animation: fadeInDown 0.8s ease-out;
}

.countdown-badge {
    background: linear-gradient(135deg, var(--theme-color) 0%, #00acc1 100%);
    color: #fff;
    font-family: 'Fredoka', sans-serif;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 14px;
    border-radius: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(27, 111, 216, 0.2);
}

.countdown-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.countdown-item {
    background: #f8fafc;
    border: 2px solid rgba(27, 111, 216, 0.05);
    border-radius: 16px;
    width: 68px;
    height: 72px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.02);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.countdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--theme-color) 0%, var(--theme-color2) 100%);
    opacity: 0.8;
}

.countdown-item:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 25px rgba(27, 111, 216, 0.08);
    border-color: rgba(27, 111, 216, 0.15);
}

.countdown-number {
    font-family: 'Fredoka', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--theme-color);
    line-height: 1.1;
    display: block;
    transition: transform 0.2s ease;
}

.countdown-label {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    color: #64748b;
    letter-spacing: 0.5px;
    margin-top: 2px;
    display: block;
}

.countdown-item-separator {
    font-family: 'Fredoka', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--theme-color2);
    animation: pulse 1.5s infinite;
    align-self: center;
    line-height: 1;
    margin-top: -10px;
}

/* Micro pulse animation for separator dots */
@keyframes pulse {
    0%, 100% {
        opacity: 0.4;
        transform: scale(0.9);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

/* Mobile Responsiveness for Countdown Overlay */
@media (max-width: 767px) {
    .hero-bg-picture {
        position: relative !important;
        display: block !important;
        width: 100% !important;
        height: auto !important;
        z-index: 1 !important;
    }

    .hero-bg-img {
        position: relative !important;
        display: block !important;
        width: 100% !important;
        height: auto !important;
    }

    .hero-countdown-overlay {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        right: auto !important;
        margin: 20px auto 10px !important;
        padding: 12px 16px;
        gap: 8px;
        border-radius: 20px;
        box-shadow: 0 15px 35px rgba(27, 111, 216, 0.06) !important;
        width: calc(100% - 30px) !important;
        max-width: 340px !important;
        background: #ffffff !important;
        border: 2px solid rgba(27, 111, 216, 0.08) !important;
        display: flex !important;
    }

    .countdown-badge {
        font-size: 9px;
        padding: 2px 10px;
        letter-spacing: 0.5px;
    }

    .countdown-row {
        gap: 4px;
    }

    .countdown-item {
        width: 48px;
        height: 52px;
        border-radius: 10px;
        border-width: 1.5px;
    }

    .countdown-number {
        font-size: 16px;
    }

    .countdown-label {
        font-size: 8px;
        letter-spacing: 0.2px;
        margin-top: 1px;
    }

    .countdown-item-separator {
        font-size: 16px;
        margin-top: -6px;
    }
}

/* =============================================
   12. PRODUCT DETAILS IMAGE COVER FIX
   ============================================= */
.product-big-img {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff !important;
    border: 1px solid #f0f0f0;
}

.product-big-img .img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-big-img .img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    background-color: transparent !important;
}

/* =============================================
   13. PREMIUM CUSTOM PAGINATION
   ============================================= */

/* Base Styles */
.gifty-pagination-nav {
    display: flex;
    justify-content: center;
    width: 100%;
}

.gifty-pagination {
    display: inline-flex;
    align-items: center;
    user-select: none;
}

/* --- STYLE 1: Capsule Style --- */
.gifty-pagination.style-capsule {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 50px;
    padding: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    overflow: hidden;
}

.gifty-pagination.style-capsule .page-ctrl {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    color: #a0aec0;
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
}

.gifty-pagination.style-capsule .page-ctrl.prev {
    border-right: 1.5px solid #e2e8f0;
}

.gifty-pagination.style-capsule .page-ctrl.next {
    border-left: 1.5px solid #e2e8f0;
}

.gifty-pagination.style-capsule .page-ctrl:hover:not(.disabled) {
    color: var(--theme-color, #1B6FD8);
    background-color: #f7fafc;
}

.gifty-pagination.style-capsule .page-ctrl.disabled {
    color: #cbd5e0;
    cursor: not-allowed;
    background-color: #fcfdfe;
    opacity: 0.6;
}

.gifty-pagination.style-capsule .ctrl-text {
    display: none; /* Hide 'PREV'/'NEXT' text for capsule style */
}

.gifty-pagination.style-capsule .ctrl-arrow {
    display: inline-block;
    font-size: 14px;
}

.gifty-pagination.style-capsule .page-numbers {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 16px;
}

.gifty-pagination.style-capsule .page-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #4a5568;
    font-family: var(--body-font), sans-serif;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.gifty-pagination.style-capsule .page-num:hover:not(.active) {
    background-color: #f7fafc;
    color: var(--theme-color, #1B6FD8);
}

.gifty-pagination.style-capsule .page-num.active {
    background-color: var(--theme-color, #1B6FD8);
    color: #ffffff;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(27, 111, 216, 0.3);
}

.gifty-pagination.style-capsule .page-dots {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #a0aec0;
    padding: 0 4px;
    font-size: 14px;
    letter-spacing: 2px;
}

/* --- STYLE 2: Circles & Pills Style --- */
.gifty-pagination.style-circles {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    gap: 10px;
}

.gifty-pagination.style-circles .page-ctrl {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    padding: 0 20px;
    border: 1.5px solid #e2e8f0;
    border-radius: 50px;
    background-color: #ffffff;
    color: #4a5568;
    text-decoration: none;
    font-family: var(--body-font), sans-serif;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.25s ease;
    cursor: pointer;
}

.gifty-pagination.style-circles .page-ctrl:hover:not(.disabled) {
    border-color: var(--theme-color, #1B6FD8);
    color: var(--theme-color, #1B6FD8);
    background-color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.gifty-pagination.style-circles .page-ctrl.disabled {
    border-color: #edf2f7;
    color: #cbd5e0;
    background-color: #f7fafc;
    cursor: not-allowed;
    opacity: 0.6;
}

.gifty-pagination.style-circles .ctrl-arrow {
    display: none; /* Hide chevron icons for Style 2 since we use PREV/NEXT text */
}

.gifty-pagination.style-circles .ctrl-text {
    display: inline;
}

.gifty-pagination.style-circles .page-numbers {
    display: flex;
    align-items: center;
    gap: 8px;
}

.gifty-pagination.style-circles .page-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1.5px solid #e2e8f0;
    border-radius: 50%;
    background-color: #ffffff;
    color: #4a5568;
    font-family: var(--body-font), sans-serif;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.gifty-pagination.style-circles .page-num:hover:not(.active) {
    border-color: var(--theme-color, #1B6FD8);
    color: var(--theme-color, #1B6FD8);
    background-color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.gifty-pagination.style-circles .page-num.active {
    background-color: var(--theme-color, #1B6FD8);
    border-color: var(--theme-color, #1B6FD8);
    color: #ffffff;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(27, 111, 216, 0.3);
}

.gifty-pagination.style-circles .page-dots {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #a0aec0;
    padding: 0 6px;
    font-size: 14px;
    letter-spacing: 2px;
}

/* Responsive Styles */
@media (max-width: 576px) {
    /* Style 1: Capsule Mobile Adjustment */
    .gifty-pagination.style-capsule .page-numbers {
        gap: 4px;
        padding: 0 8px;
    }
    
    .gifty-pagination.style-capsule .page-num {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }
    
    .gifty-pagination.style-capsule .page-ctrl {
        width: 40px;
        height: 40px;
    }

    /* Style 2: Circles Mobile Adjustment */
    .gifty-pagination.style-circles {
        gap: 6px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .gifty-pagination.style-circles .page-numbers {
        gap: 4px;
    }
    
    .gifty-pagination.style-circles .page-num {
        width: 34px;
        height: 34px;
        font-size: 13px;
    }
    
    .gifty-pagination.style-circles .page-ctrl {
        height: 34px;
        padding: 0 12px;
        font-size: 10px;
    }
}

/* =============================================
   14. FOOTER PAYMENT BADGES (Below Social Links)
   ============================================= */
.footer-payment-accept {
    margin-top: 25px;
}

.payment-accept-label {
    color: #94a3b8;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
    font-family: var(--body-font), sans-serif;
}

.payment-accept-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.payment-badge-card {
    background: #ffffff;
    height: 32px;
    min-width: 52px;
    padding: 0 8px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    transition: all 0.25s ease;
    user-select: none;
}

.payment-badge-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.15);
}

.payment-badge-card img {
    height: 20px;
    width: auto;
    max-width: 80px;
    object-fit: contain;
    display: block;
}

/* ==========================================================================
   Level 3 Sub-Menu Navigation (Desktop & RTL support)
   ========================================================================== */
.nav-menu ul.sub-menu li {
    position: relative;
}

.nav-menu ul.sub-menu li ul.sub-menu {
    position: absolute;
    left: 100%;
    top: 0;
    margin-top: -20px;
    margin-left: 10px;
    transform: translateX(10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.nav-menu ul.sub-menu li:hover > ul.sub-menu {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
}

/* RTL Layout support */
[dir="rtl"] .nav-menu ul.sub-menu li ul.sub-menu {
    left: auto;
    right: 100%;
    margin-left: 0;
    margin-right: 10px;
    transform: translateX(-10px);
}

[dir="rtl"] .nav-menu ul.sub-menu li:hover > ul.sub-menu {
    transform: translateX(0);
}