/*!
 * ToyParadis Main Stylesheet - Playful Edition
 * A complete visual DIY e-commerce theme for WordPress
 * Designed with childlike fun and colorful aesthetics
 *
 * @package ToyParadis
 * @version 2.0.0
 */

@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&family=Nunito:wght@400;600;700;800&family=Baloo+2:wght@400;500;600;700;800&display=swap');

:root {
    --primary-blue: #0057A0;
    --primary-green: #66BC29;
    --primary-red: #D4002A;
    --primary-orange: #FF6B35;
    --primary-purple: #7B2CBF;
    --primary-pink: #FF69B4;
    --primary-yellow: #FFD23F;
    --primary-cyan: #00D4FF;
    --container-max: 100%;
    --container-padding: 15px;

    --text-dark: #2D3748;
    --text-light: #718096;
    --text-muted: #A0AEC0;
    --border-light: #E8ECF0;
    --bg-light: #F7FAFC;
    --bg-warm: #FFF9F0;
    --bg-playful: linear-gradient(135deg, #667eea 0%, #764ba2 100%);

    --white: #ffffff;
    --black: #000000;
    --gold: #FFD700;
    --gold-dark: #FFC700;

    --gradient-rainbow: linear-gradient(135deg, #ff6b6b, #feca57, #48dbfb, #ff9ff3);
    --gradient-sunset: linear-gradient(135deg, #667eea 0%, #f093fb 100%);
    --gradient-ocean: linear-gradient(135deg, #0057A0 0%, #00D4FF 100%);
    --gradient-sunshine: linear-gradient(135deg, #FFD23F 0%, #FF6B35 100%);
    --gradient-mint: linear-gradient(135deg, #66BC29 0%, #00D4FF 100%);
    --gradient-candy: linear-gradient(135deg, #ff69b4 0%, #ff9ff3 50%, #feca57 100%);

    --font-playful: 'Baloo 2', 'Fredoka One', cursive;
    --font-primary: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Fredoka One', 'Baloo 2', cursive;

    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);

    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
    --shadow-rainbow: 0 10px 40px rgba(255, 107, 107, 0.3);
    --shadow-glow: 0 0 20px rgba(255, 107, 53, 0.4);

    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --border-radius-xl: 32px;
    --border-radius-full: 9999px;
    --border-radius-blob: 60% 40% 30% 70% / 60% 30% 70% 40%;

    --container-max: 1400px;
    --container-padding: 30px;

    --z-dropdown: 100;
    --z-sticky: 200;
    --z-modal: 300;
    --z-tooltip: 400;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23f0f4f8' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body.loading {
    opacity: 0;
    visibility: hidden;
}

body.loaded {
    opacity: 1;
    visibility: visible;
    transition: opacity var(--transition-normal);
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover,
a:focus {
    color: var(--primary-orange);
}

button {
    cursor: pointer;
    font-family: inherit;
}

input,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
}

.container-fluid {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: var(--z-sticky);
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.header-main {
    padding: 12px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f7fafc 100%);
}

.header-top-bar {
    background: var(--gradient-sunshine);
    padding: 8px 0;
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    text-align: center;
}

.header-top-bar a {
    color: var(--white);
    font-weight: 700;
}

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

.header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-center {
    flex: 1;
    max-width: 550px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.site-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.site-logo img {
    height: 55px;
    width: auto;
    transition: transform var(--transition-bounce);
}

.site-logo:hover img {
    transform: scale(1.1) rotate(-5deg);
}

.menu-toggle {
    display: none;
    background: var(--gradient-sunshine);
    border: none;
    padding: 10px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
}

.hamburger {
    display: block;
    width: 24px;
    height: 3px;
    background-color: var(--white);
    position: relative;
    border-radius: 2px;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--white);
    transition: var(--transition-fast);
    border-radius: 2px;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

.search-box {
    position: relative;
}

.search-box form {
    display: flex;
    background: var(--white);
    border-radius: var(--border-radius-full);
    padding: 5px;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-light);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.search-box form:focus-within {
    border-color: var(--primary-orange);
    box-shadow: var(--shadow-lg), 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.search-box input {
    flex: 1;
    border: none;
    padding: 10px 15px;
    background: transparent;
    font-size: 14px;
    border-radius: var(--border-radius-full);
}

.search-box input:focus {
    outline: none;
}

.search-box button {
    background: var(--gradient-sunshine);
    border: none;
    padding: 10px 20px;
    border-radius: var(--border-radius-full);
    color: var(--white);
    font-weight: 700;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.search-box button:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-action {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: all var(--transition-fast);
    position: relative;
}

.header-action:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: var(--primary-orange);
}

.header-action .action-icon {
    font-size: 20px;
}

.header-action .action-text {
    font-size: 14px;
}

.cart-link .cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--gradient-sunshine);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.main-navigation {
    background: var(--white);
    border-top: 3px solid transparent;
    border-image: var(--gradient-sunshine) 1;
}

.main-navigation .container-fluid {
    max-width: var(--container-max);
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu > li > a {
    display: block;
    padding: 15px 20px;
    font-weight: 700;
    font-size: 15px;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: var(--border-radius-md);
    transition: all var(--transition-fast);
    position: relative;
}

.nav-menu > li > a::before {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 30px;
    height: 4px;
    background: var(--gradient-sunshine);
    border-radius: 2px;
    transition: transform var(--transition-fast);
}

.nav-menu > li > a:hover::before,
.nav-menu > li.current-menu-item > a::before {
    transform: translateX(-50%) scaleX(1);
}

.nav-menu > li > a:hover {
    color: var(--primary-orange);
    background: rgba(255, 107, 53, 0.05);
}

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

.site-main {
    min-height: 60vh;
}

.page-wrapper,
.front-page {
    width: 100%;
    max-width: 100%;
}

.fullwidth-page-wrapper {
    width: 100%;
    max-width: 100%;
}

.fullwidth-page-wrapper .container,
.fullwidth-page-wrapper .shop_table,
.fullwidth-page-wrapper .cart-collaterals,
.fullwidth-page-wrapper .cart-page .container,
.fullwidth-page-wrapper .cart-table-wrapper {
    max-width: 100%;
    width: 100%;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

.fullwidth-page-wrapper .cart-table {
    width: 100%;
    max-width: 100%;
}

.fullwidth-page-wrapper .cart-table th,
.fullwidth-page-wrapper .cart-table td {
    padding: 15px !important;
}

.front-page .trending-keywords,
.front-page .recommended-products,
.front-page .two-column-block,
.front-page .featured-brand {
    overflow: visible !important;
    position: relative !important;
    clip-path: none !important;
    max-height: none !important;
    height: auto !important;
}

.front-page section,
.front-page [class*="section"] {
    overflow: visible !important;
}

.hero-slider-wrapper {
    position: relative;
    overflow: visible;
    padding: 0;
    width: 100%;
}

.hero-slider-wrapper .container-fluid {
    max-width: 100%;
    padding: 0;
}

.hero-slider {
    position: relative;
    max-width: 100%;
}

.hero-slide {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    overflow: visible !important;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 100%);
}

.slide-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: relative;
    z-index: 10;
    width: 100%;
    text-align: center;
    padding: 60px 20px;
}

.slide-content-inner {
    background: rgba(255, 255, 255, 0.95);
    padding: 50px 70px;
    border-radius: var(--border-radius-xl);
    max-width: 700px;
    margin: 0 auto;
    box-shadow: var(--shadow-xl);
    backdrop-filter: blur(10px);
    transform: translateY(0);
    transition: transform var(--transition-bounce);
}

.hero-slide:hover .slide-content-inner {
    transform: translateY(-10px);
}

.slide-subtitle {
    font-family: var(--font-playful);
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-orange);
    margin: 0 0 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.slide-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 25px;
    line-height: 1.2;
    background: var(--gradient-sunshine);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.slide-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--gradient-sunshine);
    color: var(--white);
    font-family: var(--font-playful);
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border-radius: var(--border-radius-full);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-bounce);
    border: none;
}

.slide-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    color: var(--white);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-fast);
    z-index: 20;
}

.slider-arrow:hover {
    background: var(--gradient-sunshine);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: 30px;
}

.slider-next {
    right: 30px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
}

.slider-dot {
    width: 14px;
    height: 14px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-fast);
    cursor: pointer;
}

.slider-dot:hover,
.slider-dot.active {
    background: var(--gradient-sunshine);
    transform: scale(1.3);
}

.section-wrapper {
    padding: 70px 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 40px;
    text-align: center;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 5px;
    background: var(--gradient-sunshine);
    margin: 15px auto 0;
    border-radius: 3px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-light);
    text-align: center;
    margin-top: -30px;
    margin-bottom: 40px;
}

