@import url('https://fonts.googleapis.com/css2?family=Asap:ital,wght@0,100..900;1,100..900&family=Cedarville+Cursive&family=Creepster&family=Figtree:ital,wght@0,300..900;1,300..900&family=Kanit: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&family=Lato:wght@100;300;400;700;900&family=Playfair:wght@300..900&family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Butterfly+Kids&display=swap');

.butterfly-kids-regular {
  font-family: "Butterfly Kids", cursive;
  font-weight: 400;
  font-style: normal;
}

html {
    scroll-behavior: smooth;    
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: #F5F1ED;
    margin: 0;
    height: auto;
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    background-color: #FFFFFF;
    color: #333333;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.navbar-logo img {
    width: 50px;
    height: auto;
}

.navbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.desktop-nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
}

.desktop-nav-links li a {
    text-decoration: none;
    color: #333333;
    font-size: 16px;
}

.desktop-nav-links li a:hover {
    color: #c9823b;
}

.search-container {
    position: relative;
}

.search-bar {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    padding: 5px 10px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    border: 2px solid #E8F1EC;
    border-radius: 20px;
    background-color: #FFFFFF;
    z-index: 999;
    transition: opacity 0.3s ease, top 0.3s ease;
    opacity: 0;
    pointer-events: none;
}

.search-bar.active {
    opacity: 1;
    top: 60px;
    pointer-events: auto;
}

.search-icon {
    cursor: pointer;
    position: relative;
    font-size: 24px;
}

.icon-search {
    width: 40px;
    height: auto;
}

.wishlist-icon {
    position: relative;
    cursor: pointer;
}

.wishlist-heart {
    width: 50px;
    height: 50px;
}

.wishlist-icon .count {
    background-color: #ed0000;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    text-align: center;
    color: #FFFFFF;
    font-size: 12px;
    line-height: 20px;
    position: absolute;
    top: 5px;
    right: 5px;
}

