:root {
    --color-offwhite: #EDE9F2;
    --color-background: #DED0F2;
    --primary-color: #8E6BBF;
    --accent-color: #AE8FD9;
    --light-background: #D2BBF2;
    --dark-text: #281259;
    --hover-color: #AE8FD9;
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-dark: rgba(0, 0, 0, 0.2);
    --light-purple: #D2BBF2;
    --light-pink: #AE8FD9;
    --gradient-primary: linear-gradient(135deg, #8E6BBF 0%, #AE8FD9 100%);
    --gradient-accent: linear-gradient(135deg, #AE8FD9 0%, #D2BBF2 100%);
    --gradient-violet: linear-gradient(135deg, #C9A8F0 0%, #9D6BD9 100%);
    --gradient-lavender: linear-gradient(135deg, #E0C2FF 0%, #B388FF 100%);
    --gradient-purple: linear-gradient(135deg, #D8B4FE 0%, #A855F7 100%);
}

body {
    background-color: #f2e6f6;
    font-family: 'Rival-sans', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* ========== VISUAL ENHANCEMENTS ========== */
/* Animated Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.05;
    z-index: -1;
    animation: gradientShift 15s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ========== FORM ELEMENTS ========== */
.form-control {
    margin-bottom: 1.5rem;
}

/* Individual button colors */
.category-btn:nth-child(1) { background: var(--gradient-accent); }
.category-btn:nth-child(2) { background: var(--gradient-violet); }
.category-btn:nth-child(3) { background: var(--gradient-lavender); }
.category-btn:nth-child(4) { background: var(--gradient-purple); }

/* ========== NAVIGATION ========== */
.navbar {
    min-height: 70px;
    padding: 15px 0;
    background: var(--gradient-primary);
    box-shadow: 0 4px 20px rgba(142, 107, 191, 0.3);
    position: relative;
    z-index: 100;
}

.navbar h1 {
    padding-left: 1.5em;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    font-size: 1.8em;
    letter-spacing: 1px;
}

.navbar .nav li:hover {
    transform: translateY(-2px);
    text-shadow: 0 0 8px rgba(255,255,255,0.5);
}

/* ========== PRODUCT CARDS ========== */
.figure.product {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(142, 107, 191, 0.15);
    overflow: hidden;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    border: 1px solid rgba(142, 107, 191, 0.1);
}

.figure.product:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(142, 107, 191, 0.25);
}

.figure.product::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-accent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.figure.product:hover::after {
    opacity: 1;
}

.product-image-container {
    width: 100%;
    padding-top: 100%;
    position: relative;
    background: var(--gradient-accent);
    overflow: hidden;
}

.product-image-container img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    height: auto;
    object-fit: contain;
    transition: all 0.4s ease;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.figure.product:hover .product-image-container img {
    transform: translate(-50%, -50%) scale(1.08);
    filter: drop-shadow(0 6px 12px rgba(0,0,0,0.15));
}

.thumbnail-gallery {
    display: flex;
    gap: 0.8em;
    padding: 1em;
    overflow-x: auto;
    background: white;
    border-top: 1px solid rgba(142, 107, 191, 0.1);
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) transparent;
}

.thumbnail-gallery::-webkit-scrollbar {
    height: 4px;
}

.thumbnail-gallery::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 2px;
}

.thumbnail-gallery img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border: 2px solid white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.thumbnail-gallery img:hover {
    border-color: var(--primary-color);
    transform: scale(1.1) rotate(2deg);
    box-shadow: 0 4px 12px rgba(142, 107, 191, 0.3);
}



.form-button {
    background: var(--light-purple);
    color: var(--dark-text);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(142, 107, 191, 0.2);
    font-family: 'Rival-sans', sans-serif;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-right: 12px;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.form-button:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(142, 107, 191, 0.4);
}

.form-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: 0.5s;
}

.form-button:hover::before {
    left: 100%;
}

/* Delete Button Styles */
.delete-button {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 0.5em 1em;
    border-radius: 50px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(142, 107, 191, 0.3);
    display: flex;
    align-items: center;
    gap: 0.5em;
    font-family: 'Rival-sans', sans-serif;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.delete-button:hover {
    background: var(--gradient-accent);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(142, 107, 191, 0.4);
}

.delete-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: 0.5s;
}

.delete-button:hover::before {
    left: 100%;
}

.delete-button i {
    font-size: 0.9em;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 768px) {
    .category-buttons {
        gap: 10px;
        justify-content: flex-start;
    }
    
    .category-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
        min-width: 140px;
    }
    
    .navbar h1 {
        font-size: 1.5em;
    }
    
    .thumbnail-gallery img {
        width: 60px;
        height: 60px;
    }
}


/* ========== HOMEPAGE SPECIFIC STYLES ========== */

/* Hero Section with Video */
.hero-section {
    position: relative;
    height: 80vh;
    min-height: 500px;
    max-height: 800px;
    overflow: hidden;
    margin-bottom: 3rem;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 15px 30px rgba(142, 107, 191, 0.2);
}

.hero-video {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 90%;
    max-width: 800px;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    animation: fadeInDown 1s ease-out;
    font-weight: 700;
    letter-spacing: 1px;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.3s both;
    font-weight: 300;
}

.hero-content .form-button {
    animation: fadeIn 1s ease-out 0.6s both;
    padding: 15px 40px;
    font-size: 1.1rem;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
    border: 2px solid rgba(255,255,255,0.4);
    transition: all 0.3s ease;
}

.hero-content .form-button:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-3px);
}

