@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&family=Manrope:wght@200..800&family=Marcellus&family=Vujahday+Script&display=swap');
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Figtree', sans-serif;
    line-height: 1.6;
    color: #000000;
    background-color: #ffffff;
    scroll-behavior: smooth;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 64px;
}

/* Typography */
.script-heading {
    font-family: "Vujahday Script", cursive;
    font-size: 46px;
    font-weight: 400;
    color: #DCA000;
    text-align: center;
    line-height: 60px;
    text-transform: capitalize;
}

.main-heading {
    font-family: "Cinzel", serif;
    font-weight: 700;
    font-size: 48px;
    color: #263238;
    text-align: center;
    line-height: 1.5;
    text-transform: uppercase;
}

/* Header Styles */
.top-header {
    background-color: #f4f7f9;
    border-bottom: 1px solid #f3f3f3;
    height: 40px;
}

.top-header .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
}

.header-links {
    display: flex;
    align-items: center;
    gap: 16px;
    height: 100%;
}

.header-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 0;
    text-decoration: none;
    color: #000000;
    font-family: 'Figtree', sans-serif;
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    line-height: 18px;
    transition: color 0.3s ease;
}

.header-link:hover {
    color: #dca000;
}

.header-link svg {
    width: 12px;
    height: 12px;
    fill: currentColor;
}

.divider {
    width: 1px;
    height: 100%;
    background-color: #d9d9d9;
}

.currency-container {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 0;
    font-family: 'Figtree', sans-serif;
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    line-height: 18px;
}

.dropdown-icon {
    width: 12px;
    height: 12px;
    transform: scaleY(-1);
}

/* Main Header */
.main-header {
    background-color: #ffffff;
    padding: 16px 0;
    position: relative;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 400px;
}

.logo-search {
    display: flex;
    align-items: center;
    gap: 128px;
    flex: 1;
}

.logo {
    width: 123px;
    height: 40px;
    object-fit: cover;
}

.search-form {
    position: relative;
    flex: 1;
    max-width: 400px;
    background-color: #f9f9fd;
    border: 1px solid #e4e7e9;
    border-radius: 5px;
    padding: 12px 22px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-icon {
    width: 18px;
    height: 18px;
    fill: #dca000;
    transform: scaleY(-1);
}

.search-input {
    border: none;
    background: transparent;
    outline: none;
    flex: 1;
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    color: #687083;
}

.search-input::placeholder {
    color: #687083;
}

.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #e4e7e9;
    border-top: none;
    border-radius: 0 0 5px 5px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
}

.search-suggestion {
    padding: 10px 22px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.search-suggestion:hover {
    background-color: #f4f7f9;
}

.user-section {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Figtree', sans-serif;
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    line-height: 14px;
}

.user-icon {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* Navigation */
.main-nav {
    background-color: #f4f7f9;
    border-bottom: 1px solid #f3f3f3;
    height: 40px;
    position: sticky;
    top: 0;
    z-index: 99;
}

.main-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.nav-content {
    display: flex;
    align-items: center;
    height: 100%;
}

.categories-btn {
    background-color: #dca000;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 31px;
    padding: 10px 30px;
    height: 100%;
    font-family: 'Figtree', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border: none;
}

.categories-btn:hover {
    background-color: #b8900a;
}

.menu-icon {
    width: 20px;
    height: 12px;
    position: relative;
}

.menu-icon::before,
.menu-icon::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #ffffff;
}

.menu-icon::before {
    top: 0;
}

.menu-icon::after {
    bottom: 0;
}

.nav-list {
    display: flex;
    align-items: center;
    list-style: none;
    height: 100%;
}

.nav-list li {
    height: 100%;
}

.nav-list a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    height: 100%;
    text-decoration: none;
    color: #000000;
    font-family: 'Figtree', sans-serif;
    font-weight: 500;
    font-size: 15px;
    line-height: 22.5px;
    text-transform: capitalize;
    transition: color 0.3s ease;
}

.nav-list a:hover {
    color: #dca000;
}

.nav-extras {
    display: flex;
    align-items: center;
    gap: 16px;
    height: 100%;
}

