body {
	
	/* green background: #A7C7BB; */

	background: white;
	font-family: 'Roboto';
	font-size: 13pt;
	margin: 0;
	font-weight: normal;
	
}


/* Pagination Styling */

.paginationContainer {
	
	display: flex;
	flex-direction: row;
	border: 0px solid black;
	align-items: center;
	justify-content: center;
	width: 80%;
	margin: auto;

}


.paginationItem {

	padding: 5px;
	white-space: nowrap;
	cursor: pointer;
	box-sizing: border-box;
	
}


.paginationItem, .paginationItemLarge {
	
	margin: 0 4px;
	font-size: 12pt;
	cursor: pointer;
	text-decoration: none;
	color: #918D8D;
	font-weight: normal;	
	
}

a.paginationItem:hover, a.paginationItemLarge:hover {
	
	color: #3C3E4B;
	
}

.paginationItemLarge {
	
	font-size: 18pt;
	
}

.pageNormal {
	display: block;
}

.pageMobile {
	display: none;
}

/* product page styling */

.thisPrice {
	
	font-weight: bold;
	color: #069425;
	
}

.productPrice {
	
	display: flex;
	width: 100%;
	font-size: 19pt;
	justify-content: center;
	gap: 20px;
	
	
}

.productWrapper, .containerBottom {
	
	max-width: 1000px;
	margin: 20px auto;
	position: relative;
	
}

.productWrapper2 {
	
	padding: 20px;	
	max-width: 1000px;
	margin: 20px auto;
	position: relative;
	
}

.productWrapper2 h3 {
	
	margin: 0;
	padding: 0;
	font-size: 17pt;
	
}

.productWrapper2 h4 {
	
	margin: 0;
	padding: 0;
	margin-top: 5px;
	color: #4F4F4F;
	font-size: 13pt;
	
}

.productSpecs table {
  width: 100%;
  border-collapse: collapse;
  font-family: Arial, sans-serif;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.productSpecs th {
  background-color: #333;
  color: #fff;
  padding: 12px;
  text-align: left;
  font-size: 18px;
}

.productSpecs td {
  padding: 12px;
  font-size: 16px;
}

.productSpecs {
	max-width: 1000px;
	margin: auto;
}

.productSpecs tr:nth-child(even) {
  background-color: #f5f5f5;
}

.productSpecs tr:nth-child(odd) {
  background-color: #ffffff;
}

.productSpecs tr:hover {
  background-color: #e0e0e0;
  transition: 0.3s;
}





.productContainer {
	
	display: flex;
	max-width: 1000px;
	margin: auto;
	
}

.productFAQs {
	
	max-width: 1000px;
	margin: auto;
	
}

.productContainer .productPic {
	
	width: 40%;
	
}

.productContainer .productDesc {
	
	width: 60%;
	
}



.productContainer .productDesc h2 {
	
	display: none;
	
}

.productContainer .productPic {
	
	text-align: center;
	
}


.productContainer .productPic img {
	
	max-width: 90%;
	max-height: 600px;
	
}

.productContainer a.buyButton {
	
	width: 100%;
	background: #EE1C25;
	color: white;
	text-decoration: none;
	padding: 15px;
	width: 100%;
	transition: background 0.2s;
	display: block;
	text-align: center;
	border-radius: 4px;
	margin-top: 30px;
	z-index: 99999;
	
}

.productContainer a.buyButton:hover {
	
	background: #D40009;
	color: white;
	text-decoration: none !important;
	
}

.productContainer .merchantText {
	
	color: #878787;
	margin-top: 10px;
	text-align: center;
	z-index: 99999;
	
}

.content-container {
    margin-bottom: 20px;
}

h2.productPage {
	
	max-width: 1000px;
	margin: auto;
	margin-top: 20px;
	
	
}

/* Related Products Grid */
.related-products {
	max-width: 1000px;
	margin: 40px auto;
	padding: 0 20px;
}

.related-products h2 {
	text-align: center;
	margin-bottom: 30px;
	color: #333;
	font-size: 2rem;
}

.products-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 15px;
	margin-bottom: 30px;
}

.product-card {
	background: white;
	border: 2px solid #e0e0e0;
	border-radius: 10px;
	padding: 10px;
	text-align: center;
	transition: all 0.3s ease;
	box-shadow: 0 1px 4px rgba(0,0,0,0.1);
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	height: 100%;
	z-index: 1;
}

