
@import url('https://fonts.googleapis.com/css2?family=Playwrite+NZ+Basic+Guides&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playwrite+NZ+Basic+Guides&family=Roboto:ital,wght@0,100..900;1,100..900&family=Story+Script&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playwrite+NZ+Basic+Guides&family=Roboto:ital,wght@0,100..900;1,100..900&family=Story+Script&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;1,600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Delius+Swash+Caps&family=Playwrite+NZ+Basic+Guides&family=Roboto:ital,wght@0,100..900;1,100..900&family=Story+Script&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}
.main {
    width: 100%;
    height: 700px;
    position: relative;
    overflow: hidden;
    /* Remove the static background image */
}

/* Create a slider container for background images */
.main .slider-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.main .slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.main .slider-slide.active {
    opacity: 1;
}

/* Slider indicators */
.main .slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 1;
}

.main .slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.main .slider-dot.active {
    background-color: #cf8109;
}

/* Keep all your existing header and text styles */
.main .header {
    /* background-color: blue; */
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.main .header .logo {
    width: 15%;
    height: 70px;
    margin: 0 0 0 40px;
}

.main .header .logo img {
    width: 80%;
    height: 100%;
}

.main .header .option {
    width: 50%;
    height: 70px;
    display: flex;
    justify-content: center;
    gap: 5%;
    align-items: center;
}

.main .header .option #option-font {
    color: white;
    width: 15%;
    height: 50%;
    font-weight: bolder;
    margin-top: 15px;
    -webkit-text-stroke: 1px rgb(122, 121, 118);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.main .header .option #option-font a {
    font-size: 15px;
    text-decoration: none;
    display: block;
    padding: 5px 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
    color: wheat;
}

/* Hover effect for navigation items */
.main .header .option #option-font:hover {
    transform: translateY(-2px);
}

.main .header .option #option-font:hover a {
    color: #cf8109;
    text-shadow: 0 0 10px rgba(207, 129, 9, 0.5);
}

/* Optional: Add underline animation */
.main .header .option #option-font a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 25%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: #cf8109;
    transition: width 0.3s ease;
}

.main .header .option #option-font:hover a::after {
    width: 100%;
}

/* Active state for current page */
.main .header .option #option-font.active a {
    color: #cf8109;
}

.main .header .option #option-font.active a::after {
    width: 100%;
}

.main .text-main {
    width: 30%;
    height: 50%;
    position: relative;
    left: 8%;
    z-index: 2;
}

.main .text-main .heading {
    display: flex;
    align-items: center;
    position: relative;
    top: 28%;
    font-weight: bolder;
}

.main .text-main .heading a {
    color: #cf8109;
    font-size: 25px;
    text-decoration: none;
}

.main .text-main .main-line {
    position: relative;
    top: 28%;
}

.main .text-main .main-line a {
    color: rgb(255, 255, 255);
    font-size: 70px;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-style: italic;
    font-weight: bolders;
    text-decoration: none;
}

.main .shop-learn {
    width: 40%;
    height: 15%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: relative;
    left: 7%;
    z-index: 2;
}

.main .shop-learn .shop-now {
    background-color: #462e12;
    width: 35%;
    height: 60%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.main .shop-learn .shop-now a {
    font-size: 25px;
    color: #ffffff;
    font-weight: bolder;
    font-family: sans-serif;
    text-decoration: none;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

/* Hover effect for Shop Now button */
.main .shop-learn .shop-now:hover {
    background-color: transparent;
    border: 2px solid #eddab2;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.main .shop-learn .shop-now:hover a {
    color: #eddab2;
}

/* Optional: Add a subtle shine effect on hover */
.main .shop-learn .shop-now::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(237, 218, 178, 0.2), transparent);
    transition: left 0.5s ease;
}

.main .shop-learn .shop-now:hover::before {
    left: 100%;
}

/* Active state for click feedback */
.main .shop-learn .shop-now:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.main .shop-learn .learn-more {
    width: 35%;
    height: 60%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    margin-right: 15%;
    cursor: pointer;
}

