/* Global Styles */
:root {
    --primary-color: #4a4a4a;
    --primary-color-inv: #e43030;
    --secondary-color: #f4eee8;
    --gray-background-color: #f8fbff;
    --text-color: #333;
    --white: #ffffff;
    --black: #000000;
  --marquee-speed: 25s;
  --font-size-desktop: 1.2rem;
  --font-size-mobile: 1.2rem;
  --gap: 2rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
  background-color: #fbfaf7;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  width: 100%;
  overflow-x: hidden;
  position: relative;
  margin: 0;
  padding: 0;
}

.marquee-container {
  --speed: 25s;
  width: 100%;
  overflow: hidden; /* Hide the extra content */
  padding: 1rem 0;
  position: relative;

  /* Prevents "over-scrolling" or white gaps on iOS */
  touch-action: pan-y;
}

.marquee-content {
  display: flex;
  width: max-content;
  flex-wrap: nowrap;
  animation: scroll-rtl var(--speed) linear infinite;
}

.marquee-group {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 20rem;
  padding-right: 20rem;
}

.marquee-item {
  white-space: nowrap;
  font-weight: 700;
  font-size: var(--font-size-mobile);
}

@media (min-width: 768px) {
  .marquee-item {
    font-size: var(--font-size-desktop);
  }
}

@keyframes scroll-rtl {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(50%, 0, 0);
  }
}

/* Pause logic */
.marquee-container:hover .marquee-content {
  animation-play-state: paused;
}
/* Header Styles */
.header {
    background-color: var(--secondary-color);
    padding: 0.2rem 2rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

#product-id {
    color: gray;
}

.logo img {
    height: 50px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

nav a:hover, nav a.active {
    background-color: var(--primary-color);
    color: var(--white);
}

.cart-icon {
    position: relative;
    cursor: pointer;
    padding: 0.5rem;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--primary-color-inv);
    color: var(--white);
    border-radius: 50%;
    padding: 0.2rem 0.5rem;
    font-size: 0.8rem;
}

/* Cart Popup Styles */
.cart-popup {
    display: none;
    position: fixed;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    background-color: var(--white);
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 8px;
    z-index: 1000;
}

.cart-content {
    padding: 1rem;
}

.cart-items {
    max-height: 300px;
    overflow-y: auto;
}

.cart-total {
    border-top: 1px solid #eee;
    padding-top: 1rem;
    margin-top: 1rem;
}

.empty-cart {
    text-align: center;
    padding: 2rem;
    color: #666;
    font-style: italic;
}

.checkout-btn {
    width: 100%;
    padding: 1rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.checkout-btn:hover {
    background-color: var(--primary-color-inv);
}

.checkout-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

/* Home Page Styles */
.hero {
    height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)),
                url('../images/skyone_hp_teaser.png');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 0 20px;
}

@media screen and (max-width: 768px) {
    .hero {
        height: auto;
    }
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Product Grid Styles */
.featured-products {
    padding: 80px 5%;
    max-width: 1200px;
    margin: 0 auto;
}


.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 2rem;
}

.product-card {
    background-color: var(--white);
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.product-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    background-color: #eee;
}

