/*!
Theme Name: Carebear
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: carebear
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

Carebear is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
	 ========================================================================== */
:root {
  --primary-color: #ffb6c1;
  --primary-color-dark: #ff99a3;
  --text-color: #333;
  --card-bg: #fff;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --rainbow-1: #ff0000;
  --rainbow-2: #ff9900;
  --rainbow-3: #ffff00;
  --rainbow-4: #33cc33;
  --rainbow-5: #3399ff;
  --rainbow-6: #9933ff;
}

@keyframes rainbow-text {
  0% {
    color: var(--rainbow-1);
  }

  16.67% {
    color: var(--rainbow-2);
  }

  33.33% {
    color: var(--rainbow-3);
  }

  50% {
    color: var(--rainbow-4);
  }

  66.67% {
    color: var(--rainbow-5);
  }

  83.33% {
    color: var(--rainbow-6);
  }

  100% {
    color: var(--rainbow-1);
  }
}

@keyframes rainbow-background {
  0% {
    background: var(--rainbow-1);
  }

  16.67% {
    background: var(--rainbow-2);
  }

  33.33% {
    background: var(--rainbow-3);
  }

  50% {
    background: var(--rainbow-4);
  }

  66.67% {
    background: var(--rainbow-5);
  }

  83.33% {
    background: var(--rainbow-6);
  }

  100% {
    background: var(--rainbow-1);
  }
}

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

.music-controls {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  display: flex;
  gap: 10px;
}

.music-btn {
  background: white;
  border: 2px solid #ffb6c1;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  font-family: "Fredoka", sans-serif;
  transition: all 0.3s ease;
  animation: rainbow-text 8s linear infinite;
}

.music-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

body {
  margin: 0;
  font-family: "Fredoka", sans-serif;
  background-color: white;
  min-height: 100vh;
  max-width: 100%;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  animation: rainbow-text 8s linear infinite;
}

p,
li,
label,
span:not(.logo span) {
  /* animation: rainbow-text 8s linear infinite;
	animation-delay: 0.5s; */
  color: #333;
}

.logo span {
  color: var(--rainbow-1);
}

.nav-links a {
  animation: rainbow-text 8s linear infinite;
  animation-delay: 1s;
}

.auth-buttons {
  display: flex;
  gap: 1rem;
}

.auth-buttons .auth-link {
  text-decoration: none;
  animation: rainbow-text 8s linear infinite;
  animation-delay: 1.5s;
  background: white;
  border: 2px solid currentColor;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s;
  display: inline-block;
}

.auth-buttons .auth-link:hover {
  transform: scale(1.05);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Navbar Styles */
#cbMobileMenuContainer {
    display: none;    
}

#cbMenuToggle {
    display: block;
    position: fixed;
    top: 50px;
    right: 20px;
    z-index: 1;
    -webkit-user-select: none;
    user-select: none;
}

#cbMenuToggle a {
    text-decoration: none;
    /*transition: color 0.3s ease;*/
}

#cbMenuToggle a:hover {
    color: tomato;
}

#cbMenuToggle input {
    display: block;
    width: 40px;
    height: 32px;
    position: absolute;
    top: -7px;
    left: -5px;
    
    cursor: pointer;
    
    opacity: 0; /* hide this */
    z-index: 2; /* and place it over the hamburger */
    
    -webkit-touch-callout: none;
}

#cbMenuToggle span {
    display: block;
    width: 33px;
    height: 4px;
    margin-bottom: 5px;
    position: relative;
    
    background: #cdcdcd;
    border-radius: 3px;
    
    z-index: 1;
    
    transform-origin: 4px 0px;
    
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1),
    background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
}

#cbMenuToggle span:first-child {
    transform-origin: 0% 0%;
}

#cbMenuToggle span:nth-last-child(2) {
    transform-origin: 0% 100%;
}

#cbMenuToggle input:checked ~ span {
    opacity: 1;
    transform: rotate(45deg) translate(-2px, -1px);
    background: #232323;
}

#cbMenuToggle input:checked ~ span:nth-last-child(3) {
    opacity: 0;
    transform: rotate(0deg) scale(0.2, 0.2);
}

#cbMenuToggle input:checked ~ span:nth-last-child(2) {
    transform: rotate(-45deg) translate(0, -1px);
}

#cbMobileMenu {
  position: absolute;
  width: 100vw;
  height: 100vh;
  top: -50px;
  margin: 0;
  padding: 50px;
  padding-top: 50px;
  box-sizing: border-box;
  overflow-y: auto;
  background: #ededed;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  transform-origin: 0% 0%;
  transform: translate(15%, 0);
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
}

#cbMobileMenu li {
    padding: 10px 0;
    font-size: 22px;
}

#cbMobileMenu li label {
    cursor: pointer;
}

#cbMobileMenu ul.menu {
    list-style: none;
    margin-top: 50px;
    margin-bottom: 20px;
}

#cbMenuToggle input:checked ~ #cbMobileMenu {
    transform: translate(-80%, 0);
}

#cbMobileMenu .auth-buttons {
    display: block;    
}

