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

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    color: #ffffff;
    overflow-x: hidden;
}

/* Header */
.header {
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #e94560;
    transition: all 0.3s ease;
}

.header:hover {
    background: rgba(15, 15, 35, 0.98);
    box-shadow: 0 10px 30px rgba(233, 69, 96, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: #e94560;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(233, 69, 96, 0.5);

    img {
        width: 100px;
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

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

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.nav-menu a:hover {
    color: #e94560;
    background: rgba(233, 69, 96, 0.1);
    transform: translateY(-2px);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #e94560;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-menu a:hover::after {
    width: 80%;
}

/* Main Content */
.main-content {
    margin-top: 112px;
    min-height: 59vh;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, #e94560 0%, #f27121 50%, #e94560 100%);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: float 20s linear infinite;
}

@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(-50px, -50px) rotate(360deg); }
}

.newsletter-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.newsletter-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
    animation: slideInLeft 1s ease-out;
}

.newsletter-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #fff3cd;
    animation: slideInLeft 1s ease-out 0.2s both;
}

.newsletter-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: slideInLeft 1s ease-out 0.4s both;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.newsletter-form {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: slideInRight 1s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.form-group input {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(45deg, #1a1a2e, #16213e);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, #16213e, #1a1a2e);
}

.gift-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #fff3cd, #ffffff);
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Products Section */
.products-section {
    padding: 4rem 0;
    background: rgba(26, 26, 46, 0.5);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;

    @media (max-width: 767px) {
        padding: 0 1rem;
    }
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #e94560;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.products-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;

    .product-card {
        width: calc((100% - 24px) / 2);
    }

    @media (max-width: 767px) {
        .product-card {
            width: 100%;
        }
    }
}

.product-card {
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.1), rgba(242, 113, 33, 0.1));
    border-radius: 20px;
    padding: 1.5rem;
    border: 2px solid rgba(233, 69, 96, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;

    * {
        position: relative;
        z-index: 999;
    }
}

.product-description {
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(233, 69, 96, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #e94560;
    box-shadow: 0 20px 40px rgba(233, 69, 96, 0.3);
}

.product-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 15px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    position: relative;
    overflow: hidden;

    img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
}

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

.product-card:hover .product-image::after {
    left: 100%;
}

.product-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.product-price {
    font-size: 1.5rem;
    color: #e94560;
    font-weight: bold;
    margin-bottom: 1rem;
    /*margin-top: auto;*/
}

.product-btn {
    width: 100%;
    padding: 0.8rem;
    background: linear-gradient(45deg, #e94560, #f27121);
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    display: block;
    text-align: center;
}

.product-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(233, 69, 96, 0.4);
}

/* Categories Section */
.categories-section {
    padding: 4rem 0;
    background: rgba(15, 15, 35, 0.7);
}

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

.category-card {
    background: linear-gradient(135deg, rgba(22, 33, 62, 0.8), rgba(26, 26, 46, 0.8));
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(233, 69, 96, 0.1), transparent);
    transition: left 0.6s;
}

.category-card:hover::before {
    left: 100%;
}

.category-card:hover {
    border-color: #e94560;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(233, 69, 96, 0.2);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #e94560;
}

.category-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.category-description {
    color: #cccccc;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0f0f23, #1a1a2e);
    padding: 3rem 0 1rem;
    border-top: 2px solid #e94560;
}

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

.footer-section h3 {
    color: #e94560;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-section a {
    color: #cccccc;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    padding: 0.3rem 0;
}

.footer-section a:hover {
    color: #e94560;
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(233, 69, 96, 0.3);
    color: #888;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #e94560;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 110px;
    left: 0;
    width: 100%;
    height: calc(100vh - 110px);
    background: rgba(15, 15, 35, 0.98);
    backdrop-filter: blur(10px);
    z-index: 999;
    padding: 2rem;
}

.mobile-nav.active {
    display: block;
    animation: slideDown 0.3s ease-out;
}

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

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

.mobile-nav-menu li {
    margin-bottom: 1.5rem;
}

.mobile-nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    display: block;
    padding: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.mobile-nav-menu a:hover {
    color: #e94560;
    background: rgba(233, 69, 96, 0.1);
    border-color: #e94560;
    transform: translateX(10px);
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.95), rgba(26, 26, 46, 0.95));
    backdrop-filter: blur(15px);
    border: 2px solid #e94560;
    border-radius: 20px;
    padding: 1.5rem;
    color: #ffffff;
    z-index: 10000;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(233, 69, 96, 0.3);
    animation: slideUp 0.5s ease-out;
    display: none;
}

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

