/*
Theme Name: Creative Uscoloring
Author: Creative Uscoloring
Author URI: https://creative.uscoloring.com
Description: A clean, modern coloring theme for Creative Uscoloring
Version: 3.3
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/

/* TeddyColors Color Palette */

:root {
    /* Core palette remapped to new theme colors */
    --teddy-brown: #3c4a3e;           /* Base text / brand dark */
    --teddy-light-brown: #9fafa1;     /* Neutral surfaces / borders */
    --teddy-pink: #8eeb9f;            /* Accent highlight */
    --teddy-green: #8eeb9f;           /* Accent alt */
    --teddy-blue: #0097d0;            /* Primary */
    --teddy-cream: #f8fbf9;           /* Light background for readability */
    --teddy-text: #3c4a3e;            /* Body text */
    --teddy-hover: #00cdff;           /* Hover / active accent */
    --teddy-shadow: rgba(60, 74, 62, 0.2);
    /* Layout/CTA tokens */
    --teddy-primary: #0097d0;         /* Primary CTA */
    --teddy-secondary: #00cdff;       /* Primary hover / secondary CTA */
    --teddy-accent: #8eeb9f;          /* Secondary accent */
    --teddy-button-hover: #00cdff;    /* Button hover */
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Comic Neue', 'Fredoka One', 'Nunito', sans-serif !important;
    background: linear-gradient(135deg, var(--teddy-cream) 0%, #FFF5EE 100%) !important;
    color: var(--teddy-text) !important;
    min-height: 100vh;
}

.navbar-brand,
h1,
h2,
h3 {
    font-weight: 700;
    font-family: 'Fredoka One', 'Comic Neue', sans-serif;
    color: var(--teddy-brown);
    text-shadow: 2px 2px 4px var(--teddy-shadow);
}
h2{
  font-size:1.2rem !important;
}

/* Header styling with teddy theme */

.head-box {
    background: linear-gradient(135deg, var(--teddy-light-brown) 0%, var(--teddy-cream) 100%) !important;
    border-bottom: 3px solid var(--teddy-brown);
    box-shadow: 0 4px 12px var(--teddy-shadow);
}

h2.center-line {
    position: relative;
    font-size: 32px;
    font-weight: 700;
    color: var(--teddy-brown);
    font-family: 'Fredoka One', sans-serif;
    text-align: center;
    margin: 40px 0;
    text-shadow: 2px 2px 4px var(--teddy-shadow);
}

h2.center-line::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--teddy-pink), var(--teddy-blue), var(--teddy-green), transparent);
    z-index: 1;
    border-radius: 2px;
}

h2.center-line span {
    background: var(--teddy-cream);
    padding: 0 20px;
    position: relative;
    z-index: 2;
    border-radius: 15px;
    border: 2px solid var(--teddy-brown);
}

.sidebar {
    position: fixed;
    top: 0;
    right: -320px;
    /* hidden by default */
    width: 320px;
    height: 100%;
    background: linear-gradient(180deg, var(--teddy-cream) 0%, var(--teddy-light-brown) 100%);
    box-shadow: -4px 0 20px var(--teddy-shadow);
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 1.5rem;
    z-index: 1050;
    overflow-y: auto;
    border-left: 4px solid var(--teddy-brown);
}

.sidebar.open {
    right: 0;
}

.sidebar .nav-link {
    color: var(--teddy-text) !important;
    font-weight: 600;
    padding: 12px 16px;
    border-radius: 12px;
    margin: 4px 0;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.sidebar .nav-link:hover {
    background: var(--teddy-pink);
    border-color: var(--teddy-brown);
    transform: translateX(-5px);
}

.search-center {
    z-index: 1030;
}

.navbar-toggler {
    z-index: 1031;
    /* make sure toggle is above */
}

.navbar-nav .dropdown-toggle::after {
    border: none !important;
}

.alignleft {
    float: left;
    margin: 10px;
}

.navbar-nav .nav-link,
.navbar-nav .dropdown-toggle {
    position: relative;
}

.navbar-nav .nav-link,
.navbar-nav .dropdown-toggle {
    color: var(--teddy-text) !important;
    font-weight: 600;
    border-radius: 20px;
    padding: 8px 16px !important;
    margin: 0 4px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link::after,
.navbar-nav .dropdown-toggle::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--teddy-pink), var(--teddy-blue));
    transition: width 0.3s ease, left 0.3s ease;
    border-radius: 2px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .dropdown-toggle:hover {
    background: var(--teddy-pink);
    color: var(--teddy-text) !important;
    transform: translateY(-2px);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .dropdown-toggle:hover::after {
    width: 100%;
    left: 0;
}

.rank-math-breadcrumb p {
    margin: 0;
}

.rank-math-breadcrumb p>a {
    color: var(--teddy-brown);
    font-weight: 600;
}

.btn-primary {
    background: linear-gradient(135deg, var(--teddy-brown) 0%, var(--teddy-hover) 100%) !important;
    border: 2px solid var(--teddy-brown) !important;
    color: white !important;
    font-weight: 700;
    border-radius: 25px;
    padding: 10px 20px;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0 4px 8px var(--teddy-shadow);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--teddy-hover) 0%, var(--teddy-brown) 100%) !important;
    border-color: var(--teddy-hover) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px var(--teddy-shadow);
}

