:root {
    --primary-color: #1a1a1a;
    --accent-color: #0066cc;
    --gray-light: #f8f9fa;
    --border-color: #e5e7eb;
    --hover-blue: #004d99;
    --text-color: #1a1a1a;
    --btn-padding: 9px 12px;
    --font-size-small: 13px;
    --font-size-normal: 16px;
    --border-radius: 24px;
}

/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Graphik Webfont", -apple-system, system-ui, Roboto, sans-serif;
}

html {
    scroll-behavior: smooth;
}

/* Body Styles */
body {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
}

/* Header Styles */
header {
    box-shadow: #222222;
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 2rem 0;
}

.header-container, .top-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.header-container {
    padding: 1rem;
}

.top-nav {
    justify-content: space-between;
    padding: 1rem 0;
}

/* Navigation Styles */
.nav-left, .nav-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-buttons {
    display: flex;
    gap: 1rem;
}

.search-container {
    flex: 1;
    max-width: 50%;
    height: 48px;
    margin: 0 1rem;
    position: relative;
}

.search-container input {
    height: 48px;
    width: 100%;
    font-size: var(--font-size-normal);
    padding: 9px 42px 9px 18px;
    border-radius: var(--border-radius);
}

.search-btn {
    position: absolute;
    color: white;
    width: 48px;
    height: 48px;
    right: 0;
    background-color: #008080;
    cursor: pointer;
}

.search-btn:hover {
    border-radius: 32px;
}

/* Buttons and Interactions */
button, .sign-in, .sell-btn, .region-btn, .icon-btn {
    border: none;
    background: none;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
}

button, .nav-btn {
    text-decoration: none;
    font-size: var(--font-size-small);
    padding: var(--btn-padding);
}

.sell-btn {
    font-weight: 600;
    background-color: #5959592a;
    border-radius: var(--border-radius);
}

.sign-in:hover {
    background-color: #0080805d !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 0 #22222263;
}

.region-btn {
    padding: 0.5rem;
    text-decoration: none;
}

.flag-icon, .icon-btn {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    text-decoration: none;
}

.icon-btn {
    text-decoration: none;
    position: relative;
}

.hover-text {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(-4px);
    background: var(--hover-blue);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.875rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
}

.icon-btn:hover .hover-text,
.region-btn:hover .hover-text {
    opacity: 1;
    visibility: visible;
}

.categories-nav {
    text-decoration: none solid rgba(34, 34, 34);

    text-decoration: none;
    margin-top: 0;
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 0.5rem 0;
}

/* Remove default button styling */
.categories-nav .nav-btn {
    background: white; /* White background */
    border: none;
    color: rgb(26, 25, 25); /* Black text */
    font: inherit;
    cursor: pointer;
    padding: 10px 20px;
    text-align: left;
    text-decoration: none solid rgba(34, 34, 34);
    display: flex;
    align-items: center;
    gap: 10px; /* Space between icon and text */
    border-radius: 24px; /* Rounded corners */
    transition: background-color 0.3s ease, color 0.3s ease; /* Smooth transition */
}

/* Hover effect */
.categories-nav .nav-btn:hover {
    text-decoration: none;
    background-color: rgba(0, 0, 0, 0.13); /* Black background on hover */
}

/* Icon styling */
.categories-nav .nav-btn i {
    text-decoration: none;
    font-size: 1.2em; /* Adjust icon size */
}



.nav-btn {
    background: none;
    color: var(--text-color);
    font-family: "Graphik Webfont", -apple-system, Helvetica Neue, Droid Sans, Arial, sans-serif;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background-color 0.3s ease, border-radius 0.3s ease;
}

.nav-btn:hover {
    background-color: rgba(34, 34, 34, 0.158);
    border-radius: var(--border-radius);
}

.nav-btn i {
    font-size: 1rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    body {
        padding: 1rem;
    }

    .header-container, .top-nav {
        flex-direction: column;
        align-items: center;
    }

    .nav-left, .nav-right {
        gap: 0.5rem;
        flex-direction: column;
        align-items: center;
    }

    .search-container {
        max-width: 100%;
        margin: 1rem 0;
    }

    .search-container input {
        font-size: 14px;
    }

    .nav-btn {
        font-size: 12px;
        padding: 0.5rem;
    }

    .nav-buttons {
        flex-direction: column;
    }

    .sell-btn, .sign-in {
        width: 100%;
        margin-bottom: 1rem;
    }

    .categories-nav {
        flex-direction: column;
        gap: 1rem;
    }

    .logo img {
        
        display: block;
        cursor: pointer;
        width: 100px;
        height: 100px;
    }

    .search-btn {
        right: 10px;
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .header-container, .top-nav {
        padding: 0;
        margin: 0;
    }

    .nav-btn {
        font-size: 11px;
        padding: 0.3rem 0.8rem;
    }

    .sell-btn {
        font-size: 14px;
        padding: 8px 12px;
    }

    .search-container input {
        font-size: 14px;
        padding: 8px 36px 8px 16px;
    }

    .search-btn {
        right: 5px;
        width: 36px;
        height: 36px;
    }

    .categories-nav {
        padding: 1rem 0;
    }
}


/* Categories Dropdown */
.categories-dropdown {
    position: relative;
    display: inline-block;
}

#menu-v li ul {
    position: absolute;
    width: 200px;
    z-index: 9999;
    display: none;
  }
  
  #menu-v li:hover ul {
    display: block;
  }
  

