/* RESET */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html,body{
width:100%;
max-width:100%;
overflow-x:hidden;
}

/* LINKS */

.logo-link{
text-decoration:none;
color:black;
}

/* BODY */

body{
background:#f3ede8;
font-family:Georgia, serif;
}

/* HEADER */

.fenty-header{
position:relative;
text-align:center;
padding:20px 0;
border-bottom:1px solid #d9d9d9;
background:white;
z-index:2000;
}

.fenty-header h1{
margin:0;
font-size:22px;
letter-spacing:6px;
font-weight:500;
font-family:Arial, sans-serif;
}

/* SECTION */

.categories-section{
width:100%;
padding:30px 4vw 50px;
}

.sub-title{
text-align:center;
font-family:Arial, sans-serif;
font-size:11px;
letter-spacing:4px;
color:#000;
margin-bottom:22px;
}

/* WRAPPER */

.categories-wrapper{
position:relative;
width:100%;
}

/* GRID */

.categories-slider{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:18px;
width:100%;
}

/* CARD */

.category-card{
width:100%;
text-align:center;
}

/* IMAGE BOX */

.category-image-box{
position:relative;
width:100%;
height:650px;
background:#ebe3dc;
overflow:hidden;
}

/* IMAGES */

.category-image-box img{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
object-fit:cover;
display:block;
transition:transform 0.5s ease, opacity 0.4s ease;
}

/* SECOND IMAGE */

.img-hover{
opacity:0;
}

/* IMAGE SWITCH */

.category-image-box:hover .img-main{
opacity:0;
transform:scale(1.06);
}

.category-image-box:hover .img-hover{
opacity:1;
transform:scale(1.06);
}

/* LABEL */

.category-label{
display:block;
margin-top:20px;
text-align:center;
font-family:Arial, sans-serif;
font-size:12px;
letter-spacing:4px;
color:#000;
}

/* VIEW BUTTON */

.view-product-btn{
position:absolute;
left:50%;
bottom:22px;
transform:translateX(-50%);
width:80%;
padding:14px 18px;
border:1px solid #000;
background:rgba(255,255,255,0.95);
color:#000;
text-decoration:none;
text-align:center;
font-family:Arial, sans-serif;
font-size:11px;
letter-spacing:4px;
opacity:0;
transition:0.3s;
z-index:2;
}

.category-image-box:hover .view-product-btn{
opacity:1;
}

.view-product-btn:hover{
background:#000;
color:#fff;
}

/* SHADE SELECT */

.shade-select{
position:absolute;
left:50%;
bottom:70px;
transform:translateX(-50%);
width:80%;
padding:14px 18px;
border:1px solid #000;
background:rgba(255,255,255,0.95);
font-family:Arial, sans-serif;
font-size:11px;
letter-spacing:4px;
text-align:center;
opacity:0;
transition:opacity 0.3s ease;
z-index:2;

appearance:none;
-webkit-appearance:none;
-moz-appearance:none;

color:#000;
}

.shade-select option{
color:black;
}

.category-image-box:hover .shade-select{
opacity:1;
}

/* MOBILE TOUCH */

.category-image-box:active .shade-select{
opacity:1;
}

.category-image-box:active .view-product-btn{
opacity:1;
}

/* NAV BUTTONS HIDDEN */

.nav-btn{
display:none;
}

/* TABLET */

@media (max-width:900px){

.categories-slider{
grid-template-columns:repeat(2,1fr);
}

.category-image-box{
height:480px;
}

.view-product-btn{
width:84%;
font-size:10px;
letter-spacing:3px;
padding:12px 14px;
}

}

/* MOBILE */

@media (max-width:600px){

.categories-section{
padding:20px 12px 40px;
}

.categories-slider{
grid-template-columns:1fr;
gap:20px;
}

.category-image-box{
height:420px;
}

.sub-title{
margin-bottom:16px;
font-size:10px;
letter-spacing:3px;
}

.view-product-btn{
width:88%;
font-size:10px;
letter-spacing:3px;
padding:12px 12px;
bottom:16px;
opacity:0;
}

.shade-select{
opacity:0;
bottom:70px;
}

}