.btn-light {
    background: var(--teddy-cream) !important;
    border: 2px solid var(--teddy-brown) !important;
    color: var(--teddy-text) !important;
    font-weight: 600;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.btn-light:hover {
    background: var(--teddy-pink) !important;
    transform: translateY(-1px);
}

@media (max-width:769px) {
    .alignleft {
        float: unset;
        display: flex;
        margin: auto;
    }
}

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

.aligncenter {
    margin: auto;
}

.aligncenter,
.alignnone {
    display: grid;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    max-width: var(--max-width);
    margin: auto;
    padding: 20px;
}

.posts-grid .card {
    background: var(--teddy-cream);
    border: 3px solid var(--teddy-brown);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 16px var(--teddy-shadow);
}

.posts-grid .card:hover {
    transform: translateY(-8px) rotate(1deg);
    box-shadow: 0 12px 24px var(--teddy-shadow);
    border-color: var(--teddy-pink);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
    max-width: var(--max-width);
    margin: auto;
    padding: 20px;
}

.gallery-grid .card {
    background: var(--teddy-cream);
    border: 3px solid var(--teddy-brown);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 6px 12px var(--teddy-shadow);
}

.gallery-grid .card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px var(--teddy-shadow);
}

.position-md-absolute {
    position: static;
}

.translate-md-middle {
    transform: unset;
}

@media (min-width: 768px) {
    .position-md-absolute {
        position: absolute !important;
        transform: translate(-50%, 0%);
    }
    .translate-md-middle {
        transform: translate(-50%, -50%) !important;
    }
}

.social-icons a {
    text-decoration: none;
}

.social-icons a[aria-label="facebook"] i {
    color: #1877F2;
}

.social-icons a[aria-label="pinterest"] i {
    color: #E60023;
}

.social-icons a[aria-label="youtube"] i {
    color: #FF0000;
}

.social-icons a[aria-label="instagram"] i {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.social-icons a[aria-label="deviantArt"] i {
    color: #05CC47;
}

.social-icons a[aria-label="tiktok"] i {
    color: #000000;
}

.social-icons a:hover i {
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.social-icons {
    text-align: center;
}

.social-icons a {
    margin: 10px;
    transition: all 0.3s ease;
}

.social-icons i {
    font-size: 2rem;
}

.toggle-icon {
    transition: transform .3s ease;
}

button.collapsed .toggle-icon {
    transform: rotate(-90deg);
}

.collapsed-content {
    max-height: 70px;
    overflow: hidden;
    position: relative;
}

.collapsed-content::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(rgba(255, 255, 255, 0), white);
}

.read-more-btn .arrow-icon {
    display: inline-block;
    margin-left: 0.3em;
    transition: transform 0.3s ease;
    transform: rotate(0deg);
}

.read-more-btn.expanded .arrow-icon {
    transform: rotate(180deg);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1rem;
    max-width: var(--max-width);
    margin: auto;
    padding: 20px;
}

.categories-grid .category-item {
    background: linear-gradient(135deg, var(--teddy-pink) 0%, var(--teddy-blue) 100%);
    border: 3px solid var(--teddy-brown);
    border-radius: 20px;
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 6px 12px var(--teddy-shadow);
}

.categories-grid .category-item:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 20px var(--teddy-shadow);
    background: linear-gradient(135deg, var(--teddy-green) 0%, var(--teddy-pink) 100%);
}


/* Scroll-to-Top button with teddy theme */

#scrollToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--teddy-brown) 0%, var(--teddy-hover) 100%);
    color: #fff;
    border: 3px solid var(--teddy-cream);
    border-radius: 50%;
    font-size: 1.5rem;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 16px var(--teddy-shadow);
    transition: all 0.3s ease;
    z-index: 1000;
}

#scrollToTop.show {
    display: flex;
    opacity: 1;
}

#scrollToTop.hide {
    opacity: 0;
}

#scrollToTop:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 12px 24px var(--teddy-shadow);
}

.chev {
    display: inline-block;
    transition: transform 200ms ease;
}

[aria-expanded="true"] .chev {
    transform: rotate(180deg);
}

@media (prefers-reduced-motion: reduce) {
    .chev {
        transition: none;
    }
}

.svg-box {
    position: relative;
    cursor: pointer;
    border-radius: 15px;
    overflow: hidden;
    border: 3px solid var(--teddy-brown);
    transition: all 0.3s ease;
    box-shadow: 0 6px 12px var(--teddy-shadow);
}

.svg-box:hover {
    transform: scale(1.02);
    border-color: var(--teddy-pink);
    box-shadow: 0 10px 20px var(--teddy-shadow);
}


/* Teddy-themed overlay */

.svg-box::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0) 0%, rgba(255, 182, 193, 0) 100%);
    transition: background 0.3s ease;
    pointer-events: none;
}

.svg-box:hover::after {
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.3) 0%, rgba(255, 182, 193, 0.3) 100%);
}


/* Teddy-themed fly button */

.svg-box .coloring-fly {
    position: absolute;
    left: 8px;
    top: 8px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teddy-brown) 0%, var(--teddy-hover) 100%);
    color: #fff;
    border: 3px solid var(--teddy-cream);
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 16px var(--teddy-shadow);
    transform: translate(-25px, -25px) scale(.5);
    opacity: 0;
    pointer-events: none;
    transition: all .4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 2;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.svg-box:hover .coloring-fly {
    transform: translate(calc(120% - 28px), calc(170% - 28px)) scale(1);
    opacity: 1;
    pointer-events: auto;
}

.svg-box .coloring-fly:hover {
    transform: translate(calc(120% - 28px), calc(170% - 28px)) scale(1.1);
    box-shadow: 0 12px 24px var(--teddy-shadow);
}


/* Form Controls with Teddy Theme */

.form-control {
    border: 2px solid var(--teddy-brown) !important;
    border-radius: 15px !important;
    background: var(--teddy-cream) !important;
    color: var(--teddy-text) !important;
    font-weight: 600;
    padding: 12px 16px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--teddy-pink) !important;
    box-shadow: 0 0 0 0.2rem rgba(255, 182, 193, 0.25) !important;
    background: white !important;
}

.form-control::placeholder {
    color: var(--teddy-hover);
    font-weight: 500;
}


/* Input Groups */

.input-group .btn {
    border-radius: 0 15px 15px 0 !important;
}

.input-group .form-control {
    border-radius: 15px 0 0 15px !important;
}


/* Cards and Content Boxes */

.card {
    border: 3px solid var(--teddy-brown) !important;
    border-radius: 20px !important;
    background: var(--teddy-cream) !important;
    box-shadow: 0 8px 16px var(--teddy-shadow) !important;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px var(--teddy-shadow) !important;
}

.card-header {
    background: linear-gradient(135deg, var(--teddy-light-brown) 0%, var(--teddy-pink) 100%) !important;
    border-bottom: 2px solid var(--teddy-brown) !important;
    color: var(--teddy-text) !important;
    font-weight: 700;
}

.card-body {
    color: var(--teddy-text) !important;
}


/* Links */

a {
    color: var(--teddy-brown) !important;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--teddy-hover) !important;
    text-shadow: 1px 1px 2px var(--teddy-shadow);
}


/* Responsive Design for Mobile */

@media (max-width: 768px) {
    .posts-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 15px;
    }
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 1rem;
        padding: 15px;
    }
    .categories-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 0.8rem;
        padding: 15px;
    }
    h2.center-line {
        font-size: 24px;
        margin: 25px 0;
    }
    .sidebar {
        width: 280px;
        right: -280px;
    }
    #scrollToTop {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 1.2rem;
    }
}


/* Animation for page load */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.posts-grid .card,
.gallery-grid .card,
.categories-grid .category-item {
    animation: fadeInUp 0.6s ease-out;
}