.categories-btn {
    border-radius: 24px;
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border: 1px solid var(--border-color);
    background: white;
    cursor: pointer;
    font-size: 1rem;
    color: var(--text-color);
    border-radius: 24px;
    outline: none;
}

.categories-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.856);    
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 250px;
    display: none; /* Hidden by default */
    z-index: 1000;
}

.dropdown-menu.active {
    display: block; /* Shown when active */
}

.dropdown-item {
    display: block;
    padding: 25px;
    text-decoration: none;
    color: var(--text-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropdown-item:hover {
    text-decoration: underline;
    background-color: var(--gray-light);
}

.dropdown-item.parent {
    position: relative;
}

.dropdown-item.parent:after {
    content: '›';
    font-size: 14px;
    margin-left: auto;
}

.submenu {
    padding: 25px;
    position: absolute;
    top: 0;
    left: 100%;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 200px;
    display: none;
    z-index: 1001;
}

.submenu a {
    display: block;
    padding: 0.75rem 1rem;
    text-decoration: none;
    color: var(--text-color);
}

.submenu a:hover {
    text-decoration: underline;
    background-color: var(--gray-light);
}

/* Accessibility */
.dropdown-item:focus,
.submenu a:focus {
    outline: 2px solid var(--focus-color);
}

/* Main Content Styles */
main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
}

.occasion-gifts {
    max-width: 1400px;
    margin: 0 auto;
    padding: 32px 0;
}

h1 {
    font-family: "Guardian-EgypTT", serif;
    text-align: center;
    text-decoration: none;
    font-size: 32px;
    font-weight: 300;
    line-height: 36px;
    color: #222222;
    padding: 0 18px;
    padding-top: 18px;
}

.gift-categories {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 36px;
    gap: 24px;
    flex-wrap: wrap; /* Ensures wrapping of categories */
}

.gift-category {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 200px; /* Fixed width */
    padding: 0;
}

.gift-category img {
    border-radius: 32%;
    object-fit: cover;
    width: 114px;
    height: 114px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 rgba(0, 128, 128, 0); /* Default shadow (no glow) */
}

.gift-category span {
    font-weight: bold;
    display: block;
    margin-top: 6px;
}

.gift-category:hover img {
    transform: scale(1.1);
    box-shadow: 0 0 20px 5px #00838386, 
                0 0 30px 10px #00ffff33, 
                0 0 50px 15px #00ffff5d; /* Teal glow effect */
}

.gift-category:hover {
    cursor: pointer;
}

/* Add media queries for responsiveness */
@media (max-width: 1200px) {
    .gift-categories {
        gap: 24px;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .occasion-gifts {
        padding: 36px 24px;
    }

    h1 {
        font-size: 28px;
        line-height: 32px;
    }

    .gift-category {
        width: 120px;
    }

    .gift-category img {
        width: 100px;
        height: 100px;
    }

    /* Adjust Dropdown for Smaller Screens */
    .dropdown-menu {
        width: 200px;
    }

    .categories-btn {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }

    .dropdown-item {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 24px;
        line-height: 28px;
    }

    .gift-category {
        width: 100px;
    }

    .gift-category img {
        width: 80px;
        height: 80px;
    }

    .categories-btn {
        font-size: 0.8rem;
        padding: 0.3rem 0.7rem;
    }

    .dropdown-menu {
        width: 180px;
    }

    .dropdown-item {
        padding: 15px;
    }
}

.h2 {
    font-family: Graphik Webfont, -apple-system, Helvetica Neue, Droid Sans, Arial, "sans-serif";
    font-size: 27px;
    font-weight: 500;
}


.featured-categories {
    display: flex;
    flex-direction: column;
    max-width: 1400px;
    margin: 0 auto;
    padding: 12px 36px 48px;
}

.featured-categories h2 {
    font-family: Graphik Webfont, -apple-system, Helvetica Neue, Droid Sans, Arial, "sans-serif";
    font-size: 27px;
    font-weight: bold;
    text-decoration: solid;
    color: #222222;
    margin-bottom: 24px;
    text-align: left;
    word-spacing: 0px;
    letter-spacing: 0.13505px;
    line-height: 35.113px;
}

.category-grid {
    display: flex;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
    width: 100%;
}

.category-item {
    text-decoration: solid;
    color: #222222;
    display: block;
    position: relative;
    transition: transform 0.2s ease-in-out;
    width: 500px;
}

.category-image {
    position: relative;
    width: 100%;
    height: 100%;
    padding-bottom: 100%; /* Creates a perfect square */
    overflow: hidden;
    border-radius: 6px;
    background-color: #faf9f8;
    aspect-ratio: 0.8 / 1;
}

.category-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.2s ease-in-out;
}

.category-item:hover{
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);

}

