
@import url('./cookie.css');







:root {
    /* Typography */
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Colors */
    --color-primary1: #272727;
    --color-primary2: #8a1230;
    --color-primary3: #FCFAF1;
    --color-primary4: #CACACA;
    --color-primary5: #000000;
    --color-white: #ffffff;
    --color-light-bg: #f5f5f5;
    
    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 40px;
    --spacing-xl: 60px;
    --spacing-2xl: 100px;
    
    /* Font Sizes */
    --text-xs: 0.85rem;
    --text-sm: 1rem;
    --text-base: 1.125rem;
    --text-lg: 1.5rem;
    --text-xl: 2rem;
    --text-2xl: 2.5rem;
    --text-3xl: 3.5rem;
    --text-4xl: 4.5rem;
    
    /* Font Weights */
    --fw-light: 300;
    --fw-normal: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}


/* Header - Floating Menu */
header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: calc(100% - 40px);
    max-width: 1200px;
    
    /* Nové štýly pre konzistentnosť */
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(138,18,48, 0.35);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(138, 18, 48, 0.05);
    transition: var(--transition);
}

header:hover {
    border-color: rgba(138, 18, 48, 0.3);
    box-shadow: 0 12px 40px rgba(138, 18, 48, 0.15);
}

.header-container {
    padding: 12px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: auto;
}

.header-logo {
    font-size: var(--text-lg);
    font-weight: var(--fw-bold);
    letter-spacing: -1px;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    text-decoration: none;
    transition: all 0.3s ease;
}

.header-logo:hover {
    color: #8a1230;
    text-shadow: 0 0 10px rgba(138, 18, 48, 0.3);
}

.header-logo .logo-img {
    height: 45px;
    width: auto;
    max-width: 50px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.05));
}

.header-logo:hover .logo-img {
    filter: drop-shadow(0 2px 6px rgba(138, 18, 48, 0.3));
}

/* Navigation */
.header-nav {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
}

.nav-links {
    display: flex;
    gap: var(--spacing-xl);
    list-style: none;
}

.nav-links a {
    font-size: var(--text-sm);
    font-weight: var(--fw-medium);
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #8a1230 0%, #a01a3a 100%);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #8a1230;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-icons {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.nav-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.8);
    font-size: 20px;
    transition: all 0.3s ease;
    border-radius: var(--radius-md);
    padding: 4px;
}

.nav-icon:hover {
    color: #8a1230;
    background: rgba(138, 18, 48, 0.1);
    box-shadow: 0 0 10px rgba(138, 18, 48, 0.2);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    transition: var(--transition);
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.mobile-menu-toggle:hover span {
    background-color: #8a1230;
}

/* Main Content Padding */


section {
    padding-top: 60px;
    scroll-margin-top: 100px;
}

footer {
    padding-top: 60px;
}



/*SPODNY HEADER*/
.bottom-nav {
    position: fixed;
    bottom: 10px;
    left: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(var(--size-normal));
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
    z-index: 40;
    display: none;
    border-radius: 30px;
    border: 1px solid rgba(138,18,48, 0.35);
    box-shadow: 0 8px 32px rgba(138, 18, 48, 0.05);
    transition: var(--transition);
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);    
}


.flex-nav{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0px;
}

.flex-nav a{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--color-white);
    font-size: 0.75rem;
    padding: 0.5rem 0;
    flex-grow: 1;
}


.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.justify-around {
    justify-content: space-around;
}

.items-center {
    align-items: center;
}

.text-accent {
    --tw-text-opacity: 1;
    color: rgb(var(--color-primary2) / var(--tw-text-opacity, 1));
}