#cbMobileMenu .auth-buttons .auth-link {
    display: block;
    width: 150px;
    text-align: center;
    margin-bottom: 10px;
}
/* Mobile menu end*/

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--card-bg);
  box-shadow: var(--shadow);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: white;
  box-shadow: var(--shadow);
  z-index: 1000;
}

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

.logo img {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
  max-width: 100%;
  height: auto;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary-color);
}

.auth-buttons {
  display: flex;
  gap: 1rem;
}

button {
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.signup-btn {
  background: var(--primary-color);
  color: white;
}

/* Hero Section */
.hero {
  max-width: 100%;
  height: 600px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  display: flex;
  align-items: end;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero-layout.hero {
  padding: 4rem 2rem;
  text-align: center;
  background-color: #ffb6c1;
}

.hero-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
  margin: 0 auto;
  gap: 2rem;
}

.hero-content {
  flex: 1;
  max-width: 600px;
  margin: 0 auto;
}

.hero-content p {
  animation: none;
  color: #333;
}

.hero-content a.cta-button {
  display: block;
  width: max-content;
  margin-top: 20px;
  margin-inline: auto;
}

.bear-left,
.bear-right {
  width: 300px;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s;
}

.bear-left:hover,
.bear-right:hover {
  transform: scale(1.1);
}

@media (max-width: 576px) {
  .hero-layout {
    flex-direction: column;
  }
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.cta-button {
  text-decoration: none;
  animation: rainbow-text 8s linear infinite;
  animation-delay: 1.5s;
  background: white;
  border: 2px solid currentColor;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s;
  display: inline-block;
}

.cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Collections Page */
.collections-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  padding: 1rem;
  width: 100%;
  margin: 0 auto;
  max-width: 100%;
  overflow-x: auto;
}

.collection-card {
  background: white;
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 350px;
  display: flex;
  flex-direction: column;
}

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

.collection-card.event-card {
  height: auto;
}

.collection-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.collection-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.collection-info a {
  text-decoration: none;
}

.collection-info h3 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  color: #333;
}

.collection-info p {
  color: #666;
  margin-bottom: 1rem;
}

.collection-stats {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  color: #888;
  font-size: 0.9rem;
}

/* Submit Page */
.submit-form-container {
  max-width: 800px;
  margin: 2rem auto;
  padding: 2rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

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

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: "Fredoka", sans-serif;
  font-size: 1rem;
}

.form-group textarea {
  height: 150px;
  resize: vertical;
}

/* Tips Page */
.tips-container {
  /* max-width: 1200px; */
  margin: 2rem auto;
  padding: 0 2rem;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.tip-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.tip-card h3 {
  color: #333;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.tip-card p {
  color: #666;
  line-height: 1.6;
}

.tip-card ul {
  list-style-type: none;
  padding: 0;
  margin: 1rem 0;
}

.tip-card li {
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.tip-card li::before {
  content: "•";
  color: #ffb6c1;
  font-size: 1.5rem;
  position: absolute;
  left: 0;
  top: -0.2rem;
}

.tip-icon {
  width: 60px;
  height: 60px;
  background: #ffb6c1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.tip-icon img {
  width: 35px;
  height: 35px;
}

/* Community Page */
.community-container {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 2rem;
}

.community-intro {
  text-align: center;
  color: #666;
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.community-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.community-card a {
  text-decoration: none;
}

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

.community-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

.community-card h3 {
  color: #333;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.community-card p {
  color: #666;
  margin-bottom: 1rem;
}

.community-card ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.community-card li {
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
  color: #666;
}

.community-card li::before {
  content: "•";
  color: #ffb6c1;
  font-size: 1.5rem;
  position: absolute;
  left: 0;
  top: -0.2rem;
}

/* Auth Pages Styles */
.auth-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: calc(100vh - 80px);
  padding: 20px;
  background-color: #fff;
  position: relative;
  overflow: hidden;
}

.video-container {
  width: 25%;
  height: 100vh;
  position: fixed;
  top: 0;
  overflow: hidden;
}

.video-container.left {
  left: 0;
}

.video-container.right {
  right: 0;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.auth-card {
  background: var(--card-bg);
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  box-shadow: var(--shadow);
  width: 100%;
  max-width: 500px;
}

.auth-card h1 {
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 1rem;
}

.auth-intro {
  text-align: center;
  color: var(--text-color);
  margin-bottom: 2rem;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.auth-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.auth-form label {
  color: var(--text-color);
  font-weight: 500;
}

.auth-form input[type="text"],
.auth-form input[type="email"],
.auth-form input[type="password"] {
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s;
}

input[type="submit"] {
  cursor: pointer;
}

.auth-form input:focus {
  border-color: var(--primary-color);
  outline: none;
}

.remember-me,
.terms {
  flex-direction: row !important;
  align-items: center;
  justify-content: space-between;
}

.remember-me label,
.terms label {
  margin-left: 0.5rem;
}

.forgot-password {
  color: var(--primary-color);
  text-decoration: none;
}

.auth-submit-btn {
  background: white;
  animation: rainbow-text 8s linear infinite;
  padding: 1rem;
  border: 2px solid currentColor;
  border-radius: 8px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s;
}

.auth-submit-btn:hover {
  background: var(--primary-color-dark);
}

.auth-redirect {
  text-align: center;
  margin-top: 1rem;
}

.auth-redirect a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
}

.auth-redirect a:hover {
  text-decoration: underline;
}

/* Common Page Styles */
main {
  padding-top: 80px;
  /* Account for fixed navbar */
  min-height: calc(100vh - 200px);
  /* Account for footer */
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
  .collections-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 992px) {
    #cbMobileMenuContainer {
        display: block;
    }
    .navbar > .menu-menu-1-container {
        display: none;
    }
    .navbar > .auth-buttons {
        display: none;    
    }
    .collections-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .tips-grid,
    .community-grid {
        grid-template-columns: 1fr;
    }
    
    .community-container {
        padding: 0 1rem;
    }
    
    .community-card {
        padding: 1.5rem;
    }
}

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

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

  .form-group.full-width {
    grid-column: span 1;
  }

  .community-intro {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }

  .community-icon {
    font-size: 2rem;
  }

  .community-card h3 {
    font-size: 1.2rem;
  }
}

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

  .community-card {
    padding: 1.25rem;
  }

  .community-icon {
    font-size: 1.75rem;
  }
}