.product-card button {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.product-card button:hover {
    background-color: var(--primary-color-inv);
}

.product-card a:link {
    text-decoration: none;
    color: var(--black);
}

.product-card a:visited {
    text-decoration: none;
    color: var(--black);
}



/* Products Page Styles */
.products-content {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2rem;
    padding: 2rem;
}

.filters {
    background-color: var(--white);
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.filter-section {
    margin-bottom: 1.5rem;
}

.filter-section label {
    display: block;
    margin: 0.5rem 0;
}

/* Contact Page Styles */
.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.contact-info {
    background-color: var(--gray-background-color);
    padding: 2rem;
    border-radius: 8px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin: 1rem 0;
}

.contact-form {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.submit-btn {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: --primary-color-inv;
}

/* Footer Styles */
footer {
    background-color: var(--secondary-color);
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
}

.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
}

.footer-column {
    flex: 1;
    margin: 0 1rem;
}

.footer-column h3 {
    margin-bottom: 1rem;
}

.footer-column a:link {
    color: var(--black);
    text-decoration: none;
}

.footer-column a:visited {
    color: var(--black);
    text-decoration: none;
}

.footer-column a:hover {
    color: var(--primary-color-inv);
}

.social-icons a {
    color: var(--black);
    font-size: 1.5rem;
    margin-right: 1rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--primary-color-inv);
}

@media screen and (max-width: 768px) {
    /* Adjust footer for mobile */
    .footer {
       flex-direction: column;
   }

    .footer-column {
        margin: 1rem 0rem;
    }

    .footer-column h3 {
        margin-bottom: 0.4rem;
    }
}

/* Product Detail Page Styles */
.product-detail-content {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

/* Product Images Gallery Styles */
.product-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.main-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.main-image-container img {
    width: 100%;
    height: auto;
    display: block;
    cursor: zoom-in;
    transition: transform 0.3s ease;
}

.main-image-container img.zoomed {
    cursor: zoom-out;
    transform: scale(1.5);
}

.image-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 10px;
    pointer-events: none;
}

.nav-btn {
    pointer-events: auto;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 24px;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.nav-btn:hover {
    background: white;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.thumbnail-images {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 10px 0;
    scrollbar-width: thin;
    scrollbar-color: #ccc transparent;
}

.thumbnail-images::-webkit-scrollbar {
    height: 6px;
}

.thumbnail-images::-webkit-scrollbar-track {
    background: transparent;
}

.thumbnail-images::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 3px;
}

.thumbnail-container {
    flex: 0 0 auto;
}

.thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.thumbnail:hover {
    opacity: 1;
    border-color: #ddd;
}

.thumbnail.active {
    opacity: 1;
    border-color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.3);
}

/* Responsive design */
@media (max-width: 768px) {
    .product-images {
        max-width: 100%;
    }

    .thumbnail {
        width: 60px;
        height: 60px;
    }

    .nav-btn {
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
}


.product-info h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 1.5rem;
    color: var(--primary-color-inv);
    margin-bottom: 1rem;
}

.oldprice {
    text-decoration: line-through;
}

.product-description {
    margin-bottom: 1.5rem;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-controls input {
    width: 60px;
    padding: 0.5rem;
    text-align: center;
}

.quantity-controls button {
    background-color: var(--secondary-color);
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 4px;
}

.add-to-cart-btn {
    width: 100%;
    padding: 1rem;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.1rem;
    margin: 1rem 0rem;
    transition: background-color 0.3s ease;
}

.add-to-cart-btn:hover {
    background-color: var(--primary-color-inv);
}

.product-meta {
    border-top: 1px solid #eee;
    padding-top: 1rem;
}

.product-meta p {
    margin-bottom: 0.5rem;
}

.abs {
    margin: 2rem;
}

/* Mobile menu styles */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: white;
    z-index: 1000;
    transition: left 0.3s ease;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #eee;
}

.close-menu-btn {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #333;
    cursor: pointer;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu ul li {
    border-bottom: 1px solid #eee;
}

.mobile-menu ul li a {
    display: block;
    padding: 1rem;
    color: #333;
    text-decoration: none;
    transition: background-color 0.3s;
}

.mobile-menu ul li a:hover,
.mobile-menu ul li a.active {
    background-color: #f5f5f5;
    color: #ff4081;
}

.menu-open {
    overflow: hidden;
}

/* Responsive styles */
@media screen and (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .main-nav {
        display: none;
    }

    .language-selector {
        display: none;
    }

    .header {
        padding: 1rem;
        justify-content: space-between;
    }

    .logo img {
        max-width: 120px;
    }

    /* Adjust cart icon for mobile */
    .cart-icon {
        margin-left: 0;
    }

    /* Adjust cart popup for mobile */
    .cart-popup {
        width: 100%;
        max-width: none;
    }

    /* Adjust hero section for mobile */
    .hero {
        padding: 2rem 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

}

@media (max-width: 768px) {
    .products-content {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    nav ul {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .product-detail {
        grid-template-columns: 1fr;
    }
    
    .thumbnail {
        width: 60px;
        height: 60px;
    }
}

/* Checkout Page Styles */
.checkout-content {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.checkout-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.checkout-summary {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.checkout-item {
    display: flex;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.checkout-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
}

.item-details {
    flex: 1;
    padding: 0 1rem;
}

.item-details h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
}

.order-totals {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 2px solid #eee;
}

.order-totals > div {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.checkout-discount {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
    color: #ff4081;
}

.checkout-form {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.place-order-btn {
    width: 100%;
    padding: 1rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.place-order-btn:hover {
    background-color: var(--primary-color-inv);
}

/* Order Confirmation Styles */
.confirmation-content {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.confirmation-container {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.confirmation-header {
    text-align: center;
    margin-bottom: 2rem;
}

.confirmation-header i {
    font-size: 4rem;
    color: #4CAF50;
    margin-bottom: 1rem;
}

.confirmation-header h1 {
    margin: 0.5rem 0;
    color: #333;
}

.confirmation-header p {
    color: #666;
    font-size: 1.1rem;
}

.confirmation-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.confirmation-section:last-child {
    border-bottom: none;
}

.order-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.order-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.summary-row.total {
    font-weight: bold;
    font-size: 1.2rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.shipping-details p {
    margin: 0.5rem 0;
}

.next-steps p {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.confirmation-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.confirmation-actions a {
    flex: 1;
    padding: 1rem;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s;
}

.continue-shopping {
    background-color: var(--primary-color);
    color: white;
}


.continue-shopping:hover {
    background-color: #f50057;
}

/* Responsive styles for checkout and confirmation */
@media screen and (max-width: 768px) {
    .checkout-container {
        grid-template-columns: 1fr;
    }

    .checkout-summary {
        order: 1;
    }

    .checkout-form {
        order: 2;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .confirmation-actions {
        flex-direction: column;
    }
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 60px;
    right: 20px;
    padding: 1rem 2rem;
    border-radius: 4px;
    background-color: #4CAF50;
    color: white;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

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

/* Cart Item Styles */
.cart-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #eee;
    position: relative;
}

.cart-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
}

.cart-item-details {
    flex: 1;
    padding: 0 1rem;
}

.cart-item-details h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
}

.cart-item .price {
    color: #666;
    margin: 0.25rem 0;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-controls button {
    background: none;
    border: 1px solid #ddd;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.quantity-controls button:hover {
    background-color: #f5f5f5;
}

.quantity-controls span {
    min-width: 20px;
    text-align: center;
}

.remove-item {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.2s;
}

.remove-item:hover {
    color: #f44336;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.deliveryPayDetailsNote {
    font-size: 1.4rem;
    color: #666;
    margin: 2.5rem;
    padding: 1rem;
    border: 4px solid #eee;
}


/*--------------------------------*/
/* Language Selector Styles */
.language-selector {
    position: relative;
    margin-left: 15px;
}

.language-selector .language-toggle {
    display: flex;
    align-items: center;
    color: #333;
    text-decoration: none;
}

.language-selector .language-toggle i {
    margin-right: 5px;
}

.language-selector .language-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    min-width: 120px;
    z-index: 1000;
}

.language-selector:hover .language-dropdown {
    display: block;
}

.language-selector .language-dropdown li {
    padding: 8px 15px;
    text-decoration: none;
    list-style: none;
    border-bottom: 1px solid #eee;
}

.language-selector .language-dropdown li:last-child {
    border-bottom: none;
}

.language-selector .language-dropdown li a {
    color: #333;
    text-decoration: none;
    display: block;
}

.language-selector .language-dropdown li a:hover {
    background-color: #f4f4f4;
}

/* Mobile Menu Language Selector */
.mobile-menu .language-selector {
    margin: 10px 0;
    text-align: left;

    display: block;
    width: 100%;
}

.mobile-menu .language-selector .language-dropdown {
    position: static;
    display: none;
    background: transparent;
    border: none;
    box-shadow: none;

    width: 100%;
}

.mobile-menu .language-selector.active .language-dropdown {
    display: block;
}

.mobile-menu .language-selector .language-toggle {
    justify-content: space-between;
    width: 100%;

    padding: 10px 15px;
    background-color: #f4f4f4;
    border-radius: 4px;
}

.mobile-menu .language-selector .language-dropdown li {
    padding: 8px 15px;
    border-bottom: 1px solid #eee;
    list-decoration: none;
}

.mobile-menu .language-selector .language-dropdown li:last-child {
    border-bottom: none;
}

.mobile-menu .language-selector .language-dropdown li a {
    display: block;
    color: #333;
    text-decoration: none;
}

.header-right {
    display: flex;
    align-items: center;
}

/*-----Checkout Form error---------------------------*/
.error-border {
    border: 2px solid red !important;
}

.error-message {
        color: red;
        display: block;
    }


.success-message {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    border-radius: 8px;
    padding: 16px 20px;
    margin: 20px 0;
    font-size: 16px;
    font-weight: 500;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    animation: fadeIn 0.5s ease-in-out;
    display: flex;
    align-items: center;
    gap: 12px;
}

.success-message::before {
    content: "✓";
    background-color: #28a745;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.success-message p {
    margin: 0;
    line-height: 1.5;
}

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