/* Teddy Bear themed decorative elements */

.creative-decoration::before {
    content: "🧸";
    font-size: 1.5rem;
    margin-right: 10px;
    filter: drop-shadow(2px 2px 4px var(--teddy-shadow));
}


/* Custom scrollbar */

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--teddy-cream);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--teddy-brown) 0%, var(--teddy-hover) 100%);
    border-radius: 6px;
    border: 2px solid var(--teddy-cream);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--teddy-hover) 0%, var(--teddy-brown) 100%);
}


/* ===== NEW LAYOUT STYLES ===== */


/* Hero Section */

.creative-hero-section {
    background: linear-gradient(135deg, var(--teddy-primary) 0%, var(--teddy-secondary) 100%);
    color: white;
    position: relative;
    overflow: hidden;
	padding-bottom: 100px;
}

.creative-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

.hero-title {
    font-family: 'Fredoka One', cursive;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: bounceIn 1s ease-out;
}

.hero-subtitle {
    font-family: 'Comic Neue', cursive;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-search-box {
    animation: fadeInUp 1s ease-out 0.6s both;
}
/* Teddy Intro Section */
#teddy-intro {
    position: relative;
    margin-top: -100px;
    z-index: 10;        
    margin-bottom: 20px;
}
#teddy-intro .creative-intro-row{
	background: white;
	border-radius: 20px;	
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	padding: 20px;
}
/* Trending Pages Section */
#trending-pages {
    position: relative;
    margin-top: -50px;
    padding-top: 70px;
}


.creative-search-input {
    border: 3px solid var(--teddy-accent);
    border-radius: 25px;
    padding: 15px 20px;
    font-size: 1.1rem;
    font-family: 'Comic Neue', cursive;
}

.creative-search-btn {
    border-radius: 25px;
    padding: 15px 25px;
    font-family: 'Comic Neue', cursive;
    font-weight: bold;
    background: var(--teddy-accent);
    border: none;
    transition: all 0.3s ease;
}

.creative-search-btn:hover {
    background: var(--teddy-button-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hero-image {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: fadeInRight 1s ease-out 0.9s both;
}

.creative-decorations {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.creative-star,
.creative-heart {
    position: absolute;
    font-size: 2rem;
    animation: float 3s ease-in-out infinite;
}

.creative-star-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.creative-star-2 {
    top: 20%;
    right: 15%;
    animation-delay: 1s;
}

.creative-heart-1 {
    bottom: 20%;
    left: 20%;
    animation-delay: 2s;
}

.creative-heart-2 {
    bottom: 10%;
    right: 10%;
    animation-delay: 0.5s;
}


/* Quick Stats Section */

#quick-stats {
    background: rgba(255, 255, 255, 0.9);
}

.stat-card {
    background: white;
    border-radius: 15px;
    padding: 2rem 1rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid var(--teddy-primary);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--teddy-primary);
    font-family: 'Fredoka One', cursive;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--teddy-text);
    font-family: 'Comic Neue', cursive;
    font-weight: 600;
}


/* Content Sections */

.content-section {
    position: relative;
}

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

.section-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: inline-block;
    animation: bounce 2s infinite;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    color: var(--teddy-primary);
    font-size: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.section-subtitle {
    font-family: 'Comic Neue', cursive;
    color: var(--teddy-text);
    font-size: 1.2rem;
    opacity: 0.8;
}


/* Teddy Grid */

.creative-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}


/* Teddy Cards */

.creative-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 3px solid var(--teddy-primary);
    position: relative;
}

.creative-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
	border-top-left-radius: 18px;
	border-top-right-radius: 18px;
}

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

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 182, 193, 0.9), rgba(255, 218, 185, 0.9));
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.card-actions {
    display: flex;
    gap: 1rem;
}

.action-btn {
    background: white;
    color: var(--teddy-primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    font-family: 'Comic Neue', cursive;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease;
}

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

.new-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--teddy-accent);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
    font-family: 'Comic Neue', cursive;
    animation: pulse 2s infinite;
}

.card-content {
    padding: 1.5rem;
}


.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--teddy-text);
    opacity: 0.8;
}

.card-meta span {
    font-family: 'Comic Neue', cursive;
}


/* Teddy Button */

.creative-btn {
    font-family: 'Comic Neue', cursive;
    font-weight: bold;
    border-radius: 25px;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, var(--teddy-primary), var(--teddy-secondary));
    border: none;
    color: white;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.creative-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, var(--teddy-button-hover), var(--teddy-accent));
    color: white;
}