.category-item:hover .category-image img {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);

}

.category-label {
    font-family: -apple-system, Arial, Helvetica, sans-serif;
    font-size: 16px;
    color: #222222;
    margin-top: 8px;
    text-align: left;
    font-weight: bold;
    line-height: 1.4;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .category-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .featured-categories {
        padding: 12px 24px 36px;
    }
}

@media (max-width: 480px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .featured-categories h2 {
        font-size: 27px;
        margin-bottom: 16px;
        font-weight: bold;
    }
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    padding: 0 36px;
}

.product-card {
    border-radius: 6px;
    overflow: hidden;
}

.product-info {
    padding: 1rem;
}

.rating {
    color: var(--rating-color);
    margin: 0.5rem 0;
}

.shipping {
    color: #595959;
    font-size: 0.9rem;
}

.occasion-cards {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 60px;
}

.occasion-card:hover {
    box-shadow: 0 5px 0 #2222224d;
    transform: translateY(-4px);
}

.occasion-cards::-webkit-scrollbar {
    display: none;
}

.occasion-card {
    position: relative;
    min-width: 200px;
    border-radius: 8px;
    overflow: hidden;
}

.badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: white;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.8rem;
}

.deals-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    padding: 0 36px;
}

.deal-card {
    text-align: center;
}

.local-shops-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--primary-color);
    border-radius: 24px;
    background: white;
    cursor: pointer;
    margin-bottom: 2rem;
}


/* Accordion Styles */
.accordion-item {
    border-top: 1px solid var(--border-color);
}

.accordion-btn {
    width: 100%;
    text-align: left;
    padding: 1rem 0;
    background: none;
    border: none;
    cursor: pointer;
}

/* Popular Gifts Section */
.popular-gifts {
    display: flex;
    flex-direction: column;
    max-width: 1400px;
    margin: 0 auto;
    padding: 12px 36px 48px;
}

.popular-gifts h2 {
    font-family: Graphik Webfont, -apple-system, Helvetica Neue, Droid Sans, Arial, "sans-serif";
    font-size: 27px;
    font-weight: bold;
    color: #222222;
    margin-bottom: 24px;
    text-align: left;
    line-height: 35.113px;
}

/* Product Slider */
.product-slider {
    position: relative;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

.product-slider::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns */
    gap: 20px; /* Space between cards */
    padding: 0 20px; /* Padding on the sides */
}

.product-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    width: 500px;
}

.product-image-container {
    position: relative;
    width: 100%;
    padding-top: 100%; /* Square aspect ratio */
    overflow: hidden;
}

.product-image-container img {
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    object-fit: cover;
}

/* Favorite Button */
.favorite-button {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.favorite-button:hover {
    background-color: rgba(255, 0, 76, 0.411) !important;
}

.favorite-button i {
    font-size: 18px;
    color: #222222;
}

/* Product Details */
.product-details {
    padding: 8px 4px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 4px;
}

.stars {
    color: #222222;
    font-size: 14px;
    letter-spacing: 2px;
}

.review-count {
    color: #595959;
    font-size: 13px;
}

.product-price {
    margin-bottom: 4px;
    font-size: 16px;
    display: flex;
    gap: 8px;
    align-items: center;
}

.price-value {
    font-weight: 500;
}

.original-price {
    text-decoration: line-through;
    color: #0F743B;
    font-size: 14px;
}

.discount {
    color: #0F743B;
    font-size: 14px;
}

/* Shipping Info */
.shipping-info {
    display: inline-block;
    text-align: left;
    border-radius: 24px;
    font-weight: 700;
    padding: 3px 6px;
    background-color: #A0E193;
    color: #222222e7;
    font-size: 11px;
    white-space: nowrap;
}

/* Product Description */
.product-description {
    font-size: 16px;
    letter-spacing: 0.08px;
    line-height: 1.5em;
    height: 3em;
    text-align: left;
    font-weight: 500;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* Hover Effects */
.product-card:hover .product-image-container img {
    transform: scale(1.05);
}

.favorite-button:hover {
    background-color: #f5f5f5;
}

/* Media Queries */
@media (max-width: 768px) {
    .popular-gifts {
        padding: 12px 24px 36px;
    }

    .product-grid {
        grid-auto-columns: 240px;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .popular-gifts h2 {
        font-size: 20px;
        margin-bottom: 16px;
    }
}

/* Occasion Carousel */
.occasion-carousel {
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 48px 0;
    margin: 0 auto;
    max-width: 1400px;
}

/* Heading Container */
.heading-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding: 0; /* Ensures same padding as the card section */
}

.heading-container h2 {
    text-align: left;
    font-family: Graphik Webfont, -apple-system, Helvetica Neue, Droid Sans, Arial, sans-serif;
    font-size: 27px;
    font-weight: bold;
    color: #222222;
    margin: 0;
    letter-spacing: 0.13505px;
    line-height: 35.113px;
}

/* Occasion Cards */
.occasion-cards {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 0 60px; /* Same padding as heading-container */
    -ms-overflow-style: none; 
    scrollbar-width: none; 
}

.occasion-cards::-webkit-scrollbar {
    display: none;
}

/* Occasion Card */
.occasion-card {
    flex: 0 0 auto;
    width: 274px;
    height: 274px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

/* Navigation Buttons */
.nav-buttons {
    display: flex;
    gap: 12px;
}

/* Image Overlay */
.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.842), transparent);
    z-index: 1;
}

