/* Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,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");

/* Global Styles Start */
:root {
    --main-pink-color: #e55472;
    --main-white-color: #fdfdfd;
    --main-text-color: #565656;
}

body {
    font-family: sans-serif;
    background-color: var(--main-white-color);
}

.app_container {
    min-height: 100dvh;
    max-width: 100dvw;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 50px;
    padding-top: 75px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

ul {
    list-style: none;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    border: none;
    outline: none;
}

.none {
    display: none !important;
}

.heading {
    width: fit-content;
    margin: auto;
    position: relative;
}

.heading h1 {
    font-size: 30px;
    letter-spacing: 1px;
    line-height: 30px;
    color: #4a4a4a;
    font-weight: 800;
    font-family: "Montserrat", sans-serif;
    text-align: center;
}

.heading::before {
    content: "";
    width: 40px;
    height: 1px;
    background-color: var(--main-pink-color);
    position: absolute;
    top: 50%;
    left: -15%;
    transform: translate(-50%);
}

.heading::after {
    content: "";
    width: 40px;
    height: 1px;
    background-color: var(--main-pink-color);
    position: absolute;
    top: 50%;
    right: -30%;
    transform: translate(-50%);
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

.empty_content {
    position: relative;
    min-height: 45dvh;
    min-width: 100dvw;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    color: var(--main-text-color);
    font-size: 20px;
}

.links {
    width: 100%;
    position: absolute;
    bottom: 0;
    right: 0;
}
/* Global Styles End */

/* Header Section Styles Start */
header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
    padding: 0 30px 0 50px;
    background-color: var(--main-white-color);
    min-height: 70px;
    display: flex;
    align-items: center;
    z-index: 1000000000000;
}

header nav {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header nav .logo img {
    width: 75px;
    height: 75px;
}

header nav .collapse {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 100000;
}

header nav .collapse div {
    height: 0.1rem;
    width: 25px;
    background-color: #000000ac;
    transition: 0.3s;
}

header nav .collapse.active {
    margin-right: 30px;
}

header nav .collapse.active div:nth-child(1) {
    transform: rotate(-45deg);
    position: absolute;
}

header nav .collapse.active div:nth-child(2) {
    display: none;
}

header nav .collapse.active div:nth-child(3) {
    transform: rotate(45deg);
    position: absolute;
}

header nav ul.nav_links {
    align-items: center;
    gap: 15px;
    letter-spacing: 0px;
    line-height: 22px;
    color: var(--main-text-color);
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
    text-align: center;
    text-transform: uppercase;
}

header nav ul.nav_links li {
    position: relative;
    overflow: hidden;
}

header nav ul.nav_links li::before {
    content: "";
    width: 100%;
    height: 1.5px;
    background-color: var(--main-pink-color);
    position: absolute;
    bottom: 0;
    left: -100%;
    transition: 0.3s;
}

header nav ul.nav_links li:hover {
    color: var(--main-pink-color);
}

header nav ul.nav_links li:hover::before,
header nav ul.nav_links li.active::before {
    left: 0;
}

header nav ul.nav_links .none button {
    font-size: 16px;
    letter-spacing: 0px;
    line-height: 22px;
    color: var(--main-text-color);
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
    background-color: transparent;
}

header nav ul.nav_links .none .icon {
    margin-left: 10px;
}

header nav .dropdown {
    position: relative;
}

header nav .dropdown > div {
    cursor: pointer;
    font-size: 12px;
}

header nav .dropdown > div:hover {
    color: var(--main-pink-color);
}

header nav .dropdown .profile_list {
    position: absolute;
    background-color: white;
    z-index: 1000000000;
    width: 120px;
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 13px;
    align-items: start;
    right: 0;
}

header nav .dropdown .profile_list li {
    padding: 0 10px;
    width: 100%;
    text-align: start;
}

header nav ul.nav_links .cart {
    position: relative;
    font-size: 20px;
}

header nav ul.nav_links .cart .icon {
    cursor: pointer;
    transition: 0.1s;
}

header nav ul.nav_links .cart:hover .icon {
    color: var(--main-pink-color);
}

header nav ul.nav_links .cart .cart_count {
    position: absolute;
    border-radius: 50%;
    height: 20px;
    width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: -15px;
    right: -15px;
    font-size: 10px;
    border: gray 1px solid;
}

header nav .dropdown .profile_list li button,
header nav .dropdown .profile_list li a {
    display: block;
    width: 100%;
}

header nav .dropdown .profile_list li button {
    cursor: pointer;
    background-color: transparent;
    text-align: start;
    letter-spacing: 0px;
    line-height: 22px;
    color: var(--main-text-color);
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
}

header nav .dropdown .profile_list li button:hover {
    color: var(--main-pink-color);
}
/* Header Section Styles End */

/* Hero Section Styles Start */
.hero_section {
    width: 100%;
    height: calc(100dvh - 75px);
    background-size: cover;
    background-position: bottom;
    display: flex;
    padding: 0 10%;
    align-items: center;
}

.hero_section .hero_section-content {
    width: 500px;
    display: flex;
    flex-direction: column;
    margin-top: 50px;
}

.hero_section .hero_section-content h1 {
    font-size: 62px;
    color: #434343;
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
}

.hero_section .hero_section-content h1 + p {
    font-size: 20px;
    letter-spacing: 3px;
    color: #434343;
    font-weight: 400;
    font-family: "Montserrat", sans-serif;
}

.hero_section .hero_section-content .line {
    margin: 20px 0;
    width: 100%;
    height: 1.5px;
    background-color: var(--main-pink-color);
}

.hero_section .hero_section-content h1 + p + div + p {
    width: 480px;
    height: 44px;
    font-size: 15px;
    letter-spacing: 0px;
    line-height: 28px;
    color: #000000;
    font-weight: 300;
    font-family: "Poppins";
}

.hero_section .hero_section-content a {
    display: block;
    width: 150px;
    height: 43px;
    border-radius: 26px;
    background-color: var(--main-pink-color);
    color: #fff;
    margin-top: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero_section .hero_section-content a:hover {
    background-color: #e55471c7;
}
/* Hero Section Styles End */

/* New Arrivals Section & Products Styles Start */
.new_arrival_section {
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    padding: 0 40px;
}

.items {
    display: grid;
    justify-content: center;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
    width: 100%;
}

.items .item {
    height: fit-content;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 20px 0px;
    padding: 10px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    max-width: 700px;
}

.items .item .offer {
    position: absolute;
    z-index: 100;
    width: 100%;
    left: -41.5%;
    padding: 10px;
    color: #fff;
    transform: rotate(-45deg);
    text-align: center;
    padding-right: 7%;
}

.items .item .offer.red {
    background-color: red;
}

.items .item .image_container {
    width: 100%;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
}

.items .item .image_container img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: 0.3s;
}

.items .item:hover .image_container img {
    transform: scale(1.17);
}

.items .item .item_info {
    flex: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 5px 0 0;
}

.items .item .item_info .name {
    font-size: 16px;
    letter-spacing: 0px;
    line-height: 28px;
    color: var(--main-text-color);
    font-weight: 600;
    text-transform: uppercase;
    font-family: "Montserrat", sans-serif;
}

.items .item:hover .item_info .name {
    color: var(--main-pink-color);
}

.items .item .item_info .desc {
    font-size: 14px;
    color: #999;
}

.items .item .item_info .price_info {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.items .item .item_info .price_info .price {
    letter-spacing: 0px;
    line-height: 28px;
    color: darkcyan;
    font-weight: 400;
    font-family: "Montserrat", sans-serif;
    text-align: center;
    font-weight: bold;
}

.items .item .item_info .add_to_cart_btn {
    width: fit-content;
    background-color: #f8d7df;
    color: #e55472;
    font-weight: 500;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.1s;
}

.items .item .item_info .add_to_cart_btn:hover {
    background-color: var(--main-pink-color);
    color: #fff;
}
/* New Arrivals Section & Products Styles End */

/* Single Product Section ( page ) Styles Start */
.product-section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-container {
    display: flex;
    gap: 40px;
}

.product-gallery {
    flex: 1;
}

.product-details {
    flex: 1;
    padding: 20px;
}

.main-image-slider {
    position: relative;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
}

.slider-container {
    width: 100%;
    overflow: hidden;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease;
    height: 500px;
}

.slide {
    min-width: 100%;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.7);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
}

.slider-nav.prev {
    left: 15px;
}

.slider-nav.next {
    right: 15px;
}

.thumbnail-container {
    display: flex;
    gap: 10px;
}

.thumbnail {
    width: 70px;
    height: 70px;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
}

.thumbnail.active {
    border-color: var(--main-pink-color);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-title {
    font-size: 28px;
    color: #333;
    margin-bottom: 15px;
    font-family: "Montserrat", sans-serif;
}

.product-price {
    margin-bottom: 15px;
}

.current-price {
    font-size: 24px;
    font-weight: bold;
    color: var(--main-pink-color);
}

.original-price {
    font-size: 18px;
    text-decoration: line-through;
    color: #999;
    margin-left: 10px;
}

.discount {
    font-size: 16px;
    color: #4caf50;
    margin-left: 10px;
}

.product-rating {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.stars {
    color: #ffc107;
    margin-right: 10px;
}

.rating-count {
    color: #666;
    font-size: 14px;
}

.product-description {
    margin-bottom: 25px;
    line-height: 1.6;
    color: #555;
}

.color-variants {
    margin-bottom: 25px;
}

.color-variants h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #333;
}

.color-options {
    display: flex;
    gap: 12px;
}

.color-option {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s;
    border: 2px solid transparent;
}

.color-option:hover {
    transform: scale(1.1);
    border-color: #333;
}

.add-to-cart {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.quantity-btn {
    width: 35px;
    height: 35px;
    background: #f5f5f5;
    border: none;
    font-size: 16px;
    cursor: pointer;
}

.quantity-input {
    width: 50px;
    height: 35px;
    text-align: center;
    border: none;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
}

.add-to-cart-btn {
    flex: 1;
    background-color: var(--main-pink-color);
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.add-to-cart-btn:hover {
    background-color: #d1425e;
}

.product-meta {
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #555;
}

.meta-item i {
    color: var(--main-pink-color);
}
/* Single Product Section ( page ) Styles End */

/* App Forms Styles Start */
.app_form {
    align-self: center;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 50px;
    max-width: 450px;
    overflow: hidden;
    width: calc(100% - 30px);
    letter-spacing: 0px;
    line-height: 22px;
    color: var(--main-text-color);
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
    text-align: center;
    font-size: 14px;
    border: 1px solid var(--main-pink-color);
    border-radius: 15px;
    position: relative;
}
.app_form:has(.form-group textarea) {
    max-width: 700px;
}

.app_form .form-group {
    display: flex;
    flex-direction: column;
    position: relative;
}

.app_form .form-group label {
    position: absolute;
    top: 10px;
    left: 10px;
    transition: top 0.2s;
    cursor: text;
}

.app_form .form-group:has(input:focus) label,
.app_form .form-group:has(textarea:focus) label,
.app_form .form-group label.active {
    top: 2px;
    font-size: 11px;
}

.app_form .form-group input,
.app_form .form-group textarea {
    width: 100%;
    padding: 20px 10px 5px;
    border: 1px solid gray;
    border-radius: 12px;
}

.app_form button {
    background-color: var(--main-pink-color);
    font-weight: bold;
    padding: 10px;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s;
    color: #fff;
    border: 1px solid transparent;
}

.app_form button:hover {
    color: inherit;
    background-color: transparent;
    border: 1px solid var(--main-pink-color);
}

.app_form a {
    position: absolute;
    text-decoration: underline;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.app_form a:hover {
    color: gray;
}
/* App Forms Styles End */

/* Products Section ( page ) Styles Start */
section.products {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

section.products .filter_products_container {
    display: flex;
    gap: 20px;
    padding: 20px 0 50px;
    position: relative;
}

section.products form.filter {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    width: 300px;
    max-width: calc(100% - 30px);
    height: fit-content;
}

section.products form.filter select,
section.products form.filter input {
    padding: 10px 20px;
    height: fit-content;
    border-radius: 10px;
    width: 100%;
    margin-top: 3px;
    border: 1px solid rgb(168, 168, 168);
}

section.products form.filter div {
    width: 100%;
}

section.products form.filter label {
    width: 100%;
    font-size: 13px;
    color: var(--main-text-color);
}

section.products form.filter input {
    border: 1px solid rgb(168, 168, 168);
    width: 100%;
}

section.products form.filter .sorting_select {
    margin-left: auto;
}

.color-picker {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.color-option {
    width: 30px !important;
    height: 30px !important;
    border-radius: 50%;
    border: 2px solid #ccc;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    position: relative;
}

.color-option:has(input:checked) {
    border-color: #000;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.2);
}

section.products form.filter .filter-btn {
    width: 100%;
    cursor: pointer;
    padding: 10px 20px;
    background-color: var(--main-pink-color);
    border-radius: 20px;
    color: #fff;
    border: 1px solid transparent;
    transition: 0.2s;
    height: fit-content;
}

section.products form.filter .filter-btn:hover {
    background-color: transparent;
    color: var(--main-pink-color);
    border: 1px solid var(--main-pink-color);
}

/* Products Section ( page ) Styles End */

/* Orders & Cart Sections Start */
.orders_section {
    width: 100dvw;
    min-height: 50dvh;
    height: fit-content;
    overflow: hidden;
    padding: 20px;
}

.app-table {
    width: calc(100% - 40px);
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 16px;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
}

.app-table thead {
    border-radius: 15px;
    background-color: var(--main-pink-color);
}

.app-table thead th {
    text-align: left;
    padding: 12px 16px;
    color: var(--main-white-color);
    font-weight: 600;
    border-bottom: 2px solid #ddd;
}

.app-table tbody td {
    padding: 12px 16px;
    border-bottom: 1px solid #eee;
    color: #555;
}

.app-table tbody tr:hover {
    background-color: #f9f9f9;
}

.app-table tbody tr:last-child td {
    border-bottom: none;
}
/* Orders & Cart Sections End */

/* Checkout Section ( page ) Styles Start */
.checkout-section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.checkout-title {
    font-size: 28px;
    margin-bottom: 30px;
    color: #333;
    font-family: "Montserrat", sans-serif;
}

.checkout-content {
    display: flex;
    gap: 30px;
}

.checkout-form {
    flex: 2;
}

.order-summary {
    flex: 1;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    height: fit-content;
}

.form-title {
    font-size: 20px;
    margin: 25px 0 15px;
    color: #333;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #555;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-row .form-group {
    flex: 1;
}

.payment-methods {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.payment-method {
    flex: 1;
}

.payment-method input {
    display: none;
}

.payment-method label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.payment-method.active label {
    border-color: var(--main-pink-color);
    background-color: rgba(229, 84, 114, 0.05);
}

.payment-method i {
    font-size: 24px;
    margin-bottom: 5px;
}

.payment-method span {
    font-size: 14px;
}

.credit-card-form {
    margin-top: 20px;
}

.summary-title {
    font-size: 20px;
    margin-bottom: 20px;
    color: #333;
}

.order-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.item-info {
    display: flex;
    gap: 10px;
}

.item-name {
    font-weight: 500;
}

.item-quantity {
    color: #666;
}

.item-price {
    font-weight: bold;
}

.summary-totals {
    margin: 20px 0;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.summary-row.total {
    font-weight: bold;
    font-size: 18px;
    margin-top: 15px;
}

.delivery-info {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.delivery-info h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    margin-bottom: 10px;
    color: #333;
}

.delivery-info i {
    color: var(--main-pink-color);
}

.delivery-info p {
    margin: 5px 0;
    color: #666;
    font-size: 14px;
}

.place-order-btn {
    width: 100%;
    padding: 12px;
    background-color: var(--main-pink-color);
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 20px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.place-order-btn:hover {
    background-color: #d1425e;
}

/* Checkout Section ( page ) Styles End */

/* Footer Section Styles Start */
footer {
    width: 100%;
    min-height: 250px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    color: #d9d9d9;
    background-color: #323232;
    gap: 20px;
    padding: 80px 40px 30px;
    font-family: "Montserrat", sans-serif;
    position: relative;
}

footer .footer_column {
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 20px;
    align-content: center;
}

footer .footer_column:has(img.logo) {
    gap: 0;
    margin-top: -20px;
    justify-content: center;
}

footer .footer_column img.logo {
    width: 200px;
    height: 200px;
    object-fit: cover;
}

footer .footer_column .address {
    text-align: center;
}

footer .footer_column .icons {
    display: flex;
    gap: 10px;
}

footer .footer_column .icons .icon {
    width: 37px;
    height: 37px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
    color: #fff;
    font-size: 1.7rem;
    background: radial-gradient(
        circle at 30% 107%,
        #fdf497 0%,
        #fdf497 5%,
        #fd5949 45%,
        #d6249f 60%,
        #285aeb 90%
    );
}

footer .footer_column .icons .icon:hover {
    transform: scale(1.14);
}

footer .footer_column ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

footer .footer_column ul li {
    transition: 0.3s;
    width: fit-content;
    position: relative;
    overflow: hidden;
    font-size: 0.9rem;
}

footer .footer_column ul li::after {
    content: "";
    width: 100%;
    height: 1px;
    background-color: var(--main-pink-color);
    position: absolute;
    bottom: 0;
    left: -100%;
    z-index: 348974;
    transition: 0.3s;
}

footer .footer_column ul li:hover {
    transform: translateX(10px);
    color: var(--main-pink-color);
}

footer .footer_column ul li:hover::after {
    left: 0;
}
/* Footer Section Styles End */

/* Responsive Styles Start */
@media (max-width: 768px) {
    /* Header Section Start*/
    header nav .collapse {
        display: flex;
    }
    header nav {
        position: relative;
    }
    header nav ul.nav_links {
        display: flex;
        flex-direction: column;
        align-items: start;
        position: absolute;
        height: 100dvh;
        top: 0;
        right: -100%;
        width: 70%;
        box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
        background-color: #fff;
        z-index: 10000;
        transition: 0.5s;
        padding: 80px 0;
    }
    header nav ul.nav_links li {
        text-align: start;
        width: fit-content;
        margin-left: 20px;
        margin-bottom: 10px;
    }
    header nav ul.nav_links .none {
        display: initial !important;
    }
    header nav ul.nav_links.active {
        right: -40px;
    }
    header nav ul.nav_links .cart {
        margin-left: 15px;
        font-size: 16px;
        cursor: pointer;
    }
    header nav ul.nav_links .cart .icon {
        margin-left: 5px;
    }
    header nav .dropdown {
        display: none;
    }
    /* Header Section End */

    /* Hero Section Start */
    .hero_section .hero_section-content {
        width: 100%;
        text-align: center;
    }
    .hero_section .hero_section-content h1 {
        font-size: 42px;
    }
    .hero_section .hero_section-content h1 + p {
        font-size: 20px;
    }
    .hero_section .hero_section-content h1 + p + div + p {
        font-size: 16px;
        width: fit-content;
        line-height: 20px;
    }
    .hero_section .hero_section-content a {
        align-self: center;
        margin-top: 50px;
    }
    /* Hero Section End */

    /* Products Section Start */
    .filter_products_container {
        flex-direction: column;
    }

    section.products .filter_products_container form.filter {
        width: 100%;
        margin: auto;
    }
    /* Products Section End */

    /* Single Product Section Start */
    .product-container {
        flex-direction: column;
    }

    .quantity-selector {
        width: 100%;
        justify-content: center;
    }

    .add-to-cart-btn {
        width: 100%;
    }
    /* Single Product Section End */

    /* Orders Section Start */
    .orders_section table,
    .orders_section table thead,
    .orders_section tbody,
    .orders_section th,
    .orders_section td,
    .orders_section tr {
        display: block;
    }

    .orders_section table thead {
        display: none;
    }

    .orders_section table tr {
        margin-bottom: 15px;
        background: #fff;
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
        padding: 10px;
        border-radius: 6px;
    }

    .orders_section table tr td {
        display: flex;
        justify-content: space-between;
        padding: 10px 8px;
        border: none;
        border-bottom: 1px solid #eee;
    }

    .orders_section table tr td::before {
        content: attr(data-label);
        font-weight: bold;
        color: #333;
    }
    /* Orders Section End */

    /* Checkout Section Start */
    .checkout-content {
        flex-direction: column;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    /* Checkout Section End */

    /* Footer Section Start */
    footer .footer_column:has(img.logo) {
        margin-top: 0;
    }
    /* Footer Section End */
}

@media (max-width: 480px) {
    /* Global Styles Start */
    .heading h1 {
        font-size: 20px;
    }
    .heading::after {
        right: -34%;
    }
    /* Global Styles End */

    /* Header Section Start*/
    header {
        padding: 0 20px;
    }
    /* Header Section End */

    /* Hero Section Start */
    .hero_section .hero_section-content h1 {
        font-size: 32px;
    }
    .hero_section .hero_section-content h1 + p {
        font-size: 15px;
    }
    .hero_section .hero_section-content h1 + p + div + p {
        font-size: 13px;
    }
    .hero_section .hero_section-content a {
        width: 130px;
        height: 40px;
        font-size: 14px;
    }
    /* Hero Section End */

    /* Auth Section Start */
    .app_form a {
        font-size: 12px;
    }
    /* Auth Section End */
}

@media (max-width: 600px) {
    footer .footer_column:has(img.logo) {
        align-items: center;
    }
}

@media (min-width: 769px) {
    /* Header Section Start*/
    header nav ul.nav_links {
        display: flex;
    }
    /* Header Section End */
}

@media (min-width: 991px) {
    /* Header Section Start*/
    header {
        padding: 0 40px;
    }
    /* Header Section End */
}

@media (min-width: 1200px) {
    /* Footer Section Start */
    footer {
        padding: 80px 70px 50px;
    }
    footer hr {
        display: initial;
    }
    /* Footer Section End */
}
/* Responsive Styles End */