/* About Section */

.about-content {
    padding: 2rem 0;
}

.about-features {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-family: 'Comic Neue', cursive;
    font-weight: 600;
}

.feature-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    width: 40px;
    text-align: center;
}

.about-image {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}


/* Categories Grid */

.creative-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
}

.category-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--teddy-primary);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    color: inherit;
}

.category-image-wrapper {
    position: relative;
    overflow: hidden;
}

.category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 182, 193, 0.8), rgba(255, 218, 185, 0.8));
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.category-count {
    background: white;
    color: var(--teddy-primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    font-family: 'Comic Neue', cursive;
}

.category-content {
    padding: 1.5rem;
}

.category-name {
    font-family: 'Fredoka One', cursive;
    color: var(--teddy-primary);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.category-description {
    font-family: 'Comic Neue', cursive;
    color: var(--teddy-text);
    opacity: 0.8;
    margin: 0;
}


/* FAQ Section */

.faq-wrapper {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--teddy-primary);
}


/* Animations */

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

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


/* Responsive Design */

@media (max-width: 768px) {
    .creative-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .stat-card {
        padding: 1.5rem 1rem;
    }
    .stat-number {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .creative-grid {
        grid-template-columns: 1fr;
    }

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


/* ===== CATEGORY PAGE STYLES ===== */

.creative-category-hero {
    background: linear-gradient(135deg, var(--teddy-bg-light) 0%, var(--teddy-bg-primary) 100%);
    position: relative;
    overflow: hidden;
}

.creative-category-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: float 20s infinite linear;
    pointer-events: none;
}

.creative-breadcrumbs {
    background: rgba(255, 255, 255, 0.9);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 2px solid var(--teddy-primary);
    display: inline-block;
}

.creative-breadcrumbs a {
    color: var(--teddy-primary);
    text-decoration: none;
    font-weight: 600;
}

.category-hero-title {
    font-family: 'Fredoka One', cursive;
    color: var(--teddy-primary);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.category-description {
    color: var(--teddy-text);
    background: rgba(255, 255, 255, 0.8);
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 5px solid var(--teddy-accent);
}

.category-stats {
    margin-top: 2rem;
}

.stat-badge {
    background: linear-gradient(45deg, var(--teddy-primary), var(--teddy-secondary));
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-family: 'Comic Neue', cursive;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.stat-badge:hover {
    transform: translateY(-2px);
}

.category-hero-image {
    position: relative;
    text-align: center;
}

.category-hero-image img {
    border: 5px solid white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-decorations {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-star,
.floating-heart {
    position: absolute;
    font-size: 1.5rem;
    animation: float 3s ease-in-out infinite;
}

.star-1 {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.star-2 {
    bottom: 20%;
    left: 15%;
    animation-delay: 1s;
}

.heart-1 {
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}


/* Category Filters */

.category-filters {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--teddy-primary);
}

.filter-buttons .btn {
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.btn-creative {
    background: linear-gradient(45deg, var(--teddy-primary), var(--teddy-secondary));
    border: none;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-family: 'Comic Neue', cursive;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-creative:hover,
.btn-creative.active {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    color: white;
}

.btn-creative-outline {
    background: transparent;
    border: 2px solid var(--teddy-primary);
    color: var(--teddy-primary);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-family: 'Comic Neue', cursive;
    transition: all 0.3s ease;
}

.btn-creative-outline:hover,
.btn-creative-outline.active {
    background: var(--teddy-primary);
    color: white;
    transform: translateY(-2px);
}


/* Posts Grid */

.creative-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.creative-post-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--teddy-primary);
    transition: all 0.3s ease;
    position: relative;
}

.creative-post-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.card-image-wrapper {
    position: relative;
    height: auto;
    overflow: hidden;
}

.creative-post-card:hover .card-image {
    transform: scale(1.1);
}

.placeholder-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--teddy-bg-light), var(--teddy-bg-primary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teddy-primary);
    font-size: 3rem;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 182, 193, 0.9), rgba(255, 218, 185, 0.9));
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.creative-post-card:hover .card-overlay {
    opacity: 1;
}

.overlay-actions {
    display: flex;
    gap: 1rem;
}

.action-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: white;
    color: var(--teddy-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.action-btn:hover {
    transform: scale(1.1);
    background: var(--teddy-primary);
    color: white;
}

.card-content {
    padding: 1.5rem;
}

.card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.card-title a {
    color: var(--teddy-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.card-title a:hover {
    color: var(--teddy-secondary);
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--teddy-text-light);
    font-family: 'Comic Neue', cursive;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}


/* Pagination */

.creative-pagination {
    margin-top: 3rem;
}

.creative-page-link {
    background: white;
    border: 2px solid var(--teddy-primary);
    color: var(--teddy-primary);
    padding: 0.75rem 1rem;
    margin: 0 0.25rem;
    border-radius: 10px;
    font-weight: 600;
    font-family: 'Comic Neue', cursive;
    transition: all 0.3s ease;
    text-decoration: none;
}

.creative-page-link:hover,
.page-item.active .creative-page-link {
    background: var(--teddy-primary);
    color: white;
    transform: translateY(-2px);
}


/* Empty State */

.empty-state {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--teddy-primary);
}

.empty-title {
    font-family: 'Fredoka One', cursive;
    color: var(--teddy-primary);
}

.empty-description {
    color: var(--teddy-text-light);
    font-family: 'Comic Neue', cursive;
}


/* Responsive Design for Category Page */

@media (max-width: 768px) {
    .creative-posts-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    .category-hero-title {
        font-size: 2rem;
    }
    .category-stats {
        flex-direction: column;
        align-items: flex-start;
    }
    .stat-badge {
        margin-bottom: 0.5rem;
    }
    .filter-buttons {
        justify-content: center;
    }
    .view-options {
        text-align: center !important;
        margin-top: 1rem;
    }
}

@media (max-width: 576px) {
    .creative-posts-grid {
        grid-template-columns: 1fr;
    }
    .category-hero-title {
        font-size: 1.8rem;
    }
    .overlay-actions {
        gap: 0.5rem;
    }
    .action-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}


/* ===== SIDEBAR WIDGETS STYLES ===== */

.creative-sidebar-widget {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--teddy-primary);
    position: relative;
    overflow: hidden;
}

.creative-sidebar-widget::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, var(--teddy-bg-light), var(--teddy-bg-primary));
    border-radius: 50%;
    opacity: 0.1;
    z-index: 0;
}

.widget-header {
    position: relative;
    z-index: 1;
    margin-bottom: 1.5rem;
    text-align: center;
}

.widget-title {
    font-family: 'Fredoka One', cursive;
    color: var(--teddy-primary);
    font-size: 1.3rem;
    margin-bottom: 0;
}

.widget-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.widget-title a:hover {
    color: var(--teddy-secondary);
}

.widget-content {
    position: relative;
    z-index: 1;
}

.creative-category-item {
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
    background: var(--teddy-bg-light);
    border: 2px solid transparent;
}

.creative-category-item:hover {
    transform: translateY(-3px);
    border-color: var(--teddy-primary);
}

.category-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.creative-category-item:hover .category-image {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 182, 193, 0.8), rgba(255, 218, 185, 0.8));
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.creative-category-item:hover .category-overlay {
    opacity: 1;
}