.occasion-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Calendar Icon */
.calendar-icon {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    background: rgba(255, 255, 255, 0.514);
    padding: 6px;
    border-radius: 4px;
}

/* Card Badge */
.card-badge {
    position: absolute;
    top: 12px;
    left: 48px;
    z-index: 2;
    padding: 6px 12px;
    border-radius: 24px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.829);
    font-weight: bold;
}

/* Card Title */
.card-title {
    position: absolute;
    bottom: 12px;
    left: 12px;
    z-index: 2;
    color: white;
    font-size: 24px;
    font-weight: bold;
}

/* Scroll Buttons */
.scrl-buttons {
    display: flex;
    gap: 12px; /* Space between buttons */
    box-shadow: #222222;
}

.scrl-btn {
    width: 48px;
    height: 48px;
    background: rgb(255, 255, 255);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    color: black;
    transition: background 0.3s ease;
}

.scrl-btn:hover {
    background: rgba(221, 221, 221, 0.568);
}

/* Reset margin top for occasion cards */
.occasion-cards {
    margin-top: 0;
}


/* Special Prices Section */
.special-prices {
    display: flex;
    flex-direction: column;
    padding: 48px 20px;
    background-color: #f9f9f9;
    position: relative;
    max-width: 1328px;
    margin: 0 auto;
    margin-bottom: 24px;
}


.special-prices h2 {
    font-family: Graphik Webfont, -apple-system, Helvetica Neue, Droid Sans, Arial, "sans-serif";
    font-size: 27px;
    text-decoration: solid;
    color: #222222;
    margin-bottom: 24px;
    text-align: start;
    word-spacing: 0px;
    letter-spacing: 0.13505px;
    line-height: 35.113px;
}

.deals-grid {
    display: flex;
    gap: 24px;
    padding: 0 20px;
}

.deal-card {
    display: flex;
    align-items: center;
    position: relative;
    box-sizing: border-box;
    padding: 2px;  /* Increased padding */
    aspect-ratio: 0.8 / 1;
    background-color: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: transform 0.3s ease-in-out;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 300px;
    width: 300px;
}

.deal-card img {
    height: 90%;
    width: 100%;  /* Reduced width */
    object-fit: cover;  /* Changed to contain */
    border-radius: 24px;
    margin: 0 auto;  /* Center the image */

}


.deal-card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    transform: translateY(-4px);
}


.deal-card h3 {
    font-weight: bold;
    font-size: 16px;
    font-weight: 500;
    color: #222;
    margin-bottom: 6px;
}

.dscnt {
    font-size: 14px;
    color: #222;
    font-weight: 400;
}

.deal-card:hover img {
    opacity: 0.9;
}


/* Local Shops Section */
.local-shops {
    display: flex;
    padding: 48px 0;
    height: 489px;
    width: 1328px;
    background-color: #fafafa;
    margin-bottom: 48px;
    padding-bottom: 48px;
}

.welcome-button {
    margin-top: 100px;
    padding: 36px;
    display: block;
    justify-content: center;
    align-items: center;
}

.welcome-button h2 {
    font-family: "Graphik Webfont", -apple-system, "Helvetica Neue", "Droid Sans", Arial, "sans-serif";
    font-size: 27px;
    line-height: 35px;
    letter-spacing: 0.13505px;
    font-weight: 500;
    text-align: left;
    word-spacing: 0px;
    display: block;
    height: 35.01094px;
    width: 325.531px;
    margin: 0 0 36px 0;
    color:#222222;
    box-sizing: border-box;
}