/* Responsive */
@media (max-width: 55rem) {
    header {
        top: 10px;
        left: 20px;
        right: auto;
        transform: none;
        /*width: 100%;*/
        max-width: 100%;
        border-radius: 20px;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        box-shadow: 0 4px 12px rgba(138, 18, 48, 0.1);
    }
    
    header:hover {
        background: rgba(0, 0, 0, 0.6);
        box-shadow: 0 6px 16px rgba(138, 18, 48, 0.15);
    }
    
    .header-container {
        padding: 12px 20px;
    }
    
    .header-logo {
        font-size: var(--text-base);
    }
    
    .header-nav {
        display: none;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-icons {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    body {
        padding-top: 70px;
    }
    
    section {
        padding-top: 40px;
    }
}

@media (max-width: 880px) {
    header {
        position: absolute;
    }
}





@media (max-width: 480px) {
    header {
        padding: 10px 0;
    }
    
    .header-container {
        padding: 10px 16px;
    }
    
    .header-logo {
        font-size: var(--text-sm);
    }
}

@media only screen and (max-width: 55rem) {
    .bottom-nav{
        display: block;
    }

}












/* Hero Section */
.hero {
    padding: var(--spacing-2xl) var(--spacing-lg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    min-height: calc(100vh - 100px);
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(138, 18, 48, 0.1);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.hero-content h1 {
    font-size: var(--text-4xl);
    font-weight: var(--fw-bold);
    line-height: 1.1;
    margin-bottom: var(--spacing-lg);
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content h1 .accent {
    color: var(--color-primary2);
    position: relative;
}

.hero-content h1 .accent::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--color-primary2);
    opacity: 0.3;
}

.hero-content p {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-xl);
    line-height: 1.8;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.hero-cta {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.hero-image {
    position:relative;
    width:100%;
    max-width:600px;
    overflow:hidden;
    border-radius:20px;
}

.hero-image img {
    width:100%;
    display:block;
    transition:opacity 1s ease, transform 1.5s ease;
    border-radius:20px;
}


.hero-image.fade img{
    opacity:0;
    transform:scale(1.05);
    }

.hero-overlay{
position:absolute;
inset:0;
pointer-events:none;
}


/* Features Section */
.features {
    padding: var(--spacing-2xl) var(--spacing-lg);
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(138, 18, 48, 0.1);
    border-bottom: 1px solid rgba(138, 18, 48, 0.1);
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.features-content h2 {
    font-size: var(--text-3xl);
    margin-bottom: var(--spacing-lg);
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.features-content h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--color-primary2);
    margin-top: var(--spacing-md);
}

.features-content p {
    font-size: var(--text-base);
    margin-bottom: var(--spacing-lg);
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.features-image {
    position: relative;
}

.features-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}





/* Responsive */
@media (max-width: 770px) {
    .hero-grid,
    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .features-grid {
        order: 2;
    }
    
    .features-image {
        order: 1;
    }
}


@media (max-width: 600px) {
    .hero-image img {
        position:relative;
        width:100%;
        max-width:600px;
        overflow:hidden;
        border-radius:20px;
    }
    .hero-image {
        padding: var(--spacing-xl) var(--spacing-md);
    }
    
    .features {
        padding: var(--spacing-xl) var(--spacing-md);
    }
    
    .hero-content h1 {
        font-size: var(--text-2xl);
    }
    
    .hero-content p {
        font-size: var(--text-base);
    }
    
    .features-content h2 {
        font-size: var(--text-2xl);
    }
    
    .hero-image {
        min-height: 300px;
    }
}




@media (max-width: 770px) {
    .hero-image {
        padding: var(--spacing-md) var(--spacing-md);
        border-radius:20px;
    }
    
    .features {
        padding: var(--spacing-xl) var(--spacing-md);
    }
    
    .hero-content h1 {
        font-size: var(--text-2xl);
    }
    
    .hero-content p {
        font-size: var(--text-base);
    }
    
    .features-content h2 {
        font-size: var(--text-2xl);
    }
    
    .hero-image {
        min-height: 300px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: var(--spacing-xl) var(--spacing-md);
    }
    
    .hero-content h1 {
        font-size: var(--text-xl);
    }
    
    .hero-cta {
        flex-direction: column;
    }
}




















/* Products Section */
.products {
    padding: var(--spacing-2xl) var(--spacing-lg);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-top: 1px solid rgba(138, 18, 48, 0.1);
    border-bottom: 1px solid rgba(138, 18, 48, 0.1);
    position: relative;
}

.products-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.badge-new {
    background-color: #e63946;
    color: white;
    font-weight: bold;
    padding: 4px 8px;
    border-radius: 5px;
    font-size: 0.8em;
    position: absolute;
    top: 15px;
    right: 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    z-index: 10;
    }

.products-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.products-header h2 {
    font-size: var(--text-3xl);
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    margin-bottom: var(--spacing-md);
}

.products-header p {
    font-size: var(--text-base);
    color: rgba(255, 255, 255, 0.7);
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    padding: 0;
    list-style: none;
}

.product-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(138, 18, 48, 0.15);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
    cursor: pointer;
    position: relative;
    group: 1;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(138, 18, 48, 0.3), transparent);
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(138, 18, 48, 0.3);
    box-shadow: 0 8px 32px rgba(138, 18, 48, 0.1);
    transform: translateY(-4px);
}

.product-card:hover::before {
    opacity: 1;
}

.product-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, rgba(138, 18, 48, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.product-image::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(138, 18, 48, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.product-info {
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-category {
    font-size: var(--text-xs);
    color: rgba(138, 18, 48, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-sm);
    font-weight: var(--fw-semibold);
}

.product-name {
    font-size: var(--text-lg);
    font-weight: var(--fw-bold);
    color: #ffffff;
    margin-bottom: var(--spacing-sm);
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.product-description {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--spacing-md);
    flex-grow: 1;
    line-height: 1.6;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(138, 18, 48, 0.1);
    margin-bottom: var(--spacing-md);
}

.product-price {
    font-size: var(--text-lg);
    font-weight: var(--fw-bold);
    color: #8a1230;
}

.product-rating {
    display: flex;
    gap: 4px;
    align-items: center;
}

.product-rating span {
    font-size: 16px;
    color: #8a1230;
}

.product-actions {
    display: flex;
    gap: var(--spacing-sm);
}

.product-btn {
    flex: 1;
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: var(--text-sm);
    font-weight: var(--fw-semibold);
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.product-btn-primary {
    background: linear-gradient(135deg, #8a1230 0%, #a01a3a 100%);
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.product-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(138, 18, 48, 0.4);
}

.product-btn-secondary {
    background: rgba(138, 18, 48, 0.15);
    color: #ffffff;
    border: 1px solid rgba(138, 18, 48, 0.3);
}

.product-btn-secondary:hover {
    background: rgba(138, 18, 48, 0.25);
    border-color: rgba(138, 18, 48, 0.5);
}

.product-btn span {
    font-size: 18px;
}

.products-control-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.products-counter {
  color: #ccc;
  font-size: 14px;
}


.sort-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  background-color: #1a1a1a;
  color: #ffffff;

  border: 1px solid #800020;
  border-radius: 8px;

  padding: 10px 40px 10px 15px;
  font-size: 14px;
  cursor: pointer;

  transition: 0.3s ease;
}

.sort-select option {
  background-color: #1a1a1a;
  color: #fff;
}

.sort-select:hover {
  border-color: #b3002d;
}

.sort-select:focus {
  outline: none;
  border-color: #b3002d;
  box-shadow: 0 0 8px rgba(179, 0, 45, 0.4);
}

.select-wrapper {
  position: relative;
  display: inline-block;
}

.select-wrapper::after {
  content: "▾";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #800020;
  font-size: 14px;
}



/* Responsive */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: var(--spacing-md);
    }
}

@media (max-width: 768px) {
    .products {
        padding: var(--spacing-xl) var(--spacing-md);
    }

    .products-header h2 {
        font-size: var(--text-2xl);
    }

    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: var(--spacing-md);
    }

    .product-card {
        min-height: 400px;
    }

    .product-image {
        height: 200px;
    }

    .product-info {
        padding: var(--spacing-md);
    }
}

@media (max-width: 480px) {
    .products {
        padding: var(--spacing-lg) var(--spacing-md);
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

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

    .product-btn {
        width: 100%;
    }
}





















/* ===============================================
   FILTER & PAGINATION STYLES
   =============================================== */

/* Filter Section */
.products-filter-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.filter-header {
    text-align: center;
}

.filter-title {
    font-size: 1rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(138, 18, 48, 0.2);
    color: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: capitalize;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    letter-spacing: 0.05em;
}

.filter-btn:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(138, 18, 48, 0.35);
    color: #ffffff;
}

.filter-btn.active {
    background: linear-gradient(135deg, #8a1230 0%, #a01a3a 100%);
    border-color: #8a1230;
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(138, 18, 48, 0.3);
}

/* Search/Sort Bar */
.products-control-bar {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(138, 18, 48, 0.1);
}

.products-counter {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.products-sort-group {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.sort-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.sort-select {
    padding: 0.625rem 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(138, 18, 48, 0.2);
    color: #ffffff;
    border-radius: 6px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sort-select:hover {
    border-color: rgba(138, 18, 48, 0.3);
    background: rgba(255, 255, 255, 0.06);
}

.sort-select:focus {
    outline: none;
    border-color: #8a1230;
    background: rgba(255, 255, 255, 0.08);
}

/* Product Item - Hidden by Default for Filtering */
.product-card {
    opacity: 1;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.product-card.hidden {
    display: none;
}

/* Pagination */
.pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.pagination-info {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-right: 1rem;
    font-weight: 500;
}

.pagination-buttons {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.pagination-btn {
    padding: 0.625rem 0.875rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(138, 18, 48, 0.2);
    color: rgba(255, 255, 255, 0.7);
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    min-width: 36px;
    text-align: center;
    margin: 3px;
}

.pagination-btn:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(138, 18, 48, 0.3);
    color: #ffffff;
}

.pagination-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.pagination-btn.active {
    background: linear-gradient(135deg, #8a1230 0%, #a01a3a 100%);
    border-color: #8a1230;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(138, 18, 48, 0.3);
}

.pagination-btn.dots {
    border: none;
    background: transparent;
    cursor: default;
    font-weight: 300;
}

.pagination-btn.dots:hover {
    background: transparent;
}

/* Empty State */
.no-products {
    text-align: center;
    padding: 3rem 2rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    grid-column: 1 / -1;
}

.no-products-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

/* Responsive Filter */
@media (max-width: 768px) {
    .products-control-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .products-sort-group {
        width: 100%;
        justify-content: space-between;
    }

    .sort-select {
        flex: 1;
    }

    .filter-buttons {
        justify-content: flex-start;
        gap: 0.75rem;
    }

    .filter-btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.85rem;
    }

    .pagination-info {
        margin-right: 0;
        margin-bottom: 0.5rem;
        width: 100%;
    }

    .pagination-container {
        flex-direction: column;
        gap: 1rem;
    }

    .pagination-buttons {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .products-filter-section {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .filter-title {
        margin-bottom: 1rem;
    }

    .filter-buttons {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .products-control-bar {
        padding-bottom: 1rem;
    }

    .products-counter {
        font-size: 1rem;
    }

    .sort-label {
        font-size: 1rem;
    }

    .sort-select {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .pagination-btn {
        min-width: 32px;
    }

    .pagination-info {
        font-size: 1rem;
    }
}



















/* Custom Section */
.custom {
    padding: var(--spacing-2xl) var(--spacing-lg);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-top: 1px solid rgba(138, 18, 48, 0.1);
    border-bottom: 1px solid rgba(138, 18, 48, 0.1);
    position: relative;
}

.custom-container {
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

.custom-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.custom-header h2 {
    font-size: var(--text-3xl);
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    margin-bottom: var(--spacing-md);
}

.custom-header p {
    font-size: var(--text-base);
    color: rgba(255, 255, 255, 0.7);
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    max-width: 700px;
    margin: 0 auto;
}


.color-white{
    color: white;
}



.custom-form {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(138, 18, 48, 0.15);
    border-radius: var(--radius-xl);
    padding: var(--spacing-2xl);
    box-shadow: 0 8px 32px rgba(138, 18, 48, 0.05);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.form-group {
    display: flex;
    flex-direction: column;
    margin: 10px;
}

.form-label {
    font-size: var(--text-sm);
    font-weight: var(--fw-semibold);
    color: rgba(255, 255, 255, 0.9);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #8a1230;
}

.form-input,
.form-select,
.form-textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(138, 18, 48, 0.2);
    border-radius: var(--radius-lg);
    padding: 12px 16px;
    font-family: var(--font-primary);
    font-size: var(--text-sm);
    color: #ffffff;
    transition: var(--transition);
    outline: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(138, 18, 48, 0.5);
    box-shadow: 0 0 20px rgba(138, 18, 48, 0.2);
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%238a1230' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

.form-select option {
    background: #1a0a0f;
    color: #ffffff;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    grid-column: 1 / -1;
}

.form-row {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.color-picker-group {
    grid-column: 1 / -1;
}

.color-picker-group .form-label {
    margin-bottom: 16px;
}

.color-options {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.color-option {
    width: 60px;
    height: 60px;
    border: 2px solid rgba(138, 18, 48, 0.3);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.color-option input {
    display: none;
}

.color-option input:checked + .color-swatch {
    border-color: rgba(138, 18, 48, 0.8);
    box-shadow: 0 0 15px rgba(138, 18, 48, 0.5);
}

.color-swatch {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border: 2px solid rgba(138, 18, 48, 0.2);
}

.color-option:hover .color-swatch {
    border-color: rgba(138, 18, 48, 0.5);
    transform: scale(1.05);
}

.checkbox-group {
    grid-column: 1 / -1;
    display: flex;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-item input {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #8a1230;
}

.checkbox-item label {
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    font-size: var(--text-sm);
}

.form-actions {
    display: flex;
    gap: var(--spacing-md);
    grid-column: 1 / -1;
    padding-top: 30px;
}

.form-btn {
    flex: 1;
    padding: 14px 24px;
    font-size: var(--text-sm);
    font-weight: var(--fw-semibold);
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-btn-submit {
    background: linear-gradient(135deg, #8a1230 0%, #a01a3a 100%);
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.form-btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(138, 18, 48, 0.5);
}

.form-btn-reset {
    background: rgba(138, 18, 48, 0.15);
    color: #ffffff;
    border: 1px solid rgba(138, 18, 48, 0.3);
}

.form-btn-reset:hover {
    background: rgba(138, 18, 48, 0.25);
    border-color: rgba(138, 18, 48, 0.5);
}

.form-info {
    grid-column: 1 / -1;
    background: rgba(138, 18, 48, 0.1);
    border-left: 3px solid #8a1230;
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-lg);
}

.form-info p {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .custom {
        padding: var(--spacing-xl) var(--spacing-md);
    }

    .custom-header h2 {
        font-size: var(--text-2xl);
    }

    .custom-form {
        padding: var(--spacing-lg);
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

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

    .form-actions .form-btn {
        width: 100%;
    }

    .color-options {
        gap: var(--spacing-sm);
    }

    .color-option {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .custom {
        padding: var(--spacing-lg) var(--spacing-md);
    }

    .custom-form {
        padding: var(--spacing-md);
    }

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

    .checkbox-group {
        flex-direction: column;
    }
}

















/* ===============================================
   O NÁS SECTION STYLES
   =============================================== */

.o-nas {
    padding: 6rem 2rem;
    position: relative;
    z-index: 1;
}

.o-nas-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Section Header */
.o-nas-header {
    text-align: center;
    margin-bottom: 4rem;
}

.o-nas-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.o-nas-header p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

/* Decorative Line */
.o-nas-header::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #8a1230, transparent);
    margin: 1.5rem auto 0;
    border-radius: 10px;
}

/* Content Grid */
.o-nas-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

/* Info Cards */
.o-nas-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(138, 18, 48, 0.15);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.o-nas-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #8a1230 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.o-nas-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(138, 18, 48, 0.3);
    box-shadow: 0 8px 32px rgba(138, 18, 48, 0.15);
    transform: translateY(-4px);
}

.o-nas-card:hover::before {
    opacity: 1;
}

/* Card Icon */
.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    color: #8a1230;
}

/* Card Title */
.o-nas-card h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

/* Card Description */
.o-nas-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-size: 0.95rem;
    margin: 0;
}

/* Statistics Section */
.o-nas-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(138, 18, 48, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* Stat Item */
.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #8a1230 0%, #a01a3a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

/* Values Section */
.o-nas-values {
    margin: 4rem 0;
}

.o-nas-values h3 {
    font-size: 2rem;
    color: #ffffff;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

.value-item {
    text-align: center;
    padding: 1.5rem;
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #8a1230;
}

.value-item h4 {
    font-size: 1.25rem;
    color: #8a1230;
    margin-bottom: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.value-item p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Why Us Section */
.why-us {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(138, 18, 48, 0.1);
    border-radius: 16px;
    padding: 3rem 2rem;
    margin: 4rem 0;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.why-us h3 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.why-us-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-us-item {
    padding-left: 2rem;
    position: relative;
}

.why-us-item::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.5rem;
    color: #8a1230;
    font-weight: 700;
}

.why-us-item strong {
    display: block;
    color: #ffffff;
    margin-bottom: 0.25rem;
    font-weight: 600;
    font-size: 1.05rem;
}

.why-us-item p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* CTA Button */
.o-nas-cta {
    text-align: center;
    margin-top: 3rem;
}

.o-nas-cta a {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #8a1230 0%, #a01a3a 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 16px rgba(138, 18, 48, 0.3);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    border: none;
    cursor: pointer;
}

.o-nas-cta a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(138, 18, 48, 0.4);
    letter-spacing: 0.12em;
}

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

@media (max-width: 1024px) {
    .o-nas {
        padding: 5rem 1.5rem;
    }

    .o-nas-header h2 {
        font-size: 2.5rem;
    }

    .o-nas-header p {
        font-size: 1rem;
    }

    .o-nas-content {
        gap: 1.5rem;
    }

    .o-nas-card {
        padding: 2rem;
    }

    .o-nas-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 2rem 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .o-nas {
        padding: 4rem 1rem;
    }

    .o-nas-header h2 {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .o-nas-header p {
        font-size: 0.95rem;
    }

    .o-nas-header::after {
        margin-top: 1rem;
    }

    .o-nas-content {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-bottom: 3rem;
    }

    .o-nas-card {
        padding: 1.75rem;
    }

    .o-nas-card h3 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

    .o-nas-stats {
        grid-template-columns: repeat(2, 1fr);
        margin: 3rem 0;
        padding: 2rem 1rem;
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .o-nas-values h3 {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .value-icon {
        font-size: 2.5rem;
    }

    .value-item h4 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .why-us {
        padding: 2rem 1rem;
        margin: 3rem 0;
    }

    .why-us h3 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .why-us-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .why-us-item {
        padding-left: 1.75rem;
    }

    .o-nas-cta a {
        padding: 0.875rem 2rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .o-nas {
        padding: 2.5rem 1rem;
    }

    .o-nas-header h2 {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }

    .o-nas-header p {
        font-size: 0.9rem;
    }

    .o-nas-content {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .o-nas-card {
        padding: 1.5rem;
    }

    .o-nas-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .o-nas-card p {
        font-size: 0.9rem;
    }

    .card-icon {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .o-nas-stats {
        grid-template-columns: 1fr;
        margin: 2rem 0;
        padding: 1.5rem 1rem;
        gap: 1rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .o-nas-values h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .value-icon {
        font-size: 2rem;
    }

    .value-item {
        padding: 1rem;
    }

    .value-item h4 {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }

    .value-item p {
        font-size: 0.85rem;
    }

    .why-us {
        padding: 1.5rem 1rem;
        margin: 2rem 0;
    }

    .why-us h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .why-us-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .why-us-item {
        padding-left: 1.5rem;
    }

    .why-us-item p {
        font-size: 0.85rem;
    }

    .o-nas-cta a {
        padding: 0.75rem 1.5rem;
        font-size: 0.8rem;
    }
}












/* ===============================================
   PRODUCT DETAIL PAGE STYLES
   =============================================== */

.product-detail-header {
    background: linear-gradient(135deg, rgba(138, 18, 48, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(138, 18, 48, 0.15);
    padding: 2rem 0;
    margin-top: 8rem;
    position: relative;
    z-index: 10;
}

.product-detail-header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.icon {
  margin-right: 8px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb a {
    color: #8a1230;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #a01a3a;
    text-decoration: underline;
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.4);
}

.product-detail-hero {
    padding: 4rem 2rem;
    position: relative;
    z-index: 1;
}

.product-detail-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Product Grid Layout */
.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 4rem;
}

/* Gallery Section */
.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.gallery-main {
    width: 100%;
    aspect-ratio: 1;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(138, 18, 48, 0.15);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2rem;
    position: relative;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.gallery-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(138, 18, 48, 0.05) 0%, transparent 100%);
    pointer-events: none;
    border-radius: 8px;
}

.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.gallery-thumb {
    aspect-ratio: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(138, 18, 48, 0.1);
    border-radius: 8px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-thumb:hover {
    border-color: rgba(138, 18, 48, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.gallery-thumb.active {
    border-color: #8a1230;
    background: rgba(138, 18, 48, 0.15);
    box-shadow: 0 0 16px rgba(138, 18, 48, 0.2);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product Info Section */
.product-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.product-category {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(138, 18, 48, 0.1);
    border: 1px solid rgba(138, 18, 48, 0.2);
    border-radius: 20px;
    color: #8a1230;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    width: fit-content;
}

.product-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stars {
    display: flex;
    gap: 0.25rem;
    font-size: 1.25rem;
    color: #8a1230;
}

.rating-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.product-price {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.price-original {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
}

.product-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 1rem;
}

.product-highlights {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(138, 18, 48, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.highlights-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: #8a1230;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

.highlights-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(138,18,48, 0.7);
    font-size: 1.1rem;
}
/*
.highlight-item::before {
    content: '✓';
    color: #8a1230;
    font-weight: 700;
    font-size: 1.1rem;
}*/

.product-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-large {
    flex: 1;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-primary-large {
    background: linear-gradient(135deg, #8a1230 0%, #a01a3a 100%);
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(138, 18, 48, 0.3);
}

.btn-primary-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(138, 18, 48, 0.4);
}

.btn-secondary-large {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border: 1px solid rgba(138, 18, 48, 0.3);
    box-shadow: 0 4px 16px rgba(138, 18, 48, 0.1);
}

.btn-secondary-large:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(138, 18, 48, 0.5);
    transform: translateY(-2px);
}

/* Specifications Section */
.specifications {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #8a1230 0%, transparent 100%);
    border-radius: 10px;
}

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

.spec-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(138, 18, 48, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.spec-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    color: #8a1230;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: 0.1em;
}

.spec-value {
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 500;
}

/* Features Section */
.features {
    margin-bottom: 4rem;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(138, 18, 48, 0.1);
    border-radius: 12px;
    padding: 2rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(138, 18, 48, 0.2);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem; 
    color: #8a1230;
}

.feature-card h4 {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Reviews Section */
.reviews {
    margin-bottom: 4rem;
}

.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.review-stats {
    display: flex;
    gap: 3rem;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-big {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.reviews-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.review-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(138, 18, 48, 0.1);
    border-radius: 12px;
    padding: 1.75rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 1rem;
}

.reviewer-name {
    font-weight: 600;
    color: #ffffff;
    font-size: 0.95rem;
}

.review-rating {
    color: #8a1230;
    font-size: 0.9rem;
}

.review-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
    font-style: italic;
}

.review-date {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
    margin-top: 1rem;
}

/* Related Products */
.related {
    margin-bottom: 4rem;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.related-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(138, 18, 48, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.related-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(138, 18, 48, 0.2);
    transform: translateY(-4px);
}

.related-image {
    width: 100%;
    aspect-ratio: 1;
    background: rgba(255, 255, 255, 0.02);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    overflow: hidden;
}

.related-info {
    padding: 1.5rem;
}

.related-name {
    font-size: 0.95rem;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.related-price {
    color: #8a1230;
    font-weight: 700;
    font-size: 1rem;
}

/* CTA Section */
.product-cta {
    background: linear-gradient(135deg, rgba(138, 18, 48, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(138, 18, 48, 0.15);
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    margin-bottom: 4rem;
}

.cta-title {
    font-size: 1.75rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.cta-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #8a1230 0%, #a01a3a 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 16px rgba(138, 18, 48, 0.3);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(138, 18, 48, 0.4);
}













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

@media (max-width: 1025px) {
    .product-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .gallery-main{
        width: 80%;
    }
    .product-title {
        font-size: 2rem;
    }

    .product-price {
        font-size: 1.5rem;
    }

    .gallery-thumbs {
        grid-template-columns: repeat(4, 1fr);
    }

    .reviews-header {
        flex-direction: column;
        gap: 2rem;
    }

    .review-stats {
        gap: 2rem;
    }
}

@media (max-width: 880px) {
    .product-detail-header {
        margin-top: 3rem;
    }
}


@media (max-width: 768px) {
    .product-detail-hero {
        padding: 2rem 1rem;
    }

    .product-detail-container {
        padding: 0 1rem;
    }

    .product-grid {
        gap: 2rem;
    }

    .product-title {
        font-size: 1.75rem;
    }

    .product-price {
        font-size: 1.25rem;
    }

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

    .btn-large {
        flex: 1 1 100%;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .gallery-main {
        aspect-ratio: auto;
        height: 500px;
        width: auto;
    }

    .gallery-thumbs {
        grid-template-columns: repeat(4, 1fr);
    }

    .reviews-list {
        grid-template-columns: 1fr;
    }

    .product-cta {
        padding: 2rem 1rem;
        margin-bottom: 2rem;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .cta-text {
        margin-bottom: 1.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .product-detail-hero {
        padding: 1.5rem 1rem;
    }

    .product-category {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }

    .product-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .product-price {
        font-size: 1.25rem;
        gap: 0.5rem;
    }

    .product-rating {
        gap: 0.75rem;
        flex-direction: column;
        align-items: flex-start;
    }

    .product-highlights {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }

    .highlights-list {
        gap: 0.5rem;
    }

    .highlight-item {
        font-size: 0.85rem;
    }

    .product-actions {
        flex-direction: column;
        gap: 0.75rem;
    }

    .btn-large {
        padding: 0.875rem 8rem;
        font-size: 0.8rem;
        min-height: 45px;
    }

    .section-title {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .specs-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .spec-item {
        padding: 1rem;
    }

    .spec-label {
        font-size: 0.75rem;
    }

    .spec-value {
        font-size: 0.95rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-icon {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .feature-card h4 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .feature-card p {
        font-size: 0.85rem;
    }

    .review-stats {
        gap: 1rem;
        flex-wrap: wrap;
    }

    .stat-big {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    .reviews-list {
        grid-template-columns: 1fr;
    }

    .review-item {
        padding: 1rem;
    }

    .reviewer-name {
        font-size: 0.85rem;
    }

    .review-text {
        font-size: 0.8rem;
    }

    .related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .product-cta {
        padding: 1.5rem 1rem;
        margin-bottom: 1.5rem;
    }

    .cta-title {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

    .cta-text {
        margin-bottom: 1rem;
        font-size: 0.85rem;
    }

    .cta-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.75rem;
        width: 100%;
    }
}
























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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

/* Statické Gradient Pozadie - Čierna a #8a1230 */
body {
    font-family: var(--font-primary);
    background: #000000;
    background-attachment: fixed;
    color: var(--color-primary1);
    line-height: 1.6;
    font-weight: var(--fw-normal);
    min-height: 100vh;
    position: relative;
}

/* Overlay s vínovou farbou pre efekt */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgb(0, 0, 0) 0%,
        rgba(138, 18, 48, 0.24) 50%,
        rgb(0, 0, 0) 100%
    );
    backdrop-filter: blur(10px);
    pointer-events: none;
    z-index: 0;
}

/* Zajistenie že obsah je nad pozadím */
html, body {
    width: 100%;
    height: 100%;
}

body > * {
    
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.wrapper {
    width: 100%;
    padding: 0 var(--spacing-lg);
    margin: 0 auto;
}

section {
    position: relative;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: var(--fw-bold);
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

h1 {
    font-size: var(--text-4xl);
}

h2 {
    font-size: var(--text-3xl);
}

h3 {
    font-size: var(--text-2xl);
}

h4 {
    font-size: var(--text-xl);
}

p {
    font-size: var(--text-sm);
    line-height: 1.8;
    color: var(--color-primary4);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--color-primary2);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-lg);
    font-size: var(--text-sm);
    font-weight: var(--fw-semibold);
    text-decoration: none;
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #8a1230 0%, #a01a3a 100%);
    color: var(--color-primary3);
    box-shadow: 0 10px 30px rgba(138, 18, 48, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #a01a3a 0%, #c01a4a 100%);
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(138, 18, 48, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-primary2);
    border: 2px solid var(--color-primary2);
}

.btn-secondary:hover {
    background-color: var(--color-primary2);
    color: var(--color-primary3);
}





/* Responsive */
@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    .container,
    .wrapper {
        padding: 0 var(--spacing-md);
    }
}
















.hero span{
color:#8a1230;
}

.subtitle{
opacity:.7;
margin-bottom:40px;
}

.perspective{
perspective:1200px;
height:420px;
display:flex;
align-items:center;
justify-content:center;
}

.carousel{
position:relative;
width:320px;
height:360px;
transform-style:preserve-3d;
animation:rotate 12s infinite cubic-bezier(.4,0,.2,1);
}

.card{
position:absolute;
width:100%;
height:100%;
border-radius:20px;
background:rgba(255,255,255,.04);
border:1px solid rgba(138,18,48,.2);
backdrop-filter:blur(10px);
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
box-shadow:0 0 30px rgba(138,18,48,.2);
}

.card img{
width:80%;
height:220px;
object-fit:contain;
}

.label{
padding:15px;
font-weight:600;
}

@keyframes rotate{
0%{transform:rotateY(0)}
33%{transform:rotateY(-120deg)}
66%{transform:rotateY(-240deg)}
100%{transform:rotateY(-360deg)}
}














@tailwind base;
@tailwind components;
@tailwind utilities;
/* Definition of the design system. All colors, gradients, fonts, etc should be defined here. 
All colors MUST be HSL.
*/
@layer base {
  :root {
    --background: 0 0% 100%;
    --foreground: 222.2 84% 4.9%;
    --background: 0 0% 0%;
    --foreground: 0 0% 100%;
    --card: 0 0% 100%;
    --card-foreground: 222.2 84% 4.9%;
    --card: 0 0% 5%;
    --card-foreground: 0 0% 100%;
    --popover: 0 0% 100%;
    --popover-foreground: 222.2 84% 4.9%;
    --popover: 0 0% 5%;
    --popover-foreground: 0 0% 100%;
    --primary: 222.2 47.4% 11.2%;
    --primary-foreground: 210 40% 98%;
    --primary: 346 77% 31%;
    --primary-foreground: 40 33% 96%;
    --secondary: 210 40% 96.1%;
    --secondary-foreground: 222.2 47.4% 11.2%;
    --secondary: 0 0% 10%;
    --secondary-foreground: 0 0% 80%;
    --muted: 210 40% 96.1%;
    --muted-foreground: 215.4 16.3% 46.9%;
    --muted: 0 0% 12%;
    --muted-foreground: 0 0% 60%;
    --accent: 210 40% 96.1%;
    --accent-foreground: 222.2 47.4% 11.2%;
    --accent: 346 77% 31%;
    --accent-foreground: 0 0% 100%;
    --destructive: 0 84.2% 60.2%;
    --destructive-foreground: 210 40% 98%;
    --border: 214.3 31.8% 91.4%;
    --input: 214.3 31.8% 91.4%;
    --ring: 222.2 84% 4.9%;
    --border: 346 77% 31% / 0.15;
    --input: 0 0% 15%;
    --ring: 346 77% 31%;
    --radius: 0.5rem;
    --radius: 1rem;
    --sidebar-background: 0 0% 98%;
    --sidebar-background: 0 0% 5%;
    --sidebar-foreground: 0 0% 90%;
    --sidebar-primary: 346 77% 31%;
    --sidebar-primary-foreground: 0 0% 100%;
    --sidebar-accent: 0 0% 10%;
    --sidebar-accent-foreground: 0 0% 90%;
    --sidebar-border: 346 77% 31% / 0.15;
    --sidebar-ring: 346 77% 31%;
    --sidebar-foreground: 240 5.3% 26.1%;
    --sidebar-primary: 240 5.9% 10%;
    --sidebar-primary-foreground: 0 0% 98%;
    --sidebar-accent: 240 4.8% 95.9%;
    --sidebar-accent-foreground: 240 5.9% 10%;
    --sidebar-border: 220 13% 91%;
    --sidebar-ring: 217.2 91.2% 59.8%;
    /* Wine color tokens */
    --wine: 346 77% 31%;
    --wine-glow: 346 77% 40%;
  }
  .dark {
    --background: 222.2 84% 4.9%;
    --foreground: 210 40% 98%;
    --card: 222.2 84% 4.9%;
    --card-foreground: 210 40% 98%;
    --popover: 222.2 84% 4.9%;
    --popover-foreground: 210 40% 98%;
    --primary: 210 40% 98%;
    --primary-foreground: 222.2 47.4% 11.2%;
    --secondary: 217.2 32.6% 17.5%;
    --secondary-foreground: 210 40% 98%;
    --muted: 217.2 32.6% 17.5%;
    --muted-foreground: 215 20.2% 65.1%;
    --accent: 217.2 32.6% 17.5%;
    --accent-foreground: 210 40% 98%;
    --background: 0 0% 0%;
    --foreground: 0 0% 100%;
    --card: 0 0% 5%;
    --card-foreground: 0 0% 100%;
    --popover: 0 0% 5%;
    --popover-foreground: 0 0% 100%;
    --primary: 346 77% 31%;
    --primary-foreground: 40 33% 96%;
    --secondary: 0 0% 10%;
    --secondary-foreground: 0 0% 80%;
    --muted: 0 0% 12%;
    --muted-foreground: 0 0% 60%;
    --accent: 346 77% 31%;
    --accent-foreground: 0 0% 100%;
    --destructive: 0 62.8% 30.6%;
    --destructive-foreground: 210 40% 98%;
    --border: 217.2 32.6% 17.5%;
    --input: 217.2 32.6% 17.5%;
    --ring: 212.7 26.8% 83.9%;
    --sidebar-background: 240 5.9% 10%;
    --sidebar-foreground: 240 4.8% 95.9%;
    --sidebar-primary: 224.3 76.3% 48%;
    --sidebar-primary-foreground: 0 0% 100%;
    --sidebar-accent: 240 3.7% 15.9%;
    --sidebar-accent-foreground: 240 4.8% 95.9%;
    --sidebar-border: 240 3.7% 15.9%;
    --sidebar-ring: 217.2 91.2% 59.8%;
    --border: 0 0% 15%;
    --input: 0 0% 15%;
    --ring: 346 77% 31%;
  }
}
  body {
    @apply bg-background text-foreground;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  }


/* 3D Rotation Carousel */
@layer utilities {
  .perspective-1200 {
    perspective: 1200px;
  }
  .transform-style-3d {
    transform-style: preserve-3d;
  }
  .backface-hidden {
    backface-visibility: hidden;
  }
  @keyframes rotate-carousel {
    0% { transform: rotateY(0deg); }
    25% { transform: rotateY(0deg); }
    33.33% { transform: rotateY(-120deg); }
    58.33% { transform: rotateY(-120deg); }
    66.66% { transform: rotateY(-240deg); }
    91.66% { transform: rotateY(-240deg); }
    100% { transform: rotateY(-360deg); }
  }
  .animate-carousel {
    animation: rotate-carousel 12s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  }
  @keyframes float-glow {
    0%, 100% { box-shadow: 0 0 30px rgba(138, 18, 48, 0.15); }
    50% { box-shadow: 0 0 50px rgba(138, 18, 48, 0.3); }
  }
  .animate-float-glow {
    animation: float-glow 4s ease-in-out infinite;
  }
  @keyframes fade-up {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .animate-fade-up {
    animation: fade-up 0.8s ease-out forwards;
  }
  .glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(138, 18, 48, 0.15);
  }
  .glass-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(138, 18, 48, 0.35);
  }
}





















/* Footer */
footer {
    padding: var(--spacing-2xl) var(--spacing-lg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(138, 18, 48, 0.3);
    margin-top: var(--spacing-2xl);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(138, 18, 48, 0.5), transparent);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    /*margin-bottom: var(--spacing-2xl);*/
}

.footer-section h3 {
    font-size: var(--text-lg);
    color: #ffffff;
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid rgba(138, 18, 48, 0.3);
    padding-bottom: var(--spacing-sm);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--text-sm);
    line-height: 1.8;
    margin: 0;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section li {
    margin-bottom: var(--spacing-sm);
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--text-sm);
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-section a:hover {
    color: #8a1230;
    padding-left: 5px;
}

/* About Section */
.footer-about p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: var(--spacing-md);
}

.footer-socials {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(138, 18, 48, 0.2);
    border-radius: var(--radius-md);
    color: #ffffff;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 20px;
}

.social-icon:hover {
    background: rgba(138, 18, 48, 0.4);
    transform: translateY(-3px);
}

/* Contact Info */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.contact-icon {
    color: #8a1230;
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--text-sm);
}

/* Newsletter */
.newsletter-form {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-lg);
}

.newsletter-input {
    flex: 1;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(138, 18, 48, 0.2);
    border-radius: var(--radius-lg);
    color: #ffffff;
    font-size: var(--text-sm);
    transition: var(--transition);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-input:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(138, 18, 48, 0.5);
    outline: none;
}

.newsletter-btn {
    padding: 12px 24px;
    background: linear-gradient(135deg, #8a1230 0%, #a01a3a 100%);
    color: #ffffff;
    border: none;
    border-radius: var(--radius-lg);
    font-weight: var(--fw-semibold);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(138, 18, 48, 0.5);
}

/* Divider */
.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(138, 18, 48, 0.3), transparent);
    margin: var(--spacing-xl) 0;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-lg);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: var(--text-xs);
    font-weight: var(--fw-light);
    letter-spacing: 0.5px;
}

.footer-links {
    display: flex;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: var(--text-xs);
    transition: var(--transition);
    text-decoration: none;
}

.footer-links a:hover {
    color: #8a1230;
}

/* Responsive */
@media (max-width: 768px) {
    footer {
        padding: var(--spacing-xl) var(--spacing-md);
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    footer {
        padding: var(--spacing-lg) var(--spacing-md);
    }

    .footer-section h3 {
        font-size: var(--text-base);
    }

    .footer-copyright,
    .footer-links a {
        font-size: var(--text-2xs);
    }
}













/* === COOKIE BANNER - CustomRugs theme === */

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 900px;
    z-index: 9999;

    background: linear-gradient(135deg, #1a0004 0%, #3b000a 100%);
    border: 1px solid rgba(255, 0, 60, 0.25);
    border-radius: 18px;

    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(12px);

    padding: 1.5rem 2rem;
    animation: fadeUp 0.4s ease;
}

.cookie-container {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.cookie-icon {
    background: linear-gradient(135deg, #ff003c, #b3002d);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(255, 0, 60, 0.4);
}

.cookie-message {
    flex: 1;
    min-width: 250px;
}

.cookie-message p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #f2f2f2;
}

/* Buttons */
.btn-fill-green {
    background: linear-gradient(135deg, #ff003c, #b3002d);
    border: none;
    padding: 0.6rem 1.4rem;
    border-radius: 30px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-fill-green:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 0, 60, 0.4);
}

.btn-color-red {
    background: transparent;
    border: 1px solid rgba(255, 0, 60, 0.5);
    padding: 0.6rem 1.4rem;
    border-radius: 30px;
    color: #ff4d6d;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-color-red:hover {
    background: rgba(255, 0, 60, 0.1);
    border-color: #ff003c;
    color: white;
}

/* Animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translate(-50%, 20px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

/* Responsive */
@media (max-width: 600px) {
    .cookie-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-banner {
        bottom: 1rem;
        padding: 1.2rem;
    }

    .btn-fill-green,
    .btn-color-red {
        width: 100%;
        text-align: center;
    }
}