.overlay-content {
    color: white;
    text-align: center;
    font-weight: bold;
    font-family: 'Comic Neue', cursive;
}

.overlay-content i {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.category-info {
    padding: 1rem;
    text-align: center;
}

.category-name {
    font-family: 'Fredoka One', cursive;
    color: var(--teddy-primary);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.category-count {
    font-family: 'Comic Neue', cursive;
    color: var(--teddy-text-light);
    font-size: 0.9rem;
}

.widget-footer {
    position: relative;
    z-index: 1;
    padding-top: 1rem;
    border-top: 2px solid var(--teddy-bg-primary);
}


/* ===== RELATED POSTS STYLES ===== */

.creative-related-posts {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--teddy-primary);
    position: relative;
    overflow: hidden;
}

.creative-related-posts::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, var(--teddy-bg-light), var(--teddy-bg-primary));
    border-radius: 50%;
    opacity: 0.1;
    z-index: 0;
}

.creative-related-posts::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, var(--teddy-accent), var(--teddy-secondary));
    border-radius: 50%;
    opacity: 0.1;
    z-index: 0;
}

.section-header {
    position: relative;
    z-index: 1;
}

.section-subtitle {
    color: var(--teddy-text-light);
    font-family: 'Comic Neue', cursive;
    font-size: 1.1rem;
    margin-bottom: 0;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.related-post-card {
    background: var(--teddy-bg-light);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.related-post-card:hover {
    transform: translateY(-5px);
    border-color: var(--teddy-primary);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.related-post-card .card-image-wrapper {
    height: 150px;
}

.related-post-card .card-content {
    padding: 1rem;
}

.related-post-card .card-title {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.related-post-card .card-meta {
    font-size: 0.8rem;
    justify-content: center;
    gap: 1rem;
}


/* Responsive Design for Sidebar and Related Posts */

@media (max-width: 768px) {
    .related-posts-grid {
        gap: 1rem;
    }
    .creative-sidebar-widget {
        padding: 1rem;
    }
   
    .widget-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .related-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .creative-related-posts {
        padding: 1.5rem;
    }
    .section-title {
        font-size: 1.5rem;
    }
    .section-subtitle {
        font-size: 1rem;
    }
}


/* ===== FAVORITES PAGE STYLES ===== */

.creative-favorites-wrapper {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--teddy-primary);
    position: relative;
    overflow: hidden;
}

.creative-favorites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.load-more-indicator {
    text-align: center;
    padding: 2rem;
    color: var(--teddy-text-light);
}

.loading-spinner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: 'Comic Neue', cursive;
}

.loading-spinner i {
    color: var(--teddy-primary);
    font-size: 1.2rem;
}

.favorites-empty-state {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--teddy-bg-light);
    border-radius: 20px;
    border: 2px dashed var(--teddy-primary);
}

.empty-icon {
    font-size: 4rem;
    color: var(--teddy-text-light);
    margin-bottom: 1rem;
}

.favorites-empty-state h3 {
    font-family: 'Fredoka One', cursive;
    color: var(--teddy-primary);
    margin-bottom: 1rem;
}

.favorites-empty-state p {
    color: var(--teddy-text-light);
    margin-bottom: 2rem;
    font-family: 'Comic Neue', cursive;
}


/* ===== CONTACT PAGE STYLES ===== */

.creative-contact-wrapper {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--teddy-primary);
    position: relative;
    overflow: hidden;
}