.welcome-button p {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 13px;
    letter-spacing: 0.1299px;
    text-align: left;
    word-spacing: 0px;
    display: block;
    height: 18.1719px;
    width: 325.531px;
    margin: 0 0 12px 0;
    color:#222222;
}

.discover-btn {
    font-family: "Graphik Webfont", -apple-system, system-ui, Roboto, sans-serif;
    position: relative;
    display: inline-block;
    z-index: 10;
    line-height: 24px;
    height: 48px;
    width: 325px;;
    min-height: 48px;
    min-width: 48px;
    text-align: center;
    vertical-align: middle;
    font-size: 16px;
    white-space: nowrap;
    padding: 12px 18px 12px 18px;
    border: 2px solid #222;
    border-radius: 24px;
    background: transparent;
    font-weight: 500;
    cursor: pointer;
    word-spacing: 0px;
}

.discover-btn:hover {
    background-color: #f7f7f7;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.shop-grid {
    display: flex;
    gap: 24px;
}

.shop-card {
    display: flex;
    flex-direction: column;
    height: 480px;
    width: 303px;
    background-color: #ffffff;
    border: 1px solid #e1e3df;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    box-shadow: #222222;
    position: relative;
}

.shop-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.137);
}

.shop-card img {
    width: 100%;
    height: 80%; /* Occupies 80% of the card */
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 8px;
    border-bottom: 1px solid #e1e3df;
}

.shop-info {
    position: absolute;
    bottom: 16px;
    left: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.shop-avatar {
    width: 60px !important;
    height: 60px !important;
    border-radius: 50% !important;
    border: 2px solid white;
}

.shop-avatar:hover{
    transform: translateY(-4px);
}

.shop-name {
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}


/* What is Etopia? */
.what-is-etopia {
    display: flex;
    flex-direction: column; /* Stack items vertically */
    align-items: center; /* Center items horizontally */
    margin-top: 50px !important;
    padding-top: 100px;
    background-color: #fffbd8;
}

.what-is-etopia h2 {
    font-family: "Guardian-EgypTT", serif;
    text-align: center;
    text-decoration: none;
    font-size: 48px;
    font-weight: 300;
    line-height: 36px;
    color: #222222;
    padding: 0 18px;
    padding-top: 18px;
    margin-bottom: 20px;
}

.what-is-etopia h4 {
    font-weight: 200;
    color: #222222;
    font-size: 16px;
    text-align: center;
    margin-bottom: 24px;
}

.accordion {
    max-width: 1024px;
    margin: 0 auto;
    width: 100%; /* Ensure accordion takes full width */
}

.accordion-item {
    border-bottom: 1px solid #e1e3df;
    padding: 18px 0;
}

.accordion-header {
    color: #80004C;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 19px;
    font-weight: 500;
    padding: 8px 0;
    list-style: none;
}

.arrow {
    border: solid #222;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg);
    transition: transform 0.2s;
}

details[open] .arrow {
    transform: rotate(-135deg);
}

.accordion-content {
    padding: 16px 0;
    color: #595959;
    line-height: 1.5;
}

.help-center-btn {
    display: flex; /* Ensure button is centered */
    justify-content: center;
    margin-top: 12px;
    padding: 12px 18px;
    border: 2px solid #222;
    border-radius: 24px;
    background: transparent;
    font-weight: 500;
    cursor: pointer;
}

.help-center-btn:hover {
    background-color: #f1f1f1;
}

.newsletter {
    background-color: #8e839e;
    padding: 32px;
    text-align: center;
}

.newsletter h3 {
    font-weight: 500;
    letter-spacing: 0.08px;
    line-height: 20px;
    text-decoration: none solid rgba(34, 34, 34);
    font-size: 16px;
    text-align: center !important;
    max-width: 900px;
    margin: 0 auto 24px;
}

.subscribe-container {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
    box-sizing: border-box;
    box-shadow: #222222;
    border: #222222;
}

.subscribe-container input {
    width: 100%;
    padding: 12px 100px 12px 24px;
    border: none;
    border-radius: 24px;
    font-size: 16px;
}

.subscribe-btn {
    position: absolute;
    right: 4px;
    top: 4px;
    bottom: 4px;
    padding: 8px 24px;
    border: none;
    border-radius: 20px;
    background: transparent;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.2s ease;
}

.subscribe-btn:hover {
    background: #222;
    color: white;
}

.renewable-banner {
    align-items: center;
    padding: 20px;
    background-color: #2f007a;
    color: white;
    text-align: center;
    text-decoration: underline dashed;
}

.renewable-icon {
    overflow: hidden;
    font-size: 10px;
    text-align: left;
    height: 30px;
    width: 30px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .what-is-etopia h2 {
        font-size: 36px;
    }

    .what-is-etopia h4 {
        font-size: 14px;
    }

    .accordion-header {
        font-size: 16px;
    }

    .newsletter {
        padding: 24px;
    }

    .newsletter h3 {
        font-size: 14px;
    }

    .subscribe-container {
        max-width: 320px;
    }

    .subscribe-container input {
        padding: 12px 80px 12px 24px;
    }

    .subscribe-btn {
        padding: 6px 18px;
    }

    .renewable-banner {
        font-size: 14px;
        padding: 16px;
    }
}

@media (max-width: 480px) {
    .what-is-etopia {
        padding: 24px;
    }

    .what-is-etopia h2 {
        font-size: 28px;
        line-height: 32px;
    }

    .accordion-header {
        font-size: 14px;
    }

    .newsletter h3 {
        font-size: 12px;
    }

    .subscribe-container {
        max-width: 280px;
    }

    .subscribe-container input {
        padding: 12px 60px 12px 24px;
    }

    .subscribe-btn {
        padding: 6px 12px;
    }

    .renewable-banner {
        font-size: 12px;
        padding: 12px;
    }

    .renewable-icon {
        font-size: 8px;
        height: 24px;
        width: 24px;
    }
}


footer {
    background-color: #1a0c30;
    color: white;
    padding: 48px 0 0;
}

.footer-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 48px;
    padding: 0 48px;
    flex-wrap: wrap; /* Allows wrapping on smaller screens */
}