.main .shop-learn .learn-more a {
    font-size: 25px;
    color: #eddab2;
    font-weight: bolder;
    font-family: sans-serif;
    text-decoration: none;
}
.top-product {
  width: 100%;
  padding: 60px 0;
  display: flex;
  flex-direction: column;
  align-items: center;

  background:
    linear-gradient(
      to top,
      rgba(0,0,0,0) 60%,    /* Start with transparency */
      rgba(0,0,0,0.7) 80%,  /* Gradually darken */
      #000 100%             /* Solid black at the top */
    ),
    url("div\ 2.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.top-product-heading {
    margin-bottom: 40px;
}

.top-product-heading h2 {
    color: #eddab2;
    font-size: 40px;
    font-family: "Delius Swash Caps", cursive;
    font-weight: 600;
    font-style: italic;
    position: relative;
    padding-bottom: 15px;
}

.top-product-heading h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #cf8109;
}

.product-container {
    width: 90%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    justify-items: center;
}

.product-card {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 400px; /* IMPORTANT */
    background-color: #3a3a3a;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.product-image {
    position: absolute;
    inset: 0;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}


.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    z-index: 2;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.8),
        rgba(0,0,0,0)
    );
    /* From https://css.glass */
background: rgba(255, 255, 255, 0);
border-radius: 16px;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(4.9px);
-webkit-backdrop-filter: blur(4.9px);

}
.name-add {
    display: flex;
    justify-content: space-between;
    align-items: center;
    
}

.product-info h3 {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 10px;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    
}

.product-price {
    color: #ffffff;
    font-size: 24px;
    font-weight: bold;
    
}

.add-btn {
    background-color: #462e12;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.add-btn:hover {
    background-color: #5a3a1a;
    transform: scale(1.05);
}