.product-card:hover {
	border-color: #EE1C25;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.product-card .discount-badge {
	position: absolute;
	top: 8px;
	right: 8px;
	background: #EE1C25;
	color: white;
	padding: 4px 8px;
	border-radius: 12px;
	font-weight: bold;
	font-size: 0.7rem;
}

.product-card img {
	max-width: 100%;
	height: 100px;
	object-fit: contain;
	margin-bottom: 8px;
}

.product-card h3 {
	font-size: 0.9rem;
	margin: 8px 0 5px 0;
	color: #333;
	line-height: 1.2;
	height: 2.4em;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.product-card h3 a {
	text-decoration: none;
	color: inherit;
}

.product-card h3 a:hover {
	color: #EE1C25;
}

.product-card .brand {
	color: #666;
	font-size: 0.75rem;
	margin-bottom: 5px;
}

.product-card .price {
	margin: 8px 0;
	flex-grow: 1;
}

.product-card .was-price {
	text-decoration: line-through;
	color: #999;
	font-size: 0.75rem;
	margin-right: 5px;
}

.product-card .current-price {
	color: #EE1C25;
	font-weight: bold;
	font-size: 1rem;
}

.product-card .buy-button {
	background: #EE1C25;
	color: white;
	text-decoration: none;
	padding: 8px 16px;
	border-radius: 15px;
	display: inline-block;
	font-weight: bold;
	transition: background 0.3s ease;
	margin-top: auto;
	font-size: 0.8rem;
}

.product-card .buy-button:hover {
	background: #D40009;
	color: white;
	text-decoration: none;
}

.product-card .merchant {
	font-size: 0.7rem;
	color: #666;
	margin-top: 4px;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
	.products-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}
	
	.product-card {
		padding: 8px;
	}
	
	.product-card img {
		height: 80px;
	}
	
	.related-products h2 {
		font-size: 1.5rem;
	}
}

@media (max-width: 480px) {
	.products-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 8px;
	}
	
	.related-products {
		padding: 0 10px;
	}
	
	.product-card {
		padding: 6px;
	}
	
	.product-card img {
		height: 60px;
	}
	
	.product-card h3 {
		font-size: 0.8rem;
		height: 2em;
	}
	
	.product-card .buy-button {
		padding: 6px 12px;
		font-size: 0.7rem;
	}
}


.productFeatures { 

	max-width: 1000px;
	margin: auto;
	border-top: 2px solid #ccc;
	border-bottom: 2px solid #ccc;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 30px;
	
}

.productFeatures .productFeaturesLeft, .productFeatures .productFeaturesRight { 
	
	width: CALC(50% - 20px);
	
}

.productFeatures strong {
	
	margin-top: 30px;
    display: block;
	
}


.productFeatures:nth-of-type(3) {
	
	column-count: 2;
    column-gap: 20px; /* Adjust the gap between columns as needed */
	display: block;
	background: #aacbe3;
	padding: 20px;
	
	
}

.productFeatures:nth-of-type(3) strong {
	
	
	display: inline-block;
	margin: 0;

	
}


/* Main layout styling */

.mainContainer2 {
	
	max-width: 1200px;
	display: flex;
	display: -webkit-flex;
	margin: auto;
	margin-top: 18px;
	flex-direction: row;
	-webkit-flex-direction: row; 
	
}

.productCol2 a {
	
	text-decoration: none;
	color: #4f4f4f;
	
}

.rightColFullWidth {
	
	width: 100%;
	
}


.rightColWhiteBG, .leftColInner, .rightColWhiteBGStay {
	
	width: 100%;
	background: white;
	border-radius: 25px;
	border: 3px solid #ccc;
	padding: 10px 30px 30px 30px;
	box-sizing: border-box;
	
}

.leftCol {
	
	width: 19%;
	margin-right: 20px;

		
}

.rightCol {
	
	width: 81%;
	
}

.lastUpdated {
	

	background: #FAEFD7;
	padding: 20px;
	font-size: 17px;
	width: calc(100% + 60px);
	margin-left: -30px;
	margin-top: 20px;
	margin-bottom: 20px;
	
	
}


/* Left menu styling */

/* Page wrapper for sidebar layout */
.pageWrapper {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
    padding: 0 20px;
    animation: fadeIn 0.6s ease-in;
}

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