/* Mobile Wishlist Icon (Outside Navbar) */
.mobile-wishlist-outside {
    display: none;
    position: fixed;
    top: 15px;
    right: 60px;
    z-index: 1001;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.wishlist-heart-outside {
    width: 50px;
    height: 50px;
}

.mobile-wishlist-outside .count {
    background-color: #ff0000;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    text-align: center;
    color: #FFFFFF;
    font-size: 12px;
    line-height: 20px;
    position: absolute;
    top: 5px;
    right: 5px;
}

/* Burger Menu */
.burger-menu {
    top: -20px !important;
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background-color: #333333;
    transition: all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: #FFFFFF;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu ul {
    list-style: none;
    padding: 20px;
}

.mobile-menu ul li {
    margin: 15px 0;
}

.mobile-menu ul li a {
    text-decoration: none;
    color: #333333;
    font-size: 16px;
}

.mobile-search {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-search .search-container {
    width: 100%;
}

.mobile-search .search-bar {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    width: 100%;
}

/* Wishlist Sidebar */
.wishlist-sidebar {
    position: fixed;
    right: -300px;
    top: 80px;
    width: 300px;
    height: calc(100% - 80px);
    background-color: #FFFFFF;
    padding: 20px;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    z-index: 1000;
}

.wishlist-sidebar.active {
    right: 0;
}

.wishlist-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.close-wishlist {
    background-color: #c10000;
    color: #FFFFFF;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
}

.close-wishlist:hover {
    background-color: #ff6551;
}

.wishlist-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.wishlist-item img {
    width: 50px;
    height: auto;
    margin-right: 10px;
}

.wishlist-item button {
    padding: 2px 10px;
    background-color: #d20202;
    color: #FFFFFF;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.wishlist-item button:hover {
    background-color: #5f1100;
}

.wishlist-item div {
    display: flex;
    align-items: center;
    gap: 3px;
}

.wishlist-item div span {
    min-width: 20px;
    text-align: center;
}

.wishlist-empty {
    display: block;
    text-align: center;
    color: #666666;
    font-size: 16px;
    margin-top: 20px;
}

/* System Message */
.system-message {
    position: fixed;
    top: 80px;
    right: 20px;
    background-color: #ff8000;
    color: #FFFFFF;
    padding: 10px 20px;
    border-radius: 5px;
    z-index: 1002;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.system-message.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* ============================================
   SLIDER SECTION WITH BACKGROUND TEXT
   ============================================ */

.slider {
    position: relative;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #ff6f00 0%, #ff8000 100%);
    overflow: hidden;
}

/*.slider::before {
    position: absolute;
    width: 60%;
    height: 130vh;
    top: -10%;
    content: '';
    border-radius: 50%;
    right: -20%;
    background-color: #dba87f;
    z-index: 2;
}
*/
.slider::after {
    position: absolute;
    top: 50px;
    left: 50px;
    content: '';
    background-color: red;
    width: 100px;
    height: 80px;
    z-index: 3;
    pointer-events: none;
    border-radius: 20px 50px 110px 230px;
    filter: blur(150px);
    opacity: 0.6;
}

/* Background Text Wrapper - Full Coverage */
.background-text-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.text-line {
    font-size: 120px;
    font-weight: 900;
    color: rgb(255, 217, 0);
    white-space: nowrap;
    line-height: 1;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, sans-serif;
    letter-spacing: 20px;
    opacity: .3;
    text-transform: uppercase;
    width: 200%;
}

.text-line:nth-child(odd) {
    animation: scrollLeft 250s linear infinite;
}

.text-line:nth-child(even) {
    animation: scrollRight 250s linear infinite;
}

@keyframes scrollLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes scrollRight {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* Title */
.title {
    font-family: "Butterfly Kids", cursive;
    position: absolute;
    top: 10%;
    right: 50%;
    text-align: right;
    color: #FFFFFF;
    font-size: 150px;
    width: 40%;
    line-height: 0.9em;
    text-shadow: 3px 5px 0 #a40707;
    z-index: 100;
}

/* Content */
.content {
    color: #000000;
    position: absolute;
    top: 10%;
    left: 60%;
    font-size: 25px;
    width: 350px;
    z-index: 100;
}

.content h1 {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: #4f2100;
    font-weight: 200 !important;
    font-size: 50px !important;
}

.content button {
    margin-top: 30px;
    padding: 10px 30px;
    border-radius: 20px;
    background-color: #ffe770;
    color: #242424;
    border: none;
    float: right;
    cursor: pointer;
}

.content button:hover {
    background-color: #f5d659;
    color: #000000;
}

.content .item {
    display: none;
}

.content .item.active {
    display: block;
}

.content .item h1 {
    font-size: 2vw;
    font-weight: 900;
    text-transform: capitalize;
    transform: translateY(50px);
    transition: 1s;
    opacity: 0;
    visibility: hidden;
    white-space: nowrap;
    margin: 0;
    padding: 0;
}

.content .item.active h1 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    animation: showContent 0.5s ease-in-out 1 forwards;
}

.content .item.active .des {
    opacity: 0;
    animation: showContent 0.5s 0.3s ease-in-out 1 forwards;
}

.content .item.active button {
    opacity: 0;
    animation: showContent 0.5s 0.6s ease-in-out 1 forwards;
}

@keyframes showContent {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Images Carousel */
.images {
    position: absolute;
    height: 100vh;
    display: flex;
    flex-direction: column;
    left: 50%;
    bottom: 0%;
    --rotate: 0deg;
    transform: translate(-50%, 69%) rotate(var(--rotate));
    width: 1300px;
    height: 1300px;
    border-radius: 50%;
    transition: transform 0.5s ease-in-out;
    z-index: 100;
}

.images .item {
    position: absolute;
    width: 100%;
    height: 100%;
    text-align: center;
    rotate: calc(60deg * var(--i));
}

.images .item img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

/* Navigation Buttons */
#prev, #next {
    position: absolute;
    border: none;
    top: 50%;
    z-index: 2000;
    left: 250px;
    font-size: 100px;
    font-family: cursive;
    background-color: transparent;
    color: #f3f3f3;
    font-weight: bold;
    opacity: 0.5;
    cursor: pointer;
}

#next {
    left: unset;
    right: 250px;
}

#prev:hover, #next:hover {
    opacity: 1;
}

#prevMobile, #nextMobile {
    position: absolute;
    border: none;
    top: 58%;
    z-index: 2000;
    visibility: collapse;
    left: 60px;
    font-size: 100px;
    font-family: cursive;
    background-color: transparent;
    color: #f5f5f5;
    font-weight: 500;
    opacity: 0.5;
    cursor: pointer;
}

#nextMobile {
    left: unset;
    right: 60px;
}

#prevMobile:hover, #nextMobile:hover {
    opacity: 1;
}

/* ============================================
   FLAVOURS SECTION
   ============================================ */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.logo {
    text-align: center;
    margin-bottom: 40px;
}