/* Form Styles */
.submit-section {
  padding: 4rem 2rem;
  background: var(--card-bg);
  border-radius: 20px;
  margin: 2rem;
  box-shadow: var(--shadow);
}

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

label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

input {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
}

.submit-btn,
.update-btn {
  background: var(--primary-color);
  color: white;
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
}

/* Tips Section */
.tips-section {
  padding: 2rem 2rem 3rem;
}

/* .tips-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
} */

/* Footer */
footer {
  background: var(--text-color);
  color: white;
  padding: 4rem 2rem 2rem;
}

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

.footer-section h3 {
  margin-bottom: 1rem;
}

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

.footer-section a {
  color: white;
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
}

.footer-section p {
  color: white;
  display: block;
  margin-bottom: 0.5rem;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .collection-grid,
  .tips-grid {
    grid-template-columns: 1fr;
  }
}

main {
  overflow-x: auto;
  padding: 0 1rem;
}

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

.collection-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 0.5rem;
}

.collection-info h3 {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.collection-info p {
  font-size: 0.8rem;
  margin-bottom: 0.3rem;
}

.collection-info {
  padding: 1rem 0;
}

.collection-stats {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
  color: #666;
  font-size: 0.8rem;
}

.filter-section {
  padding: 2rem;
  background: #5ddfdf70;
  margin-bottom: 2rem;
  border-radius: 15px;
  width: 25%;
  height: max-content;
}
.mobile-filter-sec {
    display: none;   
}

.collection-listing-sec .filter-section {
  padding: 2rem 1rem;
}
.filter-buttons label {
  display: flex;
  align-items: center;
  column-gap: 5px;
  margin-bottom: 5px;
}

.filter-buttons label input {
  width: 15px;
  height: 15px;
}

.filter-btn {
  padding: 0.5rem 1.5rem;
  border: none;
  background: white;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: #00cdcd;
  color: white;
}

.page-title {
  text-align: center;
  margin: 2rem 0;
  /* opacity: 0; */
  transform: translateY(-30px);
}

.collections {
  margin: 2rem 1rem;
}

.collections .collections-grid {
  padding: 1rem;
}

.collections h2 {
  margin-bottom: 2rem;
  margin-left: 2rem;
  margin-top: 2rem;
}
.cb-social-container h2 {
  margin-block: 2rem;
}

.hero.collection-hero {
  height: 250px;
  align-items: end;
}

.hero.page-hero {
  height: 250px;
  align-items: start;
}

.collection-listing--inner {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.collection-listing-sec .collections-grid {
  width: 75%;
}

.collection-listing-sec .collections-grid {
  grid-template-columns: repeat(4, 1fr);
}

.filter-section fieldset {
  border: none;
  margin-block-start: 10px;
}

.filter-section.mobile-filter-sec fieldset {
    display: inline-block;
    margin-right: 20px;
}

.filter-section fieldset legend {
  font-weight: 600;
  margin-bottom: 5px;
  color: #333;
}

.filter-section form > button {
  margin-top: 30px;
  background: #5ddfdf;
  font-size: 16px;
  transition: 0.2s ease-in-out;
  padding: 1rem 2rem;
}

.collection-listing-sec .filter-section form > button {
  font-size: 14px;
}

.filter-section form > button:hover {
  background: grey;
  color: white;
}

.mobile-filter-sec .sortorderby-sec {
    display: flex;
    column-gap: 20px;
}

.sbmt-ur-coll-sec {
  padding-top: 150px;
}

.community-container h1 {
  text-align: center;
}

.form-group.terms input {
  width: 50px;
}

.login-error,
.register-errors p {
  color: #ff0000 !important;
  margin-bottom: 40px;
  background: #e8e8e8;
  padding: 10px;
  border-radius: 6px;
}

.register-success {
  color: #33cc33 !important;
}

.lgn-pge-sec {
  padding-top: 150px;
  padding-bottom: 50px;
}

.custom-login-form,
.custom-register-form {
  width: 70%;
  margin-inline: auto;
}

.form-group [type="checkbox"] {
  width: 20px;
}

.custom-register-form h2 {
  margin-bottom: 30px;
}

/* form checkbox toggle */

.form-grid .check-box {
  transform: scale(2);
}

.form-grid input[type="checkbox"] {
  position: relative;
  appearance: none;
  width: 50px;
  height: 25px;
  background: #ccc;
  border-radius: 50px;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: 0.4s;
}

.form-grid input[type="checkbox"] {
  animation: rainbow-background 8s linear infinite;
  animation-delay: 0.5s;
}

.form-grid input[type="checkbox"]::after {
  position: absolute;
  content: "";
  width: 25px;
  height: 25px;
  top: 0;
  left: 0;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  transform: scale(1.1);
  transition: 0.4s;
}

.form-grid input:checked[type="checkbox"]::after {
  left: 50%;
}

/* form check toggle end */
.form-group-checkbox {
  width: 20%;
}

.form-group-checkbox-container {
  display: flex;
}

.form-group.no-margin {
  margin-bottom: 0px;
}

.form-group label[for="variantcondition"] {
  display: flex;
  align-items: center;
  column-gap: 10px;
}

.variant-field-sec {
  display: flex;
  align-items: end;
  column-gap: 10px;
  height: 100%;
}

.d-none {
  display: none !important;
}

.dashboard-container {
  width: 90%;
  margin-inline: auto;
}

.carebear-listing-table .icon-btn {
  padding: 10px;
}

/* Dashboard Pages */
.dashboard-sidebar-container {
  display: flex;
  width: 100%;
}

.dashboard-sidebar-container .sidebar {
  width: 20%;
  background-color: #5ddfdf70;
  height: 100vh;
  border-radius: 15px;
  padding-block: 2rem;
}

.dashboard-sidebar-container .carebear-main-content {
  width: 80%;
  max-width: 80%;
}

.dashboard-sidebar-container .sidebar h2 {
  margin-bottom: 20px;
  /* color: #880e4f; */
  padding-inline: 20px;
}

.dashboard-sidebar-container .sidebar ul {
  list-style: none;
}

.dashboard-sidebar-container .sidebar ul li {
  padding: 12px 20px;
  transition: 0.2s ease-in-out;
}

.dashboard-sidebar-container .sidebar ul li:hover,
.dashboard-sidebar-container .sidebar ul li.active {
  background: #5ddfdf;
}

.dashboard-sidebar-container .sidebar ul li a {
  text-decoration: none;
  font-size: 18px;
  transition: 0.2s ease-in-out;
}

/* Dropdown Styles */
.db-action-section {
  display: flex;
  justify-content: end;
  flex-wrap: wrap;
  width: 100%;
}

.db-action-section .dropdown-container {
  position: relative;
  display: inline-block;
  margin: 0px;
}

.db-action-section .dropdown-button {
  padding: 12px 20px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s;
}

.db-action-section .dropdown-content {
  position: absolute;
  background-color: white;
  min-width: 180px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  z-index: 1;
  margin-top: 5px;
  overflow: hidden;
  right: 0;
}

.db-action-section .dropdown-content.hidden {
  display: none;
}

.db-action-section .dropdown-content a {
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  transition: background-color 0.3s;
}

.db-action-section .dropdown-content a:hover {
  background-color: #5ddfdf;
}

.carebear-listing-table {
  margin-top: 20px;
  width: 100%;
}

.carebear-listing-table th,
.carebear-listing-table td {
  text-align: center;
  border: none;
  padding: 5px;
}

.carebear-listing-table thead tr,
.carebear-listing-table tr:nth-child(even) {
  background-color: #eee;
}

.carebear-listing-table.brag-post-sub-table td {
  text-align: left;
}

/* Modal Styles */
#editModal.modal,
#csvModal.modal,
#bearDetailsModal.modal,
.cb-gl-modal.modal,
#bulkEditModal.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

#editModal.modal.hidden,
#csvModal.modal.hidden,
.cb-gl-modal.modal.hidden,
#bearDetailsModal.modal.hidden,
#bulkEditModal.modal.hidden {
  display: none;
}

#editModal .modal-content,
#csvModal .modal-content,
#bearDetailsModal .modal-content,
.cb-gl-modal .modal-content,
#bulkEditModal .modal-content {
  background: white;
  padding: 30px;
  border-radius: 12px;
  width: 50%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  position: relative;
}
#bulkEditModal .modal-content {
  width: 95%;
  max-height: 95vh;
  height: 100%;
}