/* Welcome Section */
.welcome-section {
    padding: 4rem 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(142, 107, 191, 0.1);
    margin-bottom: 3rem;
}

.welcome-section h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.welcome-section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--gradient-accent);
    margin: 1rem auto;
    border-radius: 2px;
}

.welcome-image {
    width: 100%;
    border-radius: 0.5em;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.welcome-image:hover {
    transform: scale(1.02);
}

.welcome-section h3 {
    color: var(--dark-text);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.welcome-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}




/* Testimonials */
.testimonials {
    background: var(--gradient-accent);
    padding: 4rem 2rem;
    border-radius: 20px;
    margin: 3rem 0;
    color: white;
    text-align: center;
}

.testimonials h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
}

.testimonials h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: white;
    margin: 1rem auto;
    border-radius: 2px;
    opacity: 0.6;
}

blockquote {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
}

blockquote:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

blockquote::before {
    content: '"';
    font-size: 4rem;
    color: rgba(255,255,255,0.2);
    position: absolute;
    top: -1rem;
    left: 1rem;
    line-height: 1;
}

blockquote p {
    font-size: 1.1rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

blockquote footer {
    font-weight: bold;
    font-size: 1rem;
}

body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    background-color: #fdf6f9;
    color: #333;
}

.about-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px 20px;
}

.about-hero {
    background-color: #fff0f6;
    padding: 40px 20px;
    text-align: center;
    border-radius: 10px;
    margin-bottom: 30px;
}

.about-hero h1 {
    color: #8b5fbf;
    font-size: 2.5em;
}

.about-hero p {
    font-size: 1.1em;
    color: #666;
    max-width: 700px;
    margin: 10px auto 0;
}

.about-section {
    background-color: #ffffff;
    padding: 25px;
    margin-bottom: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.about-section h2 {
    color: #6a4c93;
    margin-bottom: 15px;
}

.about-section ul {
    padding-left: 20px;
    list-style-type: disc;
}

.about-section li {
    margin-bottom: 10px;
}

.link {
    color: #6a4c93;
    font-weight: bold;
    text-decoration: none;
}

.link:hover {
    text-decoration: underline;
}

/* ========== ABOUT PAGE IMAGE STYLES ========== */
/* Container for the image and caption */
.image-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 2rem 0;
  max-width: 100%;
  position: relative;
}

/* Image styling */
.image-placeholder img {
  width: 100%;
  max-width: 300px; /* Adjust as needed */
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  aspect-ratio: 3/4; /* Maintain portrait ratio */
  box-shadow: 0 8px 25px rgba(142, 107, 191, 0.15);
  border: 3px solid white;
  transition: all 0.3s ease;
  filter: grayscale(10%) contrast(110%);
}