.logo h1 {
    font-size: 28px;
    color: #5D4E3C;
    font-weight: 300;
    letter-spacing: 8px;
    margin-bottom: 5px;
}

.logo p {
    font-size: 14px;
    color: #5D4E3C;
    letter-spacing: 3px;
}

.collection {
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid #A0826D;
    border-radius: 30px;
    padding: 40px 30px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.collection-title {
    text-align: center;
    font-size: 24px;
    color: #5D4E3C;
    font-weight: bold;
    letter-spacing: 3px;
    margin-bottom: 30px;
    padding: 10px 20px;
    background: #E8D5C4;
    display: inline-block;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px;
}

.flavors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 25px;
    justify-items: center;
}

.flavor-item {
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.flavor-item:hover {
    transform: translateY(-5px);
}

.flavor-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border: 3px solid rgba(255, 255, 255, 0.5);
    background-size: cover;
    background-position: center;
}

.flavor-image img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.flavor-name {
    font-size: 16px;
    font-weight: bold;
    color: #5D4E3C;
    margin-bottom: 5px;
}

.flavor-description {
    font-size: 13px;
    color: #7D6E5C;
}

/* Packages Section */
.packages-section {
    background: linear-gradient(135deg, #D4956C 0%, #C77D52 100%);
    border-radius: 30px;
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
    margin-top: 30px;
}

.packages-info h3 {
    font-size: 28px;
    color: white;
    margin-bottom: 10px;
    font-weight: 300;
}

.packages-info p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.price {
    font-size: 24px;
    color: white;
    font-weight: bold;
    margin-left: 15px;
}

.package-item {
    margin-bottom: 15px;
}

.packages-visual {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

/* ============================================
   MENU SECTION
   ============================================ */

.menu-header {
    margin-top: 20px;
    color: #4a2600;
    text-align: center;
    font-size: 36px;
}

.menu {
    background-color: #f2f2f2;
    padding: 40px 20px;
    width: 100%;
    margin: 0 auto;
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.tab {
    background: none;
    border: none;
    font-size: 18px;
    font-weight: bold;
    color: #4c4c4c;
    cursor: pointer;
    padding-bottom: 5px;
}

.tab.active {
    color: #161616;
    border-bottom: 2px solid #ff683a;
}

.menu-items {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.category {
    display: none;
    width: 100%;
}

.category.active {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.menu-item {
    background-color: #FFFFFF;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
}

.menu-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.menu-item .product-image {
    width: 252px;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
    margin: 0 auto 10px auto;
    background: #ffffff;
}

.menu-item h3 {
    margin: 15px 0 10px;
    color: #333333;
}

.menu-item p {
    color: #666666;
    font-size: 14px;
    margin-bottom: 15px;
}

.actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.price-item {
    background-color: #bc7a29;
    color: white;
    padding: 10px;
    border-radius: 50%;
}

.order-btn {
    background-color: #fdca72;
    color: #ffffff;
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 14px;
}

.order-btn:hover {
    background-color: #ecab7c;
}

.wishlist-btn {
    width: 30px !important;
    height: 30px !important;
    padding: 0 !important;
    margin-left: 8px;
    vertical-align: middle;
    object-fit: contain;
    cursor: pointer;
}

.wishlist-btn:hover {
    transform: scale(1.2);
}

.details-btn {
    background-color: #E8F1EC;
    color: #333333;
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    display: block;
    margin: 0 auto;
}

.details-btn:hover {
    background-color: #752900;
    color: #FFFFFF;
}

.not-found {
    text-align: center;
    color: #666666;
    font-size: 18px;
    margin-top: 20px;
    width: 100%;
}

/* ============================================
   MODAL STYLES
   ============================================ */

.modal {
    display: none;
    position: fixed;
    z-index: 500;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    overflow-y: auto;
    padding: 20px;
    box-sizing: border-box;
}

.modal-content {
    background-color: #FFFFFF;
    margin: 5% auto;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    min-height: 300px;
    max-height: 80vh;
    overflow-y: auto;
    box-sizing: border-box;
}

.modal-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
}

.modal-content h2 {
    color: #333333;
    margin-bottom: 10px;
    font-size: 24px;
}

.modal-content p {
    color: #666666;
    margin: 5px 0;
    font-size: 14px;
}

.modal-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    margin-bottom: 15px;
}

.close {
    color: #151515;
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 501;
}

.close:hover,
.close:focus {
    color: #333333;
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, #F5E6D3 0%, #E8D5C4 100%);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    align-items: center;
}

.about-image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.05);
}

.about-content {
    flex: 1;
    padding: 20px;
}

.about-content h2 {
    color: #4a2600;
    font-size: 2.5rem;
    font-weight: 100;
    margin-bottom: 20px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.about-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.menu-list {
    background-color: #f8f8f8;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.menu-list h3 {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.menu-list ul {
    list-style: none;
    padding: 0;
}

.menu-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px dashed #ddd;
}

.menu-list li:last-child {
    border-bottom: none;
}

.menu-item-name {
    color: #444;
    font-weight: 500;
}

.menu-item-price {
    color: #A4C93B;
    font-weight: 700;
}

/* ============================================
   FOOTER STYLES
   ============================================ */

.gelato-footer {
    background: linear-gradient(135deg, #5D4037 0%, #3E2723 50%, #4E342E 100%);
    color: #FFF8E1;
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
    font-family: 'Georgia', serif;
    width: 100%;
    box-sizing: border-box;
}

.footer-float {
    position: absolute;
    width: 60px;
    height: 60px;
    object-fit: contain;
    opacity: 0.25;
    pointer-events: none;
    animation: footerFloat 6s ease-in-out infinite;
}

.footer-float-1 {
    top: 15%;
    left: 5%;
    animation-delay: 0s;
}
.footer-float-2 {
    top: 60%;
    left: 12%;
    width: 50px;
    height: 50px;
    animation-delay: 1.2s;
}
.footer-float-3 {
    top: 10%;
    right: 8%;
    animation-delay: 2.4s;
}
.footer-float-4 {
    bottom: 25%;
    right: 5%;
    width: 55px;
    height: 55px;
    animation-delay: 3.6s;
}
.footer-float-5 {
    top: 45%;
    left: 50%;
    width: 50px;
    height: 50px;
    animation-delay: 4.8s;
}

@keyframes footerFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(10deg); }
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.footer-brand .footer-logo {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, sans-serif;
    font-weight: 100;
    font-size: 2rem;
    margin-bottom: 10px;
    color: #FFCC80;
    font-style: italic;
}

.footer-brand .footer-tagline {
    font-size: 0.95rem;
    opacity: 0.85;
    margin-bottom: 15px;
}

.footer-section h3 {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, sans-serif;
    font-weight: 100;
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #FFCC80;
    letter-spacing: 1px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #FFF8E1;
    text-decoration: none;
    opacity: 0.85;
    transition: opacity 0.3s;
}

.footer-section ul li a:hover {
    opacity: 1;
}

.footer-section p {
    opacity: 0.85;
    line-height: 1.6;
    margin-bottom: 8px;
}

/* Social Icons */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFCC80;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    transform: translateY(-3px);
}