#editModal .modal-content h2,
#csvModal .modal-content h2,
.cb-gl-modal .modal-content h2,
#bulkEditModal .modal-content h2 {
  margin-bottom: 10px;
  color: #6a1b9a;
}

#editModal .modal-content input[type="text"],
#csvModal .modal-content input[type="text"] {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

#editModal .modal-buttons,
#csvModal .modal-buttons {
  text-align: right;
  margin-top: 20px;
}

#editModal .modal-buttons button,
#csvModal .modal-buttons button {
  padding: 8px 16px;
  border: none;
  border-radius: 8px;
  margin-left: 8px;
  font-weight: bold;
  cursor: pointer;
}

#editModal .modal-buttons button:first-child,
#csvModal .modal-buttons button:first-child {
  background: #eee;
}

#editModal .modal-buttons button:last-child,
#csvModal .modal-buttons button:last-child {
  background: #6200ea;
  color: white;
}

#editModal .close-btn,
#csvModal .close-btn,
#bearDetailsModal .close-btn,
.cb-gl-modal .close-btn,
#bulkEditModal .close-btn {
  position: absolute;
  top: 12px;
  right: 20px;
  font-size: 32px;
  cursor: pointer;
  color: #999;
}
.cb-gl-modal .close-btn {
  font-size: 32px;
}
#editModal input[type="submit"],
#csvModal input[type="submit"],
#bulkEditModal input[type="submit"] {
  cursor: pointer;
}

