
/* GENERAL RESET */
.boutique-philosophy {
    opacity: 0.3;
    transition: opacity 10.5s ease;
    color:  black;
    text-shadow: 2px 2px 2px #dbd8cd;
}
.boutique-philosophy.show {
    opacity: 1;
}



*, *::after, *::before {
    box-sizing: border-box;
}

/* GLOBAL ELEMENTS */
a {
    text-decoration: none !important;
    font-size: 22.4px;
}

svg {
    color: #28a745;
}

.overflow-hidden {
    overflow: hidden !important;
}

/* HERO BANNER */
.container-fluid {
    padding: 0;
}

.hero-banner img.banner {
    width: 100%;
    height: 60vh;
    object-fit: cover;
    object-position: center;
}

.btn-light {
    background-color: #28a745 !important;
    color: white !important;
    border: none !important;
    box-shadow: 2px 2px 2px #414241;
}

.btn-light:hover {
    background-color: red !important;
    color: black !important;
    font-weight: 600;
}

.display-4 {
    margin-top: 250px;
    color: white !important;
    text-shadow: 3px 3px 3px #f70909;
    opacity: 0.8;
}

.lead {
    color: rgb(248, 7, 7) !important;
    text-shadow: 2px 2px 2px #dbd8cd;
    font-weight: bold;
    font-size: 24.4px;
    opacity: 0.8;
}

/* TYPOGRAPHY */
.element-title {
    color: #28a745 !important;
}

.fontStyle,
.fontStyles,
.item-anchor,
.allProductsView {
    font-family: 'Marcellus', 'Roboto', 'sans-serif' !important;
}

.fontStyle {
    font-size: 18.4px;
}

.fontStyles {
    font-size: 28.4px;
    text-shadow: 2px 2px 2px rgb(226, 248, 228);
}

.item-anchor {
    font-size: 16.4px !important;
}

.item-anchor:hover {
    color: red !important;
    font-weight: 600;
}

.sliderText {
    color: rgb(5, 33, 43) !important;
    text-shadow: 2px 2px 2px #dbd8cd;
    opacity: 0.8;
}

/* NAVIGATION */
.dropdown-item {
    font-size: 12.4px;
    text-align: center;
}

.dropdown-item:hover {
    background-color: #28a745 !important;
    color: white !important;
}

.dropdown-menu {
    color: white !important;
}

.nav-icon {
    position: relative;
}

.nav-icon:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: #28a745;
    color: white;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    white-space: nowrap;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    opacity: 1;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.nav-icon::after {
    opacity: 0;
}

/* ZOOM BUTTON */
#new-arrival .btn-zoom {
  background: white;
  border-radius: 4px;
  padding: 2px;
  width: 14px;
  height: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.zoom-modal img,
.modal .zoomed-image,
.modal .product-image {
    width: 100%;
    height: auto;
    max-height: 90vh;
    object-fit: contain !important;
    display: block;
    margin: 0 auto;
}

.zoom-modal img {
    opacity: 0;
    transform: scale(0.97);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.zoom-modal.show img {
    opacity: 1;
    transform: scale(1);
}
.btn-dark{

    background-color:#28a745;
}
.btn-dark:hover {
   background-color: red !important;
    color:black;
    font-weight: 600;
}

button.add-to-cart{
    background-color: #28a745;
    border-radius: 8%;
    color:white;
}
button.add-to-cart:hover{
   background-color: red !important;
    color:black;
    font-weight: 600
}

.btn-zoom :hover {
  color:black;
     border-radius: 4px;
     border-style: solid;
    padding: 5px;
  width: 14px;
  height: 10px;
  background-color:  rgba(245, 48, 48, 0.85);
}

.btn-primary:hover{
    background-color: #f70909;
    color:black;
    font-weight: 600;

}
.text-dark:hover{
font-weight: 700;
color: #28a745 !important;
}
.text-danger:hover{
    font-weight: 700;
    color: #28a745 !important;
}

/* IMAGE HOVER */
.image-holder img {
    transition: transform 0.3s ease;
}

.image-holder:hover img {
    transform: scale(1.03);
}

/* TEEN SECTION */
.teen-new-arrivals {
    padding: 80px 0;
    text-align: center;
}

.teen-new-arrivals h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    font-weight: 600;
    letter-spacing: 1px;
}

.teen-image-row {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.teen-img {
    width: 280px;
    height: 380px;
    object-fit: cover;
    border-radius: 12px;
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.teen-img.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.teen-img:hover {
    transform: scale(1.06);
    transition: transform 0.4s ease;
    cursor: pointer;
}

.teen-img-wrapper {
    position: relative;
    display: inline-block;
    overflow: hidden;
    border-radius: 12px;
}

.teen-img-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.15) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.teen-img-wrapper:hover::after {
    opacity: 1;
}

.teen-caption {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

.teen-img-wrapper:hover .teen-caption {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* BRAND SHOWCASE */
.brand-showcase {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.brand-logo {
    max-width: 120px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.brand-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* PRODUCT CARDS */
.product-item {
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
}

.product-image {
    height: 420px;
    object-fit: cover;
    width: 100%;
    border-radius: 8px;
}

.product-content {
    text-align: center;
}

/* SWIPER ARROWS */
.product-swiper .icon-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
}

.product-swiper .icon-arrow-left {
    left: 10px;
}

.product-swiper .icon-arrow-right {
    right: 10px;
}

.product-swiper .icon-arrow svg {
    fill: #28a745;
    transition: 0.2s ease;
}

.product-swiper .icon-arrow:hover svg {
    fill: #000;
}
.product-swiper .swiper-pagination {
    position: absolute;
    bottom: -30px; /* move dots downward */
    left: 0;
    width: 100%;
    z-index: 20;
}
.brand{
    transition: opacity 10.5s ease;
    color:  black;
  text-shadow: 2px 2px 2px #dbd8cd;
}
/* SEARCH BAR — Boutique Style */
.search-form {
    width: 260px;
    margin-top: 25px; /* adjust to align with your navbar */
}

.search-input {
    height: 38px;
    border-radius: 20px;
    border: 1px solid #28a745;
    padding-left: 14px;
    font-size: 15px;
    transition: all 0.25s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
}

.search-input:focus {
    outline: none;
    border-color: #136125;
    box-shadow: 0 0 6px rgba(40,167,69,0.4);
}

.search-input::placeholder {
    color: #6c757d;
    opacity: 0.8;
}
.search-input {
    background: url('./Images/search-icon.svg') no-repeat 10px center;
    background-size: 16px;
    padding-left: 36px;
}