.trending-keywords {
    background: var(--bg-warm);
    border-radius: var(--border-radius-xl);
    margin: 30px;
    padding: 50px;
}

.keywords-grid {
    display: grid;
    gap: 20px;
}

.keyword-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    text-decoration: none;
    transition: all var(--transition-bounce);
    overflow: hidden;
    position: relative;
}

.keyword-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-candy);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.keyword-item:hover {
    transform: translateY(-8px) rotate(-2deg);
    box-shadow: var(--shadow-xl);
}

.keyword-item:hover::before {
    opacity: 0.1;
}

.keyword-image {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    flex-shrink: 0;
}

.keyword-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-bounce);
}

.keyword-item:hover .keyword-image img {
    transform: scale(1.2);
}

.keyword-text {
    font-family: var(--font-playful);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    position: relative;
    z-index: 1;
}

.product-card {
    background: var(--white);
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-bounce);
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-sunshine);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-normal);
}

.product-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-xl);
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-card-image {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

.product-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.product-card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gradient-sunshine);
    color: var(--white);
    font-family: var(--font-playful);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: var(--border-radius-full);
    text-transform: uppercase;
    box-shadow: var(--shadow-md);
    z-index: 5;
}

.product-card-badge.sale {
    background: var(--gradient-rainbow);
}

