/* modern.css — Clean, streamlined styling */

:root {
    --primary-color: #0070ba;   /* Blue */
    --2-primary-color: #197ec0; /* Blue #0070ba but one shade lighter */
    --3-primary-color: #0064a7; /* Blue #0070ba but one shade darker */
    --secondary-color: #ffc439; /* Orange */
    --text-color: #333;
    --background-color: #fff;   /* White */
    --background-color-02: #f8f8f8; /* White Smoke */
	--background-color-03: #fffceb;  /* Ivory */
    --body-color: #67a3e1;      /* Cornflower Blue */ 
    --yellow-color: #fefe00;    /* Yellow */
}

* {
    box-sizing: border-box;
	text-decoration: none;
	margin: 0;
    padding: 0;
}


.lexend-<uniquifier> {
  font-family: "Lexend", sans-serif;
  font-optical-sizing: auto;
  
  font-style: normal;
} 

.crimson-pro-<uniquifier> {
  font-family: "Crimson Pro", serif;
  font-optical-sizing: auto;
  
  font-style: normal;
}


.roboto-<uniquifier> {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

body {
    margin: 0;
	font-family: "Roboto", sans-serif;
	font-optical-sizing: auto; 
	font-style: normal;
	font-variation-settings: "wdth" 100;
	color: var(--text-color);
	background-color: #FFD6BA; 
} 
 
                                             /* Header Begin */
/* 1. Sets the overall container width and centers the entire block on the page */
header .container {
    max-width: 900px;  
    margin: 0 auto; 
    padding-top: 0.9rem; 
    /* Remove all Grid properties from here */
}

/* 2. Styles the wrapper to hold the two images side-by-side and center them */
.header-content-wrapper {
    /* Flexbox for cleaner horizontal alignment of content */
    display: flex;  
    /* Center the two image elements as a group */
    justify-content: center;  
    /* Center the second image vertically if needed */
    align-items: center;  
    /* Set the space between the two images */
    gap: 2rem; 
}

/* 3. Styles for the images (keep these mostly the same) */
.header-content-wrapper > img:first-child {
    height: auto;
    max-width: 130px;
    width: 100%; /* Ensures it scales down on mobile */
	filter: drop-shadow(0px 1px 3px rgba(249, 205, 12, 0.3));
}
    
.header-content-wrapper > img:nth-child(2) {
    height: auto;
    max-width: 450px;
    width: 100%; /* Ensures it scales down on mobile */
	filter: drop-shadow(0px 2px 5px rgba(0, 0, 0, 0.5));
}

/*.header-content-wrapper img{
	filter: drop-shadow(0px 2px 5px rgba(0, 0, 0, 0.5));
	}*/
	
header {
    background: var(--3-primary-color);
    margin: 0;
}
 
.store-slogan {
    text-align: center; /* Center the text on the page */
    max-width: 750px; /* Keep the lines from getting too long on wide screens */
    margin: 0 auto; /* Center the block and add spacing */
     
}

.slogan {
    font-size: 1.1rem;
    line-height: 1.4;
    margin: 0.35rem .9rem 0.625rem;
    /* If you decided on a custom font (like Lexend), apply it here */
    font-family: 'Lexend', sans-serif; 
} 

.slogan .special {
	color: var(--primary-color);
	font-weight: 700;
	} 

                                              /* Header End */

hr {
    height: 2px; 
    background-color: #d2dff2;
    border: none;
	max-width: 600px;
    margin: 0.25rem auto 1rem;  
}

hr.hr2 {
    height: 2px; 
    background-color: #d2dff2;
    border: none;
	max-width: 600px;
    margin: 1rem auto 0.15rem;   
}

hr.hr3 { 
    height: 2px; 
    background-color: #d2dff2;
    border: none;
	max-width: 600px;
    margin: 0.5rem auto 0;  
    }
	
.line_br {
    white-space: pre-line;
} 

                                      /* NAV Begin */ 

div#sticky {
	position: -webkit-sticky; /* Safari */
    position: sticky;
    top: 0;
    z-index: 10;
}  