.nav-extra-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #000000;
    font-family: 'Figtree', sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    text-transform: capitalize;
    transition: color 0.3s ease;
}

.nav-extra-link:hover {
    color: #dca000;
}

.nav-extra-link svg {
    width: 15px;
    height: 15px;
    fill: currentColor;
}

/* Hero Section */
.hero {
    width: 100%;
    height: 762px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-background {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(to bottom, transparent 36.9%, rgba(0, 0, 0, 0.65) 64.572%), url('https://images.unsplash.com/photo-1441986300917-64674bd600d8?w=1920&h=762&fit=crop');
    background-size: cover;
    background-position: center;
    transform: translate(0px, 0px)!important;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-family: "Cinzel", serif;
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    line-height:96px;
    color:#ffffff;
}

.hero-subtitle {
    font-family: "Manrope", sans-serif;
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 62px;
}

.hero-cta {
    background-color: #dca000;
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    font-family: "Marcellus", serif;
    font-size: 16px;
    line-height: normal;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    max-width:230px;
    width: 100%;
}

.hero-cta:hover {
    background-color: #b8900a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 160, 0, 0.3);
}

/* Section Styles */
section {
    padding: 64px 0;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
    animation-delay: 0.2s;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header .script-heading {
    margin-bottom: 16px;
}

/* Product Listings */
.product-listings {
    background-color: #ffffff;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 72px;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    /*height: 40px;*/
}

.tab {
    padding: 0 0 27px 0;
    font-family: 'Marcellus', serif;
    font-size: 16px;
    line-height: 22.5px;
    text-transform: capitalize;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.tab.active {
    color: #231f20;
    border-bottom: 1px solid #000000;
}

.tab:not(.active) {
    color: #6c6c6c;
}

.tab:hover {
    color: #231f20;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 17px;
    margin-bottom: 48px;
    min-height: 600px;
}

.product-item {
    display: flex;
    flex-direction: column;
    gap: 17px;
    height: 100%;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
    transition: transform 0.3s ease;
}

.product-item:hover {
    transform: translateY(-5px);
}

.product-item:nth-child(1) { animation-delay: 0.1s; }
.product-item:nth-child(2) { animation-delay: 0.2s; }
.product-item:nth-child(3) { animation-delay: 0.3s; }

.product-image {
    flex: 1;
    width: 100%;
    object-fit: cover;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}

.product-item:hover .product-image {
    transform: scale(1.05);
}

.product-name {
    font-family: 'Marcellus', serif;
    font-size: 20px;
    font-weight:400;
    line-height: 28px;
    text-align: center;
    color: #1e1e1e;
}

.product-price {
    font-family: 'Marcellus', serif;
    font-size: 19px;
    font-weight: 500;
    text-align: center;
    color: #dca000;
}

.add-to-cart {
    background-color: #263238;
    color: #ffffff;
    border: none;
    padding: 8px 16px;
    font-family: 'Marcellus', serif;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.add-to-cart:hover {
    background-color: #dca000;
    transform: translateY(-2px);
}

.cta-button {
    background-color: #dca000;
    color: #ffffff;
    border: none;
    padding: 11px 19px;
    font-family: 'Marcellus', serif;
    font-size: 16px;
    line-height: normal;
    cursor: pointer;
    margin: 0 auto;
    display: block;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #b8900a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 160, 0, 0.3);
}

/* About Section */
.about-section {
    background-color: #FAFAFA;
}

.about-images {
    display: flex;
    gap: 39px;
    align-items: end;
    margin-bottom: 48px;
    max-width: 1190px;
    margin-left: auto;
    margin-right: auto;
    width:100%;
}

.about-image-small, .about-image-large, .about-image-right {
    transition: transform 0.3s ease;
}

.about-image-small:hover, .about-image-large:hover {
    transform: scale(1.02);
}

.about-image-small {
    flex: 0 0 25%;
    width: 25% /*253px*/;
    height: 282px;
    object-fit: cover;
}

.about-image-large {
    flex: 1;
    height: 427px;
    object-fit: cover;
    flex: 0 0 40%;
    width:40%;
}

.about-image-right {
    flex: 0 0 25%;
    width: 25% /*256px*/;
    height: 282px;
    object-fit: cover;
    transform: scale(1) translate(0px, -52%)!important;
}
.about-image-right:hover {
    transform: scale(1.02) translate(0px, -52%)!important;
}

/* How We Sell */
.how-we-sell {
    background-color: #ffffff;
    padding: 64px 0;
    overflow: hidden;
}

.process-content {
    display: flex;
    gap: 80px;
    align-items: end;
    width: 100%;
}

.process-steps {
    width: 405px;
    flex-shrink: 0;
}

.step-carousel {
    margin-bottom: 24px;
    border-radius: 0px!important;
}

.step-images {
    height: 405px;
    overflow: hidden;
    margin-bottom: 16px;
    position: relative;
}

.step-image {
    position: absolute;
    width: 100%;
    height: 405px;
    object-fit: cover;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.step-image.active {
    opacity: 1;
}

.carousel-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 16px;
}

.carousel-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    color: #263238;
    transition: color 0.3s ease;
}

.carousel-btn:hover {
    color: #dca000;
}

.carousel-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #d9d9d9;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #dca000;
}

.step-texts {
    height: 138px;
    overflow: hidden;
    position: relative;
}

.step {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.step.active {
    opacity: 1;
}

.step h3 {
    font-family: 'Marcellus', serif;
    font-size: 46px;
    line-height: normal;
    color: #000000;
    margin-bottom: 24px;
}

.step p {
    font-family: 'Marcellus', serif;
    font-size: 18px;
    line-height: 28px;
    color: #000000;
}

.process-main-image {
    flex: 1;
    aspect-ratio: 1;
    overflow: hidden;
}

.main-process-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.main-process-image:hover {
    transform: scale(1.05);
}

/* Category Exploration */
.category-exploration {
    background-color: #FAFAFA;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 17px;
    /*height: 517px;*/
    margin-bottom: 48px;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.category-item {
    height: 517px;
    background-size: cover;
    background-position: center;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
    overflow: hidden;
    position: relative;
    transition: all .3s linear;
}

.category-item:hover {
    transform: scale(1.02);
}

.category-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 54.689%, rgba(0, 0, 0, 0.78) 83.459%, rgba(0, 0, 0, 0.9) 96.158%);
    transition: opacity 0.3s ease;
}

.category-overlay {
    position: absolute;
    bottom: -100px;
    left: 20px;
    z-index: 2;
    color: white;
    transition: all .3s linear;
}
.category-item:hover .category-overlay {
    bottom: 20px;
    transition: all .3s linear;
}
.category-overlay h4 {
    color: #fff; 
   font-family: 'Marcellus', serif;
    font-size: 24px;
    font-weight: bold;
}

/* Featured Products */
.featured-products {
    background-color: #ffffff;
    position: relative;
    padding-top: 64px;
    padding-bottom: 0;
}

.featured-content {
    position: relative;
    z-index: 2;
    margin-bottom: 48px;
}

.featured-text {
    text-align: left;
    max-width: 50%;
}

.featured-text .script-heading {
    text-align: left;
    font-size: 46px;
}

.featured-text .main-heading {
    text-align: left;
    margin-bottom: 48px;
}

.featured-background {
    width: 100%;
    aspect-ratio: 1920/676;
    background-size: 121.36% 100%;
    background-position: 114.78% 0%;
    background-image: linear-gradient(to right, transparent 9.713%, #000000), url('images/Frame 14.jpg');
    background-size: cover;
    background-repeat: no-repeat;
}

/* FAQ Section */
.faq-section {
    background-color: #ffffff;
}

.faq-section .script-heading {
    font-size: 46px;
}

.faq-list {
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #dddddd;
    padding: 17px 0;
    transition: background-color 0.3s ease;
}

.faq-item:hover {
    background-color: #f9f9f9;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'Marcellus', serif;
    font-size: 28px;
    line-height: normal;
    color: #324131;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #000000;
}

.faq-icon {
    font-size: 24px;
    font-weight: bold;
    color: #000000;
    transition: transform 0.3s ease;
}

.faq-item.expanded .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    margin-top: 17px;
    font-family: 'Marcellus', serif;
    font-size: 18px;
    line-height: 28px;
    color: #000000;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

.faq-item.expanded .faq-answer {
    max-height: 200px;
    opacity: 1;
}

/* Contact Section */
.contact-section {
    background-color: #FAFAFA;
}

.contact-section .script-heading {
    font-size: 46px;
}

.contact-content {
    text-align: center;
    max-width: 100%;
}

.contact-description {
    font-family: 'Marcellus', serif;
    font-size: 18px;
    line-height: 28px;
    color: #263238;
    margin-bottom: 40px;
}

.contact-form {
    display: flex;
    gap: 24px;
    max-width: 100%;
    align-items: stretch;
}

.form-group {
    flex: 1;
    position: relative;
}

.form-input {
    width: 100%;
    height: 65px;
    border: 1px solid #263238;
    padding: 12px 24px;
    font-family: 'Marcellus', serif;
    font-size: 18px;
    line-height: 28px;
    color: #263238;
    background-color: transparent;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #dca000;
    box-shadow: 0 0 0 2px rgba(220, 160, 0, 0.2);
}

.form-input.error {
    border-color: #d4183d;
}

.form-input::placeholder {
    color: #263238;
}

.error-message {
    position: absolute;
    bottom: -20px;
    left: 0;
    color: #d4183d;
    font-size: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.error-message.show {
    opacity: 1;
}

.submit-button {
    flex: 1;
    height: 65px;
    background-color: #dca000;
    color: #ffffff;
    border: none;
    padding: 11px 19px;
    font-family: 'Marcellus', serif;
    font-size: 18px;
    line-height: 28px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.submit-button:hover {
    background-color: #b8900a;
    transform: translateY(-2px);
}

.submit-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-text, .btn-loader {
    transition: opacity 0.3s ease;
}

.submit-button.loading .btn-text {
    opacity: 0;
}

.submit-button.loading .btn-loader {
    opacity: 1;
}

.btn-loader {
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.success-message {
    margin-top: 20px;
    padding: 16px;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    border-radius: 4px;
    display: none;
    font-family: 'Marcellus', serif;
    font-size: 16px;
}

.success-message.show {
    display: block;
    animation: fadeInUp 0.5s ease-out;
}

/* Footer */
.footer {
    background-color: #ffffff;
    padding: 64px 0;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 120px;
    gap:30px;
}

.footer-logo {
    width: 193px;
    height: 63px;
    object-fit: cover;
}

.footer-links {
    display: flex;
    gap: 120px;
}

.footer-column h3 {
    font-family: 'Marcellus', serif;
    font-size: 28px;
    line-height: normal;
    color: #324131;
    margin-bottom: 16px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 8px;
}

.footer-column a {
    font-family: 'Marcellus', serif;
    font-size: 16px;
    line-height: 22.5px;
    color: #324131;
    text-decoration: none;
    text-transform: capitalize;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #dca000;
}

.app-downloads {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.app-store-buttons {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.app-button {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: #000000;
    color: #ffffff;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.05);
    width: 215px;
    height: 60px;
    transition: all 0.3s ease;
}

.app-button:hover {
    transform: translateY(-2px);
    box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.15);
}

.app-button svg {
    width: 30px;
    height: 30px;
    fill: currentColor;
}

.app-text {
    display: flex;
    flex-direction: column;
}

.get-it {
    font-family: 'Figtree', sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 12px;
    text-transform: uppercase;
}

.store-name {
    font-family: 'Figtree', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(50, 65, 49, 0.38);
    padding-top: 20px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.copyright {
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    line-height: 20px;
    color: #525252;
    text-transform: capitalize;
}

.footer-nav {
    display: flex;
    gap: 25px;
}

.footer-nav a {
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    line-height: 22.4px;
    color: #525252;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #dca000;
}

.social-links {
    display: flex;
    gap: 25px;
}

.social-links img {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.social-links a:hover img {
    transform: scale(1.1);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #dca000;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #b8900a;
    transform: translateY(-2px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Loading States */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Utility Classes */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.hidden {
    display: none !important;
}

.show {
    display: block !important;
}

/* Notification System */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #dca000;
    color: white;
    padding: 16px 24px;
    border-radius: 8px;
    z-index: 1001;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    font-family: 'Marcellus', serif;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.notification.show {
    transform: translateX(0);
}

.notification.error {
    background-color: #d4183d;
}

.notification.success {
    background-color: #28a745;
}
.main_footer_wrap .footer_widget .apps_boxs {
    flex-wrap: wrap;
    gap:20px;
}
.google_play_box {
    padding: 11px 11px;
    grid-gap: 15px;
    min-width: auto;
    max-width: auto;
    flex: 0 0 calc(50% - 10px);
    width: calc(50% - 10px);
    gap:20px;
    margin-right: 0px;
    justify-content: center;
}
.google_play_box .google_play_text span {
    font-size: 10px;
}
.google_play_box .google_play_text h4 {
    font-size: 16px;
}
header.amazcartui_header .header_area .main_header_area .shop_header_wrapper .category_menu .dropdown_menu {
    width:254px;
}
header.amazcartui_header .header_area .main_header_area .shop_header_wrapper .category_menu .dropdown_menu li .mega_width_menu {
    width:700px;
}
header.amazcartui_header .header_area .main_header_area .shop_header_wrapper .category_menu .dropdown_menu li .mega_width_menu > li {
    padding-right:30px;
}
/*header.amazcartui_header .header_area .main_header_area .shop_header_wrapper .category_menu .dropdown_menu li .mega_width_menu > li:nth-last-child(2) {
    padding-right:0px;
}*/
header.amazcartui_header .header_area .main_header_area .shop_header_wrapper .category_menu .dropdown_menu li .mega_width_menu > li ul li a {
    font-size: 14px;
    font-weight: 400;
    color: #687083;
    left: 0 !important;
    padding: 0;
    line-height: 20px;
    white-space: normal;
    display: block;
    padding-top: 8px;
    padding-bottom: 8px;
}
/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 32px;
    }
    
    .header-content {
        gap: 200px;
    }
    
    .logo-search {
        gap: 64px;
    }
    
    .footer-bottom-content {
        gap: 30px;
    }
    
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (max-width:1100px) {
    header.amazcartui_header .header_area .main_header_area .shop_header_wrapper .category_menu .dropdown_menu li .mega_width_menu {
        width:600px;
    }
}
@media screen and (max-width:1025px) {
    .featured-text {
        max-width:100%;
    }
    .featured-text .script-heading, .featured-text .main-heading {
        text-align: center;
    }
    .main-heading {
        font-size: 40px;
        line-height: 1.2;
    }
    .faq-question {
        font-size: 26px;
    }
}
@media screen and (max-width:990px) {
    header.amazcartui_header .header_area .main_header_area .shop_header_wrapper .category_menu .dropdown_menu li .mega_width_menu {
        width:400px;
    }
}
@media (max-width: 768px) {
    .hero-content {
        padding:0px 20px;
    }
    .container {
        padding: 0 16px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 16px;
    }
    
    .logo-search {
        flex-direction: column;
        gap: 16px;
        width: 100%;
    }
    
    .hero-title {
        font-size: 48px;
    color: #fff;
        line-height: 68px;
    }
    
    .hero-subtitle {
        font-size: 24px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .about-images {
        flex-direction: column;
        gap: 16px;
        width: 100%;
    }
    
    .process-content {
        flex-direction: column;
        gap: 32px;
    }
    
    .process-steps {
        width: 100%;
    }
    
    .category-grid {
        grid-template-columns: 1fr;
        height: auto;
    }
    
    .category-item {
        height: 300px;
    }
    
    .contact-form {
        flex-direction: column;
    }
    
    .footer-main {
        flex-direction: column;
        gap: 32px;
        align-items: center;
    }
    .footer-main .footer-brand,
    .footer-main .footer-brand,
    .footer-main .app-downloads {

    }
    
    .footer-links {
        gap: 32px;
        flex-direction: column;
    }
    
    .app-store-buttons {
        flex-direction: column;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .footer-nav {
        flex-direction: row;
        gap: 8px;
    }
    
    .category-tabs {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .main-heading {
        font-size: 36px;
    }
    
    .script-heading {
        font-size: 32px;
    }
    .about-image-small {
        flex: 0 0 auto;
        width:auto;
    }
    .about-image-right {
        flex: 0 0 auto;
        width: auto;
        transform: scale(1) translate(0px, 0%) !important;
    }
    .about-image-large {
        flex: 0 0 auto;
        width:auto;
    }
    .about-images {
        align-items: center;
    }
    .featured-text{
        max-width: 100%;
    }
    .featured-text .script-heading, .featured-text .main-heading {
        text-align: center;
    }
    .step h3 {
        font-size: 36px;
    }
    header.amazcartui_header .header_area .main_header_area .shop_header_wrapper .category_menu .dropdown_menu li .mega_width_menu {
        width:300px;
        display: block;
        overflow: scroll;
    }
    header.amazcartui_header .header_area .main_header_area .shop_header_wrapper .category_menu .dropdown_menu li .mega_width_menu > li {
        padding-right: 0;
        width: 100%;
    }
    header.amazcartui_header .header_area .main_header_area .shop_header_wrapper .category_menu .dropdown_menu li .mega_width_menu{
        padding:30px 30px 30px 30px;
    }
}
@media screen and (max-width:700px){
    header.amazcartui_header .header_area .main_header_area .shop_header_wrapper .category_menu .dropdown_menu li .mega_width_menu {
        width:230px;
        display: block;
        height: 334px;
        overflow-x: hidden;
    }
    header.amazcartui_header .header_area .main_header_area .shop_header_wrapper .category_menu .dropdown_menu li .mega_width_menu > li ul li a {
        white-space: normal;
    }
}
@media screen and (max-width:580px){
    .main-heading {
        font-size: 30px;
    }
    .step h3 {
        font-size: 28px;
    }
    .faq-question {
        font-size: 22px;
    }
    .hero-title {
        font-size: 38px;
        line-height: 58px;
    }
    .about-image-large {
        width:100%;
    }
    header.amazcartui_header .header_area .main_header_area .shop_header_wrapper .category_menu .dropdown_menu li .mega_width_menu {
        width:220px;
        display: block;
        overflow: scroll;
    }
    header.amazcartui_header .header_area .main_header_area .shop_header_wrapper .category_menu > a {
        width:220px;
    }
    header.amazcartui_header .header_area .main_header_area .shop_header_wrapper .category_menu .dropdown_menu {
        width:220px;
    }
    header.amazcartui_header .header_area .main_header_area .shop_header_wrapper .category_menu .dropdown_menu li .mega_width_menu {
        left: 0px;
        bottom: -100%;
        top: auto;
    }
    header.amazcartui_header .header_area .main_header_area .shop_header_wrapper .category_menu .dropdown_menu li:hover > ul {
        opacity: 1;
        visibility: visible;
        left: 0px;
        bottom: -100%;
        top: auto;
    }
}
@media screen and (max-width:480px) {
    header.amazcartui_header .header_area .main_header_area .shop_header_wrapper .category_menu .dropdown_menu {
        width:100%;
    }
    header.amazcartui_header .header_area .main_header_area .shop_header_wrapper .category_menu {
        width: 100%;
    }
    header.amazcartui_header .header_area .main_header_area .shop_header_wrapper .category_menu > a {
        width:210px;
    }
    header.amazcartui_header .header_area .main_header_area .shop_header_wrapper .category_menu > a {
        padding: 13px 20px 13px 50px;
    }
    header.amazcartui_header .header_area .main_header_area .shop_header_wrapper .category_menu > a::after,header.amazcartui_header .header_area .main_header_area .shop_header_wrapper .category_menu > a::before {
        left:20px;
    }
    header.amazcartui_header .header_area .main_header_area .shop_header_wrapper .category_menu .dropdown_menu a {
        padding:11px 20px 10px 20px;
    }
    header.amazcartui_header .header_area .main_header_area .shop_header_wrapper .category_menu > a {
        width:100%;
    }
    header.amazcartui_header .header_area .main_header_area .shop_header_wrapper .category_menu .dropdown_menu li .mega_width_menu {
        width:100%;
    }
    header.amazcartui_header .header_area .main_header_area .shop_header_wrapper .category_menu .dropdown_menu li .mega_width_menu{
        padding:31px 20px 20px 20px;
    }
}