.footer-left {
    margin-top: 40px;
    width: 337.672px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.app-icon {
    width: 100px;
    height: 100px;
    border-radius: 16px;
}

.app-icon:hover {
    cursor: pointer;
    background-color: var(--gray-light);
    box-shadow: 10px 5px 10px rgba(0, 0, 0, 0.692);
    transform: translateY(-4px);
}

.download-btn {
    background-color: #122868;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 24px;
    cursor: pointer;
    height: 48px;
    width: 213.859px;
}

.download-btn:hover {
    box-sizing: border-box;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.692);
    transform: translateY(-4px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    flex: 1;
}

.footer-col h4 {
    font-size: 16px;
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a {
    color: white;
    text-decoration: none;
    font-size: 13px;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.footer-bottom {
    font-weight: bold;
    margin-top: 48px;
    padding: 24px 48px;
    background-color: #222222;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.region {
    display: flex;
    align-items: center;
    gap: 8px;
}

.flag {
    width: 16px;
    height: 16px;
    border-radius: 50%;
}

.legal-links {
    display: flex;
    gap: 24px;
}

.legal-links a {
    color: white;
    text-decoration: none;
}

.legal-links a:hover {
    text-decoration: underline;
}

.regions-table {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.regions-content {
    cursor: pointer;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #ffffff;
    padding: 24px;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.regions-content h3 {
    font-family: "Guardian-EgypTT", serif;
    text-align: left;
    font-size: 32px;
    font-weight: 200;
    line-height: 36px;
    color: #222222;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.regions-grid {
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 24px;
}

.regions-grid span {
    font-weight: 400;
    color: #595959;
    font-size: 20px;
    cursor: pointer;
}

.regions-grid span:hover {
    text-decoration: underline;
    color: #222;
}

#close-btn {
    font-size: 14px;
    padding: 8px 16px;
    border: none;
    border-radius: 24px;
    background-color: #222;
    color: #fff;
    cursor: pointer;
}

#close-btn:hover {
    background-color: #444;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-wrapper {
        padding: 0 24px;
        flex-direction: column;
    }

    .footer-left {
        width: 100%;
        align-items: flex-start;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding: 16px 24px;
    }

    .footer-bottom .region {
        margin-bottom: 16px;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-wrapper {
        padding: 0 12px;
    }

    .footer-left {
        margin-top: 20px;
        width: 100%;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-col h4 {
        font-size: 14px;
    }

    .footer-col a {
        font-size: 12px;
    }

    .download-btn {
        width: 100%;
        padding: 12px 18px;
    }

    .regions-grid {
        grid-template-columns: 1fr;
    }
}


/* Add these icon-specific styles */
.nav-buttons i {
    font-size: 20px;
    color: var(--text-color);
}

.search-btn i {
    color: var(--text-color);
    font-size: 18px;
}

/* Add styles for rating stars */
.rating i {
    color: var(--rating-color);
    font-size: 14px;
}

/* Add styles for the price badge */
.price-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: white;
    padding: 4px 8px;
    border-radius: 24px;
    font-size: 12px;
    font-weight: bold;
}

/* General button hover styles */
button {
    transition: all 0.3s ease;
}

button:hover {
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.24);
    transform: none;
    border-radius: 24px;
}

/* Specific button hover styles */
.search-btn:hover {
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(241, 100, 30, 0.4);
}

.sell-btn:hover {
    box-shadow: 2px 3px 0 #0000006c;
    background-color: rgba(34, 34, 34, 0.158);
    border-radius: 24px;
}

.icon-btn:hover {
    background-color: var(--gray-light);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.local-shops-btn:hover {
    background-color: var(--gray-light);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.subscribe button:hover {
    background-color: #e15a1b;
    box-shadow: 0 2px 8px rgba(241, 100, 30, 0.3);
}

.accordion-btn:hover {
    color: var(--accent-color);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

/* Base styles for all sections */
.featured-categories,
.popular-gifts,
.occasion-carousel,
.special-prices,
.local-shops,
.what-is-etopia{

    max-width: 1400px;
    margin: 0 auto;
    padding: 48px 36px;
    display: flex;
}

/* Large screens (default) */
@media screen and (min-width: 1025px) {
    .featured-categories,
    .popular-gifts,
    .occasion-carousel,
    .special-prices,
    .local-shops,
    .what-is-etopia {
        width: 100%;
        max-width: 1328px;
        margin: 0 auto;
        display: flex;
    }

    .product-grid,
    .category-grid,
    .deals-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 24px;
        display: flex;
    }
}

/* Medium screens */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .featured-categories,
    .popular-gifts,
    .occasion-carousel,
    .special-prices,
    .local-shops,
    .what-is-etopia {
        padding: 36px 24px;
        width: calc(100% - 48px);
        display: flex;
    }

    .product-grid,
    .category-grid,
    .deals-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 18px;
        display: flex;
    }
}

/* Tablet */
@media screen and (min-width: 481px) and (max-width: 768px) {
    .featured-categories,
    .popular-gifts,
    .occasion-carousel,
    .special-prices,
    .local-shops,
    .what-is-etopia {
        padding: 24px 16px;
        width: calc(100% - 32px);
        display: flex;
    }

    .product-grid,
    .category-grid,
    .deals-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        display: flex;
    }
}

/* Mobile */
@media screen and (max-width: 480px) {
    .featured-categories,
    .popular-gifts,
    .occasion-carousel,
    .special-prices,
    .local-shops,
    .what-is-etopia {
        padding: 16px 12px;
        width: calc(100% - 24px);
        margin: 0 auto;
        display: flex;
    }

    .product-grid,
    .category-grid,
    .deals-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        display: flex;
    }

    h2 {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .product-description {
        font-size: 14px;
        -webkit-line-clamp: 2;
    }
}

/* Sign-In Page Styles */
.sign-in-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    background-color: var(--gray-light);
    padding: 2rem;
}