nav-cart button {
    border: var(--yellow-color) solid 1px;
    border-radius: 8px;
    color: var(--yellow-color);
    font-size: 2.5rem;
    cursor: pointer;
    display: none;
    margin: 0;
    margin-top: .7rem;
    padding: 0 .8rem .2rem .8rem;
    background: var(--2-primary-color);
}

#navMenu-cart {
    list-style: none;
    display: flex;
    gap: 1rem;
	align-items: center;
    padding: 0;
    margin: 0;
    color: var(--yellow-color);
    font-size: 1.15rem;
	z-index: 20;
}

#navMenu-cart .btn-nav {
	padding: 0.35rem 0.5rem;
	border-radius: 0.25rem;
	font-weight: 700;
	font-size: 1rem;
	}

#navMenu-cart li a,  
#sticky nav-cart .main-nav-container-cart ul, 
#navMenu-cart .cart-button,
.row .cart-button {
    color: var(--yellow-color); 
    background: none;
    border: none;
    font: inherit;
    cursor: pointer;
}
 
#navMenu-cart li a:hover,
#navMenu-cart .cart-button:hover {
    text-decoration: underline;
	color: var(--yellow-color);
}

.main-nav-container-cart {
	display: grid;  
    justify-content: center;
    align-items: center;
	}  

                                      /* NAV END */  

                                     /* Main Begin */

main {
	padding: 0 0.33rem; /* 0.33rem; Change For Christmas */
	margin: 0;
}

main .highlight_card,
main .description {
	max-width: 900px;
	margin: 0 auto;
	box-shadow: 0 2px 10px rgba(0,0,0,0.08);
	}
.h1-img-wrapper {
	display: flex;
	justify-content: center;
    align-items: center;
	column-gap: 2rem;
	}

.h1-img-wrapper img {	
	filter: drop-shadow(0px 2px 2px rgba(8, 8, 8, 0.5));
    }

                                     /* Main End */

                                    /* Highlight Begin */  