/* single carebear styles */

.sngle-crebear-sec .details-group .sngle-desc-btn-grps {
  background: #5ddfdf70;
  padding: 50px 20px;
  border-radius: 20px;
  max-width: 60%;
  margin-left: auto;
}

.sngle-crebear-sec .details-group:last-child .sngle-desc-btn-grps button {
  width: 100%;
  margin-bottom: 20px;
  padding: 13px 20px;
  font-size: 16px;
  background-color: #5ddfdf;
  transition: 0.2s ease-in-out;
  position: relative;
}

.sngle-crebear-sec .details-group:last-child .sngle-desc-btn-grps button i {
    margin-right: 5px;    
}

.sngle-crebear-sec
  .details-group:last-child
  .sngle-desc-btn-grps
  .btn-primary:hover {
  background: grey;
  color: white;
}

.sngle-crebear-sec
  .details-group:last-child
  .sngle-desc-btn-grps
  .btn-primary
  i {
  position: absolute;
  left: 10%;
  top: 15px;
}

.carebear-collections-grid {
  display: flex;
  flex-wrap: wrap;
  column-gap: 10px;
  width: 100%;
  height: max-content;
  padding-left: 20px;
}

.carebear-collections-grid .collection-card {
  width: 24%;
  margin-bottom: 20px;
}

#bbpress-forums {
  padding-top: 10px;
}

#bbpress-forums div.bbp-the-content-wrapper input[type="button"] {
  width: fit-content;
}

.sort-by-sec {
  display: flex;
  justify-content: end;
  margin-bottom: 20px;
  column-gap: 20px;
}

.sort-by-sec form {
  display: flex;
  column-gap: 20px;
}

.collection-listing-sec #sortbydropdown {
  margin-top: 20px;
}

.mobile-filter-sec #sortbydropdown {
    margin-top: 0px;   
}

.collection-listing-sec #sortbydropdown,
.collection-listing-sec #orderbydropdown {
  width: 100%;
}

#sortbydropdown,
#orderbydropdown {
  border: none;
  background-color: #5ddfdf70;
  padding-block: 10px;
  padding-inline: 10px;
  border-radius: 10px;
  font-size: 14px;
  margin-bottom: 20px;
}

#bbp-content {
  padding-top: 150px;
  padding-inline: 1rem;
}

#bbpress-forums .bbp-search-form {
  display: none;
}

#bbpress-forums .bbp-template-notice img.avatar {
  max-width: 30px !important;
  max-height: 30px !important;
  width: 30px;
  height: 30px;
}

#bbp-content .entry-title,
.bbp-forum-front .entry-title {
  text-align: center;
  margin-bottom: 20px;
}

div.bbp-breadcrumb,
div.bbp-topic-tags {
  padding-bottom: 10px;
}

#bbpress-forums div.bbp-breadcrumb p {
  font-size: 14px;
}

#bbpress-forums li {
  font-size: 16px;
}

#bbpress-forums li a {
  color: #333;
  text-decoration: none;
  transition: 0.2s ease-in-out;
}

#bbpress-forums li a:hover {
  text-decoration: underline;
}

#bbpress-forums li.bbp-header li {
  animation: rainbow-text 8s linear infinite;
}

#bbpress-forums li.bbp-header {
  padding-inline: 20px;
  padding-block: 12px;
}

#bbpress-forums li.bbp-body ul:nth-child(even) {
  background-color: #eaeaea;
}

#bbpress-forums li.bbp-body ul,
#bbpress-forums li.bbp-footer {
  padding-inline: 20px !important;
}

#bbpress-forums li.bbp-body .bbp-forum-freshness > a {
  font-size: 14px;
}

#bbpress-forums li.bbp-body > ul li .bbp-author-name {
  font-size: 14px;
}

#bbpress-forums li.bbp-body > ul {
  display: flex;
  align-items: center;
  height: 70px;
  max-height: 70px;
}

#bbpress-forums p.bbp-topic-meta img.avatar {
  max-width: 30px;
  width: 30px;
  max-height: 30px;
  height: 30px;
}

.bbp-login-form label {
  font-size: 16px;
}