/* FOOTER */

.footer-findus{
text-align:center;
padding:30px 0;
border-top:1px solid #d9d9d9;
background:white;
margin-top:60px;
}

.footer-findus h1{
margin:0;
font-size:22px;
letter-spacing:6px;
font-weight:500;
font-family:Arial, sans-serif;
color:black;
}

/* SOCIAL ICONS */

.social-icons{
margin-top:20px;
display:flex;
justify-content:center;
gap:25px;
}

.social-icons a{
font-size:22px;
color:black;
transition:0.3s;
}

.social-icons a:hover{
opacity:0.6;
}

/* ANNOUNCEMENT BAR */

.announcement-bar {
width: 100%;
height: 34px;
background: #f1f1f1;
border-bottom: 1px solid #e6e0db;
display: flex;
align-items: center;
justify-content: center;
gap: 15px;
font-family: Arial, sans-serif;
font-size: 11px;
letter-spacing: 2px;
color: #000;
overflow: hidden;
}

.announcement-container {
width: 420px;
overflow: hidden;
text-align: center;
}

.announcement-slider {
display: flex;
transition: transform 0.3s ease;
}

.announcement-item {
min-width: 100%;
}

.announce-btn {
border: none;
background: none;
font-size: 16px;
cursor: pointer;
color: #000000;
}

.announce-btn:hover {
color: black;
}

@media (max-width: 600px) {

.announcement-bar {
height: 32px;
gap: 8px;
font-size: 9px;
letter-spacing: 1.5px;
padding: 0 8px;
}

.announcement-container{
width:100%;
max-width:420px;
}

.announce-btn {
font-size: 14px;
}

.footer-findus h1 {
font-size: 18px;
letter-spacing: 4px;
}

.social-icons {
gap: 18px;
}

.social-icons a {
font-size: 20px;
}

}

/* ========================= */
/* HAMBURGER MENU ICON */
/* ========================= */

.menu-icon{
position:absolute;
left:8px;
top:50%;
transform:translateY(-50%);
width:14px;
height:9px;
display:flex;
flex-direction:column;
justify-content:space-between;
cursor:pointer;
z-index:6000;
}

.menu-icon span{
display:block;
height:1px;
width:100%;
background:#000;
transition:0.3s;
}

.menu-icon.active span:nth-child(1){
transform:rotate(45deg) translate(3px,3px);
}

.menu-icon.active span:nth-child(2){
opacity:0;
}

.menu-icon.active span:nth-child(3){
transform:rotate(-45deg) translate(3px,-3px);
}

/* ========================= */
/* MEGA MENU */
/* ========================= */

.mega-menu{
position:fixed;
top:95px;
left:0;
width:100%;
height:50vh;
background:#f3ede8;
z-index:3000;
padding:40px 80px;
transform:translateY(-20px);
opacity:0;
pointer-events:none;
transition:transform 0.35s ease, opacity 0.35s ease;
}

.mega-menu.active{
transform:translateY(0);
opacity:1;
pointer-events:auto;
}

.mega-grid{
display:grid;
grid-template-columns:repeat(5,1fr);
gap:30px;
max-width:1400px;
margin:auto;
}

.mega-item{
text-decoration:none;
color:black;
}

.mega-item img{
width:100%;
height:220px;
object-fit:cover;
transition:0.3s;
}

.mega-item:hover img{
transform:scale(1.05);
}

.mega-item p{
text-align:center;
font-size:11px;
letter-spacing:4px;
margin-top:14px;
font-family:Arial;
}

/* ========================= */
/* MOBILE MENU */
/* ========================= */

.mobile-menu{
position:fixed;
top:0;
left:-100%;
width:84%;
max-width:380px;
height:100dvh;
background:#f7f7f5;
z-index:5000;
transition:left 0.35s ease;
overflow-y:auto;
}

.mobile-menu.active{
left:0;
}

.mobile-overlay{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.15);
opacity:0;
pointer-events:none;
transition:0.3s;
z-index:4000;
}

.mobile-overlay.active{
opacity:1;
pointer-events:auto;
}

/* BODY LOCK */

body.menu-open{
position:fixed;
width:100%;
overflow:hidden;
}