.highlight-gallery {
	background-color: var(--background-color-03); 
    color: var(--text-color);
    padding: 0 0 0.1rem 0;
	margin: 0 auto;
    text-align: center;
	max-width: 900px;
	border-radius: 12px 12px 0 0; 
	box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.highlight-gallery .p1 {
	font-size: 1.25rem;
    margin: 0 0.25rem;
    padding: 0; 
	color: #333;
	font-family: 'Lexend', sans-serif;
	}

 {
	display: grid;
    grid-template-columns: auto auto auto;
	justify-items: center;
	align-items: center;
	justify-content: center;
	text-align: center;
	}

.top_images h1 { 
	color: var(--primary-color, #0070ba);
	font-size: 1.5rem;
	}
.top_images h2 { 
	color: var(--primary-color, #0070ba);
	font-size: 1.35rem;
	}
.highlight .top_images h1 { 
	color: var(--primary-color, #0070ba);
	font-size: 1.5rem;
	}

.highlight-gallery .p1-wrapper-01 {
	display: flex; 
	align-items: center;
    justify-content: center;
	gap: .25rem;
	}
	
.highlight-gallery .fa-solid {
	font-size: 1.5rem;
	} 
	
.highlight { 
    color: var(--text-color);
    padding: 0 1rem .25rem;
    text-align: center;  
}
                           /* Check Out - Not Needed??? */
/*.highlight h1 {
    font-size: 1.75rem;             
    margin: 0;
    padding: 0; 
	color: #333;
}*/
	
.highlight h2 {
	color: var(--primary-color, #0070ba);
	}

.highlight .p1-wrapper-01 {
	display: flex; 
	align-items: center;
    justify-content: center;
	gap: .25rem;
	}
	
.highlight .fa-solid {
	font-size: 1.5rem;
	}

.highlight button {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 0.75rem 1.25rem;
    margin: 0 0 1rem 0;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
}

.highlight button:hover {
    background: #005fa3;
}

.highlight_card {
	background-color: var(--background-color-03); 
    border-radius: 12px 12px 0 0;
    color: var(--text-color);
    padding: 0 1rem .25rem;
    text-align: center;
}

.highlight_card h1 {
    font-size: 1.5rem;
    margin: 0;
    padding: 0; 
}

.highlight_card h2 {
	font-size: 1.15rem;
	margin: 0;
    padding: 0; 
	}

.highlight_card button {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 0.75rem 1.25rem;
    margin: 0 0 1rem 0;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
}

.highlight_card button:hover {
    background: #005fa3;
}

.highlight_card p.stars {
	font-size: 1rem;
	font-family: "Roboto", sans-serif;
	font-optical-sizing: auto; 
	font-style: normal;
	font-variation-settings: "wdth" 100; 
	margin: 0;
	padding: 0.85rem 0 0.65rem 0; 
}

.highlight_card p.description_p_top {
	margin: 0;
    padding: 0 0 0.65rem 0;
	line-height: 130%; 
	}
.highlight_card p.description_p_bot {
	margin: 0;
    padding: 0 0 0.65rem 0; 
	}

.highlight_card p.quote {
	font-size: 1rem;
	font-family: "Roboto", sans-serif;
	font-optical-sizing: auto;
	font-weight: bolder;
	font-style: normal;
	text-align: inherit;
	text-transform: lowercase;
	margin: .75rem 3.25rem 0 3.25rem; 
}  

.highlight_card p.quote-02 {
	font-size: 1rem;
	font-family: "Roboto", sans-serif;
	font-optical-sizing: auto;
	font-weight: bolder;
	font-style: normal;
	text-align: inherit; 
	margin: .75rem 3.25rem 0 3.25rem; 
}   

.highlight_card p.quote::first-letter { 
    text-transform: capitalize; 
}

.capital {
	text-transform: capitalize;
	} 
							  
.highlight-gallery .shipping_cost p {
    /* Shipping Cost */ 
	padding: 0.25rem 0 0 0;
    margin: 0;
    text-align: center;
    color: var(--text-color);
    font-weight: 600;
    font-size: .9rem; 
}

.shipping_cost p {
    /* Shipping Cost */
    padding: .65rem 0 0 0;
    margin: 0;
    text-align: center;
    color: var(--text-color);
    font-weight: 600;
    font-size: .95rem; 
}

/*.top_images h2 {
    font-size: 1.2rem;
    padding: 0 0 1.25rem 0;
    margin: 0;
}*/

.top_images {
    padding: .2rem 0 0 0;
    margin: 0;
}

.top_images {
    display: flex;
    align-items: center;
    justify-content: center; 
}

.top_images .img1 {
    margin: 0 1.25rem 0 0;
	filter: drop-shadow(0px 2px 5px rgba(0, 0, 0, 0.5));
}

.top_images .img2 {
    margin: 0 0 0 1.5rem;
	filter: drop-shadow(0px 2px 5px rgba(0, 0, 0, 0.3));
}

.top_images p {
    font-weight: bolder;
    text-align: center;
    font-size: 1.25rem;
}

.old-price {
  text-decoration: line-through;
  color: #888; /* Faded gray color */
  opacity: 0.7; /* Optional extra fading */
  margin-right: 0.25rem; /* Space before the new price */
  font-size: 0.975rem; /* Slightly smaller than the new price */
}

                                   /* Highlight End */

                                   /* Description Begin */

.description {
    background: var(--background-color);
    padding: 1.5rem;
    border-radius: 0 0 12px 12px; 
	margin-bottom: 0;
}

.description .pp-p {
	text-align: center;
	color: var(--primary-color);
	margin: 0;
	padding: 0 0 1rem 0;
	font-weight: bold;
	}
.description .pp-p a {
	color: var(--primary-color);
    }
.description .pp-p a:hover {
	text-decoration: underline;
	color: #005fa3;
    }

.description img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: auto;
    /*1rem 0;*/
    border: 0.109rem solid #eae3dd;
	margin-bottom: 0.75rem;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.description h2,
.description h3 {
    margin-top: 1rem;
    color: var(--primary-color);
}  

.description p.story {  
	font-family: "Lexend", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	}
	                            /* SS Description Begin */
main .ss-description {
	max-width: 900px;
	margin: 0 auto;
	box-shadow: 0 2px 10px rgba(0,0,0,0.08);
	}

.ss-description {
    background: var(--background-color);
    padding: 1.5rem;
    border-radius: 0 0 12px 12px; 
	margin-bottom: 0;
}

.ss-description .pp-p {
	text-align: center;
	color: var(--primary-color);
	margin: 0;
	padding: 0 0 1rem 0;
	font-weight: bold;
	}
.ss-description .pp-p a {
	color: var(--primary-color);
    }
.ss-description.pp-p a:hover {
	text-decoration: underline;
	color: #005fa3;
    }

.ss-description img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: auto;
    /*1rem 0;*/
    border: 0.109rem solid #eae3dd;
	margin-bottom: 0.75rem;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.ss-description h2,
.ss-description h3 {
    margin-top: 1rem;
    color: var(--primary-color);
}   

.ss-description h3.buyer-review {  
	font-size: 1.5rem;
} 

.ss-description p.story {  
	font-family: "Lexend", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	}  
	                              /* SS Description End */
.two-pics-flex {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
    justify-content: center; 
	gap: 0;
    margin: 1rem 0;
	}
	
.two-pics-flex img {
	max-width: 400px;
	height: auto;
	width: 100%;
	object-fit: contain;
}

video {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
}

.description ul {
    padding-left: 1.2rem;
}

.description ul li {
	font-family: "Lexend", sans-serif;
	font-optical-sizing: auto; 
	font-style: normal;
	}
	
.description .two-column-list {
    display: flex;
    flex-wrap: wrap; 
  }

.description .two-column-list li {
    width: 50%; /* Each <li> takes up half the row */
    box-sizing: border-box;
    padding: 4px 8px;
  }

.description p.description_p {          
    margin: 0;
    line-height: 140%; 
}

.description p {    
	line-height: 140%; 
	}
	
.description .description_p {
	color: var(--primary-color);
	font-weight: bold;      
    }
	
.description p.description_p_bot {
	text-align: center;
	color: var(--primary-color);
	font-weight: bold;
	}

                                /* Description End */

                                /* Gallery Grid Begin */

.gallery_grid {
    display: grid; 
    grid-gap: .25rem;
    grid-template-columns: auto auto auto auto;
    background-color: var(--background-color);
    border-radius: 12px 12px 0 0;   
    border: none; 
    padding: 0 0.5rem 0 0.5rem;/* 0 0.5rem; Change For Christmas */
}

.gallery_grid .item1 {   /*// BEFORE Christmas Change */
    grid-column: 1 / span 4;
} 

/*.gallery_grid-02 .item1 {  Add For Christmas 
    grid-column: 1 / span 5;
} */

.gallery_grid p.item_p {  /* .gallery_grid-02 Change For Christmas */
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: red;
    padding: 0;
    margin: 0.1rem 0;
}

.gallery_grid-02  {
    display: grid; 
    grid-gap: .25rem;
    grid-template-columns: auto auto auto auto auto;
    background-color: var(--background-color);
    /*border-radius: 0 0 12px 12px;  Change For Christmas */ 
	border: none;  
    padding: 0 0.5rem 0.5rem 0.5rem; /* 0 0.5rem;  Change For Christmas */
    margin: 0;
	box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.gallery_grid-02-02 { /* Added For Christmas */
    display: grid; 
    grid-gap: .25rem;
    grid-template-columns: auto auto auto auto auto;
    background-color: var(--background-color);
    border-radius: 0 0 12px 12px;   
	border: none;  
    padding: 0 0.5rem;    
    margin: 0;
	box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

#grid-container {
	max-width: 900px;
	margin: 0 auto; 
	background-color: var(--background-color);
	box-shadow: 0 2px 10px rgba(0,0,0,0.08);
	border-radius: 0 0 12px 12px; 
	}

.ss_pics {
	display: grid; 
    grid-gap: 0;
    grid-template-columns: auto auto auto; 
	} 
 
.description .ss-details a {
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3); 
	}
	
.j-photos {
	text-align: center;
	margin: 0;
	padding-bottom: 1rem;
	font-weight: 700;
	font-size: 1.5rem;
	}
	
.xmas {
	text-align: center;
	} 
	
.ss-details {
	text-align: center;
	margin: 1.5rem 0;
	font-weight: bold;
	}

.item {                                             /* More Button Info on cart.css */
    background: var(--background-color-03);
    color: var(--text-color) 1px solid; 
    border-radius: 8px;
    border: 0.094rem solid #dfdfdf;
    font-size: 1rem;
    text-align: center;
}

.item_style {
	margin: 0;
	padding: 0;
	}

.item_style .movie_info {
    white-space: pre-line; 
}

.item_style-ss .movie_info {
    white-space: pre-line;
}
 
.item button {
    background: var(--primary-color);
    color: var(--yellow-color);
    border: none;
    padding: 0.75rem 1.25rem;
    margin: 0 .15rem;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
}  
                                                   /* More Button Info on cart.css */
.item_style a img, 
.item_style form  {
    margin: 0.5rem .2rem 0 .15rem;
}

.item_style-ss {
	padding: 0.5rem 0 0.5rem 0;
	} 

.item_style p.price {
    margin: 0 0 0.35rem 0;
	padding: 0;
}

div.item a,
div.item p {
    font-weight: bold;
    color: var(--text-color);
    text-decoration: none;
}

div.grid-02 {
    font-size: .9rem;
}                                              /* More Button Info on cart.css */

                              /* Gallery Grid End */

                              /* Sitemap Begin */

.sitemap-container {
	/*padding: 40px 20px;*/
	max-width: 900px;
	margin: auto;
}

main.sitemap-container { 
	padding: 0;
}

main.sitemap-container .highlight { 
	padding: 0.5rem 1.5rem;
	background-color: var(--background-color-03); 
	border-radius: 12px 12px 0 0;
	box-shadow: 0 2px 10px rgba(0,0,0,0.08);
 }
 
main.sitemap-container section.highlight h1 {  
	font-size: 2rem;
	font-weight: 600;
 }

main.sitemap-container .about-section {
	padding: 1.5rem;
	background: #ffffff;
	border-radius: 0 0 12px 12px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.sitemap-nav {
	margin-bottom: 30px;
}

.sitemap-nav h2 {
	border-bottom: 2px solid var(--primary-color);
	padding-bottom: 10px;
	margin-bottom: 20px;
	color: var(--primary-color);
}

.sitemap-nav .sitemap-list {
	list-style: none;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 10px;
}

.sitemap-nav .sitemap-list li a {
	color: var(--text-color);
	text-decoration: none;
	transition: color 0.3s;
}

.sitemap-nav .sitemap-list li a:hover {
	color: var(--2-primary-color);
	text-decoration: underline;
}

.sitemap-section {
	margin-bottom: 30px;
}

.sitemap-container .sitemap-section p.click-title {
	font-weight: 600;
	text-align: center;
	font-size: 1.25rem;
	color: var(--primary-color);
	}

.sitemap-section h2 {
	border-bottom: 2px solid var(--primary-color);
	padding-bottom: 10px;
	margin-bottom: 20px;
	color: var(--primary-color);
}

.sitemap-section .sitemap-list {
	list-style: circle;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 10px;
}

.sitemap-section .sitemap-list li {
	margin: 0 1rem;
	padding: 0.25rem 0.25rem 0 0.25rem;
}

.sitemap-section .sitemap-list li a {
	color: #333;
	text-decoration: none;
	transition: color 0.3s;
}

.sitemap-section .sitemap-list li a:hover {
	color: #0056b3;
	text-decoration: underline;
}
                                             /* Sitemap End */
											 
											 /* Footer Begin */
footer .footer-folder .footer-002 li a,
footer .footer-folder .footer-003 li a {  
	font-weight: normal;
	color: var(--yellow-color);
}

footer .footer-folder .footer-002 li a:hover,
footer .footer-folder .footer-003 li a:hover {  
	color: var(--yellow-color);
	font-weight: normal;
	text-decoration: underline; 
}

footer .footer-folder {
	max-width: 900px;
	margin: 0 auto;
	list-style: none;
	/*display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));*/
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	justify-items: center;
	align-items: center;
	justify-content: center; 
	gap: 1.5rem; 
	margin: 0 auto;
	text-align: left; 
}

footer .footer-001 {
	padding-left: 2rem;
}

footer .footer-002,
footer .footer-003 {
	line-height: 2;
}

footer {
	max-width: 100%;
    background: var(--3-primary-color);
    color: #fff;
    text-align: center;
    padding: 1rem;
}  
 
.line_br-footer {
	white-space: normal;
}
	
.copy_r {
    font-size: 90%; 
}

footer p a {
	color: var(--yellow-color);
	}
footer p a:hover {
	color: var(--yellow-color);
	text-decoration: underline;
	}

                              /* Footer End */

.clicky p {
    font-size: 1px;
    padding-top: -1rem;
    text-align: center;
	display: none; 
}

.description .review-item {
  margin-bottom: 1.8rem;
  border-bottom: 1px solid #ddd;
  padding-bottom: 1rem;
}

/*.description .review-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
*/
.description .review-item h2 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #333;
  font-weight: 600;
}

.description .review-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

.description .review-item .head {   /* Also on review-modern.css */
    font-size: 110%;
    font-style: italic;
}

.description .review-item .verified {  /* Also on review-modern.css */
    font-size: 95%;
	font-weight: 700;
    font-variant: small-caps;
    color: #ca5500;
}
 

                              /* Responsive Begin */


.display_sml,
.display_smler, 
.item1 p.display_sml,
.am_small,
.pp_smallest,
.pp_small,
.pps_small,
.cart-display_sml  {
    display: none;
}

.highlight-gallery .p1-wrapper-02 {
	display: none;
	}
.highlight-gallery .p1-wrapper-03 {
	display: none;
	}
.highlight-gallery .p1-wrapper-04 {
	display: none;
	}

@media (max-width: 768px) {	
  .header-content-wrapper > img:first-child {
        /* Reduce the maximum allowed size on mobile */
        max-width: 100px; 
    }
  .header-content-wrapper > img:nth-child(2) { 
    max-width: 425px; 
   }
}
	
@media (max-width: 710px) { 
  .highlight-gallery .p1-wrapper-01 {
    display: none;
    }
  .highlight-gallery .p1-wrapper-02 {
    display: flex; 
	align-items: center;
    justify-content: center;
	gap: .25rem;
    }
  .highlight-gallery .p1 {
        font-size: 1.25rem; 
        margin: 0;
    } 
	
  .highlight h1 {
        font-size: 1.5rem; 
        margin: 0;
    }   
  
  .form_wrapper button {  
    margin: 0 0 1rem 3.5rem;
	} 
  div.container {
        padding-bottom: 0;
    }

  .display_bg {
        display: none;
    }

  .display_sml {
        display: block;
    }

  .display_smler {
        display: block;
        line-height: 150%;
    } 

  #grid-container .gallery_grid {
        grid-template-columns: auto auto;
    }

  .gallery_grid .item1 {  /* gallery_grid-02 Change for Christmas*/
        grid-column: 1 / span 2;  /* 1 / span 3; Change for Christmas*/
        margin: 0 .2rem;
        text-align: center;
    }

  .gallery_grid-02,
  .gallery_grid-02-02  {  /*Add for Christmas */
        grid-template-columns: auto auto auto;
    }

  div.grid-02 {
        font-size: 1rem;
    }

  .line_br {
        min-width: fit-content;
    } 

  .top_images .img1 {
        margin: 0 .75rem 0 0;
    }

  .top_images .img2 {
        margin: 0 0 0 .75rem;
    } 
	
  .top_images h1 {
        font-size: 1.3rem;
        /*margin: .25rem 0 0 0;*/
    }  
  .top_images h2 {
        font-size: 1.15rem;
        margin: .25rem 0 0 0;
    } 
	
  hr { 
    margin: 1rem 8.75rem;
    }
  hr.hr2 { 
    margin: 1rem 8.75rem;
    } 
  .description .two-column-list { 
    display: none;
    }
  .description .two-column-list li { 
    display: none;
    }
}  

@media (max-width: 654px) {
  .highlight-gallery .p1-wrapper-01 {
    display: none;
  }
  .highlight-gallery .p1-wrapper-02 {
    display: none;
  }
  .highlight-gallery .p1-wrapper-03 {
	display: flex; 
	align-items: center;
    justify-content: center;
	gap: .25rem;   
	}  
}

@media (max-width: 600px) {
	.slogan {
        font-size: 1rem;
    }
    .form_wrapper button {  
    margin: 0 0 1rem 2rem;
	}
	
  .top_images img.img1 {
        margin: 0 0.5rem;
    }

  .top_images img.img2 {
        margin: 0 0.5rem;
    } 
	
  .two-pics-flex { 
	flex-wrap: wrap; 
	}
  .two-pics-flex img { 
	max-width: 375px; 
	}
}

@media (max-width: 599px) {
    hr { 
    margin: 1rem 4rem;
    }
    hr.hr2 { 
    margin: 1rem 4rem;
    } 
}

@media (max-width: 575px) {
    .header-content-wrapper > img:first-child {
        /* Reduce the maximum allowed size on mobile */
        max-width: 90px; 
    }
	.header-content-wrapper > img:nth-child(2) { 
        max-width: 400px; 
    }
	.header-content-wrapper {
		gap: 1rem;
	}
}

@media (max-width: 560px) {
  .top_images img.img1 {
        margin: 0 0.25rem;
		padding: 0 0 0 0.5rem;
    }

  .top_images img.img2 {
        margin: 0 0.25rem;
		padding: 0 0.5rem 0 0;
    } 
}

@media (max-width: 545px) {
  .h1-img-wrapper img.img2 {
	  display: none;
	}
}

@media (max-width: 530px) {
   .header-content-wrapper > img:nth-child(2) { 
        max-width: 380px; 
    }
  .top_images img.img1 {
        margin: 0 0.1rem;
		padding: 0 0 0 0.15rem;
    }

  .top_images img.img2 {
        margin: 0 0.1rem;
		padding: 0 0.15rem 0 0;
    }  
}

@media (max-width: 500px) {
	.header-content-wrapper > img:nth-child(2) { 
        max-width: 360px; 
        }
	.item1 p.display_bg {
		display: none;
		}
    .item1 p.display_sml {
	    display: block;
	    }
		
	.top_images img.img1 {
		height: 80px;
		width: auto;
		} 
	.top_images img.img2 {
		height: 90px;
		width: 76px;
		} 
	/*.top_images h2.display_sml {
		display: none;
		} 
	.top_images h2.display_smler {
		display: inline-block;
		}  */
		
	.am_big {
		display: none;
	}
	.am_small {
		display: inline-block;
	}
	.pps_big {
		display: none;
	}
	.pps_small {
		display:block;
	}
}

@media (max-width: 475px) { 
  .header-content-wrapper > img:nth-child(2) { 
        max-width: 320px; 
    }
}

@media (max-width: 465px) { 
  .highlight-gallery .p1-wrapper-01 {
    display: none;
  }
  .highlight-gallery .p1-wrapper-02 {
    display: none;
  }
  .highlight-gallery .p1-wrapper-03 {
    display: none;
  }
  .highlight-gallery .p1-wrapper-04 {
	display: block;  
	} 
}

@media (max-width: 455px) { 
  nav-cart {
	  margin: 0;
	  padding: 0 0 .75rem 0;
  }  
  .h1-img-wrapper {
	  column-gap: 0.75rem;
	} 
  /*.gallery_grid .item1 {  /* gallery_grid-02 Change for Christmas*/
        /*grid-column: 1 / span 2; 
    } */

  .gallery_grid-02,
  .gallery_grid-02-02 {  /*Add for Christmas */
        grid-template-columns: auto auto;
    }
}

@media (max-width: 440px) { 
    .header-content-wrapper > img:first-child {
        /* Reduce the maximum allowed size on mobile */
        max-width: 75px; 
    }
	
    .highlight-gallery .p1 {
        font-size: 1rem; 
        margin: 0;
    } 
	.top_images img.img2 {
		display: none;
		}   
	.mobile-container-02 {
		display: none;
	}
	 
    .form_wrapper button {  
    margin: 0 0 1rem 1rem;
	} 
    .top_images .img1 {
        margin: 0 .5rem 0 0;
    }

    .top_images .img2 {
        margin: 0 0 0 .5rem;
    }
	hr { 
    margin: 1rem 2rem;
    }
    hr.hr2 { 
    margin: 1rem 2rem;
    }
	.pp_big {
		display: none;
	}
	.pp_small {
		display: inline-block;
	}
}

@media (max-width: 430px) {
	.header-content-wrapper > img:nth-child(2) { 
        max-width: 300px; 
    }
	.form_wrapper button {  
    margin: 0 0 1rem .75rem;
	}
    /*.top_images h2 {
        display: none;
    }*/
	hr { 
    margin: 1rem 1.5rem;
    }
    hr.hr2 { 
    margin: 1rem 1.5rem;
    } 
	.cart-display_bg {
		display: none;
	} 
	.cart-display_sml {
		display:block;
	} 
}

@media (max-width: 412px) {  
  .header-content-wrapper > img:nth-child(2) { 
        max-width: 275px; 
    }
  .form_wrapper button {  
    margin: 0 0 1rem .25rem;
	} 
  hr { 
    margin: 1rem 1rem;
    }
  hr.hr2 { 
    margin: 1rem 1rem;
    }
  #navMenu-cart {
	  font-size: 95%;
	  }
} 

@media (max-width: 400px) {
  .header-content-wrapper > img:nth-child(2) { 
        max-width: 250px; 
    }
}

@media (max-width: 390px) {   
 /* .top_images h2.display_smler {
		display: none;
	}*/
  #navMenu-cart {
	  gap:0.75rem;
	  }  
}  

@media (max-width: 378px) {  
  .h1-img-wrapper {
	  column-gap: 0.15rem;
	} 
} 

@media (max-width: 360px) { 
    .header-content-wrapper > img:nth-child(2) { 
        max-width: 225px; 
    }
	
    #grid-container .gallery_grid {
        grid-template-columns: auto;
    }

    .gallery_grid-02,
	.gallery_grid-02-02 {  /*Add for Christmas */
        grid-template-columns: auto;
    }

    .gallery_grid .item1 {   /* gallery_grid-02 Change for Christmas */
	    display: none;
        /*grid-column: 1 / span 1;*/ 
    }
}