@import url('https://fonts.googleapis.com/css2?family=Kotta+One&family=Outfit:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Kotta One", serif;
    box-sizing: border-box;
}


:root{
    --text_4: rgba(0, 0, 0, 0.3);
    --text_sha: 5px 20px 5px #000000;
    --box: 0px 4px 10px rgb(0, 0, 0);
    --blanco: #FFFFFF;
    --negro-profundo: #1a1a1a;
    --fondo: #0000007b;
    --dorado: #D4AF37;
    --gris-industrial: #2d2d2d;
    --negro-carbon: #121212;
    --gris-acero: #95A5A6;
}
body{
    margin: 0;
    padding: 0;
    position: relative;
    min-height: 90vh;
    padding-bottom: 200px;
    line-height: 1.5;

}
.header{
    position: fixed;
    background-color: var(--negro-carbon);
    color: var(--dorado);
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    z-index: 100;
    top: 0; 
}
.main{
    margin: 80px 0 0 0;
    min-height: 90vh;
}
.logo {
    display: flex;
    align-items: center;
    font-size: 25px;
    
}

.logo a{
    text-decoration: none;
    color: var(--dorado);
    font-size: 25px;

}



.logo img {
    width: 50px;
    height: 50px;
    border-radius: 70%;
    margin-right: 10px;
}
.carrito-icon {
    position: relative;
    font-size: 24px;
    text-decoration: none;
    color: white;
}

#cart-counter {
    position: absolute;
    top: -4px;
    right: -10px;
    background-color: red;
    color: white;
    font-size: 8px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    line-height: 20px;
    font-weight: bold;
    
}

  

.menu {
    display: flex;
    gap: 2rem;
}

.menu a {
    text-decoration: none;
    color: white;
    font-style: italic;
    transition: .3s all;
    font-size: 17px;

}
.menu a:hover{
    color: var(--dorado);
    transform: translateY(-8%);
    scale: 105%;

}




.text {
    text-align: center;
    margin-top: 3rem;
    color: var(--dorado);
    font-size: 30px;
}
.text h3{
    font-size: 2.5rem;
   
}

.menu a {
    text-decoration: none;
    
    transition: 0.3s;
    font-style: italic;
}

.menu a.active {
    font-weight: bold;
    position: relative;
    color: var(--dorado);
}

.menu a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px; 
    width: 100%;
    height: 3px;
    
    background-color: var(--dorado); 
    border-radius: 5px;
}


.menu-icons {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.menu-icons a {
    color: white;
    font-size: 24px;
    text-decoration: none;
    transition: 0.3s;
}

.menu-icons a:hover {
    color: var(--dorado);
}

.profile-menu {
    position: relative;
    display: inline-block;
}

.profile-menu {
    position: relative;
    display: inline-block;
}

.profile-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 30px;
    color: white;
}

.profile-dropdown {
    width: 120px;
    display: none;
    position: absolute;
    right: 0;
    background-color: #222;
    border-radius: 5px;
    padding: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.profile-dropdown a {
    font-size: 13px;
    display: block;
    color: white;
    text-decoration: none;
    padding: 10px;
    transition: background 0.3s;
}

.profile-dropdown a:hover {
    background-color: rgb(0, 0, 0);
}

.profile-dropdown.active {
    display: block;
}

.footer-cont{
	max-width: 1170px;
	margin:auto;
    
}
.row{
	display: flex;
	flex-wrap: wrap;
    justify-content: space-between;
   
}
ul{
	list-style: none;
}
.footer{
	background-color: var(--negro-carbon);
    padding: 20px 0;
    box-shadow: 3px 5px 10px;
    position: absolute;
    bottom: 0;
    width: 100%;
}
.footer-col{
   width: 25%;
   padding: 0 15px;
}
.footer-col h4{
	font-size: 18px;
	color: #ffffff;
	text-transform: capitalize;
	margin-bottom: 35px;
	font-weight: 500;
	position: relative;
}
.footer-col h4::before{
	content: '';
	position: absolute;
	left:0;
	bottom: -15px;
	background-color: var(--dorado);
	height: 2px;
	box-sizing: border-box;
	width: 140px;
}
.footer-col ul li:not(:last-child){
	margin-bottom: 10px;
}
.footer-col ul li a{
	font-size: 16px;
	text-transform: capitalize;
	color: var(--gris-acero);
	text-decoration: none;
	font-weight: 300;
	display: block;
	transition: all 0.3s ease;
}
.footer-col ul li a:hover{
	color: var(--dorado);
	padding-left: 8px;
}
.footer-col .social-links a{
	display: inline-flex; 
    justify-content: center; 
    align-items: center;  
    height: 50px; 
    width: 50px; 
    background-color: rgb(255, 255, 255);
    margin: 0 10px 10px 0;
    text-align: center;
    overflow: hidden;
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.5s ease;
}

.footer-col .social-links a i{
    font-size: 30px;
    
}
.footer-col .social-links a:hover{
	color: var(--dorado);
	background-color: var(--dorado);
}
.footer-col .social-links .fa i{
    color: #0046de;
}
.footer-col .social-links .ig i{
    background: linear-gradient(to right, #833AB4, #FD1D1D, #FDCB82);
    border-radius: 10px;
}

.footer-col .social-links .wp i{
    color: #25D366;
    font-size: 40px;   
}
.footer-col .social-links .tt img{
    height: 35px;
    width: 35px;
    font-size: 40px;
    
}

/* seetalert */
.swal2-success-line-tip,
    .swal2-success-line-long {
        background-color: #D4AF37 !important; /* Cambia el color del check */
    }
    .swal2-success-ring {
        border-color: #D4AF37 !important; /* Cambia el color del círculo */
    }
.custom-alert .swal2-success {
    display: none; /* Oculta el icono verde */
}
.custom-alert::before {
    content: "✔"; /* Puedes cambiarlo por otro símbolo */
    font-size: 50px;
    color: #D4AF37; /* Color dorado */
    display: block;
    text-align: center;
    margin-bottom: 10px;
}
.btn-custom {
    background-color: #D4AF37 !important;  /* Cambia al color dorado */
    color: white !important;
    border-radius: 10px;
    padding: 10px 20px;
    font-size: 16px;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}
.btn-custom:hover {
    background-color: #b28e2c !important; /* Color más oscuro al pasar el mouse */
}

@media (max-width: 768px) {
    .header{
        display: flex;
        flex-direction: column;
    }
    body{
        padding-bottom: 390px;
    }
    .menu a{
        display: flex;
        margin-top: 10px;
        font-size: 15px;
    }
    .menu-icons {
        margin-top: 10px;
    }
    .footer-col{
        width: 50%;
        margin-bottom: 30px;
    }
    
    .logo {
      
        margin-left: -70%;
    }
    .menu-icons {
        margin-right: -70%;
        position: absolute;
    }
    
}

@media (max-width: 568px) {
    .logo {
      
        margin-left: -55%;
    }
    .footer-col{
        width: 50%;
    }
    .footer-col .social-links{
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
        
    }
}