/* MOBILE MENU CONTENT */

.mobile-menu-header{
display:flex;
justify-content:space-between;
align-items:center;
padding:24px;
border-bottom:1px solid #dcdcdc;
font-family:Arial;
letter-spacing:5px;
}

.mobile-menu-content{
padding:0 24px 120px;
}

/* MOBILE MENU LINKS */

.mobile-menu-link{
display:flex;
justify-content:space-between;
align-items:center;
width:100%;
padding:26px 0;
border-bottom:1px solid #dcdcdc;
background:none;
border:none;
font-family:Arial;
font-size:14px;
letter-spacing:4px;
text-decoration:none;
color:black;
text-transform:uppercase;
cursor:pointer;
text-align:left;
}

/* BRANDS COMBO */

.combo-icon{
font-size:28px;
font-weight:300;
line-height:1;
transition:0.25s ease;
}

.mobile-menu-group.active .combo-icon{
transform:rotate(45deg);
}

.mobile-submenu{
display:none;
background:#ececea;
}

.mobile-menu-group.active .mobile-submenu{
display:block;
}

.mobile-submenu a{
display:block;
padding:18px;
border-top:1px solid #d6d6d6;
font-family:Arial;
font-size:13px;
letter-spacing:4px;
text-decoration:none;
text-transform:uppercase;
color:#3a3a3a;
}

/* GLOWERS WORLD */

.mobile-world-title{
padding:30px 0 35px;
font-family:Arial;
font-size:18px;
letter-spacing:6px;
}

.mobile-world-title strong{
font-weight:800;
margin-right:6px;
}

.mobile-world-links{
display:flex;
flex-direction:column;
align-items:center;
gap:20px;
}

.mobile-world-links a{
text-align:center;
text-decoration:none;
color:#888;
font-family:Arial;
font-size:14px;
letter-spacing:4px;
text-transform:uppercase;
}

/* FIND US */

.findus-submenu{
display:none;
flex-direction:column;
align-items:center;
margin-top:8px;
}

.findus-submenu.active{
display:flex;
}

.findus-submenu a{
text-align:center;
padding:10px 0;
font-family:Arial;
font-size:13px;
letter-spacing:4px;
text-decoration:none;
color:#888;
}

/* RESPONSIVE */

@media (max-width:600px){

.mega-menu{
display:none !important;
}

}

@media (min-width:601px){

.mobile-menu,
.mobile-overlay{
display:none;
}

}
.findus-toggle{
border-bottom:none;
padding:0;
justify-content:center;
}

/* OUR STORY SECTION */

.our-story-section{
width:100%;
padding:80px 6vw;
background:#f3ede8;
}

.story-subtitle{
text-align:center;
font-family:Arial, sans-serif;
font-size:11px;
letter-spacing:4px;
margin-bottom:40px;
}

.our-story-container{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
max-width:1100px;
margin:auto;
}

.story-image img{
width:100%;
height:auto;
display:block;
}

.story-text h2{
font-family:Arial, sans-serif;
font-size:18px;
letter-spacing:3px;
margin-bottom:20px;
}

.story-text p{
font-family:Georgia, serif;
font-size:14px;
line-height:1.8;
color:#333;
margin-bottom:25px;
}

.story-btn{
display:inline-block;
text-decoration:none;
font-family:Arial, sans-serif;
font-size:11px;
letter-spacing:3px;
color:black;
border-bottom:1px solid black;
padding-bottom:3px;
}

/* MOBILE */

@media(max-width:768px){

.our-story-container{
grid-template-columns:1fr;
gap:30px;
text-align:center;
}

.story-text h2{
font-size:16px;
}

}
.about-header{
position:absolute;
right:35px;
top:50%;
transform:translateY(-50%);
font-family:Arial, sans-serif;
font-size:11px;
letter-spacing:4px;
text-decoration:none;
color:black;
padding-bottom:3px;
border-bottom:1px solid transparent;
transition:0.25s;
}

.about-header:hover{
border-bottom:1px solid black;
opacity:0.7;
}

/* اخفاءه في الجوال */

@media (max-width:768px){

.about-header{
display:none;
}

}