@charset "utf-8";
/* Nav Styling */      
/* Nav Styling */      
/* Nav Styling */      
.sticky-top-first-row {
  background-color: white !important; /* Ensure background color is white */
  z-index: 1030; /* Ensure this is higher than the second row */
}
.sticky-top-second-row {
  top: 56px; /* Adjust this based on the height of your first row */
  transition: top 0.3s;
  z-index: 1020; /* Lower z-index to keep it underneath the first row */
}
.scrolling .sticky-top-second-row {
  top: -56px; /* Hide the second row on scroll */
}
.scrolling .sticky-top-first-row {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.navbar-nav {
  display: flex;
  flex-direction: row; /* Ensures items are in a row */
  flex-wrap: nowrap; /* Prevents wrapping */
  overflow-x: auto; /* Allows horizontal scrolling */
  -webkit-overflow-scrolling: touch; /* Smooth scrolling for mobile */
}
.navbar-nav .nav-item {
  white-space: nowrap; /* Prevents wrapping of text */
  margin-right: 15px; /* Add margin between nav items */
}
.navbar-nav .nav-item:last-child {
  margin-right: 0; /* Remove right margin for the last item */
}
/*Logo Images height */
.img-height-45 {
    height: 45px;
}
      
.img-height-55 {
    height: 55px;
}

 /* SEARCH Input Ensure the outline surrounds both input and button */
    .input-group:focus-within {
        box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
        border-radius: 0.375rem;
    }

    .input-group .form-control:focus {
        box-shadow: none;
        outline: none;
    }

    .input-group .btn:focus {
        box-shadow: none;
        outline: none;
    }
 /* END SEARCH Input Ensure the outline surrounds both input and button */

/*END Nav Styling*/     
/*END Nav Styling*/     
/*END Nav Styling*/     
      
  

/*APPLICABLE TO THE WHOLE SITE*/
/*APPLICABLE TO THE WHOLE SITE*/
/*APPLICABLE TO THE WHOLE SITE*/

/* Apply the body text color to all anchor links */
a {
    color: var(--bs-body-color) !important; /* Ensures the link has body text color */
    text-decoration: none; /* Removes the underline by default */
}

/* Change color on hover */
a:hover:not(.btn) {
    color: indianred !important; /* Custom hover color */
    text-decoration: none; /* Ensures the underline stays removed on hover */
}

.savemoney{color:#FF0105;}

.nda-shadow{box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);}

.btn-primary {
  background-color: #3eb3c7; /* Set your desired background color */
  border-color: #3eb3c7;     /* Set your desired border color */
}

.btn-primary:hover {
  background-color: #228793; /* Color on hover */
  border-color: #228793;
}

.btn-warning {
  background-color: #fcb424; /* Set your desired background color */
  border-color: #fcb424;     /* Set your desired border color */
  color: black;      
}

.btn-warning:hover {
  background-color: #D39820; /* Color on hover */
  border-color: #D39820;
  color: black;    
}

.btn-success {
  background-color: #5cb85c;
  border-color: #4cae4c;
  color: #ffffff; /* White text */
}

.btn-success:hover,
.btn-success:focus,
.btn-success:active,
.btn-success.active {
  background-color: #449d44;
  border-color: #398439;
  color: #ffffff;
}

.gold-nda-text{
    color: #D39820;
}

.card-custom-size {
  width: 100px;
}

.card-img-custom-size {
  height: 60px;
  width: 100%;
  object-fit: contain;
}


.card-custom-size2 {
  width: 150px;
}    
.card-img-custom-size2 {
  height: 150px;
  width: 100%;
  object-fit: contain;
}


.card-custom-size3 {
  width: 120px;
}    
.card-img-custom-size3 {
  height: 120px;
  width: 100%;
  object-fit: contain;
}

.sponsoredText {
  position: absolute;
  top: 14px;
  left: 14px;
  color: #A9A9A9;
  background-color: white;
  padding: 3px 8px;
  font-size: 12px; 
  font-family: Arial, sans-serif;
  border-radius: 5px; 
  border: 1px solid #A9A9A9;
  z-index: 10; /* Ensure the button appears above the image */    
}

.inBasketCat {
  position: absolute;
  bottom: 0px;
  right: 14px;
  padding: 3px 8px;
  font-family: Arial, sans-serif;
  z-index: 10; /* Ensure the button appears above the image */
}

/*END APPLICABLE TO THE WHOLE SITE*/
/*END APPLICABLE TO THE WHOLE SITE*/
/*END APPLICABLE TO THE WHOLE SITE*/



      
 /* CATEGORY AND SEARCH PAGES */     
 /* CATEGORY AND SEARCH PAGES */     
 /* CATEGORY AND SEARCH PAGES */     
.cat-image-container {
  height: 260px;          /* Fixed height for the image container */
  width: 100%;            /* Full width of the card */
  display: flex;          /* Flexbox to center the image */
  justify-content: center;
  align-items: center;
  overflow: hidden;       /* Ensures that any overflowing part of the image is hidden */
  padding-top: 10px;
  padding-right: 10px;
  padding-left: 10px;    
    
  position: relative;     /* Needed for the absolute positioning of the overlay text */
}

.cat-image {
  max-height: 100%;       /* Image will scale down to fit container height */
  max-width: 100%;        /* Image will scale down to fit container width */
  object-fit: contain;    /* Ensures the image maintains aspect ratio and fits within the container */
}    

.pimgcontTxt {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 8px;
    background-color: #FF0105;
    color: white;
    font-size: 12px; 
    font-family: Arial, sans-serif;
    border-radius: 5px; /* Optional: for rounded corners */
    z-index: 10; /* Ensure the text is above the image */
    box-shadow: 3px 3px 3px lightgray;
}

 /* END CATEGORY AND SEARCH PAGES */  
 /* END CATEGORY AND SEARCH PAGES */  
 /* END CATEGORY AND SEARCH PAGES */  





/* SEARCH BAR */
/* SEARCH BAR */
/* SEARCH BAR */

/* Overlay Styling */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    z-index: 1000; /* Must be less than the z-index of #sinp65 and #searchResp */
    display: none; /* Initially hidden */
}