.bbp-login-form .bbp-remember-me {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  column-gap: 10px;
  padding-top: 10px;
}

.bbp-login-form div input {
  margin-top: 10px !important;
}

.bbp-login-form .bbp-remember-me input {
  width: 30px;
  margin-bottom: 0px;
}

#bbpress-forums fieldset.bbp-form legend {
  font-size: 16px;
}

#bbpress-forums fieldset.bbp-form label {
  font-size: 16px;
}

#bbpress-forums fieldset.bbp-form > div p:last-of-type {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: row;
  width: max-content;
  column-gap: 10px;
  padding-top: 20px;
}

#bbpress-forums fieldset.bbp-form > div p:last-of-type input {
  width: 30px;
  margin-bottom: 0px;
}

#bbpress-forums li.bbp-body > .bbp-reply-header {
  padding-inline: 20px;
}

#bbpress-forums .forums.bbp-replies .bbp-reply-author,
#bbpress-forums .forums.bbp-replies .bbp-reply-content {
  animation: rainbow-text 8s linear infinite;
}

#bbp_topic_tags {
  margin-top: 10px !important;
}

#bbp_reply_submit {
  background: #5ddfdf;
}

#bbp_reply_submit:hover {
  background: #5ddfdf80;
}

#bbpress-forums .bbp-breadcrumb a {
  color: #333;
}

#favorite-toggle a,
#subscription-toggle a {
  background: #5ddfdf;
  font-size: 14px;
  transition: 0.2s ease-in-out;
  padding: 10px 15px;
  border-radius: 25px;
  text-decoration: none;
  color: #fff;
}

#favorite-toggle a:hover,
#subscription-toggle a:hover {
  background: #5ddfdf80;
}

.event-calender-container .collections-grid {
  grid-template-columns: repeat(2, 1fr);
}

.event-calender-container .collections-grid .collection-card h3 {
  margin-bottom: 10px;
}

.event-calender-container .collections-grid .collection-card p {
  margin-bottom: 10px;
}

.collections-grid.dashboard-events-grid {
  grid-template-columns: repeat(3, 1fr);
}

.collections-grid.dashboard-events-grid .collection-card {
  position: relative;
}

.collections-grid.dashboard-events-grid .event-status-value {
  position: absolute;
  top: 0px;
  right: 0px;
  padding: 10px;
  background-color: #a0a0a0;
  color: white;
  border-radius: 15px;
  text-transform: capitalize;
}

.collections-grid.dashboard-events-grid .event-status-value.approved {
  background-color: #00a300;
}

.collections-grid.dashboard-events-grid .event-status-value.pending {
  background-color: #ffa500;
}

.collections-grid.dashboard-events-grid .event-status-value.rejected {
  background-color: #ff0000;
}

#carebear-popup-details {
  text-align: left;
}

#pms_new_subscription-form {
  width: 80%;
  margin-inline: auto;
}

.product-detail-section h3,
.product-detail-section h4 {
  margin-bottom: 10px;
}

.carebear-table-content-section .carebear-collections-grid .collection-card {
  position: relative;
}

.cb-btn-remove {
  background: #ff0000;
  color: white;
  padding: 5px 0px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 14px;
  width: 25px;
  height: 25px;
  position: absolute;
  top: -5px;
  right: -5px;
}

#tips .tips-grid {
  grid-template-columns: repeat(3, 1fr);
}

.cb-packaging-container label {
  font-weight: 400;
}

.cb-packaging-container input::before {
  content: "No";
  position: absolute;
  top: 3px;
  left: 60px;
}

.cb-packaging-container input:checked::before {
  content: "Yes";
}

.carebear-collections-grid .collection-card {
  height: 400px;
}

.carebear-collections-grid .collection-card button {
  margin-bottom: 5px;
}
.carebear-collections-grid .collection-card button i {
    margin-right: 5px;
}