.sidebarContainer {
    width: 280px;
    flex-shrink: 0;
    position: static;
    height: fit-content;
    display: block;
    animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Hide sidebar on mobile and tablet */
@media only screen and (max-width: 1024px) {
    .sidebarContainer {
        display: none;
    }
    
    .pageWrapper {
        display: block;
    }
    
    .mainContainer {
        max-width: 100%;
        padding: 0 15px;
    }
}

.leftMenuHeader {
	
	background: linear-gradient(135deg, #daf0f5 0%, #b8e6ed 100%);
	width: 100%;
	border-radius: 15px 15px 0 0;
	padding: 15px 20px;
	box-sizing: border-box;
	margin-bottom: 0;
	margin-top: 30px;
	color: #2c3e50;
	text-align: center;
	font-weight: bold;
	font-size: 18px;
	border: 1px solid #7ab5c2;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	
	
}

.leftMenuHeader i {
    margin-right: 8px;
    font-size: 16px;
}

.leftMenuPanel {
	
	margin-bottom: 20px;
	background: white;
	width: 100%;
	border-radius: 0 0 15px 15px;
	padding: 0;
	box-sizing: border-box;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	border: 1px solid #7ab5c2;
	border-top: none;
	overflow: hidden;

}

.leftMenuPanel:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.collectionItem {
    border-bottom: 1px solid #f0f2f5;
    transition: all 0.3s ease;
}

.collectionItem:last-child {
    border-bottom: none;
}

.collectionItem:hover {
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f2ff 100%);
    transform: translateX(3px);
}

.collectionItem a {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    text-decoration: none;
    color: #2c3e50;
    transition: all 0.3s ease;
}

.collectionItem a:hover {
    color: #667eea;
}

.collectionItem .collectionTitle {
    font-weight: 600;
    font-size: 14px;
    line-height: 1.3;
    flex: 1;
}

.collectionItem.allProducts {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f0ff 100%);
    border-top: 2px solid #667eea;
}

.collectionItem.allProducts a {
    font-weight: 600;
}

/* Active collection styling */
.collectionItem.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.collectionItem.active a {
    color: white;
}

/* Collections Grid Styling */
.collectionsGridContainer {
    max-width: 1000px;
    margin: 40px auto;
    padding: 30px 20px;
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f2ff 100%);
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8f0ff;
}

.collectionsGridTitle {
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.collectionsGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 0;
}

.collectionGridItem {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f2f5;
    overflow: hidden;
}

.collectionGridItem:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
    border-color: #667eea;
}

.collectionGridLink {
    display: block;
    padding: 20px;
    text-decoration: none;
    color: inherit;
    height: 100%;
    box-sizing: border-box;
}

.collectionGridItemTitle {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    line-height: 1.4;
    text-align: center;
    transition: color 0.3s ease;
}

.collectionGridItem:hover .collectionGridItemTitle {
    color: #667eea;
}

/* Responsive adjustments for collections grid */
@media (max-width: 768px) {
    .collectionsGridContainer {
        margin: 20px 10px;
        padding: 20px 15px;
    }
    
    .collectionsGrid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }
    
    .collectionsGridTitle {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .collectionGridLink {
        padding: 15px;
    }
    
    .collectionGridItemTitle {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .collectionsGrid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .collectionGridLink {
        padding: 12px;
    }
    
    .collectionGridItemTitle {
        font-size: 13px;
    }
}


/* overlay for searching */


/* Loading overlay */

.sortByContainer {
	
    background: #daf0f5;
    max-width: 1000px;
	border-radius: 100px;
    margin: 30px auto;;
    display: flex;
    justify-content: center;
	padding: 16px 0;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* Soft shadow */
	border: 1px solid #7ab5c2;
	
}

.sortByBox {
    font-size: 13pt;
    width: 320px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.sortByText {
    width: 100px;
    margin-right: 20px;
}

/* Style the select */
.sortByBox select {
	
    border-radius: 4px;
    font-size: 13pt; /* Ensure text is readable */
    padding: 12px 15px; /* Adjust padding to avoid text cutoff */
    border: 1px solid #3D617A;
    background: white url('/images/down-arrow.png') no-repeat;
    background-position: calc(100% - 10px) center;
    color: black;  
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    outline: none;
    margin: 0;
    box-sizing: border-box; /* Ensure padding doesn’t affect height */
	
}




#overlay {
	
	display: flex;
	align-items: center;
	justify-content: center;
	opacity:    0.5; 
	background: #fff; 
	width:      100%;
	height:     100%; 
	z-index:    999999;
	top:        0; 
	left:       0; 
	position:   fixed;
	visibility: hidden;
	display: none;
	
}

#loadingText {

	display: flex;
	align-items: center;
	justify-content: center;
	width:      100%;
	height:     100%; 
	z-index:    3100;
	position:   fixed;
	visibility: hidden;
	
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}