.sign-in-card {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 500px; /* Wider container */
    width: 100%;
    text-align: center;
    transition: box-shadow 0.3s ease;
}

/* Glowing effect on hover */
.sign-in-card:hover {
    box-shadow: 0 0 20px #008080 /* Blue glow */
}

.sign-in-card h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.sign-in-card p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
}

.sign-in-form .form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.sign-in-form label {
    display: block;
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.sign-in-form input {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Glowing effect on input focus */
.sign-in-form input:focus {
    border-color: #008080;
    outline: none;
    box-shadow: 0 0 10px #008080; /* Blue glow */
}

.sign-in-btn {
    width: 100%;
    padding: 1rem;
    background-color: #008080;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.sign-in-btn:hover {
    background-color: #13b1b1;
    transform: translateY(-2px);
}

.sign-in-options {
    margin-top: 1.5rem;
}

.sign-in-options p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1rem;
}

.social-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: white;
    color: var(--primary-color);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background-color: var(--gray-light);
    transform: translateY(-2px);
}

.social-btn.google-btn:hover {
    background-color: #f1f3f4;
    border-color: #ddd;
}

.social-btn.facebook-btn:hover {
    background-color: #1877f2;
    color: white;
    border-color: #1877f2;
}

.sign-up-link {
    margin-top: 1.5rem;
    font-size: 1rem;
    color: #666;
}

.sign-up-link a {
    color: #008080;
    text-decoration: none;
    font-weight: 500;
}

.sign-up-link a:hover {
    text-decoration: underline;
}

/* Sign-Up Page Styles */
.sign-up-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    background-color: var(--gray-light);
    padding: 2rem;
}

.sign-up-card {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 500px; /* Wider container */
    width: 100%;
    text-align: center;
    transition: box-shadow 0.3s ease;
}

/* Glowing effect on hover */
.sign-up-card:hover {
    box-shadow: 0 0 20px #008080; /* Teal glow */
}

.sign-up-card h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.sign-up-card p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
}