.pms-pt-card-1,
.pms-pt-card-2,
.pms-pt-card-3 {
  padding-bottom: 20px !important;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.pms-pt-card-1 h3,
.pms-pt-card-2 h3,
.pms-pt-card-3 h3 {
  margin-top: 20px;
}
.pms-pt-card-1 .pms-pt-text-description,
.pms-pt-card-2 .pms-pt-text-description,
.pms-pt-card-3 .pms-pt-text-description {
  display: block;
  margin-top: 20px;
}
.wp-block-list.pms-pt-list {
  margin: 30px 0px 50px 15px;
}
.page-id-2823 main {
  padding-bottom: 50px;
}

.filter-section .sortby-heading {
  padding-top: 20px;
}
.cb-mt {
    margin-top: 20px;
}
.cb-mb {
  margin-bottom: 20px;
}

.carebear-table-content-section .carebear-collections-grid .collection-card {
  width: 32%;
}
.post-status_publish {
  background-color: #00a30030;
}
.post-status_pending {
  background-color: #ffa50030;
}
.post-status_trash {
  background-color: #ff000030;
}
.frm-new-finds-submission h2 {
  text-align: center;
}
.cb-gl-details {
  max-height: 100%;
}
.cb-gl-details .img-slider {
  height: 57vh;
  overflow: hidden;
}
.cb-gl-details .img-slider .slick-list {
  height: 100%;
}
.cb-gl-details .slick-track {
  display: flex;
  align-items: center;
  height: 100%;
}
.cb-gl-details .img-slider .slick-slide {
  height: 100%;
}
.cb-gl-details .img-slider .slick-slide img {
  display: block;
  max-width: 80%;
  width: auto;
  height: 100%;
  margin-inline: auto;
}
.cb-gl-modal .modal-content .cb-slick-slide-contnt {
  padding: 20px 10px 10px 10px;
}
.cb-gl-modal .modal-content .cb-slick-slide-contnt ul {
  column-count: 2;
}
.cb-gl-modal .modal-content .cb-slick-slide-contnt ul img {
    width: 200px;
    height: auto;
}
.cb-gl-details .slick-prev,
.cb-gl-details .slick-next {
  display: block !important;
  z-index: 10;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  border: none;
  padding: 1em 1.2em;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.cb-gl-details .slick-prev {
  left: 10px;
}

.cb-gl-details .slick-next {
  right: 10px;
}

.cb-social-container {
  padding: 2rem 1rem;
}
.cb-announcement-sec {
  display: flex;
  max-width: 100%;
  overflow-x: hidden;
  flex-wrap: wrap;
}
.cb-announcement-sec .collections {
  width: 58%;
}
.cb-announcement-sec .cb-social-container {
  width: 38%;
}

.cb-btn-primary {
  text-decoration: none;
  animation: rainbow-text 8s linear infinite;
  animation-delay: 0s;
  animation-delay: 1.5s;
  background: white;
  border: 2px solid currentColor;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s;
  display: inline-block;
}
.cb-btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.dashboard-sidebar-container li.cb-active {
  background: #5ddfdf;
}
.select-all-chckbx {
  width: 15px;
  height: 15px;
}
.sbmtted-lstng-tble th .dt-column-order {
  display: none;
}

.pms-subscription-plan-auto-renew label input {
  width: 20px;
}

.pms-subscription-plan label {
  font-size: 24px;
}
.pms-subscription-plan .pms-subscription-plan-description {
  font-size: 18px;
}
.pms-subscription-plan-auto-renew label {
  font-size: 18px;
  margin-bottom: 30px;
}
.page-id-1725 {
  height: 100vh;
}
#pms-retry-payment-subscription-form,
#pms_new_subscription-form,
.pms-account-subscription-details-table {
  padding: 2rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-top: 50px;
  margin-inline: auto;
}
#pms-retry-payment-subscription-form {
  width: 90%;
}
#pms-retry-payment-subscription-form input[type="submit"] {
  margin-bottom: 10px;
  max-width: 250px;
  margin-right: 30px;
}
.pms-account-subscription-details-table {
  width: 80%;
}
#pms_new_subscription-form input[type="submit"] {
  max-width: 250px;
}

#bulkEditModal .form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 1rem;
}

#bulkEditModal .form-group {
  margin-bottom: 0px;
  width: 18%;
}

#bulkEditModal .form-group label {
  margin-bottom: 0px;
}

#bulkEditModal .form-group.half-width,
.form-group.half-width {
  width: 48%;
}

#bulkEditModal .form-group input,
#bulkEditModal .form-group select,
#bulkEditModal .form-group textarea {
  padding: 0.4rem 1rem;
}

#bulkEditModal .form-group-checkbox {
  padding-top: 5px;
}

#bulkEditModal .form-group-checkbox label {
  margin-bottom: 5px;
}

#bulkEditModal .form-group textarea {
  height: 100px;
}

.cb-blkedt-exstng-data {
  width: 100%;
  margin-top: 30px;
}

table.cb-blkedt-exstng-data tr {
  padding-block: 2px;
}

table.cb-blkedt-exstng-data tr td {
  padding: 5px 10px;
  font-size: 14px;
}

#bulkEditModal .btn-bulk-update {
  padding: 0.5rem;
}

table.cb-blkedt-exstng-data thead tr,
.cb-blkedt-exstng-data-tbody tr:nth-child(2n) td {
  background: #7774;
}

.cb-announcement-sec .cb-btn-primary {
    margin-left: 30px;
}

.cb-coll-btn-sec {
    padding-bottom: 20px;
    text-align: right;
    padding-inline: 2rem;
}

/* Gallery section */
.gallery-container {
    max-width: 80%;
    margin: auto;
    padding-bottom: 50px;
}

.gallery-container h2 {
    text-align: center;
    margin-bottom: 50px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.2rem;
}

.gallery-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
}

.gallery-card img {
    width: 100%;
    height: auto;
    display: block;
}

.sbmt-gllry-sec {
    padding-top: 20px;
    padding-bottom: 50px;
}

.sbmt-gllry-sec p {
    text-align: center;
    font-size: 20px;
}

.sbmt-gllry-sec .sbmt-gllry-btn-grp {
    width: 60%;
    margin: auto;
    display: flex;
    justify-content: space-evenly;
    padding-top: 30px;
}