/* offers styling */

.mainContainer {

	margin: 0;
	padding: 0;
	box-sizing: border-box;
	width: 100%;
	flex: 1;

}



.productNum {
	
	border-radius: 200px;
	padding: 10px;
	border: 2px solid #eee;
	background: white;
	position: absolute;
	left: -25px;
	top: 20px;
	font-weight: bold;
	color: #8295b3;
	font-size: 16pt;
	z-index: 99999;
	
}

.product {
	
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* Soft shadow */
    transition: box-shadow 0.3s ease-in-out; /* Smooth transition */
	width: 100%;
	padding: 15px;
	border-radius: 20px;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;

	
}

.product:hover {
	
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
	
}

.productCol1 {
	
	width: 25%;
	text-align: center;
	
}



.productCol1 img {
	
	max-width: 90%;
	
}


.discountTag {
	
    background: white;
    color: #db0d3d;
    width: 80px;
    border-radius: 0 0 10px 10px;
    position: absolute;
    left: 40px;
    top: -50px; /* Start off-screen */
    text-align: center;
    padding: 3px;
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.1); /* Soft shadow */
    /* Animation */
    animation: slideIn 0.5s ease-out forwards;
    opacity: 0; /* Initially hidden */
	border: 2px dashed #db0d3d;
	
}

@keyframes slideIn {
    0% {
        top: -50px; /* Start off-screen */
        opacity: 0;
    }
    100% {
        top: 0; /* End position */
        opacity: 1;
    }
}

.save {
	
	font-size: 11pt;
	
}

.discount {
	
	font-size: 14pt;
	font-weight: bold;
	
	
}

.productCol2 h3 {
	
	margin: 0;
	margin-bottom: 10px;
	padding: 0;
	color: #4f4f4f;
	
	
	
}

.shortDesc {
	
	color: #4f4f4f;
	font-size: 12pt;
	line-height: 1.8em;
	
}

.productCol2 {
	
	width: 50%;
	
}



.productCol2 h4 {
	
	margin: 0;
	margin-bottom: 10px;
	padding: 0;
	font-weight: normal;
	color: #4f4f4f;
	
	
}



.productCol2 ul {
	list-style: none; /* Remove default bullets */
	padding-left: 20px;
}

.productCol2 ul li {
	display: flex;
	align-items: center;
	margin-bottom: 8px; /* Space between items */
}

.productCol2 ul li::before {
	content: "✓"; /* Unicode checkmark */
	color: #17669c; /* Tick color */
	font-size: 13px;
	font-weight: bold;

	display: flex;
	align-items: center;
	justify-content: center;

	width: 22px;
	height: 22px;
	background-color: #c3e2f7; /* Circle color */
	border-radius: 50%; /* Make it a circle */
	margin-right: 10px;
}

.productCol2 .price {
	
	text-align: center;
	font-size: 16pt;
	font-weight: bold;
	
	
}

.wasPrice {
	
	color: #6b7f8c;
	text-decoration: line-through;
	font-weight: normal;
	margin-right: 10px;
	
}



.productCol3 {
	
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 25%;
    text-align: center;
    align-self: stretch;
	
}

.productCol3 .merchant {
	
	text-align: center;
	color: #4F4F4F;
	font-size: 12pt;
	font-weight: bold;
	margin: 10px auto;
	
}

.productCol3 .rating {
	
	padding: 20px 0;
	background: #daf0f5;
	color: #3d617a;
	text-align: center;
	margin-bottom: 14px;
	max-width: 120px;
	min-width: 120px;
	border-radius: 0 0 6px 6px;
	margin: auto;
	margin-top: -15px;
	font-weight: bold;
	
}


.productCol3 .ratingText {
	
	font-size: 20pt;
	
	
}

.productCol3 .ratingSubText {
	
	font-size: 13pt;
	
}

