@import url(https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;800;900&display=swap);

body {
    font-family: 'Inter', sans-serif;
    background: #F5ECD5;
}

html, body {
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.mainContent {
    flex: 1 1 auto;
}

footer{
     flex: 0 0 auto;
}

.section{
    margin-top: 45px;
}

.sectionTitle{
    text-align: center;
}

.sectionTitle h2{
    color: #131313;
    font-size: 32px;
    margin-top: 5px;
}

.sectionTitle p{
    font-size: 14px;
    color: #F56800;
}

.titlePage{
    margin-top: 10px;
}

.titlePage h1{
    font-size: 32px;
    color: #131313;
}

.breadcumbs{
    display: flex;
    overflow-x: auto;
    gap: 5px;
    margin-top: 5px;
}

.breadcumbs a, .breadcumbs p{
    font-size: 14px;
} 

.breadcumbs a{
    color: #F56800;
}

.breadcumbs a::after{
    content: '/';
    margin-left: 5px;
}

.breadcumbs p{
    color: #999;
}

.centerBtnContainer{
    display: flex;
    justify-content: center;
    margin-top: 25px;
}

.btn{
    display: inline-block;
    border-radius: 100px;
    transition: .4s;
    font-size: 14px;
}

.btnMain{
    background: #F56800;
    padding: 16px 32px;
    color: #fff;
    font-weight: 500;
}

.btnMain:hover{
    background: #df5d00;
}

.btnUnderline{
    text-decoration: underline !important;
    color: #fff;
}

.btnUnderline:hover{
    text-decoration: none !important;
}

@media(min-width: 320px) and (max-width: 550px){
    .sectionTitle h2{
        font-size: 22px;
        text-align: center;
    }

    .titlePage h1{
        font-size: 22px;
    }
}

.breadcumbs{
    display: flex;
    overflow-x: auto;
    gap: 5px;
}

.breadcumbs a, .breadcumbs p{
    font-size: 14px;
} 

.breadcumbs a{
    color: #F56800;
}

.breadcumbs a::after{
    content: '/';
    margin-left: 5px;
}

.breadcumbs p{
    color: #999;
}

.productControls{
    margin-top: 15px;
    width: 150px;
}

.quantitySelector {
	display: flex;
    justify-content: space-between;
	align-items: center;
	gap: 5px;
	background: #fff;
	padding: 5px;
	border-radius: 100px;
    width: auto;
}

.quantitySelector input{
	text-align: center;
	/* width: 55px; */
    width: calc(100% - 85px);
    height: 36px;
	background: #FFF0E5;
	color: #F56800;
	border-radius: 20px;
}

.quantitySelector button {
	display: flex;
	justify-content: center;
	align-items: center;
	background: #f56800;
	width: 36px;
	height: 36px;
	border-radius: 50%;
}

.quantitySelector button img{
	width: 10px;
	height: 16px;
    user-select: none;
    -webkit-user-drag: none;
}

.quantitySelector span {
	font-weight: bold;
}

.cartNotifications {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 260px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.cartNotification {
    background: #F56800;
    color: white;
    padding: 12px 16px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    opacity: 0;
    transform: translateY(-10px);
    animation: slideIn 0.4s forwards, fadeOut 0.4s 2.6s forwards;
    font-size: 14px;
    font-weight: 500;
    pointer-events: all;
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
        transform: translateY(-10px);
    }
}

.textComponent {
    font-size: 16px;
    line-height: 1.6;
    color: #222;
}

.textComponent h2,
.textComponent h3,
.textComponent h4 {
    margin-bottom: 0.5em;
    line-height: 1.3;
    font-weight: 600;
    color: #131313;
}

.textComponent h2 {
    font-size: 28px;
}

.textComponent h3 {
    font-size: 22px;
}

.textComponent h4 {
    font-size: 18px;
}

.textComponent p {
    margin-bottom: 1em;
}

.textComponent ul,
.textComponent ol {
    margin: 1em 0 1em 1.5em;
    padding-left: 1em;
}

.textComponent ul li,
.textComponent ol li {
    list-style: disc;
    margin-bottom: 0.5em;
}

.textComponent ul li::marker {
    color: #df5d00;
}

.textComponent a {
    color: #df5d00;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.textComponent a:hover {
    color: #1B3A3F; 
    text-decoration: none;
}

.textComponent strong {
    font-weight: 600;
    color: #1B3A3F;
}

@media (max-width: 1024px) {
    .textComponent h2 {
        font-size: 24px;
    }

    .textComponent h3 {
        font-size: 20px;
    }

    .textComponent h4 {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .textComponent {
        font-size: 15px;
    }

    .textComponent h2 {
        font-size: 22px;
    }

    .textComponent h3 {
        font-size: 18px;
    }

    .textComponent h4 {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .textComponent {
        font-size: 14px;
    }

    .textComponent h2 {
        font-size: 20px;
    }

    .textComponent h3 {
        font-size: 17px;
    }

    .textComponent h4 {
        font-size: 15px;
    }

    .textComponent ul,
    .textComponent ol {
        margin-left: 1em;
        padding-left: 0.8em;
    }
}