.cookie-popup.hidden {
    display: none;
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.cookie-icon {
    font-size: 2rem;
    animation: bounce 2s infinite;
}

.cookie-text {
    flex: 1;
}

.cookie-title {
    font-size: 1.1rem;
    font-weight: bold;
    color: #e94560;
    margin-bottom: 0.5rem;
}

.cookie-description {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #cccccc;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.cookie-accept {
    background: linear-gradient(45deg, #e94560, #f27121);
    color: white;
    flex: 1;
    min-width: 120px;
}

.cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(233, 69, 96, 0.4);
}

.cookie-decline {
    background: transparent;
    color: #cccccc;
    border: 2px solid #666;
    flex: 1;
    min-width: 120px;
}

.cookie-decline:hover {
    background: rgba(102, 102, 102, 0.1);
    border-color: #999;
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .newsletter-text h2 {
        font-size: 2rem;
    }

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

    .cookie-popup {
        bottom: 10px;
        left: 10px;
        right: 10px;
        padding: 1rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        flex-direction: column;
    }

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

/* Success Message */
.success-message {
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
    display: none;
    animation: slideIn 0.5s ease-out;
}

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



/* Header */
.header {
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #e94560;
    transition: all 0.3s ease;
}

.header:hover {
    background: rgba(15, 15, 35, 0.98);
    box-shadow: 0 10px 30px rgba(233, 69, 96, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: #e94560;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(233, 69, 96, 0.5);
    text-decoration: none;
}

.logo img {
    width: 100px;
}

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

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-menu a.active,
.nav-menu a:hover {
    color: #e94560;
    background: rgba(233, 69, 96, 0.1);
    transform: translateY(-2px);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #e94560;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-menu a:hover::after {
    width: 80%;
}

/* Dropdown Arrow */
.dropdown-arrow {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(15, 15, 35, 0.98);
    backdrop-filter: blur(15px);
    border: 2px solid #e94560;
    border-radius: 15px;
    min-width: 250px;
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    box-shadow: 0 15px 35px rgba(233, 69, 96, 0.3);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 0.8rem 1.5rem;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 0;
    font-size: 0.95rem;
}

.dropdown-menu a:hover {
    background: linear-gradient(90deg, rgba(233, 69, 96, 0.2), rgba(242, 113, 33, 0.2));
    color: #e94560;
    transform: translateX(0);
    padding-left: 2rem;
}

.dropdown-menu a::after {
    display: none;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #e94560;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Navigation */
.mobile-nav.active {
    display: block;
    animation: slideDown 0.3s ease-out;
}

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

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

.mobile-nav-menu > li {
    margin-bottom: 1rem;
}

.mobile-nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    display: block;
    padding: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.mobile-nav-menu a:hover {
    color: #e94560;
    background: rgba(233, 69, 96, 0.1);
    border-color: #e94560;
    transform: translateX(10px);
}

/* Mobile Dropdown */
.mobile-dropdown {
    position: relative;
}

.mobile-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.mobile-dropdown-arrow {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.mobile-dropdown.active .mobile-dropdown-arrow {
    transform: rotate(180deg);
}

.mobile-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(233, 69, 96, 0.1);
    border-radius: 10px;
    margin-top: 0.5rem;
}

.mobile-dropdown.active .mobile-dropdown-menu {
    max-height: 500px;
}

.mobile-dropdown-menu a {
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
    margin: 0;
    border: none;
    background: transparent;
}

.mobile-dropdown-menu a:hover {
    background: rgba(233, 69, 96, 0.2);
    transform: translateX(5px);
}

/* Demo Content */
.demo-content {
    margin-top: 120px;
    padding: 2rem;
    text-align: center;
}

.demo-content h1 {
    color: #e94560;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.demo-content p {
    font-size: 1.2rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .logo {
        font-size: 1.5rem;
    }

    .demo-content {
        margin-top: 100px;
        padding: 1rem;
    }

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

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


.inner-pages {
    padding-top: 48px;
}

.static-page {
    font-size: 20px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding-bottom: 48px;

    hr {
        border-color: rgba(255, 255, 255, 0.1);
    }

    code {
        background-color: #ffe9c3;
        color: #000;
        padding: 3px;
        border-radius: 6px;
    }
    table {
        width: 100%;
        margin: 24px 0 48px;

        td {
            padding: 10px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.3);
        }
    }

    a {
        color: #fff;
    }

    p {
        line-height: 1.5;
    }

    ol {
        margin-left: 24px;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    ul {
        list-style: none;
        margin-left: 0;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    @media (max-width: 767px) {
        font-size: 16px;
        table {
            th,
            td {
                font-size: 14px;
            }
        }
    }
}





/* Info Block */
.info-block {
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.1), rgba(242, 113, 33, 0.1));
    border-radius: 20px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 2px solid rgba(233, 69, 96, 0.3);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 140px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
}

.info-icon {
    font-size: 1.5rem;
    color: #e94560;
}

.info-text {
    display: flex;
    flex-direction: column;
}

.info-title {
    font-weight: bold;
    color: #e94560;
    font-size: 0.9rem;
}

.info-subtitle {
    font-size: 0.8rem;
    color: #cccccc;
}

/* Product Section */
.product-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

/* Product Gallery */
.product-gallery {
    position: relative;

    img {
        width: 100%;
    }
}

.main-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;

    img {
        transition: all .3s ease;;
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
}

.main-image:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(233, 69, 96, 0.3);
}

.gallery-thumbnails {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.thumbnail {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;

    img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 10px;
    }
}

@media (max-width: 576px) {
    .thumbnail {
        width: 40px;
        height: 40px;
    }
}

.thumbnail:hover,
.thumbnail.active {
    border-color: #e94560;
    transform: scale(1.1);
}

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

.product-title {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

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

.stars {
    color: #ffd700;
    font-size: 1.2rem;
}

.rating-text {
    color: #cccccc;
    font-size: 0.9rem;
}

.product-price {
    font-size: 2rem;
    color: #e94560;
    font-weight: bold;
    margin-bottom: 1rem;
}

.old-price {
    text-decoration: line-through;
    color: #888;
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

.product-description {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    margin-top: auto;
}

/* Add to Cart Section */
.add-to-cart {
    background: rgba(15, 15, 35, 0.7);
    border-radius: 15px;
    padding: 1.5rem;
    border: 2px solid rgba(233, 69, 96, 0.3);
}

.quantity-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.quantity-label {
    font-weight: bold;
    color: #e94560;
}

.quantity-controls {
    display: flex;
    align-items: center;
    background: rgba(233, 69, 96, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.quantity-btn {
    background: none;
    border: none;
    color: #e94560;
    font-size: 1.5rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quantity-btn:hover {
    background: rgba(233, 69, 96, 0.2);
}

.quantity-input {
    background: none;
    border: none;
    color: #ffffff;
    text-align: center;
    width: 60px;
    font-size: 1.2rem;
    padding: 0.5rem;
}

.add-to-cart-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(45deg, #e94560, #f27121);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.add-to-cart-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(233, 69, 96, 0.4);
}

/* Tabs Section */
.tabs-section {
    margin-bottom: 3rem;
}

.tab-navigation {
    display: flex;
    gap: 0;
    margin-bottom: 2rem;
    background: rgba(15, 15, 35, 0.7);
    border-radius: 15px;
    padding: 0.5rem;
    border: 2px solid rgba(233, 69, 96, 0.3);
}

.tab-btn {
    flex: 1;
    padding: 1rem;
    background: none;
    border: none;
    color: #cccccc;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 10px;
    font-weight: bold;
}

.tab-btn.active {
    background: linear-gradient(45deg, #e94560, #f27121);
    color: white;
    transform: scale(1.02);
}

.tab-content {
    background: rgba(15, 15, 35, 0.7);
    border-radius: 15px;
    padding: 2rem;
    border: 2px solid rgba(233, 69, 96, 0.3);
    display: none;
    animation: fadeIn 0.5s ease-in;
}

.tab-content.active {
    display: flex;
    flex-direction: column;
    gap: 18px;

    p {
        font-size: 16px;
        line-height: 1.5;
    }

    ul {
        margin-left: 24px;
        display: flex;
        flex-direction: column;
        gap: 18px;
        font-size: 16px;
        line-height: 1.5;
    }
}

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

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

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(233, 69, 96, 0.2);
}

.spec-label {
    font-weight: bold;
    color: #e94560;
}

.spec-value {
    color: #cccccc;
}

/* Social Share */
.social-share {
    background: rgba(15, 15, 35, 0.7);
    border-radius: 15px;
    padding: 1.5rem;
    border: 2px solid rgba(233, 69, 96, 0.3);
    margin-bottom: 48px;
}

.share-title {
    color: #e94560;
    font-weight: bold;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.share-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
}

.share-facebook {
    background: linear-gradient(45deg, #3b5998, #4267B2);
}

.share-twitter {
    background: linear-gradient(45deg, #1da1f2, #0d8bd9);
}

.share-instagram {
    background: linear-gradient(45deg, #E1306C, #F56040);
}

.share-whatsapp {
    background: linear-gradient(45deg, #25D366, #128C7E);
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .product-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .info-block {
        grid-template-columns: 1fr;
    }

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

    .tab-navigation {
        flex-direction: column;
        gap: 0.5rem;
    }

    .share-buttons {
        justify-content: center;
    }

    .quantity-section {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .quantity-controls {
        justify-content: center;
    }
}

/* Success Animation */
.success-animation {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
    padding: 2rem;
    border-radius: 20px;
    font-size: 1.5rem;
    font-weight: bold;
    z-index: 10000;
    display: none;
    animation: successPop 0.5s ease-out;
}

@keyframes successPop {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.5);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

.breadcrumb {
    opacity: .5;
    margin: 40px 0;
    padding-top: 40px;
    a {
        color: #fff;
    }
}