/* Hover effect for image */
.image-placeholder img:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 30px rgba(142, 107, 191, 0.25);
  filter: grayscale(0%) contrast(100%);
}

/* Caption styling */
.image-caption {
  margin-top: 1rem;
  font-family: 'Rival-sans', sans-serif;
  font-size: 1.1rem;
  color: var(--dark-text);
  text-align: center;
  position: relative;
  padding-bottom: 0.5rem;
  font-weight: 500;
}

/* Decorative line under caption */
.image-caption::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: var(--gradient-accent);
  border-radius: 3px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .image-placeholder img {
    max-width: 250px;
  }
  
  .image-caption {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .image-placeholder {
    margin: 1.5rem 0;
  }
  
  .image-placeholder img {
    max-width: 200px;
    border-width: 2px;
  }
}

/* Optional: Add a decorative frame effect */
.image-placeholder::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border: 1px solid var(--accent-color);
  border-radius: 15px;
  opacity: 0.3;
  pointer-events: none;
  transition: all 0.3s ease;
}

.image-placeholder:hover::before {
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  opacity: 0.5;
}




/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        height: 70vh;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .hero-content .form-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .welcome-section h2,
    .featured-products h2,
    .testimonials h2,
    .category-section h2 {
        font-size: 2rem;
    }
    
    blockquote {
        padding: 1.5rem;
    }
    
    .grid.gap {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: 60vh;
        min-height: 400px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .col-xs-12 {
        padding: 0.5rem;
    }
    
    .testimonials {
        padding: 2rem 1rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Floating Bubbles Background Effect */
.bubble-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.bubble {
    position: absolute;
    bottom: -100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float linear infinite;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Bubbles of different sizes */
.bubble:nth-child(1) {
    width: 40px;
    height: 40px;
    left: 10%;
    animation-duration: 15s;
    animation-delay: 0s;
}

.bubble:nth-child(2) {
    width: 20px;
    height: 20px;
    left: 20%;
    animation-duration: 12s;
    animation-delay: 2s;
}

.bubble:nth-child(3) {
    width: 50px;
    height: 50px;
    left: 35%;
    animation-duration: 18s;
    animation-delay: 1s;
}

.bubble:nth-child(4) {
    width: 30px;
    height: 30px;
    left: 50%;
    animation-duration: 14s;
    animation-delay: 3s;
}

.bubble:nth-child(5) {
    width: 25px;
    height: 25px;
    left: 70%;
    animation-duration: 16s;
    animation-delay: 0.5s;
}

.bubble:nth-child(6) {
    width: 45px;
    height: 45px;
    left: 85%;
    animation-duration: 20s;
    animation-delay: 2.5s;
}


/* ========== FOOTER STYLES ========== */

.site-footer {
    background: linear-gradient(135deg, #f5e9ff 0%, #e8d3ff 100%);
    color: #4a2c6d;
    padding: 4rem 0 0;
    margin-top: 4rem;
    border-top: 1px solid rgba(142, 107, 191, 0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

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

.footer-heading {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    position: relative;
    color: #4a2c6d;
    font-weight: 600;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 50px;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 3px;
}

.footer-text {
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #5a4a6d;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-link {
    color: #5a4a6d;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-link:hover {
    color: var(--primary-color);
    padding-left: 8px;
}

.footer-link::before {
    content: '→';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-link:hover::before {
    left: 0;
    opacity: 1;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icon {
    color: #7e57c2;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.newsletter-input {
    padding: 12px 15px;
    border: 1px solid #d1c4e9;
    border-radius: 30px;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(142, 107, 191, 0.2);
}

.newsletter-button {
    background: var(--gradient-accent);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.newsletter-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(142, 107, 191, 0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(142, 107, 191, 0.2);
    padding: 2rem 0;
    text-align: center;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.payment-icon {
    font-size: 1.5rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.payment-icon:hover {
    opacity: 1;
    transform: translateY(-3px);
}

.copyright {
    color: #5a4a6d;
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-column {
        padding: 0;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-heading {
        font-size: 1.2rem;
    }
    
    .footer-text, .footer-link {
        font-size: 0.95rem;
    }
    
    .newsletter-button {
        padding: 10px 15px;
    }
}
@media (max-width: 480px) {
    .navbar h1 {
        padding-left: 1em;
        font-size: 1.3em;
    }
    
    .category-btn {
        padding: 8px 16px;
        min-width: 120px;
    }
    
    .figure.product {
        border-radius: 10px;
    }
}

:root {
    --color-offwhite: #EDE9F2;
    --color-background: #DED0F2;
    --primary-color: #8E6BBF;
    --accent-color: #AE8FD9;
    --light-background: #D2BBF2;
    --dark-text: #281259;
    --hover-color: #AE8FD9;
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-dark: rgba(0, 0, 0, 0.2);
    --light-purple: #D2BBF2;
    --light-pink: #AE8FD9;
    --gradient-primary: linear-gradient(135deg, #8E6BBF 0%, #AE8FD9 100%);
    --gradient-accent: linear-gradient(135deg, #AE8FD9 0%, #D2BBF2 100%);
    --gradient-violet: linear-gradient(135deg, #C9A8F0 0%, #9D6BD9 100%);
    --gradient-lavender: linear-gradient(135deg, #E0C2FF 0%, #B388FF 100%);
    --gradient-purple: linear-gradient(135deg, #D8B4FE 0%, #A855F7 100%);
}

body {
    background-color: #f2e6f6;
    font-family: 'Rival-sans', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* ========== VISUAL ENHANCEMENTS ========== */
/* Animated Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.05;
    z-index: -1;
    animation: gradientShift 15s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ========== FORM ELEMENTS ========== */
.form-control {
    margin-bottom: 1.5rem;
}

/* Individual button colors */
.category-btn:nth-child(1) { background: var(--gradient-accent); }
.category-btn:nth-child(2) { background: var(--gradient-violet); }
.category-btn:nth-child(3) { background: var(--gradient-lavender); }
.category-btn:nth-child(4) { background: var(--gradient-purple); }

/* ========== NAVIGATION ========== */
.navbar {
    min-height: 70px;
    padding: 15px 0;
    background: var(--gradient-primary);
    box-shadow: 0 4px 20px rgba(142, 107, 191, 0.3);
    position: relative;
    z-index: 100;
}

.navbar h1 {
    padding-left: 1.5em;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    font-size: 1.8em;
    letter-spacing: 1px;
}

.navbar .nav li:hover {
    transform: translateY(-2px);
    text-shadow: 0 0 8px rgba(255,255,255,0.5);
}

/* ========== PRODUCT CARDS ========== */
.figure.product {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(142, 107, 191, 0.15);
    overflow: hidden;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    border: 1px solid rgba(142, 107, 191, 0.1);
}

.figure.product:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(142, 107, 191, 0.25);
}

.figure.product::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-accent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.figure.product:hover::after {
    opacity: 1;
}

.product-image-container {
    width: 100%;
    padding-top: 100%;
    position: relative;
    background: var(--gradient-accent);
    overflow: hidden;
}

.product-image-container img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    height: auto;
    object-fit: contain;
    transition: all 0.4s ease;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.figure.product:hover .product-image-container img {
    transform: translate(-50%, -50%) scale(1.08);
    filter: drop-shadow(0 6px 12px rgba(0,0,0,0.15));
}

.thumbnail-gallery {
    display: flex;
    gap: 0.8em;
    padding: 1em;
    overflow-x: auto;
    background: white;
    border-top: 1px solid rgba(142, 107, 191, 0.1);
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) transparent;
}

.thumbnail-gallery::-webkit-scrollbar {
    height: 4px;
}

.thumbnail-gallery::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 2px;
}

.thumbnail-gallery img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border: 2px solid white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.thumbnail-gallery img:hover {
    border-color: var(--primary-color);
    transform: scale(1.1) rotate(2deg);
    box-shadow: 0 4px 12px rgba(142, 107, 191, 0.3);
}

.form-button {
    background: var(--light-purple);
    color: var(--dark-text);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(142, 107, 191, 0.2);
    font-family: 'Rival-sans', sans-serif;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-right: 12px;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.form-button:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(142, 107, 191, 0.4);
}

.form-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: 0.5s;
}

.form-button:hover::before {
    left: 100%;
}



/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 768px) {
    .category-buttons {
        gap: 10px;
        justify-content: flex-start;
    }
    
    .category-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
        min-width: 140px;
    }
    
    .navbar h1 {
        font-size: 1.5em;
    }
    
    .thumbnail-gallery img {
        width: 60px;
        height: 60px;
    }
}

/* ========== HOMEPAGE SPECIFIC STYLES ========== */

/* Hero Section with Video */
.hero-section {
    position: relative;
    height: 80vh;
    min-height: 500px;
    max-height: 800px;
    overflow: hidden;
    margin-bottom: 3rem;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 15px 30px rgba(142, 107, 191, 0.2);
}

.hero-video {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 90%;
    max-width: 800px;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    animation: fadeInDown 1s ease-out;
    font-weight: 700;
    letter-spacing: 1px;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.3s both;
    font-weight: 300;
}

.hero-content .form-button {
    animation: fadeIn 1s ease-out 0.6s both;
    padding: 15px 40px;
    font-size: 1.1rem;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
    border: 2px solid rgba(255,255,255,0.4);
    transition: all 0.3s ease;
}

.hero-content .form-button:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-3px);
}

/* Welcome Section */
.welcome-section {
    padding: 4rem 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(142, 107, 191, 0.1);
    margin-bottom: 3rem;
}

.welcome-section h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.welcome-section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--gradient-accent);
    margin: 1rem auto;
    border-radius: 2px;
}

.welcome-image {
    width: 100%;
    border-radius: 0.5em;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.welcome-image:hover {
    transform: scale(1.02);
}

.welcome-section h3 {
    color: var(--dark-text);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.welcome-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

/* Testimonials */
.testimonials {
    background: var(--gradient-accent);
    padding: 4rem 2rem;
    border-radius: 20px;
    margin: 3rem 0;
    color: white;
    text-align: center;
}

.testimonials h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
}

.testimonials h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: white;
    margin: 1rem auto;
    border-radius: 2px;
    opacity: 0.6;
}

blockquote {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
}

blockquote:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

blockquote::before {
    content: '"';
    font-size: 4rem;
    color: rgba(255,255,255,0.2);
    position: absolute;
    top: -1rem;
    left: 1rem;
    line-height: 1;
}

blockquote p {
    font-size: 1.1rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

blockquote footer {
    font-weight: bold;
    font-size: 1rem;
}

body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    background-color: #fdf6f9;
    color: #333;
}

.about-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px 20px;
}

.about-hero {
    background-color: #fff0f6;
    padding: 40px 20px;
    text-align: center;
    border-radius: 10px;
    margin-bottom: 30px;
}

.about-hero h1 {
    color: #8b5fbf;
    font-size: 2.5em;
}

.about-hero p {
    font-size: 1.1em;
    color: #666;
    max-width: 700px;
    margin: 10px auto 0;
}

.about-section {
    background-color: #ffffff;
    padding: 25px;
    margin-bottom: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.about-section h2 {
    color: #6a4c93;
    margin-bottom: 15px;
}

.about-section ul {
    padding-left: 20px;
    list-style-type: disc;
}

.about-section li {
    margin-bottom: 10px;
}

.link {
    color: #6a4c93;
    font-weight: bold;
    text-decoration: none;
}

.link:hover {
    text-decoration: underline;
}

/* ========== ABOUT PAGE IMAGE STYLES ========== */
/* Container for the image and caption */
.image-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 2rem 0;
  max-width: 100%;
  position: relative;
}

/* Image styling */
.image-placeholder img {
  width: 100%;
  max-width: 300px; /* Adjust as needed */
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  aspect-ratio: 3/4; /* Maintain portrait ratio */
  box-shadow: 0 8px 25px rgba(142, 107, 191, 0.15);
  border: 3px solid white;
  transition: all 0.3s ease;
  filter: grayscale(10%) contrast(110%);
}

/* Hover effect for image */
.image-placeholder img:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 30px rgba(142, 107, 191, 0.25);
  filter: grayscale(0%) contrast(100%);
}

/* Caption styling */
.image-caption {
  margin-top: 1rem;
  font-family: 'Rival-sans', sans-serif;
  font-size: 1.1rem;
  color: var(--dark-text);
  text-align: center;
  position: relative;
  padding-bottom: 0.5rem;
  font-weight: 500;
}

/* Decorative line under caption */
.image-caption::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: var(--gradient-accent);
  border-radius: 3px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .image-placeholder img {
    max-width: 250px;
  }
  
  .image-caption {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .image-placeholder {
    margin: 1.5rem 0;
  }
  
  .image-placeholder img {
    max-width: 200px;
    border-width: 2px;
  }
}

/* Optional: Add a decorative frame effect */
.image-placeholder::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border: 1px solid var(--accent-color);
  border-radius: 15px;
  opacity: 0.3;
  pointer-events: none;
  transition: all 0.3s ease;
}

.image-placeholder:hover::before {
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  opacity: 0.5;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        height: 70vh;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .hero-content .form-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .welcome-section h2,
    .featured-products h2,
    .testimonials h2,
    .category-section h2 {
        font-size: 2rem;
    }
    
    blockquote {
        padding: 1.5rem;
    }
    
    .grid.gap {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: 60vh;
        min-height: 400px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .col-xs-12 {
        padding: 0.5rem;
    }
    
    .testimonials {
        padding: 2rem 1rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Floating Bubbles Background Effect */
.bubble-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.bubble {
    position: absolute;
    bottom: -100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float linear infinite;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Bubbles of different sizes */
.bubble:nth-child(1) {
    width: 40px;
    height: 40px;
    left: 10%;
    animation-duration: 15s;
    animation-delay: 0s;
}

.bubble:nth-child(2) {
    width: 20px;
    height: 20px;
    left: 20%;
    animation-duration: 12s;
    animation-delay: 2s;
}

.bubble:nth-child(3) {
    width: 50px;
    height: 50px;
    left: 35%;
    animation-duration: 18s;
    animation-delay: 1s;
}

.bubble:nth-child(4) {
    width: 30px;
    height: 30px;
    left: 50%;
    animation-duration: 14s;
    animation-delay: 3s;
}

.bubble:nth-child(5) {
    width: 25px;
    height: 25px;
    left: 70%;
    animation-duration: 16s;
    animation-delay: 0.5s;
}

.bubble:nth-child(6) {
    width: 45px;
    height: 45px;
    left: 85%;
    animation-duration: 20s;
    animation-delay: 2.5s;
}

/* ========== FOOTER STYLES ========== */
.site-footer {
    background: linear-gradient(135deg, #f5e9ff 0%, #e8d3ff 100%);
    color: #4a2c6d;
    padding: 4rem 0 0;
    margin-top: 4rem;
    border-top: 1px solid rgba(142, 107, 191, 0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

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

.footer-heading {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    position: relative;
    color: #4a2c6d;
    font-weight: 600;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 50px;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 3px;
}

.footer-text {
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #5a4a6d;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-link {
    color: #5a4a6d;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-link:hover {
    color: var(--primary-color);
    padding-left: 8px;
}

.footer-link::before {
    content: '→';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-link:hover::before {
    left: 0;
    opacity: 1;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icon {
    color: #7e57c2;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.newsletter-input {
    padding: 12px 15px;
    border: 1px solid #d1c4e9;
    border-radius: 30px;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(142, 107, 191, 0.2);
}

.newsletter-button {
    background: var(--gradient-accent);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.newsletter-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(142, 107, 191, 0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(142, 107, 191, 0.2);
    padding: 2rem 0;
    text-align: center;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.payment-icon {
    font-size: 1.5rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.payment-icon:hover {
    opacity: 1;
    transform: translateY(-3px);
}

.copyright {
    color: #5a4a6d;
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-column {
        padding: 0;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-heading {
        font-size: 1.2rem;
    }
    
    .footer-text, .footer-link {
        font-size: 0.95rem;
    }
    
    .newsletter-button {
        padding: 10px 15px;
    }
}

@media (max-width: 480px) {
    .navbar h1 {
        padding-left: 1em;
        font-size: 1.3em;
    }
    
    .category-btn {
        padding: 8px 16px;
        min-width: 120px;
    }
    
    .figure.product {
        border-radius: 10px;
    }
}

span.badge:not(:empty)::after {
    content: ')';
}

span.badge:not(:empty)::before {
    content: '(';
}

/* ========== ENHANCED RESPONSIVENESS FOR ALL MOBILE DEVICES ========== */

/* For mid-range mobile devices (e.g., 600px and below, covering most modern smartphones) */
@media (max-width: 600px) {
    /* Adjust body padding for smaller screens */
    body {
        padding: 0 0.5rem;
    }

    /* Navigation adjustments */
    .navbar {
        min-height: 60px;
        padding: 10px 0;
    }

    .navbar h1 {
        padding-left: 1em;
        font-size: 1.4em;
    }

    .navbar .nav li {
        font-size: 0.9rem;
    }

    /* Hero section */
    .hero-section {
        height: 55vh;
        min-height: 350px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .hero-content .form-button {
        padding: 10px 25px;
        font-size: 0.95rem;
    }

    /* Product cards */
    .figure.product {
        border-radius: 8px;
    }

    .product-image-container img {
        width: 80%;
    }

    .thumbnail-gallery img {
        width: 55px;
        height: 55px;
    }

    /* Form buttons */
    .form-button {
        padding: 10px 20px;
        font-size: 0.85rem;
        margin-right: 8px;
    }

    /* Welcome section */
    .welcome-section {
        padding: 2.5rem 1.5rem;
    }

    .welcome-section h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .welcome-section h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .welcome-section p {
        font-size: 1rem;
    }

    /* Testimonials */
    .testimonials {
        padding: 2.5rem 1.5rem;
    }

    .testimonials h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    blockquote {
        padding: 1.2rem;
    }

    blockquote p {
        font-size: 1rem;
    }

    blockquote footer {
        font-size: 0.9rem;
    }

    /* About page */
    .about-container {
        padding: 20px 15px;
    }

    .about-hero {
        padding: 30px 15px;
    }

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

    .about-hero p {
        font-size: 1rem;
    }

    .about-section {
        padding: 20px;
    }

    .about-section h2 {
        font-size: 1.6rem;
    }

    .about-section li {
        font-size: 0.95rem;
    }
}

/* For smaller mobile devices (e.g., 375px and below, covering devices like iPhone SE) */
@media (max-width: 375px) {
    /* Navigation */
    .navbar {
        min-height: 55px;
    }

    .navbar h1 {
        font-size: 1.2em;
        padding-left: 0.8em;
    }

    .navbar .nav li {
        font-size: 0.85rem;
    }

    /* Hero section */
    .hero-section {
        height: 50vh;
        min-height: 300px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }

    .hero-content p {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
    }

    .hero-content .form-button {
        padding: 8px 20px;
        font-size: 0.9rem;
    }

    /* Product cards */
    .product-image-container img {
        width: 75%;
    }

    .thumbnail-gallery img {
        width: 50px;
        height: 50px;
    }

    /* Form buttons */
    .form-button {
        padding: 8px 18px;
        font-size: 0.8rem;
        margin-right: 5px;
    }

    /* Category buttons */
    .category-btn {
        padding: 6px 14px;
        font-size: 0.8rem;
        min-width: 110px;
    }

    /* Welcome section */
    .welcome-section {
        padding: 2rem 1rem;
    }

    .welcome-section h2 {
        font-size: 1.6rem;
    }

    .welcome-section h3 {
        font-size: 1.3rem;
    }

    .welcome-section p {
        font-size: 0.95rem;
    }

    /* Testimonials */
    .testimonials {
        padding: 2rem 1rem;
    }

    .testimonials h2 {
        font-size: 1.6rem;
    }

    blockquote {
        padding: 1rem;
    }

    blockquote p {
        font-size: 0.95rem;
    }

    blockquote footer {
        font-size: 0.85rem;
    }

    /* About page */
    .about-hero {
        padding: 25px 10px;
    }

    .about-hero h1 {
        font-size: 1.8rem;
    }

    .about-hero p {
        font-size: 0.95rem;
    }

    .about-section {
        padding: 15px;
    }

    .about-section h2 {
        font-size: 1.4rem;
    }

    .about-section li {
        font-size: 0.9rem;
    }

    /* Footer */
    .site-footer {
        padding: 3rem 0 0;
    }

    .footer-heading {
        font-size: 1.1rem;
    }

    .footer-text, .footer-link {
        font-size: 0.9rem;
    }

    .social-icon {
        width: 35px;
        height: 35px;
    }

    .newsletter-input {
        padding: 10px 12px;
        font-size: 0.9rem;
    }

    .newsletter-button {
        padding: 10px 15px;
        font-size: 0.85rem;
    }
}

/* For very small screens (e.g., 320px and below, covering older or compact devices) */
@media (max-width: 320px) {
    /* Navigation */
    .navbar h1 {
        font-size: 1.1em;
        padding-left: 0.5em;
    }

    .navbar .nav li {
        font-size: 0.8rem;
    }

    /* Hero section */
    .hero-section {
        height: 45vh;
        min-height: 280px;
    }

    .hero-content h1 {
        font-size: 1.6rem;
        margin-bottom: 0.6rem;
    }

    .hero-content p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .hero-content .form-button {
        padding: 7px 18px;
        font-size: 0.85rem;
    }

    /* Product cards */
    .figure.product {
        border-radius: 6px;
    }

    .product-image-container img {
        width: 70%;
    }

    .thumbnail-gallery img {
        width: 45px;
        height: 45px;
    }

    /* Form buttons */
    .form-button {
        padding: 7px 16px;
        font-size: 0.75rem;
    }

    /* Category buttons */
    .category-btn {
        padding: 5px 12px;
        font-size: 0.75rem;
        min-width: 100px;
    }

    /* Welcome section */
    .welcome-section {
        padding: 1.5rem 0.8rem;
    }

    .welcome-section h2 {
        font-size: 1.4rem;
    }

    .welcome-section h3 {
        font-size: 1.2rem;
    }

    .welcome-section p {
        font-size: 0.9rem;
    }

    /* Testimonials */
    .testimonials {
        padding: 1.5rem 0.8rem;
    }

    .testimonials h2 {
        font-size: 1.4rem;
    }

    blockquote {
        padding: 0.8rem;
    }

    blockquote p {
        font-size: 0.9rem;
    }

    blockquote footer {
        font-size: 0.8rem;
    }

    /* About page */
    .about-hero {
        padding: 20px 8px;
    }

    .about-hero h1 {
        font-size: 1.6rem;
    }

    .about-hero p {
        font-size: 0.9rem;
    }

    .about-section {
        padding: 12px;
    }

    .about-section h2 {
        font-size: 1.3rem;
    }

    .about-section li {
        font-size: 0.85rem;
    }
}

/* Landscape orientation for mobile devices */
@media (max-height: 500px) and (orientation: landscape) {
    /* Hero section */
    .hero-section {
        height: 90vh;
        min-height: 300px;
    }

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

    .hero-content p {
        font-size: 1rem;
    }

    .hero-content .form-button {
        padding: 10px 25px;
        font-size: 0.95rem;
    }

    /* Product cards */
    .product-image-container img {
        width: 70%;
    }

    /* Welcome section */
    .welcome-section {
        padding: 2rem 1rem;
    }

    /* Testimonials */
    .testimonials {
        padding: 2rem 1rem;
    }
}


@media (max-width: 600px) {
    .form-button,
    .category-btn,
    .newsletter-button,
    .social-icon {
        min-height: 48px;
        line-height: 1.2;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .navbar .nav li {
        padding: 8px;
    }
}


span.badge:not(:empty)::after {
    content: ')';
}

span.badge:not(:empty)::before {
    content: '(';
}