.sbmt-gllry-sec .sbmt-gllry-btn-grp a {
    text-decoration: none;
    animation: rainbow-text 8s linear infinite;
    animation-delay: 0s;
    animation-delay: 1.5s;
    background: white;
    border: 2px solid currentColor;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s;
    display: inline-block;
}

.sbmt-gllry-sec .sbmt-gllry-btn-grp a:hover {
    transform: scale(1.05);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
/* Gallery Section end */

.footer-bottom p {
    color: #fff;
}
.footer-bottom a {
    animation: rainbow-text 8s linear infinite;
    text-decoration: none;
}

.sngle-crebear-sec {
    width: 100%;
    padding: 150px 1rem 5rem 1rem;
    max-width: 100%;
    overflow: hidden;
}

.sngle-crebear-sec .product-grid {
    margin-bottom: 2rem;
    max-width: 100%;
    width: 100%;
}

.sngle-crebear-sec .product-gallery {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.sngle-crebear-sec .product-gallery .main-image {
    width: 48%;
    background: #eee;
    min-height: 300px;
    height: 400px;
}

.sngle-crebear-sec .product-gallery .main-image img {
    max-width: 100%;
    height: auto;
    max-height: 100%;
    display: block;
    margin-inline: auto;
}

.sngle-crebear-sec .product-gallery .thumbnail-grid {
    width: 48%;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    height: 400px;
}

.sngle-crebear-sec .product-gallery .thumbnail-grid .thumbnail {
    background: #eee;
    width: 48%;
    min-height: 150px;
    height: 48%;
}

.sngle-crebear-sec .product-gallery .thumbnail-grid .thumbnail img {
    max-width: 100%;
    height: auto;
    display: block;
    max-height: 100%;
    margin-inline: auto;
}

.sngle-crebear-sec h1.product-title {
    margin-bottom: 20px;
}

.sngle-crebear-sec div.description h3 {
    margin-bottom: 10px;
}

.sngle-crebear-sec .product-detail-section {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.sngle-crebear-sec .product-detail-section .features {
    width: 48%;
}

.sngle-crebear-sec .product-detail-section .product-sidebar {
    width: 48%;
}

.sngle-crebear-sec ul.specification {
    margin-top: 20px;
    column-count: 2;
    margin-left: 1rem;
    column-gap: 2rem;
    width: 100%;
    margin-bottom: 20px;
}

.sngle-crebear-sec ul.specification li {
    margin-bottom: 10px;
}

@media (max-width: 1024px) {
    .hero {
        height: 500px;
    }    
    .bear-left, .bear-right {
        width: 20%;
    }
}

@media (max-width: 992px) {
    
    .hero {
        height: 450px;
    }
    .bear-left, .bear-right {
        width: 20%;
    }
    .hero h1 {
        font-size: 2.6rem;
    }
    #tips .tips-grid {
        grid-template-columns: repeat(2, 1fr);
    } 
    .collection-listing--inner {
        display: block;    
    }
    .filter-section {
        width: 100%;
    }
    .carebear-collections-grid {
        padding-left: 0px;
    }
    .carebear-collections-grid .collection-card {
        width: 32%;
        height: auto;
    }
    .mobile-filter-sec {
        display: block;
    }
    .filter-section:not(.mobile-filter-sec) {
        display: none;
    }
    .sbmt-gllry-sec .sbmt-gllry-btn-grp {
        width: 100%;    
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .event-calender-container .collections-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.3rem;
    }
    #tips .tips-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .sbmt-gllry-sec .sbmt-gllry-btn-grp {
        flex-wrap: wrap;
        row-gap: 20px;
    }
    .carebear-collections-grid .collection-card {
        width: 48%;
    }
    .cb-announcement-sec .collections {
        width: 100%;
    }
    .cb-announcement-sec .cb-social-container {
        width: 100%;
    }
    .cb-social-container h2 {
        margin-top: 0px;
    }
}

@media (max-width: 576px) {
    .hero {
        height: 90vh;
    }
    .gallery-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .tips-container {
        padding: 0 0rem;    
    }
    .sngle-crebear-sec .product-gallery .main-image {
        width: 100%;    
    }
    .sngle-crebear-sec .product-gallery .thumbnail-grid {
        width: 100%;
        height: auto;
    }
    .product-detail-section {
        display: block;
    }
    .product-detail-section .features {
        width: 100%;
    }
    .product-detail-section .product-sidebar {
        width: 100%;
    }
    .sngle-crebear-sec {
        padding: 120px 1rem 5rem 1rem;
    }
    .sngle-crebear-sec .product-detail-section {
        display: block;
    }
    .sngle-crebear-sec .product-detail-section .features {
        width: 100%;
    }
    .sngle-crebear-sec .details-group .sngle-desc-btn-grps {
        max-width: 100%;
    }
    .sngle-crebear-sec .product-detail-section .product-sidebar {
        width: 100%;
    }
}


@media (max-width: 430px) {
    .hero {
        height: 70vh;
    }
    .carebear-collections-grid .collection-card {
        width: 100%;
    }
}

@media (max-width: 375px) {
    .hero {
        height: 100vh;
    }    
    .bear-left, .bear-right {
        width: 30%;
    }
}

