/* Scent note library */
main {
    background-color: #fff;
}
h1 {
    padding-top: 35px !important;
    display: block;
    text-align: center;
    font-size: 35px !important;
}
.alphabet-scroll-wrapper {
	position: sticky;
	top: 0;
	z-index: 9;
}
.alphabet-menu {
	background: white;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 30px;
	padding: 30px;
	border-bottom: 1px solid #ddd;
}
.alphabet-menu a {
	text-decoration: none;
	color: black;
	font-family: 'poppinssemibold' !important;
	font-size: 20px;
}

.alphabet-menu .disabled {
	color: gray;
	pointer-events: none;
	font-weight: bold !important;
	font-size: 20px;
	font-family: 'poppinssemibold';
}

.section {
  padding: 40px 20px 20px;
}

.section h2 {
	margin-bottom: 10px;
	padding-top: 20px;
	font-size: 24px;
	font-family: 'poppinssemibold' !important;
}

.note-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px;
}

.note-content {
  text-align: center;
  cursor: pointer;
}
.note-content a {
	color: #000;
}
.note-content a:hover {
	font-family: 'poppinssemibold' !important;
	color: #000;
}

.note-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.note-content span {
  display: block;
  margin-top: 8px;
  font-size: 16px;
  transition: all 0.2s ease;
}

.note-content:hover span,
.note-content.active span {
  font-weight: 600;
  text-decoration: underline;
}
@media only screen and (max-width: 1190px){
	.alphabet-menu {
		gap: 25px;
	}
}
@media only screen and (max-width: 1063px){
	.alphabet-scroll-wrapper {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		-webkit-overflow-scrolling: touch; /* mượt trên iOS */
		scrollbar-width: none; /* ẩn scrollbar Firefox */
	}
	.alphabet-menu {
	  display: flex;
	  gap: 25px;
	  padding: 10px;
	  white-space: nowrap;
	    width: max-content;
	}

	.alphabet-scroll-wrapper::-webkit-scrollbar {
	  display: none; /* ẩn scrollbar Chrome/Safari */
	}
	
	.alphabet-menu span, .alphabet-menu a{
		font-size: 30px !important;
	}
}
@media (min-width: 768px) {
  .note-grid {
	grid-template-columns: repeat(5, 1fr);
  }
}

@media (max-width: 767px) {
  .note-grid {
	grid-template-columns: repeat(3, 1fr);
  }
  
  .sf-li-content{ padding:unset; }
}
/* END Scent note library */
/* SF Scent note detail page */
.sf-note-detail {
  margin: 0 auto;
  padding-top: 40px;
  text-align: center;
}
.sf-note-detail h2 {
  font-size: 32px;
  margin-bottom: 20px;
}
.sf-note-detail .note-img img {
  max-width: 350px;
  margin: 0 auto;
}
.sf-note-detail .note-desc p {
  font-size: 16px;
  margin: 20px auto 40px;
  max-width: 600px;
}
.product-section-title {
	font-size: 20px;
    text-transform: uppercase;
    margin: 25px 0 20px;
    font-family: 'poppinssemibold' !important;
	letter-spacing: 1.5px;
}
.sf-product-grid {
	display: grid;
    grid-template-columns: repeat(auto-fill, minmax(30%, 1fr));
    gap: 30px;
    text-align: center;
    list-style: none;
    padding-left: 0px;
}
.sf-product-item h4 {
  font-size: 16px;
  margin-top: 10px;
}
.sf-product-item .meta {
  font-size: 14px;
  color: #555;
}
#sf-content {
    max-width: 1400px;
}
li.product .woocommerce-loop-product__title {
    font-size: 17px !important;
    letter-spacing: 0px !important;
    font-family: 'poppinssemibold' !important;
    font-weight: normal !important;
}
li.product .price {
    color: #ababab;
    font-size: 11px;
    font-style: italic;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    line-height: 18px;
    margin: 0;
}
/* li.product:nth-child(3n+1) { */
    /* clear: left; */
/* } */
/* END SF Scent note detail page */