.product-card-actions {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(20px);
    transition: all var(--transition-fast);
    z-index: 5;
}

.product-card:hover .product-card-actions {
    opacity: 1;
    transform: translateX(0);
}

.product-card-action {
    width: 40px;
    height: 40px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: all var(--transition-fast);
    font-size: 16px;
}

.product-card-action:hover {
    background: var(--gradient-sunshine);
    color: var(--white);
    transform: scale(1.1);
}

.product-card-content {
    padding: 20px;
}

.product-card-title {
    font-family: var(--font-playful);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.product-card-title a:hover {
    color: var(--primary-orange);
}

.product-card-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
}

.product-card-stars {
    color: var(--gold);
    font-size: 14px;
}

.product-card-reviews {
    font-size: 12px;
    color: var(--text-muted);
}

.product-card-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.product-card-price .price {
    font-family: var(--font-playful);
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-red);
}

.product-card-price .price-old {
    font-size: 16px;
    color: var(--text-muted);
    text-decoration: line-through;
}

.product-card-button {
    width: 100%;
    padding: 12px 20px;
    background: var(--gradient-sunshine);
    color: var(--white);
    font-family: var(--font-playful);
    font-size: 15px;
    font-weight: 700;
    border: none;
    border-radius: var(--border-radius-lg);
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.product-card-button:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-glow);
}

.footer-main {
    background: linear-gradient(135deg, #2D3748 0%, #1A202C 100%);
    color: var(--white);
    padding: 70px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand {
    max-width: 300px;
}

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

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

.footer-logo-text {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--white);
}

.footer-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

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

.footer-social a:hover {
    background: var(--gradient-sunshine);
    transform: translateY(-5px);
}

.footer-column h4 {
    font-family: var(--font-playful);
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 25px;
    color: var(--white);
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: all var(--transition-fast);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-orange);
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-payment {
    display: flex;
    gap: 10px;
}

.footer-payment img {
    height: 30px;
    opacity: 0.7;
    transition: opacity var(--transition-fast);
}

.footer-payment img:hover {
    opacity: 1;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--font-playful);
    font-size: 15px;
    font-weight: 700;
    border: none;
    border-radius: var(--border-radius-lg);
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition-bounce);
}

.btn-primary {
    background: var(--gradient-sunshine);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    color: var(--white);
}

.btn-secondary {
    background: var(--white);
    color: var(--text-dark);
    border: 2px solid var(--border-light);
}