.sign-up-form .form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.sign-up-form label {
    display: block;
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.sign-up-form input {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Glowing effect on input focus */
.sign-up-form input:focus {
    border-color: #008080;
    outline: none;
    box-shadow: 0 0 10px #008080; /* Teal glow */
}

.sign-up-btn {
    width: 100%;
    padding: 1rem;
    background-color: #008080;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.sign-up-btn:hover {
    background-color: #13b1b1;
    transform: translateY(-2px);
}

.terms {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: #666;
}

.terms a {
    color: #008080;
    text-decoration: none;
    font-weight: 500;
}

.terms a:hover {
    text-decoration: underline;
}

.login-link {
    margin-top: 1.5rem;
    font-size: 1rem;
    color: #666;
}

.login-link a {
    color: #008080;
    text-decoration: none;
    font-weight: 500;
}

.login-link a:hover {
    text-decoration: underline;
}



/* Categories Page (Products) */

.new-popular-products {
    padding: 20px;
    text-align: center;
}

.new-category-section {
    margin-bottom: 40px;
}

.new-category-products h1{
    font-size: 32px;
    font-weight: bold;
    padding-bottom: 30px;
    margin-bottom: 20px;


}

.new-category-section h3 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: left;
}

/* Product Grid Layout */
.new-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns */
    gap: 20px; /* Space between cards */
    padding: 0 20px; /* Padding on the sides */
}

/* Product Card Styles */
.new-product-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.new-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.new-product-image-container {
    position: relative;
    width: 100%;
    padding-top: 100%; /* Square aspect ratio */
    overflow: hidden;
}

.new-product-image-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.new-favorite-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    padding: 8px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.new-favorite-button:hover {
    background: rgba(255, 255, 255, 1);
}

.new-product-details {
    padding: 15px;
    text-align: left;
}

.new-shipping-info {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.new-product-rating {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.new-stars {
    color: #ffc107; /* Star color */
    font-size: 16px;
}

.new-review-count {
    font-size: 14px;
    color: #666;
    margin-left: 5px;
}

.new-product-price {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.new-price-value {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-right: 10px;
}

.new-original-price {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
    margin-right: 10px;
}

.new-discount {
    font-size: 14px;
    color: #e74c3c; /* Discount color */
    font-weight: bold;
}

.new-product-description {
    font-size: 14px;
    color: #333;
    margin-bottom: 10px;
}


/* Local Shops Page Styles */
.new-local-shops {
    padding: 20px;
    text-align: center;
}

.new-local-shops h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.new-local-shops p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
}

.new-local-shop-listings {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 0 20px;
}

.new-local-shop-card {
    cursor: pointer;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.new-local-shop-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.new-local-shop-avatar {
    object-fit: cover;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.new-local-shop-avatar:hover{
    transform: translateY(-4px);
    box-shadow: 0 0 20px 5px #00838386, 
    0 0 30px 10px #00ffff33, 
    0 0 50px 15px #00ffff5d; /* Teal glow effect */}

.new-local-shop-card h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.new-local-shop-category {
    font-size: 1rem;
    color: #888;
    margin-bottom: 10px;
}

.new-local-shop-location {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 10px;
}

.new-local-shop-rating {
    font-size: 1rem;
    color: #ffc107; /* Gold color for stars */
    margin-bottom: 10px;
}

/* About Page Styles */
.about-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 24px;
    text-align: center;
}

.about-page h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 16px;
    color: #222222;
}

.about-page .subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 48px;
}

.about-section {
    margin-bottom: 64px;
}

.about-section h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 24px;
    color: #222222;
}

.about-section p {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 24px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.value-card {
    cursor: pointer;
    background: #f9f9f9;
    padding: 24px;
    border-radius: 24px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px 5px #00838386, 
    0 0 30px 10px #00ffff33, 
    0 0 50px 15px #00ffff5d; /* Teal glow effect */}

.value-card i {
    font-size: 36px;
    color: #008080;
    margin-bottom: 16px;
}

.value-card h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 12px;
    color: #222222;
}

.value-card p {
    font-size: 16px;
    color: #666;
}

.team-grid {
    display: flex;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 32px;
    justify-content: center;
}

.team-card {
    cursor: pointer;
    background: #f9f9f9;
    padding: 24px;
    border-radius: 50px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px 5px #00838386, 
    0 0 30px 10px #00ffff33, 
    0 0 50px 15px #00ffff5d; /* Teal glow effect */}

.team-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 50px;
    margin-bottom: 16px;
}

.team-card h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #222222;
}

.team-card p {
    font-size: 16px;
    color: #666;
}

.cta-section {
    background: #008080;
    padding: 48px 24px;
    border-radius: 12px;
    color: white;
    margin-top: 64px;
}

.cta-section h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.cta-btn {
    background: white;
    color: #008080;
    padding: 12px 24px;
    border-radius: 24px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
}

.cta-btn:hover {
    background: #f1f1f1;
    color: #006666;
}