.creative-contact-wrapper::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, var(--teddy-bg-light), var(--teddy-bg-primary));
    border-radius: 50%;
    opacity: 0.1;
    z-index: 0;
}

.creative-contact-form {
    position: relative;
    z-index: 1;
    margin-bottom: 3rem;
}

.contact-form {
    background: var(--teddy-bg-light);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--teddy-primary);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Fredoka One', cursive;
    color: var(--teddy-primary);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.form-label i {
    color: var(--teddy-secondary);
}

.creative-form-control {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--teddy-primary);
    border-radius: 10px;
    font-family: 'Comic Neue', cursive;
    font-size: 1rem;
    background: white;
    transition: all 0.3s ease;
}

.creative-form-control:focus {
    outline: none;
    border-color: var(--teddy-secondary);
    box-shadow: 0 0 0 3px rgba(255, 182, 193, 0.2);
    transform: translateY(-2px);
}

.creative-form-control::placeholder {
    color: var(--teddy-text-light);
    font-style: italic;
}

.form-submit {
    text-align: center;
    margin-top: 2rem;
}

.creative-btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    min-width: 200px;
}

.contact-info {
    position: relative;
    z-index: 1;
    background: var(--teddy-bg-primary);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--teddy-primary);
}

.info-item {
    text-align: center;
    padding: 1rem;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--teddy-primary), var(--teddy-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.info-item h4 {
    font-family: 'Fredoka One', cursive;
    color: var(--teddy-primary);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.info-item p {
    color: var(--teddy-text-light);
    font-family: 'Comic Neue', cursive;
    margin-bottom: 0;
}


/* Responsive Design for Special Pages */

@media (max-width: 768px) {
    .creative-favorites-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    .creative-contact-wrapper,
    .creative-favorites-wrapper {
        padding: 1.5rem;
    }
    .contact-form {
        padding: 1.5rem;
    }
    .contact-info {
        padding: 1.5rem;
    }
    .info-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    .creative-btn-large {
        min-width: 150px;
        padding: 0.8rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .creative-favorites-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .favorites-empty-state {
        padding: 3rem 1rem;
    }
    .empty-icon {
        font-size: 3rem;
    }
    .contact-form {
        padding: 1rem;
    }
    .contact-info {
        padding: 1rem;
    }
    .info-item {
        margin-bottom: 1.5rem;
    }
}