a.productButton {
	
	transition: background 0.4s;
	padding: 12px;
	border-radius: 10px;
	width: 100%;
	color: white;
	background: #EE1C25;
	display: block;
	text-decoration: none;
	
	
}


a.productButton:hover {
	
	background: #D40009;
	
	
}


address {
	
	font-size: 16pt;
	margin-bottom: 20px;
	
}

/* pretty pre */

pre {
	
	border: 1px solid #DBDBDB;
	border-radius: 4px;
	background: #EEEEEE;
	padding: 15px;
	width: 100%;
	font-family: arial;
	font-size: 13px;
	word-wrap: break-word;
	white-space: pre-wrap;
	text-align: left;
	margin: 20px auto;
	line-height: 22px;

}

.topNav {
	font-weight: normal !important;
}

.topNavContainer, .copyright {

	background: #72aab5 !important;

}


.topNav a:hover {
	
	color: black;
	
}

.breadcrumbsContainer {

	background: #75728f;

}

.breadcrumbs li a::after, .breadcrumbs li div::after { 

  border-left: 30px solid #75728f;
 
}

.breadcrumbs li a:hover { 
  background: #75728f; 
}
.breadcrumbs li a:hover:after { 
  border-left-color: #75728f !important; 
}

.breadcrumbs li a, .breadcrumbs li div {
	
  background: #75728f; 

  
}


h1.showLodgesHeader, .footer, .a3AccommName, H2.newHeader, H4.newHeader, .attractionsTitle {
	
	background: linear-gradient(to bottom, #625e80, #797596);
	
}


h2.foundNum {
	
	color: #9d9da8;
	
}

.refineHeader, .destinationsHeader, .listPropertyContainer {
	
	background: #b4b4cc;
	color: #635F81;
	
	
}

.container {
	color: black;
}

a.moreInfoButton, a.newButton, .viewButton {
	
	
	background: #EE1C25;
	border: none;
	transition: all 0.2s;
	
}

a.moreInfoButton:hover, a.newButton:hover, .viewButton:hover {
	
	background: #D40009;
	
}






@media only screen and (max-width: 400px) {


	h1.showLodgesHeader {
	
		color: white;
		
	}
}


/* Modern Collection Header Styling */

.collectionHeaderContainer {
    max-width: 1200px;
    margin: 30px auto 25px auto;
    padding: 0 10px;
    text-align: left;
}

.collectionHeaderContainer h1 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 15px 0;
    letter-spacing: -0.3px;
    line-height: 1.3;
    position: relative;
    display: inline-block;
}

.collectionHeaderContainer h1::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #3498db, #2980b9);
    border-radius: 1px;
}

.collectionHeaderContainer p {
    font-size: 1rem;
    color: #5d6d7e;
    line-height: 1.7;
    margin: 0 0 25px 0;
    max-width: 800px;
    font-weight: 400;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .collectionHeaderContainer {
        margin: 15px auto 15px auto;
        padding: 0 15px;
    }
    
    .collectionHeaderContainer h1 {
        font-size: 1.5rem;
    }
    
    .collectionHeaderContainer p {
        font-size: 0.95rem;
        margin: 0 0 20px 0;
    }

	.pageWrapper {
        padding: 0;
    }

	

}

@media (max-width: 480px) {
    .collectionHeaderContainer h1 {
        font-size: 1.3rem;
    }
    
    .collectionHeaderContainer h1::after {
        width: 35px;
        height: 2px;
    }
    
    .collectionHeaderContainer p {
        margin: 0 0 18px 0;
    }
}

/* add box sizing to everything */

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

.bodyNoScroll {
	overflow: hidden;
}

.bigHeader {
	
}

.innerLogo {

	text-align: center;
	
}

/* Header styling */

.numberContainer {

	max-width: 1200px;
	margin: 10px auto 10px auto;
	font-size: 25pt;
	color: #E2FBF2;
	display: flex;
	display: -webkit-flex; 
	flex-direction: row;
	justify-content: center;
	align-items: center;
	position: absolute;
	bottom: 0; 
	right: 10px;
	z-index: 20;
	
}

.headerRow2 {
	
	margin-top: 6px;
		
}


.headerNumber {
	
	font-weight: bold;
	display: inline;
	margin-left: auto;
	font-family: 'Varela Round';
	font-size: 30px;
		
}

.aboutContactTop {
	
	display: flex;
	flex-direction: row;
	position: absolute;
	right: 10px;
	top: 0;
	
}