.footer-social .social-facebook:hover {
    background: #1877F2;
    color: #ffffff;
}

.footer-social .social-instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #ffffff;
}

.footer-social .social-x:hover {
    background: #000000;
    color: #ffffff;
}

.footer-social .social-tiktok:hover {
    background: #000000;
    color: #00f2ea;
}

.footer-social .social-youtube:hover {
    background: #FF0000;
    color: #ffffff;
}

/* Newsletter */
.footer-newsletter {
    min-width: 220px;
}

.newsletter-form {
    display: flex;
    margin-top: 12px;
    gap: 0;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 25px 0 0 25px;
    font-size: 0.9rem;
    outline: none;
    background: rgba(255,255,255,0.95);
    color: #3E2723;
}

.newsletter-form input::placeholder {
    color: #8D6E63;
}

.newsletter-form button {
    padding: 12px 18px;
    border: none;
    border-radius: 0 25px 25px 0;
    background: #FFCC80;
    color: #3E2723;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-form button:hover {
    background: #FFB74D;
    transform: scale(1.05);
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding: 20px 40px 0;
    border-top: 1px solid rgba(255,255,255,0.15);
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    opacity: 0.7;
    font-size: 0.9rem;
    margin: 0;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media only screen and (min-width: 1024px) {
    /* Desktop: 3 items per row */
    .menu-item {
        width: calc(33.33% - 14px);
    }
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
    /* Tablets: 3 items per row */
    .menu-item {
        width: calc(33.33% - 14px);
    }

    .modal {
        padding-top: 80px;
    }

    .modal-content {
        margin-top: 0;
    }

    .close {
        z-index: 501;
    }

    .desktop-nav-links {
        display: none;
    }

    .text-line {
        font-size: 80px;
        letter-spacing: 12px;
        opacity: 0.06;
    }

    

    .footer-content {
        grid-template-columns: 1fr 1fr;
        padding: 0 20px;
    }
    
    .footer-newsletter {
        grid-column: span 2;
    }
}

@media only screen and (max-width: 767px) {
    /* Mobile: 1 item per row */
    .navbar-right .search-container,
    .navbar-right .wishlist-icon,
    .desktop-nav-links {
        display: none;
    }

    .content .item h1 {
        font-size: 6vw !important;
        font-weight: 900;
        text-transform: capitalize;
        transform: translateY(50px);
        transition: 1s;
        opacity: 0;
        visibility: hidden;
        white-space: nowrap;
        margin: 0;
        padding: 0;
    }

    .burger-menu {
        display: flex;
    }

    .mobile-wishlist-outside {
        display: flex;
    }

    #prev, #next {
        visibility: collapse;
    }

    #prevMobile, #nextMobile {
        visibility: visible;
        margin: bottom 160px !important;;
        color: rgb(255, 255, 255) !important;
        z-index: 100 !important;
    }

    .images {
        border-radius: 80%;
        transform: translate(-50%, 69%) rotate(var(--rotate));
        width: 1100px;
        height: 1100px;
    }

    .images .item img {
        width: 250px;
        height: 250px;
        object-fit: contain;
        aspect-ratio: 3/2;
    }

    .text-line {
        font-size: 60px;
        letter-spacing: 8px;
   
    }