.add-btn:active {
    transform: scale(0.98);
}
.price-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}
.circle-info {
    /* background-color: #462e12; */
    color: white;
    border: none;
    font-size: 25px;
    font-weight: lighter;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.circle-info:hover {
    color: #5a3a1a;
    transform: scale(1.05);
}

.circle-info:active {
    transform: scale(0.98);
}


/* Responsive Design */
@media (max-width: 768px) {
    .main {
        height: 500px;
    }
    
    .main .header .option {
        width: 60%;
    }
    
    .main .header .option #option-font a {
        font-size: 16px;
    }
    
    .main .text-main .main-line a {
        font-size: 50px;
    }
    
    .main .shop-learn {
        width: 80%;
    }
    
    .main .shop-learn .shop-now a, 
    .main .shop-learn .learn-more a {
        font-size: 20px;
    }
    
    .product-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .main .header .logo {
        width: 25%;
    }
    
    .main .header .option {
        width: 70%;
        gap: 3%;
    }
    
    .main .header .option #option-font a {
        font-size: 14px;
    }
    
    .main .text-main {
        width: 80%;
    }
    
    .main .text-main .main-line a {
        font-size: 40px;
    }
    
    .main .shop-learn {
        width: 90%;
        flex-direction: column;
        height: 25%;
        gap: 10px;
    }
    
    .main .shop-learn .shop-now, 
    .main .shop-learn .learn-more {
        width: 100%;
        height: 50px;
    }
    
    .top-product-heading h2 {
        font-size: 30px;
    }
    
    .product-container {
        grid-template-columns: 1fr;
    }
}
.discount {
    width: 100%;
    height: 500px;
    position: relative;
    overflow: hidden;
    background: 
        linear-gradient(
            to right,
            rgba(0,0,0,0.7),
            rgba(0,0,0,0.5),
            rgba(0,0,0,0.7)
        ),
        url("discount-background.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.discount-content {
    width: 90%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.discount-text {
    flex: 1;
    text-align: center;
    z-index: 2;
}

.discount-text h2 {
    color: #eddab2;
    font-size: 48px;
    font-family: "Delius Swash Caps", cursive;
    font-weight: 600;
    font-style: italic;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.discount-text p {
    color: #c4660e;
    font-size: 24px;
    font-family: 'Roboto', sans-serif;
    margin-bottom: 30px;
    font-weight: 500;
}
/* discount box start */
/* Discount Modal Styles */
.discount-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    overflow-y: auto;
}

.discount-modal-content {
    background-color: #111;
    border-radius: 10px;
    width: 90%;
    max-width: 800px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    position: relative;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.discount-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid #222;
    background-color: #0a0a0a;
}

.discount-modal-header h2 {
    color: #eddab2;
    font-size: 24px;
    font-family: "Delius Swash Caps", cursive;
    margin: 0;
}

.close-discount-modal {
    background: none;
    border: none;
    color: #aaa;
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-discount-modal:hover {
    color: #cf8109;
}

.discount-modal-body {
    padding: 30px;
}

.discount-info {
    display: flex;
    gap: 30px;
}

.discount-icon {
    width: 80px;
    height: 80px;
    background-color: #462e12;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.discount-icon i {
    font-size: 36px;
    color: #eddab2;
}

.discount-text {
    flex: 1;
}

.discount-text h3 {
    color: #eddab2;
    font-size: 22px;
    margin-bottom: 15px;
    font-family: 'Roboto', sans-serif;
}

.discount-text p {
    color: #aaa;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
    font-family: 'Roboto', sans-serif;
}

.discount-text p span {
    color: #cf8109;
    font-weight: bold;
    font-size: 18px;
}

.discount-steps {
    margin: 30px 0;
}

.step {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.step-number {
    width: 30px;
    height: 30px;
    background-color: #cf8109;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h4 {
    color: #eddab2;
    font-size: 18px;
    margin-bottom: 5px;
    font-family: 'Roboto', sans-serif;
}

.step-content p {
    color: #aaa;
    font-size: 14px;
    margin: 0;
    font-family: 'Roboto', sans-serif;
}

.discount-terms {
    background-color: #0a0a0a;
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
}

.discount-terms h4 {
    color: #eddab2;
    font-size: 16px;
    margin-bottom: 10px;
    font-family: 'Roboto', sans-serif;
}

.discount-terms ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.discount-terms li {
    color: #aaa;
    font-size: 14px;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    font-family: 'Roboto', sans-serif;
}

.discount-terms li::before {
    content: '•';
    color: #cf8109;
    position: absolute;
    left: 0;
}

.discount-code {
    background-color: #462e12;
    color: #eddab2;
    padding: 2px 8px;
    border-radius: 4px;
    font-family: monospace;
    font-weight: bold;
}

.discount-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.create-account-btn, .copy-code-btn {
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
}

.create-account-btn {
    background-color: #cf8109;
    color: #fff;
}

.create-account-btn:hover {
    background-color: #e5a019;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.copy-code-btn {
    background-color: transparent;
    color: #eddab2;
    border: 2px solid #eddab2;
}

.copy-code-btn:hover {
    background-color: #eddab2;
    color: #111;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Copy confirmation tooltip */
.copy-tooltip {
    position: absolute;
    background-color: #4caf50;
    color: white;
    text-align: center;
    border-radius: 6px;
    padding: 5px 10px;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 14px;
    white-space: nowrap;
}

.copy-tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #4caf50 transparent transparent transparent;
}

.show-tooltip {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .discount-modal-content {
        width: 95%;
        margin: 20px 0;
    }
    
    .discount-info {
        flex-direction: column;
        gap: 20px;
    }
    
    .discount-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto;
    }
    
    .discount-icon i {
        font-size: 28px;
    }
    
    .discount-modal-header {
        padding: 15px 20px;
    }
    
    .discount-modal-header h2 {
        font-size: 20px;
    }
    
    .discount-modal-body {
        padding: 20px;
    }
    
    .discount-text h3 {
        font-size: 18px;
    }
    
    .discount-text p {
        font-size: 14px;
    }
    
    .step {
        gap: 15px;
    }
    
    .step-number {
        width: 25px;
        height: 25px;
        font-size: 14px;
    }
    
    .step-content h4 {
        font-size: 16px;
    }
    
    .step-content p {
        font-size: 13px;
    }
    
    .discount-terms {
        padding: 15px;
    }
    
    .discount-terms h4 {
        font-size: 14px;
    }
    
    .discount-terms li {
        font-size: 13px;
    }
    
    .discount-actions {
        flex-direction: column;
    }
    
    .create-account-btn, .copy-code-btn {
        width: 100%;
    }
}
/* discount box end */
.discount-btn {
    background-color: #462e12;
    color: #ffffff;
    border: 2px solid #462e12;
    padding: 15px 40px;
    font-size: 20px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.discount-btn:hover {
    background-color: transparent;
    color: #eddab2;
    border-color: #eddab2;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.discount-images {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.discount-image-left,
.discount-image-center,
.discount-image-right {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.discount-image-left {
    transform: rotate(-5deg);
}

.discount-image-center {
    transform: translateY(-20px);
    z-index: 2;
}

.discount-image-right {
    transform: rotate(5deg);
}

.discount-image-left:hover,
.discount-image-center:hover,
.discount-image-right:hover {
    transform: rotate(0deg) translateY(0px);
    z-index: 3;
}

.discount-image-left img,
.discount-image-center img,
.discount-image-right img {
    width: 200px;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.discount-image-left:hover img,
.discount-image-center:hover img,
.discount-image-right:hover img {
    transform: scale(1.1);
}

/* Decorative elements */
/* .discount::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, #cf8109, #eddab2, #cf8109);
}

.discount::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, #cf8109, #eddab2, #cf8109);
} */

/* Responsive Design */
@media (max-width: 768px) {
    .discount {
        height: auto;
        padding: 60px 0;
    }
    
    .discount-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .discount-text h2 {
        font-size: 36px;
    }
    
    .discount-text p {
        font-size: 20px;
    }
    
    .discount-btn {
        padding: 12px 30px;
        font-size: 18px;
    }
    
    .discount-images {
        gap: 15px;
    }
    
    .discount-image-left img,
    .discount-image-center img,
    .discount-image-right img {
        width: 150px;
        height: 225px;
    }
}

@media (max-width: 480px) {
    .discount-text h2 {
        font-size: 28px;
    }
    
    .discount-text p {
        font-size: 18px;
    }
    
    .discount-btn {
        padding: 10px 25px;
        font-size: 16px;
    }
    
    .discount-images {
        gap: 10px;
    }
    
    .discount-image-left img,
    .discount-image-center img,
    .discount-image-right img {
        width: 100px;
        height: 150px;
    }
}
.explore-more {
    background-image: url(div\ 2.png);
    width: 100%;
    padding: 60px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.explore-heading {
    margin-bottom: 40px;
}

.explore-heading h2 {
    color: #eddab2;
    font-size: 40px;
    font-family: "Delius Swash Caps", cursive;
    font-weight: 600;
    font-style: italic;
    position: relative;
    padding-bottom: 15px;
}

.explore-heading h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #cf8109;
}

.category-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 50px;
    width: 80%;
}

.category-tag {
    padding: 10px 25px;
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #eddab2;
    border-radius: 30px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Roboto', sans-serif;
}

.category-tag:hover {
    background-color: rgba(237, 218, 178, 0.1);
    transform: translateY(-3px);
}

.category-tag.active {
    background-color: #cf8109;
    color: #fff;
    border-color: #cf8109;
}

.explore-products {
    width: 90%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    justify-items: center;
    
}

.explore-product-card {
    width: 100%;
    max-width: 300px;
    background-color: #222;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    height: 80%;
}

.explore-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.explore-product-image {
    height: 100%;
    overflow: hidden;
}

.explore-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.explore-product-card:hover .explore-product-image img {
    transform: scale(1.1);
}

.explore-product-name {
    padding: 15px;
    text-align: center;
    color: #eddab2;
    font-size: 18px;
    font-weight: bold;
    font-family: 'Roboto', sans-serif;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main {
        height: 500px;
    }
    
    .main .header .option {
        width: 60%;
    }
    
    .main .header .option #option-font a {
        font-size: 16px;
    }
    
    .main .text-main .main-line a {
        font-size: 50px;
    }
    
    .main .shop-learn {
        width: 80%;
    }
    
    .main .shop-learn .shop-now a, 
    .main .shop-learn .learn-more a {
        font-size: 20px;
    }
    
    .product-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .explore-products {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .category-container {
        gap: 10px;
    }
    
    .category-tag {
        padding: 8px 20px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .main .header .logo {
        width: 25%;
    }
    
    .main .header .option {
        width: 70%;
        gap: 3%;
    }
    
    .main .header .option #option-font a {
        font-size: 14px;
    }
    
    .main .text-main {
        width: 80%;
    }
    
    .main .text-main .main-line a {
        font-size: 40px;
    }
    
    .main .shop-learn {
        width: 90%;
        flex-direction: column;
        height: 25%;
        gap: 10px;
    }
    
    .main .shop-learn .shop-now, 
    .main .shop-learn .learn-more {
        width: 100%;
        height: 50px;
    }
    
    .top-product-heading h2, .explore-heading h2 {
        font-size: 30px;
    }
    
    .product-container, .explore-products {
        grid-template-columns: 1fr;
    }
    
    .category-container {
        width: 95%;
    }
    
    .category-tag {
        padding: 6px 15px;
        font-size: 14px;
    }
}


.about {
    width: 100%;
    height: 500px;
    position: relative;
    overflow: hidden;
    background: 
        linear-gradient(
            to right,
            rgba(0,0,0,0.7),
            rgba(0,0,0,0.5),
            rgba(0,0,0,0.7)
        ),
        url("about-backgound.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-content {
    width: 60%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
    text-align: center;
    z-index: 2;
}

.about-text h1 {
    color: #ffffff;
    font-size: 50px;
    font-family: "Delius Swash Caps", cursive;
    font-weight: 600;
    font-style: italic;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    bottom: 50px;
}

.about-text p {
    color: #ffffff;
    font-size: 18px;
    font-family: sans-serif;
    margin-bottom: 30px;
    font-weight: 400;
}

.about-btn {
    background-color: #462e12;
    color: #ffffff;
    border: 2px solid #462e12;
    padding: 15px 40px;
    font-size: 20px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-btn:hover {
    background-color: transparent;
    color: #eddab2;
    border-color: #eddab2;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}


/* Responsive Design */
@media (max-width: 768px) {
    .about {
        height: auto;
        padding: 60px 0;
    }
    
    .about-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .about-text h1 {
        font-size: 36px;
    }
    
    .about-text p {
        font-size: 20px;
    }
    
    .about-btn {
        padding: 12px 30px;
        font-size: 18px;
    }
    
    .about-images {
        gap: 15px;
    }
    
    .about-image-left img,
    .about-image-center img,
    .about-image-right img {
        width: 150px;
        height: 225px;
    }
}

@media (max-width: 480px) {
    .about-text h1 {
        font-size: 28px;
    }
    
    .about-text p {
        font-size: 18px;
    }
    
    .about-btn {
        padding: 10px 25px;
        font-size: 16px;
    }
    
    .about-images {
        gap: 10px;
    }
    
    .about-image-left img,
    .about-image-center img,
    .about-image-right img {
        width: 100px;
        height: 150px;
    }
}

.all-products {
    width: 100%;
    padding: 80px 0;
    background-image: url(div\ 2.png);
    position: relative;
    overflow: hidden;
}

.all-products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #cf8109, transparent);
}

.all-products-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.all-products-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 60px;
}

.all-products-header h2 {
    color: #eddab2;
    font-size: 48px;
    font-family: "Delius Swash Caps", cursive;
    font-weight: 600;
    font-style: italic;
    position: relative;
    margin-bottom: 30px;
    text-align: center;
}

.all-products-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: #cf8109;
}

.all-products-btn {
    background-color: #462e12;
    color: #ffffff;
    /* border: 2px solid #462e12; */
    padding: 15px 40px;
    font-size: 20px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 20px;
}

.all-products-btn:hover {
    background-color: transparent;
    color: #eddab2;
    border-color: #eddab2;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.food-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.food-card {
    background-color: #111;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.food-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
}

.food-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.food-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0) 70%,
        rgba(0,0,0,0.8) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.food-card:hover .food-image::after {
    opacity: 1;
}

.food-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.food-card:hover .food-image img {
    transform: scale(1.1);
}
.food-names {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 20px;

}
.food-name{
     background-color: #462e12;
    color: #ffffff;
    border: 2px solid #462e12;
    padding: 15px 40px;
    font-size: 20px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 20px;
}
.food-name:hover {
    background-color: transparent;
    color: #eddab2;
    border-color: #eddab2;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.food-one {
    position: relative;
    right: 30px;
}
.food-three {
    position: relative;
    left: 2%;
}
/* Decorative elements */
.all-products::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #cf8109, transparent);
}

/* Responsive Design */
@media (max-width: 992px) {
    .food-images {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .all-products-header h2 {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .food-images {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .all-products-header h2 {
        font-size: 36px;
    }
    
    .all-products-btn {
        padding: 12px 30px;
        font-size: 18px;
    }
    
    .food-image {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .all-products {
        padding: 60px 0;
    }
    
    .all-products-header h2 {
        font-size: 30px;
    }
    
    .all-products-btn {
        padding: 10px 25px;
        font-size: 16px;
    }
    
    .food-info {
        padding: 20px;
    }
    
    .food-info h3 {
        font-size: 20px;
    }
    
    .food-info p {
        font-size: 14px;
    }
    
    .food-name {
        font-size: 18px;
    }
}
/* Footer Styles */
.footer {
    background-color: #000;
    color: #eddab2;
    padding: 60px 0 20px;
    border-top: 1px solid #333;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

/* Brand Section */
.footer-brand {
    display: flex;
    flex-direction: column;
    /* align-items: flex-start; */
}

.footer-logo {
    width: 225px;
    height: 130px;
    margin-bottom: 15px;
}

.footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-brand h3 {
    color: #eddab2;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #222;
    border-radius: 50%;
    color: #eddab2;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.social-icon:hover {
    background-color: #cf8109;
    color: #fff;
    transform: translateY(-3px);
}

/* Explore Section */
.footer-explore h3,
.footer-news h3,
.footer-contact h3 {
    color: #eddab2;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    font-family: 'Roboto', sans-serif;
    position: relative;
    padding-bottom: 10px;
}

.footer-explore h3::after,
.footer-news h3::after,
.footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #cf8109;
}

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

.footer-explore li {
    margin-bottom: 12px;
}

.footer-explore a {
    color: #aaa;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
    font-family: 'Roboto', sans-serif;
}

.footer-explore a:hover {
    color: #cf8109;
    padding-left: 5px;
}

/* Recent News Section */
.news-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #222;
}

.news-item:last-child {
    border-bottom: none;
}

.news-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

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

.news-item:hover .news-image img {
    transform: scale(1.1);
}

.news-content {
    flex: 1;
}

.news-date {
    color: #888;
    font-size: 12px;
    margin-bottom: 5px;
    font-family: 'Roboto', sans-serif;
}

.news-title {
    color: #eddab2;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    font-family: 'Roboto', sans-serif;
    transition: color 0.3s ease;
}

.news-item:hover .news-title {
    color: #cf8109;
}

/* Contact Section */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #aaa;
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
}

.contact-item i {
    color: #cf8109;
    width: 18px;
    text-align: center;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #888;
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
}

/* Responsive Design */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .footer-logo {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-brand {
        grid-column: 1;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .footer-logo {
        margin-bottom: 15px;
    }
    
    .social-icons {
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .footer-brand h3 {
        font-size: 24px;
    }
    
    .footer-explore h3,
    .footer-news h3,
    .footer-contact h3 {
        font-size: 18px;
    }
    
    .news-item {
        gap: 10px;
    }
    
    .news-image {
        width: 60px;
        height: 60px;
    }
    
    .contact-item {
        font-size: 13px;
    }
}
/* ==================== LOGIN MODAL STYLES ==================== */
.login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.login-content {
    background-color: #111;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #222;
}

.login-header h2 {
    color: #eddab2;
    font-size: 24px;
    font-family: "Delius Swash Caps", cursive;
}

.close-login {
    background: none;
    border: none;
    color: #aaa;
    font-size: 24px;
    cursor: pointer;
}

.login-body {
    padding: 30px 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #eddab2;
    font-family: 'Roboto', sans-serif;
}

.form-group input {
    width: 100%;
    padding: 12px;
    background-color: #222;
    border: 1px solid #333;
    border-radius: 5px;
    color: #eddab2;
    font-size: 16px;
}

.form-group input:focus {
    outline: none;
    border-color: #cf8109;
}

.login-submit {
    width: 100%;
    padding: 12px;
    background-color: #462e12;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Roboto', sans-serif;
}

.login-submit:hover {
    background-color: #5a3a1a;
}

.login-footer {
    text-align: center;
    margin-top: 20px;
}

.login-footer p {
    color: #aaa;
    font-family: 'Roboto', sans-serif;
}

.login-footer a {
    color: #cf8109;
    text-decoration: none;
}

.login-footer a:hover {
    text-decoration: underline;
}

/* ==================== USER PROFILE STYLES ==================== */
.user-profile {
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #462e12;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #eddab2;
    margin-right: 10px;
}

.user-info {
    display: flex;
    flex-direction: column;
}

.user-email {
    color: #eddab2;
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
}

.logout-btn {
    background: none;
    border: none;
    color: #cf8109;
    font-size: 12px;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
}

.logout-btn:hover {
    text-decoration: underline;
}

/* ==================== PRODUCT DETAILS MODAL STYLES ==================== */
.details-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.details-content {
    background-color: #111;
    border-radius: 10px;
    width: 90%;
    max-width: 800px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.details-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #222;
}

.details-header h2 {
    color: #eddab2;
    font-size: 24px;
    font-family: "Delius Swash Caps", cursive;
}

.close-details {
    background: none;
    border: none;
    color: #aaa;
    font-size: 24px;
    cursor: pointer;
}

.details-body {
    display: flex;
    padding: 20px;
}

.details-image {
    flex: 1;
    margin-right: 20px;
}

.details-image img {
    width: 100%;
    border-radius: 5px;
}

.details-info {
    flex: 1;
}

.details-description {
    color: #aaa;
    margin-bottom: 20px;
    line-height: 1.5;
    font-family: 'Roboto', sans-serif;
}

.details-price {
    color: #cf8109;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    font-family: 'Roboto', sans-serif;
}

.details-category {
    color: #aaa;
    margin-bottom: 20px;
    font-family: 'Roboto', sans-serif;
}

.details-add-to-cart {
    background-color: #462e12;
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Roboto', sans-serif;
}

.details-add-to-cart:hover {
    background-color: #5a3a1a;
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 768px) {
    .login-content {
        width: 95%;
    }
    
    .details-body {
        flex-direction: column;
    }
    
    .details-image {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .user-profile {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .user-avatar {
        margin-right: 0;
        margin-bottom: 5px;
    }
}

/* ==================== RESPONSIVE DESIGN IMPROVEMENTS ==================== */

/* Mobile Menu Toggle (add this to your header styles) */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

/* Responsive Design for Main Section */
@media (max-width: 1200px) {
    .main .text-main .main-line a {
        font-size: 60px;
    }
    
    .main .shop-learn {
        width: 45%;
    }
}

@media (max-width: 992px) {
    .main {
        height: 600px;
    }
    
    .main .header .option {
        width: 55%;
        gap: 3%;
    }
    
    .main .header .option #option-font a {
        font-size: 16px;
    }
    
    .main .text-main {
        width: 40%;
        left: 5%;
    }
    
    .main .text-main .main-line a {
        font-size: 55px;
    }
    
    .main .shop-learn {
        width: 50%;
        left: 5%;
    }
    
    .main .shop-learn .shop-now a, 
    .main .shop-learn .learn-more a {
        font-size: 22px;
    }
    
    .product-container {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
    
    .discount-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .discount-text {
        max-width: 100%;
    }
    
    .discount-images {
        margin-top: 20px;
    }
    
    .food-images {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .food-names {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .food-one, .food-three {
        position: static;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .footer-logo {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    /* Main Section */
    .main {
        height: 500px;
    }
    
    .main .header {
        height: 100px;
    }
    
    .main .header .logo {
        width: 20%;
        margin-left: 20px;
    }
    
    .main .header .option {
        display: none; /* Hide desktop menu */
    }
    
    .mobile-menu-toggle {
        display: block; /* Show mobile menu toggle */
    }
    
    .main .text-main {
        width: 80%;
        left: 10%;
    }
    
    .main .text-main .main-line a {
        font-size: 40px;
    }
    
    .main .shop-learn {
        width: 80%;
        left: 10%;
        flex-direction: column;
        height: auto;
        gap: 15px;
    }
    
    .main .shop-learn .shop-now, 
    .main .shop-learn .learn-more {
        width: 100%;
        height: 50px;
    }
    
    /* Slider indicators */
    .main .slider-indicators {
        bottom: 20px;
    }
    
    .main .slider-dot {
        width: 10px;
        height: 10px;
    }
    
    /* Top Products Section */
    .top-product {
        padding: 40px 0;
    }
    
    .top-product-heading h2 {
        font-size: 32px;
    }
    
    .product-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .product-card {
        max-width: 100%;
        height: 350px;
    }
    
    /* Discount Section */
    .discount {
        height: auto;
        padding: 40px 0;
    }
    
    .discount-text h2 {
        font-size: 32px;
    }
    
    .discount-text p {
        font-size: 18px;
    }
    
    .discount-btn {
        padding: 12px 30px;
        font-size: 18px;
    }
    
    .discount-image-left img,
    .discount-image-center img,
    .discount-image-right img {
        width: 120px;
        height: 180px;
    }
    
    /* Explore More Section */
    .explore-more {
        padding: 40px 0;
    }
    
    .explore-heading h2 {
        font-size: 32px;
    }
    
    .category-container {
        width: 90%;
        gap: 10px;
    }
    
    .category-tag {
        padding: 8px 20px;
        font-size: 16px;
    }
    
    .explore-products {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    /* About Section */
    .about {
        height: auto;
        padding: 40px 0;
    }
    
    .about-text h1 {
        font-size: 36px;
        bottom: 0;
    }
    
    .about-text p {
        font-size: 16px;
    }
    
    .about-btn {
        padding: 12px 30px;
        font-size: 18px;
    }
    
    /* All Products Section */
    .all-products {
        padding: 40px 0;
    }
    
    .all-products-header h2 {
        font-size: 32px;
    }
    
    .all-products-btn {
        padding: 12px 30px;
        font-size: 18px;
    }
    
    .food-images {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .food-image {
        height: 200px;
    }
    
    .food-name {
        font-size: 18px;
        padding: 12px 30px;
    }
    
    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-brand {
        grid-column: 1;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .footer-logo {
        margin-bottom: 15px;
    }
    
    .social-icons {
        margin-top: 10px;
    }
    
    /* Discount Modal */
    .discount-modal-content {
        width: 95%;
        margin: 20px 0;
    }
    
    .discount-info {
        flex-direction: column;
        gap: 20px;
    }
    
    .discount-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto;
    }
    
    .discount-icon i {
        font-size: 28px;
    }
    
    .discount-modal-header {
        padding: 15px 20px;
    }
    
    .discount-modal-header h2 {
        font-size: 20px;
    }
    
    .discount-modal-body {
        padding: 20px;
    }
    
    .discount-text h3 {
        font-size: 18px;
    }
    
    .discount-text p {
        font-size: 14px;
    }
    
    .step {
        gap: 15px;
    }
    
    .step-number {
        width: 25px;
        height: 25px;
        font-size: 14px;
    }
    
    .step-content h4 {
        font-size: 16px;
    }
    
    .step-content p {
        font-size: 13px;
    }
    
    .discount-terms {
        padding: 15px;
    }
    
    .discount-terms h4 {
        font-size: 14px;
    }
    
    .discount-terms li {
        font-size: 13px;
    }
    
    .discount-actions {
        flex-direction: column;
    }
    
    .create-account-btn, .copy-code-btn {
        width: 100%;
    }
    
    /* Login Modal */
    .login-content {
        width: 95%;
    }
    
    /* Product Details Modal */
    .details-body {
        flex-direction: column;
    }
    
    .details-image {
        margin-right: 0;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    /* Main Section */
    .main {
        height: 450px;
    }
    
    .main .header {
        height: 80px;
    }
    
    .main .header .logo {
        width: 30%;
        height: 50px;
        margin-left: 15px;
    }
    
    .main .text-main {
        width: 90%;
        left: 5%;
    }
    
    .main .text-main .heading a {
        font-size: 20px;
    }
    
    .main .text-main .main-line a {
        font-size: 32px;
    }
    
    .main .shop-learn .shop-now a, 
    .main .shop-learn .learn-more a {
        font-size: 18px;
    }
    
    /* Top Products Section */
    .top-product-heading h2 {
        font-size: 28px;
    }
    
    .product-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .product-card {
        height: 300px;
    }
    
    .product-info h3 {
        font-size: 18px;
    }
    
    .product-price {
        font-size: 20px;
    }
    
    .add-btn {
        padding: 8px 15px;
        font-size: 14px;
    }
    
    /* Discount Section */
    .discount-text h2 {
        font-size: 28px;
    }
    
    .discount-text p {
        font-size: 16px;
    }
    
    .discount-btn {
        padding: 10px 25px;
        font-size: 16px;
    }
    
    .discount-image-left img,
    .discount-image-center img,
    .discount-image-right img {
        width: 90px;
        height: 135px;
    }}