.aboutTop, .contactTop {
	
	padding: 14px 20px;
	background: #608c21;
	border-radius: 0 0 15px 15px;
	margin: 0 4px;
	color: white;
	
}


a[href^="tel"] {
  color: inherit; /* Inherit text color of parent element. */
  text-decoration: none; /* Remove underline. */
  /* Additional css `propery: value;` pairs here */
}






/* Footer Styling */

.footer {
	
	width: 100%;
	padding: 30px;
	background: linear-gradient(#137C84, #21959D);
	margin-top: 40px;
	box-sizing: border-box;
	
}

.footer li {

	margin-top: 10px;
	
}

.footer i {
	
	color: white;
	
}

.footerSocials {
	
	display: flex;
	justify-content: left;
	align-items: center;
	margin-bottom: 30px;
	margin-top: 30px;
	
}

.footerSocials a {
	
	margin-right: 20px;
	
	
}

.footerSocials i {
	
	font-size: 30pt;
	margin: 0;
	
	
}


.footerInner {

	max-width: 1200px;
	display: flex;
	display: -webkit-flex;
	flex-direction: row;
	-webkit-flex-direction: row;
	margin: auto;
	
}

.copyright {
	
	color: #ffffff;
	margin: 40px 0;
	background: #21959D;
	padding: 20px;
	width: 100%;
	text-align: center;
	box-sizing: border-box;
	font-size: 14pt;
	
}





.footerItem {

	width: 33%;
	margin: 20px;
	color: white;
	
}

.footerHeader {
	
	font-size: 	20px;
	font-weight: bold;
	color: #C1C1C1;
	margin-bottom: 10px;
	
}

ul.footer {

	color: white;
	list-style: none;
	margin: 0;
	padding: 0;
	background: none;
	
}

.fa-facebook, .fa-instagram {
	
	font-size: 50px;
	color: white;
	margin: 10px;
}

a.footerLink:link, a.footerLink:visited, a.footerLink:active {
	
	text-decoration: none;
	font-weight: bold;
	color: white;
	
}

a.footerLink:hover {
	
	color: #9dce75;
	
}

select.availBoxSelect {	
	font-weight: normal;
}	


/*
##########################################

Media Queries

##########################################
*/


@media only screen and (max-width: 600px) {

	.pageNormal {
		display: none;
	}
	
	.pageMobile {
		display: block;
	}

	.paginationContainer {
		
		font-size: 14px;
	
	}
	
	.productWrapper {
		
		width: 100%;
		margin: 0;
		padding: 0;
		
		
	}
	
	.mainContainer {
		
		margin: 0;
		padding: 0 15px;
	}
	
	.productWrapper2 {
		
		width: 100%;
		margin: 0;
		padding: 15px;
		
		
	}

	.product {
		
		flex-direction: column;
		margin: 10px 0;
		width: 100%;
		padding: 0;
		margin-bottom: 20px;
		
		
		
	}
	
	.discountTag {
		left: 20px;
	}


	.productCol1, .productCol2, .productCol3 {

		width: 100%;
	}
	
	.productCol1 img {

		max-width: 60%;
	}
	
	.productCol2 {
		
		padding: 10px;
		padding-bottom: 0;

		
	}
	
	.productCol2 h3 {
		
		font-size: 14pt;
	
	}

	.productCol2 h3, .productCol2 h4 {
		
		width: 100%;
		text-align: center;
		padding-top: 0;
		margin-bottom: 0;
		
	}
	
	.price {
		margin-top: 10px;
	}

	
	.productCol3 {
		
		padding: 10px;
		text-align: left !important;
		padding-top: 0;
		
		
	}


	.productNum {
	
		border-radius: 200px;
		padding: 5px;
		left: -16px;
		top: 60px;
		font-size: 13pt;

	}


	.productCol3 .rating {
		
		position: absolute;
		top: 10px;
		right: 10px;
		padding: 12px 0;
		max-width: 100px;
		min-width: 100px;
		border-radius: 0 0 6px 6px;
	
	}
	
	.productCol3 .rating {
		
		background-color: rgba(218, 240, 245, 0.7);
		
	}


	.productCol3 .ratingText {
		
		font-size: 16pt;
		
		
	}

	.productCol3 .ratingSubText {
		
		font-size: 11pt;
		
	}
	
	.productCol2 ul {
		
		padding: 0;
		margin-left: 20px;
		
	}
	

	.productCol2 ul li {

		font-size: 10pt;
		margin-bottom: 10px;
		line-height: 16px;
		
		
	}
	
	a.productButton {
		
		text-align: center;
		
		
	}

	


	
	
	.headerContainer {
		
		/*border: 1px solid black;*/
		margin: 0;

	}
	
	.sortByContainer {
	
		background: #daf0f5;
		max-width: 100%;
		border-radius: 100px;
		margin: 10px auto;
		padding: 14px 0;
		box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* Soft shadow */
		border: 1px solid #7ab5c2;
		margin-bottom: 6px;
		
	}
	
	.sortByBox {
		
		font-size: 11pt;
		width: 80%;
				
	}

	.sortByBox select {
		
		border-radius: 4px;
		font-size: 11pt;
		padding: 5px;
				
	}
	
	
		

	
	.footer {
	
		margin-top: 0;
		
	}

	
	.footerItem {
		width: 100%;
		margin: 20px 0;
	}
	
	.footerInner {
		
		flex-direction: column;
		-webkit-flex-direction: column;
		
	}

	.buyButton {
	
		position: fixed;
		left: 0;
		bottom: 10px;
		width: 100%;
		border-radius: 0;

		
	}
	
	.productContainer a.buyButton {
	
		border-radius: 0;

	}

	.productContainer .merchantText {
		
		position: fixed;
		left: 0;
		bottom: 0;
		width: 100%;
		background: white;
		font-size: 9pt;
		
	}

	.productFeatures {
		
		
		flex-direction: column;
		
	}
	
	.productFeatures .productFeaturesLeft, .productFeatures .productFeaturesRight { 
	
		width: 100% !important;
		
		
	}
	
	.productFeatures:nth-of-type(3) {
		column-count: 1;
	}
	
	.productContainer {
	
		flex-direction: column;
		
		
	}
	
	.productContainer .productPic {
		width: 100%;
	}
	
	.productContainer .productDesc {
		width: 100%;		
	}
	

	


	
	
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown .dropbtn {
    color: white;
    text-decoration: none;
    padding: 14px 16px;
    display: inline-block;
    transition: background-color 0.3s;
    background: none;
    border: none;
    font-family: inherit;
    font-size: inherit;
    cursor: pointer;
}

.dropdown .dropbtn:hover {
    color: black;
}

.dropdown .dropbtn i {
    margin-left: 8px;
    font-size: 0.8em;
    transition: transform 0.3s;
}

.dropdown:hover .dropbtn i {
    transform: rotate(180deg);
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #ffffff;
    min-width: 220px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1000;
    border-radius: 4px;
    overflow: hidden;
    top: 100%;
    left: 0;
    white-space: normal;
}

.dropdown-content a {
    color: #333 !important;
    padding: 12px 16px;
    text-decoration: none !important;
    display: block !important;
    transition: background-color 0.3s;
    font-size: 12pt;
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background-color: #dde9f8 !important;
    color: #333 !important;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 800px) {
    .dropdown {
        display: block;
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .dropdown .dropbtn {
        display: block;
        width: 100%;
        padding: 16px;
        text-align: left;
        background: none;
        border: none;
        color: white;
        font-size: inherit;
        font-family: inherit;
        cursor: pointer;
        text-decoration: none;
    }
    
    .dropdown .dropbtn:hover {
        color: white;
        background: none;
    }
    
    .dropdown-content {
        position: static;
        display: none;
        box-shadow: none;
        background-color: rgba(255,255,255,0.95);
        margin: 0;
        border-radius: 0;
        min-width: 100%;
    }
    
    .dropdown-content a {
        color: #333 !important;
        padding: 12px 32px !important;
        font-size: 14px !important;
        display: block !important;
        text-decoration: none !important;
        border-bottom: 1px solid #f0f0f0;
        background: white;
        white-space: normal;
        word-wrap: break-word;
        line-height: 1.4;
    }
    
    .dropdown-content a:hover {
        background-color: #f8f8f8 !important;
        color: #333 !important;
    }
    
    .dropdown.mobile-open .dropdown-content {
        display: block;
    }
    
    /* Arrow rotation for mobile */
    .dropdown .dropbtn .rotated {
        -webkit-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        -o-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        transform: rotate(180deg);
    }
}