.text-line {

    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, sans-serif;

    opacity: .3;
    text-transform: uppercase;

}

.text-line:nth-child(odd) {
    animation: scrollLeft 150s linear infinite;
}

.text-line:nth-child(even) {
    animation: scrollRight 150s linear infinite;
}

@keyframes scrollLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes scrollRight {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}
  /*  .slider::before {
        position: absolute;
        width: 140%;
        height: 100vh;
        top: 0%;
        content: '';
        border-radius: 50%;
        right: -80%;
        background-color: #e4a36e;
    }
*/
    .title {
        font-family: "Butterfly Kids", cursive;
        position: absolute;
        top: 5%;
        left: 39%;
        transform: translateX(-50%);
        text-align: center;
        color: #FFFFFF;
        font-size: 5rem;
        width: 80%;
        line-height: 1.2;
        text-shadow: 2px 3px 0 #333333;
    }

    .content {
        margin-top: 30px;
        color: #111111;
        position: absolute;
        z-index: 100;
        top: 25%;
        left: 5%;
        width: 90%;
        text-align: justify;
    }

    .content h1 {
        font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        color: #783600;
        font-size: 90px !important;
        font-weight: 400 !important;
        z-index: 100;
    }

    .content button {
        margin-top: 30px;
        padding: 10px 30px;
        border-radius: 20px;
        background-color: #fdb067;
        color: #0f0f0f;
        border: none;
        float: right;
        z-index: 1000;
    }

    .icon-search {
        width: 20px;
        height: auto;
    }

    .wishlist-sidebar {
        width: 280px;
    }

    .menu-item {
        width: 100%;
    }

    .system-message {
        top: 70px;
        right: 10px;
        font-size: 14px;
        padding: 8px 16px;
    }

    .modal {
        padding: 10px;
    }

    .modal-content {
        width: 95%;
        margin: 10% auto;
        max-height: 85vh;
    }

    .about-container {
        flex-direction: column;
    }
    
    .about-image {
        width: 100%;
        max-height: 300px;
    }
    
    .about-content {
        text-align: center;
    }
    
    .menu-list li {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }

    .packages-section {
        grid-template-columns: 1fr;
    }

    .flavors-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 15px;
    }

    .flavor-image {
        width: 90px;
        height: 90px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        padding: 0 20px;
    }
    
    .footer-newsletter {
        grid-column: span 2;
    }
}

@media screen and (max-width: 480px) {
    .text-line {
        font-size: 55px;
        font-weight: 900;
        letter-spacing: 5px;
        opacity: .3;
        line-height: 1.0;
    }

    .content {
        margin-top: 30px;
        color: #ffffff;
        position: absolute;
        z-index: 100;
        font-size: 1.5rem;
        top: 25%;
        left: 5%;
        width: 90%;
        text-align: justify;
    }

    .content h1 {
        font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        color: #693300;
        font-size: 70px !important;
        z-index: 100;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-newsletter {
        grid-column: span 1;
    }
}

@media screen and (max-width: 360px) {
    .text-line {
        font-size: 22px;
        letter-spacing: 2px;
    }
}