.btn-secondary:hover {
    border-color: var(--primary-orange);
    color: var(--primary-orange);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

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

@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .header-inner {
        flex-wrap: wrap;
    }

    .header-center {
        order: 3;
        max-width: 100%;
        width: 100%;
        margin-top: 15px;
    }

    .header-right {
        gap: 15px;
    }

    .header-action .action-text {
        display: none;
    }

    .nav-menu {
        flex-wrap: wrap;
    }

    .hero-slide {
        min-height: 400px;
    }

    .slide-content-inner {
        padding: 35px 45px;
    }

    .slide-title {
        font-size: 36px;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
    }

    .slider-prev {
        left: 15px;
    }

    .slider-next {
        right: 15px;
    }
}

@media (max-width: 768px) {
    :root {
        --container-padding: 15px;
    }

    .header-top-bar {
        font-size: 11px;
        padding: 6px 10px;
    }

    .header-main {
        padding: 10px 0;
    }

    .menu-toggle {
        display: block;
    }

    .main-navigation {
        display: none;
    }

    .menu-open .main-navigation {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: var(--shadow-lg);
        z-index: 100;
    }

    .nav-menu {
        flex-direction: column;
        padding: 15px;
    }

    .nav-menu > li {
        width: 100%;
    }

    .nav-menu > li > a {
        padding: 12px 15px;
        border-radius: var(--border-radius-md);
    }

    .hero-slide {
        min-height: 350px;
    }

    .slide-content-inner {
        padding: 25px 30px;
    }

    .slide-subtitle {
        font-size: 14px;
    }

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

    .slide-button {
        padding: 12px 30px;
        font-size: 16px;
    }

    .section-wrapper {
        padding: 50px 0;
    }

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

    .trending-keywords {
        margin: 15px;
        padding: 30px 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .header-actions {
        gap: 10px;
    }

    .header-action {
        padding: 10px;
    }

    .header-action .action-icon {
        font-size: 22px;
    }

    .cart-link .cart-count {
        width: 18px;
        height: 18px;
        font-size: 10px;
    }

    .hero-slide {
        min-height: 300px;
    }

    .slide-content {
        padding: 40px 15px;
    }

    .slide-content-inner {
        padding: 20px 25px;
    }

    .slide-title {
        font-size: 24px;
    }

    .slide-subtitle {
        font-size: 12px;
    }

    .slider-arrow {
        display: none;
    }

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

    .product-card-content {
        padding: 15px;
    }

    .product-card-title {
        font-size: 14px;
    }

    .product-card-price .price {
        font-size: 18px;
    }

    .product-card-button {
        padding: 10px 15px;
        font-size: 14px;
    }
}

@media (max-width: 375px) {
    .site-logo img {
        height: 40px;
    }

    .search-box input {
        padding: 8px 10px;
        font-size: 13px;
    }

    .search-box button {
        padding: 8px 15px;
    }

    .slide-content-inner {
        padding: 15px 20px;
    }

    .slide-title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .slide-button {
        padding: 10px 25px;
        font-size: 14px;
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes wiggle {
    0%, 100% { transform: rotate(-3deg); }
    50% { transform: rotate(3deg); }
}

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

.animate-bounce {
    animation: bounce 2s ease-in-out infinite;
}

.animate-spin {
    animation: spin 10s linear infinite;
}

.animate-wiggle {
    animation: wiggle 1s ease-in-out infinite;
}

.fullwidth-page-wrapper,
.fullwidth-page-wrapper * {
    max-width: 100% !important;
    width: 100% !important;
    position: relative !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
}

.fullwidth-page-wrapper .container,
.fullwidth-page-wrapper .shop_table,
.fullwidth-page-wrapper .cart-collaterals,
.fullwidth-page-wrapper .cart-page .container,
.fullwidth-page-wrapper .cart-table-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: var(--container-padding) !important;
    padding-right: var(--container-padding) !important;
}

.fullwidth-page-wrapper .cart-table {
    width: 100% !important;
    max-width: 100% !important;
}

.fullwidth-page-wrapper .cart-table th,
.fullwidth-page-wrapper .cart-table td {
    padding: 15px !important;
}