/* Ensure the search input and results are above the overlay */
#sinp65 {
    position: relative;
    z-index: 1001;
}

#searchResp {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 1002;
}


/* Search Result List */
#searchLi {
    list-style: none;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 0;
    padding: 0;
    width: 100%;
    border-radius: 0 0 0.5rem 0.5rem; /* Ensure the ul has rounded bottom corners */
    overflow: hidden; /* Ensure no li overflows the rounded corners */
}

#searchLi li {
    border-bottom: 1px solid #ddd;
    padding: 0;
}

#searchLi li:last-child {
    border-bottom: none; /* Remove border from the last li to prevent it interfering with the rounded corners */
}

#searchLi li a {
    display: block;
    padding: 10px;
    text-decoration: none;
    color: inherit;
}

#searchLi li a:hover {
    background-color: #f0f0f0;
}

.sRselected{
	background-color:#F1ECEC;
}
/* END SEARCH BAR */
/* END SEARCH BAR */
/* END SEARCH BAR */






/*HOTTEST TOYS*/
/*HOTTEST TOYS*/
/*HOTTEST TOYS*/
.card-img-hottest-toy-trends {
  height: 75px;
  width: 100%;
  object-fit: contain;
} 
/*END HOTTEST TOYS*/
/*END HOTTEST TOYS*/
/*END HOTTEST TOYS*/






/*PRODUCT PAGE*/
/*PRODUCT PAGE*/
/*PRODUCT PAGE*/
.scroll-container {
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
}

.scroll-item {
  scroll-snap-align: start;
}

.fixed-image-container {
  height: 500px;
  display: flex;
  align-items: center;  /* Vertically centers the image */
  justify-content: center; /* Horizontally centers the image */
  max-height: 500px;  /* Maximum height of the container */
  width: 100%;  /* Full width of the container */
  background-color: #ffffff;  /* Optional background color */
  border-radius: 8px;
  position: relative;    
      
}

.fixed-image-container img {
  object-fit: contain;  /* Ensures the image maintains its aspect ratio */
  max-height: 490px;  /* Ensures the image fits within the container's height */
  max-width: 100%;  /* Prevents the image from exceeding the container's width */
  height: auto;  /* Maintain aspect ratio */
  width: auto;  /* Allow width to adjust */
}
    

.prod-custom-size-tmb {
  width: auto;
}

.prod-img-custom-size-tmb {
  height: 60px;
  width: 100%;
  object-fit: contain;
}

#dotContainer {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: lightgrey;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: darkgrey;
}

.fade {
    transition: opacity 0.5s;
}
.fade-out {
    opacity: 0;
}
.fade-in {
    opacity: 1;
}
/*END PRODUCT PAGE*/ 
/*END PRODUCT PAGE*/ 
/*END PRODUCT PAGE*/ 