/* Reset ve Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #171717;
    background-color: #FFFFFF;
    line-height: 1.6;
    font-size: 16px;
}

a {
    color: #000;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #666666;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header - Minimal ve Responsive */
header {
    border-bottom: 1px solid #E3E8EF;
    padding:  0;
    background-color: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

header .logo a {
    font-size: 20px;
    font-weight: 700;
    color: #000;
}

header .logo .site-title {
    font-size: 20px;
    font-weight: 700;
    color: #000;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #171717;
}

header nav {
    display: flex;
    align-items: center;
    gap: 25px;
}

header nav a {
    font-size: 15px;
    line-height: 84px;
    font-weight: 500;
    color: #171717;
    transition: color 0.2s ease;
}

header nav a:hover {
    color: #000;
}

header .header-right {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Search Form - Responsive */
header .search-form {
    display: flex;
    align-items: center;
    position: relative;
}

header .search-form input {
    border: 1px solid #E3E8EF;
    border-radius: 5px;
    padding: 8px 35px 8px 12px;
    font-size: 14px;
    width: 200px;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.2s ease, width 0.2s ease;
}

header .search-form input:focus {
    outline: none;
    border-color: #E3E8EF;
    width: 250px;
}

header .search-form button {
     position: absolute;
    right: 13px;
    background: none;
    border: none;
    cursor: pointer;
    color: #666666;
    font-size: 16px;
    padding: 0;
}

/* Header Icons */
header .cart-icon,
header .notification-icon {
    position: relative;
    font-size: 18px;
    color: #171717;
    transition: color 0.2s ease;
}

.notification-icon i {
    cursor: pointer;
}

header .cart-icon:hover,
header .notification-icon:hover {
    color: #000;
}

header .cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    background-color: #000;
    color: #fff;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

/* Notification Dropdown */
.notification-dropdown {
    display: none;
    position: absolute;
    top: 155%;
    right: 0;
    background-color: #fff;
    border: 1px solid #E3E8EF;
    border-radius: 5px;
    width: 300px;
    padding: 0;
    z-index: 1000;
    margin-top: 8px;
}

.notification-icon:hover .notification-dropdown {
    display: block;
}

.notification-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid #E3E8EF;
}

.notification-item:last-child {
    border-bottom: none;
}

.notification-item img {
    width: 40px;
    height: 40px;
    border-radius: 5px;
    object-fit: cover;
}

.notification-item .content b {
    font-size: 13px;
    color: #171717;
}

.notification-item .content p {
    font-size: 12px;
    color: #666666;
    margin: 3px 0 0 0;
}

/* Main Content */
main.container {
    padding: 0;
}

/* Hero Section - Minimal */
.hero-section {
    background-color: #f8f9fa;
    border-bottom: 1px solid #E3E8EF;
    padding: 60px 0;
    text-align: center;
}

.hero-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 18px;
    color: #666666;
    margin-bottom: 0;
    line-height: 1.4;
}

/* Categories Section */
.categories-section {
    padding: 30px 0;
    background-color: #fff;
}

.categories-grid {
    display: grid;
 grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.category-card {
    background-color: #f8f9fa;
    padding: 20px 15px;
    border: 1px solid #E3E8EF;
    border-radius: 5px;
    text-align: center;
    transition: all 0.2s ease;
    display: block;
}

.category-card:hover {
    border-color: #000;
    background-color: #fff;
}

.category-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #171717;
}

/* Products Section */
.products-section {
    padding: 30px 0 0 0;
    background-color: #fff;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.product-card {
    border: 1px solid #E3E8EF;
    border-radius: 5px;
    overflow: hidden;
    transition: all 0.2s ease;
    background-color: #fff;
}

.product-card:hover {
    border-color: #000;
    transform: translateY(-2px);
}

.product-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.2s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.02);
}

.product-category {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
}

.product-category a {
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 4px 8px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.product-category a:hover {
    background-color: #000;
    color: #fff;
}

.product-content {
    padding: 20px;
    display: inline-flex
;
    flex-direction: column;
    width: 100%;
    min-height: 156px;
}

.product-content .btn-primary  {
      padding: 9.5px 24px;
      margin-top: auto;
      height: 44px;
}
.product-title {
    font-size: 18px;
    font-weight: 600;
    color: #171717;
    margin-bottom: 12px;
    line-height: 1.3;
    margin-bottom: 15px;
    display: block;
}
.product-title:hover{
       color: #171717;
}
.product-price {
    margin-bottom: 20px;
        line-height: 16px;
}

.price-amount {
    font-size: 16px;
    font-weight: 500;
    color: #666666;
}

/* Development Card Styles */
.development-card {
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px dashed #E3E8EF;
}

.development-card:hover {
    border-color: #666666;
    transform: translateY(-2px);
}

.development-image {
    background: linear-gradient(135deg, #f1f3f4 0%, #e8eaed 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.development-icon {
    font-size: 48px;
    color: #666666;
    z-index: 2;
    position: relative;
}

.development-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.3;
}

.code-lines {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
}

.code-line {
    height: 3px;
    background-color: #666666;
    margin-bottom: 8px;
    border-radius: 2px;
    animation: codeTyping 3s ease-in-out infinite;
}

.code-line:nth-child(1) {
    width: 80%;
    animation-delay: 0s;
}

.code-line:nth-child(2) {
    width: 60%;
    animation-delay: 0.5s;
}

.code-line:nth-child(3) {
    width: 90%;
    animation-delay: 1s;
}

.code-line:nth-child(4) {
    width: 45%;
    animation-delay: 1.5s;
}

@keyframes codeTyping {
    0%, 50% {
        width: 0%;
        opacity: 0.3;
    }
    75% {
        opacity: 0.8;
    }
    100% {
        opacity: 0.3;
    }
}

.development-status {
    margin-bottom: 0;
    text-align: center;
}

.status-text {
    display: block;
    font-size: 13px;
    color: #666666;
    font-weight: 600;
    margin-bottom: 8px;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background-color: #E3E8EF;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 6px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #000 0%, #333 100%);
    border-radius: 3px;
    width: 0%;
    animation: progressAnimation 2s ease-out forwards;
    animation-delay: 0.5s;
}

@keyframes progressAnimation {
    to {
        width: var(--progress, 78%);
    }
}

.progress-text {
    font-size: 11px;
    color: #666666;
    font-weight: 600;
}

.development-features {
    margin-bottom: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
    font-size: 11px;
    padding: 2px 0;
}

.feature-item i {
    font-size: 12px;
    width: 14px;
    text-align: center;
}

.feature-item.completed {
    color: #28a745;
}

.feature-item.completed i {
    color: #28a745;
}

.feature-item.in-progress {
    color: #ffc107;
}

.feature-item.in-progress i {
    color: #ffc107;
    animation: pulse 2s ease-in-out infinite;
}

.feature-item.pending {
    color: #6c757d;
}

.feature-item.pending i {
    color: #6c757d;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.btn:disabled {
    background-color: #E3E8EF;
    color: #666666;
    border-color: #E3E8EF;
    cursor: not-allowed;
    opacity: 0.7;
    margin-top: 1px;
    height: 44px;
}
.mt30 {
    margin-top: 30px;
}
.btn:disabled:hover {
    background-color: #E3E8EF;
    color: #666666;
    border-color: #E3E8EF;
}

/* Section Titles */
.section-title {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    text-align: center;
    margin-bottom: 30px;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 40px 20px;
    color: #666666;
}

/* Dropdown Menu Styles */
header nav {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 94%;
    left: 0;
    background-color: #fff;
    border: 1px solid #E3E8EF;
    border-radius: 5px;
    min-width: 200px;
    padding: 10px 0;
    z-index: 1000;
    margin-top: 5px;
}

header nav a:hover + .dropdown-menu,
.dropdown-menu:hover {
    display: block;
}

.dropdown-menu a {
    display: block;
    padding: 8px 15px;
    color: #171717;
    font-size: 14px;
    border-bottom: none;
    margin: 0;
    line-height: 20px;
}

.dropdown-menu a:hover {
    background-color: #f8f9fa;
    color: #000;
}

/* Footer - Minimal */
footer {
    border-top: 1px solid #E3E8EF;
    padding: 30px 0;
    text-align: center;
    background-color: #f8f9fa;
}

.footer-logo img {
    max-height: 40px;
    margin-bottom: 15px;
}

.footer-menu {
    margin: 20px 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-menu a {
    color: #666666;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-menu a:hover {
    color: #000;
}

.copyright-text {
    font-size: 14px;
    color: #666666;
    margin-top: 20px;
}

/* Button Stilleri - Minimal */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
}

.btn-primary {
    background-color: #000;
    color: #fff;
    border-color: #000;
}

.btn-primary:hover {
    background-color: #fff;
    color: #000;
    border-color: #000;
}

.btn-secondary {
    background-color: #fff;
    color: #000;
    border-color: #E3E8EF;
}

.btn-secondary:hover {
    background-color: #000;
    color: #fff;
    border-color: #000;
}

.btn-full {
    width: 100%;
}

button, input[type="submit"] {
    background-color: #000;
    color: #fff;
    border: 1px solid #000;
    padding: 12px 24px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s ease;
}

button:hover, input[type="submit"]:hover {
    background-color: #fff;
    color: #000;
}

/* Form Stilleri */
input[type="text"],
input[type="email"],
input[type="password"],
textarea,
select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #E3E8EF;
    border-radius: 5px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.2s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #000;
}

/* KVKK Çerez Bandı */
#cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #171717;
    color: #fff;
    padding: 15px 20px;
    z-index: 1000;
    border-top: 1px solid #E3E8EF;
}

.cookie-consent-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 15px;
}

#cookie-consent-banner p {
    margin: 0;
    font-size: 14px;
    flex: 1;
}

#cookie-consent-banner a {
    color: #fff;
    text-decoration: underline;
}

.cookie-consent-button {
    background-color: #fff;
    color: #000;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    white-space: nowrap;
    font-size: 14px;
}

/* Responsive Design - Mobile First */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
header .search-form {
    display: none;
}
   
    /* Hero Mobile */
    .hero-section {
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 24px;
        margin-bottom: 25px;
    }
    
    .categories-grid {
    grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .category-card {
        padding: 15px 10px;
    }
    
    .category-card h3 {
        font-size: 14px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .product-content {
        padding: 15px;
    }
    
    .product-title {
        font-size: 16px;
    }
    
    .price-amount {
        font-size: 18px;
    }
    
    /* Cookie Banner Mobile */
    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    #cookie-consent-banner p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    header .logo a {
        font-size: 18px;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .hero-subtitle {
        font-size: 15px;
    }
    
    .section-title {
        line-height: 17px;
        font-size: 20px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-image {
        height: 160px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* Tablet Responsive */
@media (min-width: 769px) and (max-width: 1024px) {

    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    header .search-form input {
        width: 180px;
    }
    
    header .search-form input:focus {
        width: 220px;
    }
}

/* Large Screen Optimizations */
@media (min-width: 1200px) {
    .hero-title {
        font-size: 40px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .section-title {
        font-size: 32px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Product Detail Page Styles */
.breadcrumb {
    background-color: #f8f9fa;
    border-bottom: 1px solid #E3E8EF;
    padding: 15px 0;
}

.breadcrumb a {
    color: #666666;
    font-size: 14px;
}

.breadcrumb a:hover {
    color: #000;
}

.breadcrumb .separator {
    margin: 0 10px;
    color: #666666;
}

.breadcrumb .current {
    color: #171717;
    font-weight: 500;
    font-size: 14px;
}

.product-detail {
    padding: 30px 0;
    padding-top: 0;
    background-color: #fff;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: flex-start;
}

.product-gallery {
    position: sticky;
    top: 100px;
}

.main-image {
    margin-bottom: 20px;
}

.main-image img {
    width: 100%;
    object-fit: cover;
    border: 1px solid #E3E8EF;
    border-radius: 5px;
    transition: transform 0.2s ease;
}

.main-image img:hover {
    transform: scale(1.02);
}

.demo-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.demo-buttons .btn {
    flex: 1;
    text-align: center;
    min-width: 0;
}

.product-info {
    max-width: none;
}

.product-header {
    margin-bottom: 25px;
}

.product-category {
    margin-bottom: 10px;
}

.product-category a {
    background-color: #f8f9fa;
    color: #666666;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-block;
}

.product-category a:hover {
    background-color: #000;
    color: #fff;
}

.product-title {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin: 0;
    line-height: 1.2;
      margin-bottom: 13px;
}
a.product-title {
    margin-bottom: 13px;
}

.product-description {
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.pricing-section {
    background-color: #f8f9fa;
    border: 1px solid #E3E8EF;
    border-radius: 5px;
    padding: 25px;
    margin-bottom: 30px;
}

.pricing-section h3 {
    font-size: 18px;
    font-weight: 600;
    color: #171717;
    margin: 0 0 20px 0;
}

.license-options {
    margin-bottom: 20px;
}

.license-option {
    margin-bottom: 15px;
}

.license-option:last-child {
    margin-bottom: 0;
}

.license-option input[type="radio"] {
    display: none;
}

.license-option label {
    display: block;
    padding: 20px;
    border: 1px solid #E3E8EF;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.2s ease;
    background-color: #fff;
}

.license-option input[type="radio"]:checked + label {
    border-color: #000;
    background-color: #fff;
}

.option-content {
    width: 100%;
}

.option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.option-title {
    font-weight: 600;
    color: #171717;
    font-size: 16px;
}

.option-price {
    font-size: 20px;
    font-weight: 700;
    color: #000;
}

.option-description {
    font-size: 14px;
    color: #666666;
}

.domain-input {
    margin-bottom: 25px;
}

.domain-input label {
    display: block;
    font-weight: 600;
    color: #171717;
    margin-bottom: 8px;
    font-size: 14px;
}

.domain-input input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #E3E8EF;
    border-radius: 5px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.2s ease;
}

.domain-input input:focus {
    outline: none;
    border-color: #000;
}

.domain-input small {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    color: #666666;
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
}

.product-features {
    border-top: 1px solid #E3E8EF;
    padding-top: 30px;
}

.product-features h3 {
    font-size: 18px;
    font-weight: 600;
    color: #171717;
    margin: 0 0 20px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 5px;
    border: 1px solid #E3E8EF;
}

.feature-item i {
    font-size: 20px;
    color: #000;
}

.feature-item span {
    font-size: 14px;
    font-weight: 500;
    color: #171717;
}



/* Categories Page Styles */
.categories-page {
    padding: 50px 0;
    background-color: #fff;
}

.page-header {
    text-align: center;
    margin-bottom: 50px;
}
.contact-page .page-header {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.page-title {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.page-description {
    font-size: 18px;
    color: #666666;
    margin: 0;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

.categories-page .categories-grid {
    display: grid;
     grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.categories-page .category-card {
    background-color: #fff;
    border: 1px solid #E3E8EF;
    border-radius: 5px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.2s ease;
    display: block;
    text-decoration: none;
}

.categories-page .category-card:hover {
    border-color: #000;
    transform: translateY(-3px);
    background-color: #fff;
}

.category-icon {
    margin-bottom: 20px;
}

.category-icon i {
    font-size: 48px;
    color: #000;
}

.category-name {
    font-size: 20px;
    font-weight: 600;
    color: #171717;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.category-description {
    font-size: 14px;
    color: #666666;
    margin: 0 0 20px 0;
    line-height: 1.5;
}

.category-stats {
    border-top: 1px solid #E3E8EF;
    padding-top: 15px;
    margin-top: 20px;
}

.product-count {
    font-size: 13px;
    color: #666666;
    font-weight: 500;
}

/* Empty State Styles */
.empty-state {
    text-align: center;
    padding: 80px 20px;
    color: #666666;
}

.empty-icon {
    margin-bottom: 25px;
}

.empty-icon i {
    font-size: 64px;
    color: #E3E8EF;
}

.empty-state h3 {
    font-size: 24px;
    font-weight: 600;
    color: #171717;
    margin: 0 0 15px 0;
}

.empty-state p {
    font-size: 16px;
    color: #666666;
    margin: 0 0 30px 0;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

/* Categories Page Responsive */
@media (max-width: 768px) {
    .categories-page {
        padding: 30px 0;
    }
    
    .page-header {
        margin-bottom: 30px;
    }
    
    .page-title {
        font-size: 24px;
    }
    
    .page-description {
        font-size: 16px;
    }
    
    .categories-page .categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .categories-page .category-card {
        padding: 25px 20px;
    }
    
    .category-icon i {
        font-size: 40px;
    }
    
    .category-name {
        font-size: 18px;
    }
    
    .empty-state {
        padding: 60px 20px;
    }
    
    .empty-icon i {
        font-size: 48px;
    }
    
    .empty-state h3 {
        font-size: 20px;
    }
    
    .empty-state p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .categories-page {
        padding: 20px 0;
    }
    
    .page-title {
        font-size: 20px;
    }
    
    .page-description {
        font-size: 15px;
    }
    
    .categories-page .category-card {
        padding: 20px 15px;
    }
    
    .category-icon i {
        font-size: 36px;
    }
    
    .category-name {
        font-size: 16px;
    }
    
    .category-description {
        font-size: 13px;
    }
}

/* Category Page (Single Category) Styles */
.category-page {
    padding: 50px 0;
    background-color: #fff;
}

.category-header {
    margin-bottom: 40px;
}

.category-info {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.category-title {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.category-page .category-description {
    font-size: 18px;
    color: #666666;
    margin: 0 0 20px 0;
    line-height: 1.5;
}

.category-page .category-stats {
    margin-top: 20px;
}

.category-page .product-count {
    font-size: 14px;
    color: #666666;
    font-weight: 500;
    background-color: #f8f9fa;
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-block;
}

.category-page .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.category-page .product-card {
    border: 1px solid #E3E8EF;
    border-radius: 5px;
    overflow: hidden;
    transition: all 0.2s ease;
    background-color: #fff;
}

.category-page .product-card:hover {
    border-color: #000;
    transform: translateY(-3px);
}

.product-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.category-page .product-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.category-page .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.2s ease;
}

.category-page .product-card:hover .product-image img {
    transform: scale(1.05);
}

.category-page .product-category {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
}

.category-page .product-category span {
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.category-page .product-content {
    padding: 20px;
}

.category-page .product-title {
    font-size: 18px;
    font-weight: 600;
    color: #171717;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.product-excerpt {
    font-size: 14px;
    color: #666666;
    margin: 0 0 15px 0;
    line-height: 1.4;
}

.category-page .product-price {
    margin-bottom: 15px;

}

.category-page .price-amount {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    display: block;
}

.price-label {
    font-size: 12px;
    color: #666666;
    font-weight: 500;
}

.product-demos {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.demo-link {
    font-size: 12px;
    color: #666666;
    background-color: #f8f9fa;
    padding: 6px 10px;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 4px;
}

.demo-link:hover {
    background-color: #000;
    color: #fff;
}

.demo-link i {
    font-size: 12px;
}

.empty-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Category Page Responsive */
@media (max-width: 768px) {
    .category-page {
        padding: 30px 0;
    }
    
    .category-header {
        margin-bottom: 30px;
    }
    
    .category-title {
        font-size: 24px;
    }
    
    .category-page .category-description {
        font-size: 16px;
    }
    
    .category-page .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .category-page .product-content {
        padding: 15px;
    }
    
    .category-page .product-title {
        font-size: 16px;
    }
    
    .category-page .price-amount {
        font-size: 18px;
    }
    
    .empty-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .empty-actions .btn {
        width: 200px;
    }
}

@media (max-width: 480px) {
    .category-page {
        padding: 20px 0;
    }
    
    .category-title {
        font-size: 20px;
    }
    
    .category-page .category-description {
        font-size: 15px;
    }
    
    .category-page .product-image {
        height: 180px;
    }
    
    .category-page .product-content {
        padding: 12px;
    }
    
    .category-page .product-title {
        font-size: 15px;
    }
    
    .product-excerpt {
        font-size: 13px;
    }
    
    .category-page .price-amount {
        font-size: 16px;
    }
    
    .demo-link {
        font-size: 11px;
        padding: 5px 8px;
    }
}

/* Contact Page Styles */
.contact-page {
    padding: 30px 0;
    background-color: #fff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr ;
    gap: 0;
    margin-bottom: 0;
}
.contact-content .contact-info {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 30px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-card {
    background-color: #f8f9fa;
    border: 1px solid #E3E8EF;
    border-radius: 5px;
    padding: 25px;
    text-align: center;
    transition: all 0.2s ease;
    display: flex
;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-card:hover {
    border-color: #000;
    transform: translateY(-2px);
}

.contact-icon {
    margin-bottom: 15px;
}
.card-content .contact-icon {
    margin-bottom: 0;
}

.contact-icon i {
    font-size: 32px;
    color: #000;
}

.contact-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #171717;
    margin: 0 0 8px 0;
}

.contact-card p {
    font-size: 14px;
    color: #666666;
    margin: 0 0 10px 0;
    line-height: 1.4;
}

.contact-card a {
    color: #000;
    font-weight: 600;
    font-size: 15px;
}

.contact-card a:hover {
    color: #666666;
}

.contact-card span {
    color: #000;
    font-weight: 600;
    font-size: 15px;
}

.contact-form-section {
    background-color: #f8f9fa;
    border: 1px solid #E3E8EF;
    border-radius: 5px;
    padding: 30px;
    margin-bottom: 35px;
}

.form-header {
    margin-bottom: 25px;
}

.form-header h2 {
    font-size: 24px;
    font-weight: 600;
    color: #171717;
    margin: 0 0 8px 0;
}

.form-header p {
    font-size: 14px;
    color: #666666;
    margin: 0;
}

.contact-form {
    max-width: none;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: #171717;
    margin-bottom: 8px;
    font-size: 14px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #E3E8EF;
    border-radius: 5px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.2s ease;
    background-color: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #000;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* Alert Styles */
.alert {
    padding: 15px 20px;
    border-radius: 5px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert i {
    font-size: 16px;
}

/* FAQ Section */
.faq-section {
    border-top: 1px solid #E3E8EF;
    padding-top: 30px;
}

.faq-section h2 {
    font-size: 28px;
    line-height: 28px;
    font-weight: 700;
    color: #000;
    text-align: center;
    margin: 0 0 30px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.mb-0 {
    margin-bottom: 0;
}

.faq-item {
    background-color: #f8f9fa;
    border: 1px solid #E3E8EF;
    border-radius: 5px;
    padding: 25px;
    transition: all 0.2s ease;
}

.faq-item:hover {
    border-color: #000;
    transform: translateY(-2px);
}

.faq-item h3 {
    font-size: 16px;
    font-weight: 600;
    color: #171717;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.faq-item p {
    font-size: 14px;
    color: #666666;
    margin: 0;
    line-height: 1.5;
}

/* Contact Page Responsive */
@media (max-width: 768px) {
    .contract-page h1 {
        font-size: 24px;
    }
    .contract-page p {
       font-size: 15px;
    }
    .contact-page {
        padding: 30px 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 0;
    }
    
    .contact-info {
        gap: 20px;
    }
    
    .contact-card {
        padding: 20px;
    }
    
    .contact-icon i {
        font-size: 28px;
    }
    
    .contact-card h3 {
        font-size: 16px;
    }
    
    .contact-form-section {
        padding: 25px;
        margin-bottom: 25px;
    }
    .faq-section h2 {
        margin-bottom: 20px !important;
    }
    .form-header h2 {
        font-size: 20px ;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .faq-section {
        padding-top: 20px;
    }
    
    .faq-section h2 {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .faq-item {
        padding: 20px;
    }
    
    .faq-item h3 {
        font-size: 15px;
    }
    
    .faq-item p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .contact-page {
        padding: 20px 0;
    }
    
    .contact-card {
        padding: 15px;
    }
    
    .contact-icon i {
        font-size: 24px;
    }
    
    .contact-card h3 {
        font-size: 15px;
    }
    
    .contact-card p {
        font-size: 13px;
    }
    
    .contact-form-section {
        padding: 20px;
    }
    
    .form-header h2 {
        font-size: 18px;
    }
    
    .form-header p {
        font-size: 13px;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 10px 12px;
        font-size: 14px;
    }
    
    .faq-section h2 {
        font-size: 20px;
    }
    
    .faq-item {
        padding: 15px;
    }
    
    .faq-item h3 {
        font-size: 14px;
    }
    
    .faq-item p {
        font-size: 12px;
    }
}

/* Search Page Styles */
.search-page {
    padding: 50px 0;
    background-color: #fff;
}

.search-empty {
    text-align: center;
    padding: 60px 20px;
    max-width: 600px;
    margin: 0 auto;
}

.search-icon {
    margin-bottom: 30px;
}

.search-icon i {
    font-size: 64px;
    color: #E3E8EF;
}

.search-empty h1 {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin: 0 0 15px 0;
}

.search-empty p {
    font-size: 18px;
    color: #666666;
    margin: 0 0 40px 0;
    line-height: 1.5;
}

.search-form-large {
    margin-bottom: 50px;
}

.search-form-large .search-input-wrapper {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    border: 1px solid #E3E8EF;
    border-radius: 5px;
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.search-form-large .search-input-wrapper:focus-within {
    border-color: #000;
}

.search-form-large input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    background-color: #fff;
}

.search-form-large input:focus {
    outline: none;
}

.search-form-large button {
    padding: 15px 25px;
    background-color: #000;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    transition: background-color 0.2s ease;
    white-space: nowrap;
}

.search-form-large button:hover {
    background-color: #333;
}

.popular-categories {
    text-align: center;
}

.popular-categories h3 {
    font-size: 20px;
    font-weight: 600;
    color: #171717;
    margin: 0 0 20px 0;
}

.category-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.category-tag {
    background-color: #f8f9fa;
    color: #666666;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid #E3E8EF;
}

.category-tag:hover {
    background-color: #000;
    color: #fff;
    border-color: #000;
}

.search-header {
    margin-bottom: 40px;
}

.search-header h1 {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin: 0 0 15px 0;
}

.search-info {
    font-size: 16px;
    color: #666666;
    margin-bottom: 25px;
}

.search-term {
    font-weight: 600;
    color: #171717;
}

.result-count {
    font-weight: 600;
    color: #000;
}

.search-form-inline {
    max-width: 400px;
}

.search-form-inline .search-input-wrapper {
    display: flex;
    border: 1px solid #E3E8EF;
    border-radius: 5px;
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.search-form-inline .search-input-wrapper:focus-within {
    border-color: #000;
}

.search-form-inline input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    background-color: #fff;
}

.search-form-inline input:focus {
    outline: none;
}

.search-form-inline button {
    padding: 12px 15px;
    background-color: #000;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.2s ease;
}

.search-form-inline button:hover {
    background-color: #333;
}

.search-results .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.search-results .product-card {
    border: 1px solid #E3E8EF;
    border-radius: 5px;
    overflow: hidden;
    transition: all 0.2s ease;
    background-color: #fff;
}

.search-results .product-card:hover {
    border-color: #000;
    transform: translateY(-3px);
}

.search-results .product-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.search-results .product-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.search-results .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.2s ease;
}

.search-results .product-card:hover .product-image img {
    transform: scale(1.05);
}

.search-results .product-category {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
}

.search-results .product-category a {
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
}

.search-results .product-content {
    padding: 20px;
}

.search-results .product-title {
    font-size: 18px;
    font-weight: 600;
    color: #171717;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.search-results .product-excerpt {
    font-size: 14px;
    color: #666666;
    margin: 0 0 15px 0;
    line-height: 1.4;
}

.search-results .product-price {
    margin-bottom: 0;
}

.search-results .price-amount {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    display: block;
}

.search-results .price-label {
    font-size: 12px;
    color: #666666;
    font-weight: 500;
}

.no-results {
    text-align: center;
    padding: 60px 20px;
    max-width: 500px;
    margin: 0 auto;
}

.no-results-icon {
    margin-bottom: 25px;
}

.no-results-icon i {
    font-size: 64px;
    color: #E3E8EF;
}

.no-results h3 {
    font-size: 24px;
    font-weight: 600;
    color: #171717;
    margin: 0 0 15px 0;
}

.no-results p {
    font-size: 16px;
    color: #666666;
    margin: 0 0 30px 0;
    line-height: 1.5;
}

.search-suggestions {
    background-color: #f8f9fa;
    border: 1px solid #E3E8EF;
    border-radius: 5px;
    padding: 25px;
    margin-bottom: 30px;
    text-align: left;
}

.search-suggestions h4 {
    font-size: 16px;
    font-weight: 600;
    color: #171717;
    margin: 0 0 15px 0;
}

.search-suggestions ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.search-suggestions li {
    font-size: 14px;
    color: #666666;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.search-suggestions li:before {
    content: "•";
    color: #000;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.search-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Search Page Responsive */
@media (max-width: 768px) {
    .search-page {
        padding: 30px 0;
    }
    
    .search-empty {
        padding: 40px 20px;
    }
    
    .search-icon i {
        font-size: 48px;
    }
    
    .search-empty h1 {
        font-size: 24px;
    }
    
    .search-empty p {
        font-size: 16px;
    }
    
    .search-form-large .search-input-wrapper {
        flex-direction: column;
        max-width: 100%;
    }
    
    .search-form-large button {
        border-top: 1px solid #E3E8EF;
    }
    
    .category-tags {
        justify-content: center;
    }
    
    .search-header h1 {
        font-size: 24px;
    }
    
    .search-info {
        font-size: 14px;
    }
    
    .search-form-inline {
        max-width: 100%;
    }
    
    .search-results .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .search-results .product-content {
        padding: 15px;
    }
    
    .search-results .product-title {
        font-size: 16px;
    }
    
    .search-results .price-amount {
        font-size: 18px;
    }
    
    .no-results {
        padding: 40px 20px;
    }
    
    .no-results-icon i {
        font-size: 48px;
    }
    
    .no-results h3 {
        font-size: 20px;
    }
    
    .no-results p {
        font-size: 14px;
    }
    
    .search-suggestions {
        padding: 20px;
    }
    
    .search-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .search-actions .btn {
        width: 200px;
    }
}

@media (max-width: 480px) {
    .search-page {
        padding: 20px 0;
    }
    
    .search-empty {
        padding: 30px 15px;
    }
    
    .search-empty h1 {
        font-size: 20px;
    }
    
    .search-empty p {
        font-size: 15px;
    }
    
    .search-form-large input,
    .search-form-large button {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .category-tag {
        font-size: 13px;
        padding: 6px 12px;
    }
    
    .search-header h1 {
        font-size: 20px;
    }
    
    .search-form-inline input,
    .search-form-inline button {
        padding: 10px 12px;
        font-size: 14px;
    }
    
    .search-results .product-image {
        height: 180px;
    }
    
    .search-results .product-content {
        padding: 12px;
    }
    
    .search-results .product-title {
        font-size: 15px;
    }
    
    .search-results .product-excerpt {
        font-size: 13px;
    }
    
    .search-results .price-amount {
        font-size: 16px;
    }
    
    .no-results h3 {
        font-size: 18px;
    }
    
    .search-suggestions {
        padding: 15px;
    }
    
    .search-suggestions h4 {
        font-size: 15px;
    }
    
    .search-suggestions li {
        font-size: 13px;
    }
}

/* Cart Page Styles */
.cart-page {
    padding: 30px 0;
    background-color: #fff;
}

.cart-page .page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom:30px;
    flex-wrap: wrap;
    gap: 20px;
}

.cart-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.cart-actions .cart-count {
    padding: 0 10px;
}

.cart-count {
    font-size: 14px;
    color: #666666;
    font-weight: 500;
}

.clear-cart {
    color: #dc3545;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.2s ease;
}

.clear-cart:hover {
    color: #c82333;
}

.cart-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    align-items: flex-start;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr auto auto;
    gap: 20px;
    align-items: center;
    padding: 20px;
    border: 1px solid #E3E8EF;
    border-radius: 5px;
    background-color: #fff;
    transition: border-color 0.2s ease;
}

.cart-item:hover {
    border-color: #000;
}

.item-image {
    width: 100px;
    height: 80px;
    overflow: hidden;
    border-radius: 5px;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-details {
    flex: 1;
}

.item-name {
    margin: 0 0 8px 0;
}

.item-name a {
    font-size: 18px;
    font-weight: 600;
    color: #171717;
    text-decoration: none;
}

.item-name a:hover {
    color: #000;
}

.item-license {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.license-type {
    font-size: 14px;
    color: #666666;
    background-color: #f8f9fa;
    padding: 4px 8px;
    border-radius: 12px;
    display: inline-block;
    width: fit-content;
}

.licensed-domain {
    font-size: 13px;
    color: #666666;
    display: flex;
    align-items: center;
    gap: 4px;
}

.item-price {
    text-align: right;
}

.item-price .price-amount {
    font-size: 20px;
    font-weight: 700;
    color: #000;
}

.item-actions {
    display: flex;
    justify-content: center;
}

.remove-item {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #f8f9fa;
    border: 1px solid #E3E8EF;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #dc3545;
    text-decoration: none;
    transition: all 0.2s ease;
}

.remove-item:hover {
    background-color: #dc3545;
    color: #fff;
    border-color: #dc3545;
}

.cart-sidebar {
    position: sticky;
    top: 100px;
}

.cart-summary {
    background-color: #f8f9fa;
    border: 1px solid #E3E8EF;
    border-radius: 5px;
    padding: 25px;
    margin-bottom: 25px;
}

.cart-summary h2 {
    font-size: 20px;
    font-weight: 600;
    color: #171717;
    margin: 0 0 20px 0;
}

.summary-details {
    margin-bottom: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 14px;
}

.summary-row span:first-child {
    color: #666666;
}

.summary-row span:last-child {
    color: #171717;
    font-weight: 500;
}

.summary-total {
    border-top: 1px solid #E3E8EF;
    padding-top: 15px;
    margin-bottom: 25px;
}

.total-row {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 700;
    color: #000;
}

.checkout-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.security-features {
    background-color: #f8f9fa;
    border: 1px solid #E3E8EF;
    border-radius: 5px;
    padding: 20px;
}

.security-features h3 {
    font-size: 16px;
    font-weight: 600;
    color: #171717;
    margin: 0 0 15px 0;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #666666;
}

.security-item:last-child {
    margin-bottom: 0;
}

.security-item i {
    font-size: 16px;
    color: #28a745;
}

.empty-cart {
    text-align: center;
    padding: 80px 20px;
    max-width: 500px;
    margin: 0 auto;
}

.empty-cart .empty-icon {
    margin-bottom: 25px;
}

.empty-cart .empty-icon i {
    font-size: 64px;
    color: #E3E8EF;
}

.empty-cart h3 {
    font-size: 24px;
    font-weight: 600;
    color: #171717;
    margin: 0 0 15px 0;
}

.empty-cart p {
    font-size: 16px;
    color: #666666;
    margin: 0 0 30px 0;
    line-height: 1.5;
}

.empty-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Auth Page Styles */
.auth-page {
    padding: 30px 0;
    background-color: #fff;
}

.auth-container {
    display: grid;
max-width: 510px;
    gap: 60px;
    align-items: flex-start;
    margin: 0 auto;
}

.auth-form {
    background-color: #f8f9fa;
    border: 1px solid #E3E8EF;
    border-radius: 5px;
    padding: 40px;
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-icon {
    margin-bottom: 20px;
}

.auth-icon i {
    font-size: 48px;
    color: #000;
}

.auth-header h1 {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    margin: 0 0 10px 0;
}

.auth-header p {
    font-size: 16px;
    color: #666666;
    margin: 0;
    line-height: 1.5;
}

.login-form,
.register-form {
    margin-bottom: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
     display: flex;
    align-items: center;
    font-weight: 600;
    color: #171717;
    margin-bottom: 8px;
    font-size: 14px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 12px;
    color: #666666;
    font-size: 16px;
    z-index: 2;
}

.input-wrapper input {
    width: 100%;
    padding: 12px 15px 12px 40px;
    border: 1px solid #E3E8EF;
    border-radius: 5px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.2s ease;
    background-color: #fff;
}

.input-wrapper input:focus {
    outline: none;
    border-color: #000;
}

.checkbox-group {
    margin-bottom: 25px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #E3E8EF;
    border-radius: 3px;
    position: relative;
    transition: all 0.2s ease;
    flex-shrink: 0;
    margin-top: 2px;
    display: inline-flex;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background-color: #000;
    border-color: #000;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark:after {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 12px;
    font-weight: bold;
}

.checkbox-text {
    color: #666666;
}

.contract-link {
    color: #000;
    text-decoration: underline;
}

.contract-link:hover {
    color: #000;
}

.auth-divider {
    text-align: center;
    margin: 25px 0;
    position: relative;
}

.auth-divider:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #E3E8EF;
}

.auth-divider span {
    background-color: #f8f9fa;
    padding: 0 15px;
    color: #666666;
    font-size: 14px;
    position: relative;
}

.auth-switch {
    text-align: center;
}

.auth-switch p {
    font-size: 14px;
    color: #666666;
    margin: 0 0 15px 0;
}

.auth-features {
    padding: 20px 0;
}

.auth-features h3 {
    font-size: 24px;
    font-weight: 600;
    color: #171717;
    margin: 0 0 30px 0;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.auth-features .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 0;
    background: none;
    border: none;
}

.auth-features .feature-icon {
    width: 48px;
    height: 48px;
    background-color: #f8f9fa;
    border: 1px solid #E3E8EF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.auth-features .feature-icon i {
    font-size: 20px;
    color: #000;
}

.auth-features .feature-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #171717;
    margin: 0 0 5px 0;
}

.auth-features .feature-content p {
    font-size: 14px;
    color: #666666;
    margin: 0;
    line-height: 1.4;
}

/* Cart & Auth Responsive */
@media (max-width: 768px) {
    .cart-page,
    .auth-page {
        padding: 30px 0;
    }
    
    .cart-page .page-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .flexnot {
        flex-direction: unset !important;
        align-items: center !important;
    }

    
    .cart-item {
        grid-template-columns: 80px 1fr auto;
        gap: 15px;
        padding: 15px;
    }
    
    .item-image {
        width: 80px;
        height: 60px;
    }
    
    .item-name a {
        font-size: 16px;
    }
    
    .item-price .price-amount {
        font-size: 18px;
    }
    
    .item-actions {
        grid-column: 3;
        grid-row: 1;
    }
    
    .cart-sidebar {
        position: static;
    }
    
    .cart-summary {
        padding: 20px;
    }
    
    .empty-cart {
        padding: 60px 20px;
    }
    
    .empty-cart .empty-icon i {
        font-size: 48px;
    }
    
    .empty-cart h3 {
        font-size: 20px;
    }
    
    .empty-cart p {
        font-size: 14px;
    }
    
    .empty-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .empty-actions .btn {
        width: 200px;
    }
    
    .auth-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .auth-form {
        padding: 30px;
    }
    
    .auth-header h1 {
        font-size: 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .auth-features h3 {
        font-size: 20px;
    }
    
    .feature-list {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .cart-page,
    .auth-page {
        padding: 20px 0;
    }
    
    .cart-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 10px;
    }
    
    .item-image {
        width: 100%;
        height: 120px;
        margin: 0 auto;
    }
    
    .item-actions {
        grid-column: 1;
        grid-row: auto;
        justify-content: center;
    }
    
    .cart-summary {
        padding: 15px;
    }
    
    .auth-form {
        padding: 20px;
    }
    
    .auth-header h1 {
        font-size: 20px;
    }
    
    .auth-icon i {
        font-size: 40px;
    }
    
    .input-wrapper input {
        padding: 10px 12px 10px 35px;
        font-size: 14px;
    }
    
    .auth-features .feature-icon {
        width: 40px;
        height: 40px;
    }
    
    .auth-features .feature-icon i {
        font-size: 18px;
    }
    
    .auth-features .feature-content h4 {
        font-size: 15px;
    }
    
    .auth-features .feature-content p {
        font-size: 13px;
    }
}

/* Customer Panel Section */
.customer-panel-section {
    padding: 30px 0;
    background-color: #fff;
}

.panel-layout {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

/* Sidebar */
.panel-sidebar {
    width: 250px;
    background-color: #fff;
    border: 1px solid #E3E8EF;
    border-radius: 5px;
    overflow: hidden;
    position: sticky;
    top: 20px;
}

.sidebar-header {
    padding: 20px;
    border-bottom: 1px solid #E3E8EF;
}

.sidebar-header h3 {
    font-size: 16px;
    font-weight: 600;
    color: #171717;
    margin: 0 0 5px 0;
}

.user-welcome {
    font-size: 13px;
    color: #666666;
}

.sidebar-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-nav li {
    border-bottom: 1px solid #f8f9fa;
}

.sidebar-nav li:last-child {
    border-bottom: none;
}

.sidebar-nav li.active {
    background-color: #000;
}

.sidebar-nav li.active a {
    color: #fff;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    color: #666666;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 13px;
    font-weight: 500;
}

.sidebar-nav a:hover {
    background-color: #f8f9fa;
    color: #000;
}

.sidebar-nav li.active a:hover {
    background-color: #000;
    color: #fff;
}

.sidebar-nav i {
    font-size: 16px;
    width: 18px;
    text-align: center;
}

/* Main Content */
.panel-main {
    flex: 1;
    background-color: #fff;
    border: 1px solid #E3E8EF;
    border-radius: 5px;
    padding: 25px;
}

/* Page Header */
.page-header {
    margin-bottom: 30px;
}

.page-header h1 {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    margin: 0 0 10px 0;
}

.page-header p {
    font-size: 16px;
    color: #666666;
    margin: 0;
    line-height: 1.5;
}

/* Dashboard Stats */
.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.stat-card {
    background-color: #fff;
    border: 1px solid #E3E8EF;
    border-radius: 5px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.2s ease;
}

.stat-card:hover {
    border-color: #000;
    transform: translateY(-2px);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background-color: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 24px;
}

.stat-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin: 0 0 5px 0;
}

.stat-content p {
    font-size: 14px;
    color: #666666;
    margin: 0;
}

/* Dashboard Content */
.dashboard-content {
    display: grid;
    grid-template-columns: 1fr ;
    gap: 30px;
    margin-bottom: 30px;
}

.dashboard-section {
    background-color: #fff;
    border: 1px solid #E3E8EF;
    border-radius: 5px;
    overflow: hidden;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid #E3E8EF;
    background-color: #f8f9fa;
}

.section-header h2 {
    font-size: 18px;
    font-weight: 600;
    color: #171717;
    margin: 0;
}

.view-all-btn {
    font-size: 14px;
    color: #000;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
}
.view-all-btn i {
    font-size: 18px;
    margin-left: 5px;
}

.view-all-btn:hover {
    color: #000;
}

.section-content {
    padding: 25px;
}

/* Orders & Tickets Lists */
.orders-list,
.tickets-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.order-item-link,
.ticket-item-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.2s ease;
}

.order-item-link:hover,
.ticket-item-link:hover {
    transform: translateY(-2px);
}

.order-item,
.ticket-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 5px;
    border: 1px solid #E3E8EF;
    transition: all 0.2s ease;
}

.order-item-link:hover .order-item,
.ticket-item-link:hover .ticket-item {
    border-color: #000;
    background-color: #fff;
}

.order-info,
.ticket-info {
    flex: 1;
}

.order-id,
.ticket-subject {
    margin-bottom: 5px;
}

.order-product {
    margin-bottom: 5px;
}

.product-name {
    font-size: 14px;
    color: #000;
    font-weight: 500;
}

.order-date,
.ticket-date {
    font-size: 13px;
    color: #666666;
}

.order-status,
.ticket-status {
    margin: 0 15px;
}

.status-badge {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    text-align: center;
    font-weight: 600;
}

.status-pending {
    background-color: #fff3cd;
    color: #856404;
}

.status-pending_payment {
    background-color: #ffeaa7;
    color: #d63031;
}

.status-processing , .status-awaiting_file{
    background-color: #ddd6fe;
    color: #5b21b6;
}

.status-completed {
    background-color: #d4edda;
    color: #155724;
}

.status-delivered {
    background-color: #d1ecf1;
    color: #0c5460;
}

.status-cancelled {
    background-color: #f8d7da;
    color: #721c24;
}

.status-refunded {
    background-color: #e2e3e5;
    color: #383d41;
}

.status-failed {
    background-color: #f5c6cb;
    color: #721c24;
}

.status-open {
    background-color: #cce5ff;
    color: #004085;
}

.status-in_progress {
    background-color: #fff3cd;
    color: #856404;
}
.status-answered {
    background-color: #fff3cd;
    color: #856404;
}

.status-closed {
    background-color: #e2e3e5;
    color: #383d41;
}

.order-amount {
    font-size: 16px;
    font-weight: 700;
    color: #000;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 40px 20px;
}

.empty-icon {
    margin-bottom: 15px;
}

.empty-icon i {
    font-size: 48px;
    color: #E3E8EF;
}

.empty-state p {
    font-size: 14px;
    color: #666666;
 margin: 0 auto 20px;
}

/* Quick Actions */
.quick-actions {
    background-color: #fff;
    border: 1px solid #E3E8EF;
    border-radius: 5px;
    padding: 30px;
}

.quick-actions h2 {
    font-size: 20px;
    font-weight: 600;
    color: #171717;
    margin: 0 0 25px 0;
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.action-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background-color: #f8f9fa;
    border: 1px solid #E3E8EF;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.action-card:hover {
    border-color: #000;
    transform: translateY(-2px);
    background-color: #fff;
}

.action-icon {
    width: 50px;
    height: 50px;
    background-color: #000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.action-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: #171717;
    margin: 0 0 5px 0;
}

.action-content p {
    font-size: 14px;
    color: #666666;
    margin: 0;
}

/* Panel Footer */
.panel-footer {
    background-color: #fff;
    border-top: 1px solid #E3E8EF;
    padding: 20px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left p {
    font-size: 14px;
    color: #666666;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    font-size: 14px;
    color: #666666;
    text-decoration: none;
}

.footer-links a:hover {
    color: #000;
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }
    
    .user-info {
        gap: 10px;
    }
    
    .user-name {
        display: none;
    }


    
    .panel-sidebar.active {
        left: 0;
    }
    
    .panel-main {
        width: 100%;
    }
    
    .panel-content {
        padding: 20px;
    }
    
    .page-header h1 {
        font-size: 24px;
    }
    

    
    .stat-card {
        padding: 20px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .dashboard-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .actions-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-links {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .panel-content {
        padding: 15px;
    }
    
    .page-header h1 {
        font-size: 20px;
    }
    
    .dashboard-stats {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .stat-card {
        padding: 15px;
    }
    
    .section-header {
        padding: 15px 20px;
    }
    
    .section-content {
        padding: 20px;
    }
    
    .order-item,
    .ticket-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 12px;
    }
    
    .order-status,
    .ticket-status {
        margin: 0;
    }
    
    .action-card {
        padding: 15px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .action-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

/* Orders Page Styles */
.orders-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.orders-stats .stat-item {
    background-color: #fff;
    border: 1px solid #E3E8EF;
    border-radius: 5px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.2s ease;
}

.orders-stats .stat-item:hover {
    border-color: #000;
    transform: translateY(-2px);
}

.orders-stats .stat-icon {
    width: 45px;
    height: 45px;
    background-color: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 20px;
}

.orders-stats .stat-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin: 0 0 5px 0;
}

.orders-stats .stat-content p {
    font-size: 13px;
    color: #666666;
    margin: 0;
}

/* Orders Table */
.orders-section {
    background-color: #fff;
    border: 1px solid #E3E8EF;
    border-radius: 5px;
    overflow: hidden;
}

.orders-table {
    width: 100%;
}

.table-header {
    display: grid;
    grid-template-columns: 100px 1fr 120px 120px 120px 140px;
    gap: 15px;
    padding: 20px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #E3E8EF;
}

.header-cell {
    font-size: 14px;
    font-weight: 600;
    color: #171717;
}

.header-cell.pd{
    padding-left: 17px;
}
.table-body {
    display: flex;
    flex-direction: column;
}

.table-row {
    display: grid;
    grid-template-columns: 35px 1fr 80px 157px 120px 140px;
    gap: 15px;
    padding: 20px;
    border-bottom: 1px solid #f8f9fa;
    transition: background-color 0.2s ease;
}

.table-row:hover {
    background-color: #f8f9fa;
}

.table-row:last-child {
    border-bottom: none;
}

.table-cell {
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 14px;
}

.order-id strong {
    color: #000;
    font-weight: 600;
}

.product-info .product-name {
    font-weight: 500;
    color: #171717;
    margin-bottom: 5px;
}

.product-domain {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #666666;
}

.product-domain i {
    font-size: 12px;
}

.order-date .date-main {
    font-weight: 500;
    color: #171717;
}

.order-date .date-time {
    font-size: 12px;
    color: #666666;
}

.order-amount .amount-main {
    font-weight: 700;
    color: #000;
}

.order-amount .license-type {
    font-size: 12px;
    color: #666666;
}

.order-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.btn-sm {
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 500;
}

.btn-outline {
    background-color: #fff;
    color: #666666;
    border: 1px solid #E3E8EF;
}

.btn-outline:hover {
    background-color: #f8f9fa;
    color: #000;
    border-color: #000;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-top: 1px solid #E3E8EF;
    background-color: #f8f9fa;
}

.pagination-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background-color: #fff;
    border: 1px solid #E3E8EF;
    border-radius: 5px;
    color: #666666;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.pagination-btn:hover {
    background-color: #000;
    color: #fff;
    border-color: #000;
}

.pagination-info {
    font-size: 14px;
    color: #666666;
    font-weight: 500;
}

/* Order Detail Page */
.breadcrumb {
    background-color: #f8f9fa;
    border-bottom: 1px solid #E3E8EF;
    padding: 15px 0;
    margin-bottom: 0;
}
.panel-main .breadcrumb {
    padding-left: 15px;
    margin-bottom: 15px;
}

.breadcrumb a {
    color: #666666;
    font-size: 14px;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #000;
}

.breadcrumb .separator {
    margin: 0 10px;
    color: #666666;
}

.breadcrumb .current {
    color: #171717;
    font-weight: 500;
    font-size: 14px;
}

.page-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}
.panel-main .page-header {
        align-items: flex-start;
    flex-direction: column;
    gap: 10px;
}
.panel-main .page-header h1 { 
    margin-bottom: 0;
}
.panel-main .page-header.flexnot {
    flex-direction: unset;
}
.panel-main .page-header .header-left{
    text-align: left;
}

.panel-main .page-header.gp {
    gap: 20px;
    flex-direction: unset;
    align-items: center;
}
.panel-main .page-header.flexnot {
    flex-direction: unset;
    align-items: center;
}
.header-left h1 {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin: 0 0 5px 0;
}

.header-left p {
    font-size: 14px;
    color: #666666;
    margin: 0;
}

.status-badge.large {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
}

.order-detail-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.info-card {
    background-color: #fff;
    border: 1px solid #E3E8EF;
    border-radius: 5px;
    overflow: hidden;
}

.card-header {
    padding: 20px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #E3E8EF;
}

.card-header h2 {
    font-size: 18px;
    font-weight: 600;
    color: #171717;
    margin: 0;
}

.card-content {
    padding: 25px;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.info-item label {
    font-size: 13px;
    color: #666666;
    font-weight: 500;
}

.info-item value {
    font-size: 14px;
    color: #171717;
    font-weight: 500;
}

.info-item value.amount {
    font-size: 18px;
    font-weight: 700;
    color: #000;
}

.product-detail .product-name h3 {
    font-size: 20px;
    font-weight: 600;
    color: #171717;
    margin: 0 0 15px 0;
}

.product-description {
    margin-bottom: 20px;
}
.product-info-section .product-description {
    margin-bottom: 0;
}

.product-description p {
    font-size: 14px;
    color: #666666;
    line-height: 1.5;
    margin: 0;
}

.license-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid #E3E8EF;
}

.license-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.license-item label {
    font-size: 13px;
    color: #666666;
    font-weight: 500;
}

.license-item value {
    font-size: 14px;
    color: #171717;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Download & Payment Sections */
.download-section,
.payment-section {
    grid-column: 1 / -1;
}

.download-available,
.download-pending,
.payment-pending {
    display: flex;
    align-items: center;
    gap: 20px;
}

.download-icon,
.payment-icon {
    width: 60px;
    height: 60px;
    background-color: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 24px;
    flex-shrink: 0;
}

.download-info h3,
.payment-info h3 {
    font-size: 18px;
    font-weight: 600;
    color: #171717;
    margin: 0 0 8px 0;
}

.download-info p,
.payment-info p {
    font-size: 14px;
    color: #666666;
    margin: 0;
    line-height: 1.5;
}

.download-action,
.payment-action {
    margin-left: auto;
    flex-shrink: 0;
}

.btn-large {
    padding: 15px 25px;
    font-size: 16px;
    font-weight: 600;
}

/* Order Actions */
.order-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Orders */
@media (max-width: 768px) {
    .orders-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .orders-stats .stat-item {
        padding: 15px;
    }
    
    .table-header,
    .table-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .table-header {
        display: none;
    }
    
    .table-row {
        padding: 15px;
        border: 1px solid #E3E8EF;
        border-radius: 5px;
        margin-bottom: 15px;
        background-color: #fff;
    }
    
    .table-cell {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 8px 0;
        border-bottom: 1px solid #f8f9fa;
    }
    
    .table-cell:last-child {
        border-bottom: none;
    }
    
    .table-cell:before {
        content: attr(data-label);
        font-weight: 600;
        color: #666666;
        font-size: 13px;
    }
    
    .order-actions {
        flex-direction: column;
        gap: 8px;
    }
    
    .pagination {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .page-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .order-detail-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .license-info {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .download-available,
    .download-pending,
    .payment-pending {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .download-action,
    .payment-action {
        margin-left: 0;
    }
    
    .order-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .order-actions .btn {
        width:100%;
    }
}

@media (max-width: 480px) {
    .orders-stats .stat-item {
        padding: 12px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .orders-stats .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .table-row {
        padding: 12px;
    }
    
    .card-header {
        padding: 15px;
    }
    
    .card-content {
        padding: 15px;
    }
    
    .download-icon,
    .payment-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .btn-large {
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* Support Pages Styles */
.support-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.support-stats .stat-item {
    background-color: #fff;
    border: 1px solid #E3E8EF;
    border-radius: 5px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.2s ease;
}

.support-stats .stat-item:hover {
    border-color: #000;
    transform: translateY(-2px);
}

.support-stats .stat-icon {
    width: 45px;
    height: 45px;
    background-color: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 20px;
}

.support-stats .stat-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin: 0 0 5px 0;
}

.support-stats .stat-content p {
    font-size: 13px;
    color: #666666;
    margin: 0;
}

/* Support Tickets Table */
.tickets-section {
    background-color: #fff;
    border: 1px solid #E3E8EF;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 30px;
}

.tickets-table {
    width: 100%;
}

.tickets-table .table-header {
    display: grid;
  grid-template-columns: 80px 150px 120px 80px 120px 140px;
    gap: 15px;
    padding: 20px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #E3E8EF;
        justify-content: space-between;
}

.tickets-table .table-row {
    display: grid;
  grid-template-columns: 80px 150px 120px 80px 120px 140px;
    gap: 15px;
    padding: 20px;
    border-bottom: 1px solid #f8f9fa;
    transition: background-color 0.2s ease;
        justify-content: space-between;
}

.tickets-table .table-row:hover {
    background-color: #f8f9fa;
}

.tickets-table .table-row:last-child {
    border-bottom: none;
}

.ticket-id strong {
    color: #000;
    font-weight: 600;
}

.ticket-subject .subject-main {
    font-weight: 500;
    color: #171717;
    margin-bottom: 5px;
}

.ticket-subject .subject-preview {
    font-size: 12px;
    color: #666666;
    line-height: 1.3;
}

.category-badge {
    background-color: #f8f9fa;
    color: #666666;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    display: inline-block;
    text-align: center;
    max-width: 100px;
}

.ticket-date .date-main {
    font-weight: 500;
    color: #171717;
}

.ticket-date .date-time {
    font-size: 12px;
    color: #666666;
}

.ticket-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.ticket-actions {
    flex-direction: column !important;
}

/* Support Info */
.support-info {
    margin-top: 30px;
}

.support-info .info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.support-info .info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.support-info .info-icon {
    width: 48px;
    height: 48px;
    background-color: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 20px;
    flex-shrink: 0;
}

.support-info .info-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: #171717;
    margin: 0 0 8px 0;
}

.support-info .info-content p {
    font-size: 14px;
    color: #666666;
    margin: 0;
    line-height: 1.5;
}

/* Ticket Detail Page */
.ticket-detail-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.ticket-info-section {
    grid-column: 1 / -1;
}

.conversation-section {
    grid-column: 1 / -1;
}

.reply-section {
    grid-column: 1 / -1;
}

.closed-notice {
    grid-column: 1 / -1;
}

/* Conversation Styles */
.conversation {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.message {
    border: 1px solid #E3E8EF;
    border-radius: 5px;
    overflow: hidden;
}

.user-message {
    margin-left: 60px;
    margin-right: 0;
}
.user-message.other-user-message {
    margin-left: 0;
    margin-right: 60px;
}

.admin-message {
    margin-left: 60px;
    margin-right: 0;
    border-color: #000;
}

.message-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #E3E8EF;
}

.admin-message .message-header {
    background-color: #000;
    color: #fff;
}

.message-author {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
}

.message-author i {
    font-size: 16px;
}

.message-date {
    font-size: 12px;
    color: #666666;
}

.admin-message .message-date {
    color: #ccc;
}

.message-content {
    padding: 20px;
}

.message-content p {
    margin: 0;
    line-height: 1.6;
    color: #171717;
}

/* Reply Form */
.reply-form .form-group {
    margin-bottom: 20px;
}

.reply-form label {
    display: block;
    font-weight: 600;
    color: #171717;
    margin-bottom: 8px;
    font-size: 14px;
}

.reply-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #E3E8EF;
    border-radius: 5px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.2s ease;
    resize: vertical;
}

.reply-form textarea:focus {
    outline: none;
    border-color: #000;
}

.form-actions {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: 18px;
}

/* Closed Notice */
.closed-notice .notice-content {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 25px;
}

.notice-icon {
    width: 60px;
    height: 60px;
    background-color: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666666;
    font-size: 24px;
    flex-shrink: 0;
}

.notice-text h3 {
    font-size: 18px;
    font-weight: 600;
    color: #171717;
    margin: 0 0 8px 0;
}

.notice-text p {
    font-size: 14px;
    color: #666666;
    margin: 0;
    line-height: 1.5;
}

.notice-action {
    margin-left: auto;
    flex-shrink: 0;
}

/* Create Ticket Page */
.create-ticket-content {
    display: grid;
    grid-template-columns:  1fr;
    gap: 30px;
    align-items: flex-start;
}

.ticket-form-section {
    background-color: #fff;
}

.help-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.ticket-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.ticket-form .form-group {
    margin-bottom: 20px;
}

.ticket-form label {
    display: block;
    font-weight: 600;
    color: #171717;
    margin-bottom: 8px;
    font-size: 14px;
}

.ticket-form input,
.ticket-form select,
.ticket-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #E3E8EF;
    border-radius: 5px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.2s ease;
}

.ticket-form input:focus,
.ticket-form select:focus,
.ticket-form textarea:focus {
    outline: none;
    border-color: #000;
}

.ticket-form textarea {
    resize: vertical;
    min-height: 120px;
}

.ticket-form small {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    color: #666666;
}

/* Tips List */
.tips-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tip-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.tip-icon {
    width: 40px;
    height: 40px;
    background-color: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 18px;
    flex-shrink: 0;
}

.tip-content h3 {
    font-size: 15px;
    font-weight: 600;
    color: #171717;
    margin: 0 0 5px 0;
}

.tip-content p {
    font-size: 13px;
    color: #666666;
    margin: 0;
    line-height: 1.4;
}

/* Orders Help */
.orders-help {
    font-size: 14px;
    color: #666666;
    margin: 0 0 15px 0;
    line-height: 1.5;
}

.orders-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.orders-list .order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background-color: #f8f9fa;
    border-radius: 5px;
    border: 1px solid #E3E8EF;
}

.orders-list .order-info {
    font-size: 13px;
    color: #171717;
}

.orders-list .order-date {
    font-size: 12px;
    color: #666666;
}

/* Contact Options */
.contact-options {
    display: grid
;
    gap: 15px;
    grid-template-columns: repeat(2, 1fr);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-icon {
    width: 36px;
    height: 36px;
    background-color: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 16px;
    flex-shrink: 0;
}

.contact-content h3 {
    font-size: 14px;
    font-weight: 600;
    color: #171717;
    margin: 0 0 0 0;
}

.contact-content p {
    font-size: 13px;
    color: #666666;
    margin: 0;
}

.contact-content a {
    color: #000;
    text-decoration: underline;
}

.contact-content a:hover {
    color: #666666;
}

/* Active Support Products */
.support-help {
    font-size: 14px;
    color: #666666;
    margin: 0 0 20px 0;
    line-height: 1.5;
}

.support-products-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.support-product-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background-color: #f8f9fa;
    border: 1px solid #E3E8EF;
    border-radius: 5px;
    transition: all 0.2s ease;
}

.support-product-item:hover {
    border-color: #000;
    background-color: #fff;
}

.product-info {
    flex: 1;
}

.product-name {
    margin-bottom: 5px;
}

.product-name strong {
    font-size: 15px;
    color: #171717;
}

.product-order {
    font-size: 13px;
    color: #666666;
}

.support-status {
    text-align: right;
    flex-shrink: 0;
}

.support-remaining {
    margin-bottom: 3px;
}

.remaining-days {
    font-size: 20px;
    font-weight: 700;
    color: #000;
}

.remaining-label {
    font-size: 12px;
    color: #666666;
    margin-left: 3px;
}

.support-end-date {
    font-size: 11px;
    color: #666666;
}

/* Support Products Responsive */
@media (max-width: 768px) {
    .support-product-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 12px;
    }
    .panel-main .page-header {
        text-align: left;
    }
    .support-status {
        text-align: left;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .support-remaining {
        margin-bottom: 0;
    }
    
    .remaining-days {
        font-size: 18px;
    }
    
    .support-end-date {
        font-size: 10px;
    }
    .conversation-section , .closed-notice{
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .panel-main .page-header.gp{
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 0 15px;
    }
      .order-detail-content {
        padding: 0 15px;
    }
    .panel-main .page-header.gp .header-right{
        margin-left: 0;
    }
    .support-product-item {
        padding: 10px;
    }
    
    .product-name strong {
        font-size: 14px;
    }
    
    .product-order {
        font-size: 12px;
    }
    
    .remaining-days {
        font-size: 16px;
    }
    
    .remaining-label {
        font-size: 11px;
    }
    
    .support-end-date {
        font-size: 9px;
    }
}

/* Responsive Support Pages */
@media (max-width: 768px) {
    .header-right>* {
        margin-left: 0 !important;
    }
    .tickets-section {
        border: none;
    }
    .support-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .support-stats .stat-item {
        padding: 15px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .support-stats .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .tickets-table .table-header,
    .tickets-table .table-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .tickets-table .table-header {
        display: none;
    }
    
    .tickets-table .table-row {
        padding: 15px;
        border: 1px solid #E3E8EF;
        border-radius: 5px;
        margin-bottom: 15px;
        background-color: #fff;
    }
    
    .tickets-table .table-cell {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 8px 0;
        border-bottom: 1px solid #f8f9fa;
    }
    
    .tickets-table .table-cell:last-child {
        border-bottom: none;
    }
    
    .tickets-table .table-cell:before {
        content: attr(data-label);
        font-weight: 600;
        color: #666666;
        font-size: 13px;
    }
    
    .ticket-actions {
        flex-direction: row;
        gap: 8px;
        padding: 0 15px;
    }
    
    .support-info .info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .ticket-detail-content {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 0;
    }
    .panel-main .page-header , .account-stats, .profile-content .profile-sections , .ticket-form-section ,.help-section {
        padding: 0 15px;
    }
    .user-message {
        margin-right: 20px;
    }
    
    .admin-message {
        margin-left: 20px;
    }
    
    .message-header {
        padding: 12px 15px;
    }
    
    .message-content {
        padding: 15px;
    }
    
    .closed-notice .notice-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .notice-action {
        margin-left: 0;
    }
    
    .create-ticket-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .ticket-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 0;
    }
    
    .tips-list {
        gap: 15px;
    }
    
    .tip-item {
        gap: 12px;
    }
    
    .tip-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    
    .tip-content h3 {
        font-size: 14px;
    }
    
    .tip-content p {
        font-size: 12px;
    }
}
@media (max-width:640px){
              
 .contact-content .contact-info {
        grid-template-columns: repeat(1, 1fr);
        gap: 15px;
        margin-bottom: 0;
 }
 .contact-content {
    gap: 15px;
 }
}
@media (max-width: 480px) {

    
    .support-stats .stat-item {
        padding: 12px;
    }
    
    .tickets-table .table-row {
        padding: 12px;
    }
    
    .ticket-subject .subject-main {
        font-size: 14px;
    }
    
    .ticket-subject .subject-preview {
        font-size: 11px;
    }
    
    .user-message {
        margin-right: 10px;
    }
    
    .admin-message {
        margin-left: 10px;
    }
    
    .message-header {
        padding: 10px 12px;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .message-content {
        padding: 12px;
    }
    
    .closed-notice .notice-content {
        padding: 20px;
    }
    
    .notice-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .ticket-form input,
    .ticket-form select,
    .ticket-form textarea {
        padding: 10px 12px;
        font-size: 14px;
    }
    
    .form-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    
    .orders-list .order-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
        padding: 8px 12px;
    }
    
    .contact-item {
        gap: 10px;
    }
    
    .contact-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .contact-content h3 {
        font-size: 13px;
    }
    
    .contact-content p {
        font-size: 12px;
    }
}

/* Profile Page Styles */
.profile-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.profile-content .profile-sections {
    margin-bottom: 0;
}

/* Account Stats */
.account-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 0;
}

.account-stats .stat-item {
    background-color: #fff;
    border: 1px solid #E3E8EF;
    border-radius: 5px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.2s ease;
}

.account-stats .stat-item:hover {
    border-color: #000;
    transform: translateY(-2px);
}

.account-stats .stat-icon {
    width: 50px;
    height: 50px;
    background-color: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 24px;
    flex-shrink: 0;
}

.account-stats .stat-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin: 0 0 5px 0;
}

.account-stats .stat-content p {
    font-size: 14px;
    color: #666666;
    margin: 0;
}

/* Profile Sections */
.profile-sections {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.profile-section {
    background-color: #fff;
}

.profile-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.profile-form .form-group {
    margin-bottom: 0px;
}

.profile-form label {
    display: block;
    font-weight: 600;
    color: #171717;
    margin-bottom: 8px;
    font-size: 14px;
}

.profile-form input,
.profile-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #E3E8EF;
    border-radius: 5px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.2s ease;
}

.profile-form input:focus,
.profile-form textarea:focus {
    outline: none;
    border-color: #000;
}

.profile-form textarea {
    resize: vertical;
    min-height: 80px;
}

.profile-form small {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    color: #666666;
}

.password-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 0;
}

.password-form .form-row .form-group{
    margin-bottom: 0;
}

.password-form .form-group:not:last-child {
    margin-bottom: 20px;
}

.password-form label {
    display: block;
    font-weight: 600;
    color: #171717;
    margin-bottom: 8px;
    font-size: 14px;
}

.password-form input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #E3E8EF;
    border-radius: 5px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.2s ease;
}

.password-form input:focus {
    outline: none;
    border-color: #000;
}

.password-form small {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    color: #666666;
}

/* Account Actions */
.account-actions {
    background-color: #fff;
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.action-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    border: 1px solid #E3E8EF;
    border-radius: 5px;
    transition: all 0.2s ease;
}

.action-item:hover {
    border-color: #000;
    transform: translateY(-2px);
}

.action-item.danger {
    border-color: #dc3545;
}

.action-item.danger:hover {
    border-color: #c82333;
    background-color: #fff5f5;
}

.action-icon {
    width: 48px;
    height: 48px;
    background-color: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 20px;
    flex-shrink: 0;
}

.action-item.danger .action-icon {
    background-color: #fff5f5;
    color: #dc3545;
}

.action-content {
    flex: 1;
}

.action-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: #171717;
    margin: 0 0 8px 0;
}

.action-content p {
    font-size: 14px;
    color: #666666;
    margin: 0 0 15px 0;
    line-height: 1.4;
}

.btn-danger {
    background-color: #fff;
    color: #dc3545;
    border-color: #dc3545;
}

.btn-danger:hover {
    background-color: #dc3545;
    color: #fff;
    border-color: #dc3545;
}

/* Alert Styles */
.alert {
    padding: 15px 20px;
    border-radius: 5px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert i {
    font-size: 16px;
}

/* Profile Responsive */
@media (max-width: 768px) {
    .ticket-info-section {
        padding: 0 15px;
    }
    .account-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .account-stats .stat-item {
        padding: 20px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .account-stats .stat-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .account-stats .stat-content h3 {
        font-size: 20px;
    }
    
    .profile-sections {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .profile-form .form-row,
    .password-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .actions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .action-item {
        padding: 15px;
    }
    
    .action-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .action-content h3 {
        font-size: 15px;
    }
    
    .action-content p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .account-stats {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .account-stats .stat-item {
        padding: 15px;
    }
    
    .account-stats .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .account-stats .stat-content h3 {
        font-size: 18px;
    }
    
    .account-stats .stat-content p {
        font-size: 13px;
    }
    
    .profile-form input,
    .profile-form textarea,
    .password-form input {
        padding: 10px 12px;
        font-size: 14px;
    }
    
    .action-item {
        padding: 12px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .action-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    
    .action-content h3 {
        font-size: 14px;
    }
    
    .action-content p {
        font-size: 12px;
    }
    
    .btn-sm {
        padding: 8px 12px;
        font-size: 12px;
    }
}
/* Product Detail Responsive */
@media (max-width:1040px){
    .panel-layout {
        flex-direction: column;
    }
        .panel-sidebar {
        position: fixed;
        top: 70px;
        left: -280px;
        width: 280px;
        height: calc(100vh - 70px);
        z-index: 1000;
        transition: left 0.3s ease;
    }
        .panel-mobile-menu {
            display: block !important;
        }
}
@media (max-width:992px){
    .mobile-menu-panel .notification-icon {
        display: none;
    }
    .panel-main .page-header.flexnot .header-right {
        margin-left: 0;
    }
       .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
        .product-gallery {
        position: static;
    }
        .cart-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
        
    .panel-layout {
        flex-direction: column;
    }
        .dashboard-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .panel-main {
        width: 100%;
    }
    
}

@media (max-width: 480px) {
    .product-detail {
        padding: 20px 0;
    }
    
    .product-title {
        font-size: 20px;
    }
    
    .pricing-section {
        padding: 15px;
    }
    
    .license-option label {
        padding: 15px;
    }
    
    .option-title {
        font-size: 14px;
    }
    
    .option-price {
        font-size: 18px;
    }
    
    .option-description {
        font-size: 13px;
    }
}
/* Customer Panel Responsive */
@media (max-width: 768px) {

        .product-detail {
        padding: 30px 0;
        padding-top: 0;
    }
    .dashboard-stats , .dashboard-content{
        padding: 0 15px;
    }
    .quick-actions {
        padding: 15px;
                margin: 0 15px;
    }
.main-image img {
    height: auto;
}
    
    .product-title {
        font-size: 24px;
    }
    
    .demo-buttons {
        flex-direction: column;
    }
    
    .demo-buttons .btn {
        flex: none;
    }
    
    .pricing-section {
        padding: 20px;
    }
    
    .option-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .feature-item {
        padding: 12px;
    }
    
    .breadcrumb {
        padding: 10px 0;
    }
    
    .breadcrumb a,
    .breadcrumb .current {
        font-size: 13px;
    }
    
    .breadcrumb .separator {
        margin: 0 8px;
    }
    .panel-nav {
        display: none;
    }
    
    .welcome-section h1 {
        font-size: 24px;
    }
    
    .welcome-section p {
        font-size: 14px;
    }
    
    .quick-stats {
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .stat-label {
        font-size: 13px;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .card-header {
        padding: 15px;
    }
    
    .card-content {
        padding: 15px;
    }
    
    .order-item,
    .ticket-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 10px;
    }
    
    .order-status,
    .ticket-status {
        margin: 0;
    }
    
    .quick-actions {
        gap: 15px;
    }
    
    .action-btn {
        min-width: 100px;
        padding: 15px;
    }
    
    .action-btn i {
        font-size: 20px;
    }
    
    .action-btn span {
        font-size: 12px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .footer-links {
        gap: 15px;
    }
}
@media (max-width:576px){
    .product-description {
        font-size: 14px;
    }
    header .header-right {
        gap: 15px;
    }
}
@media (max-width: 480px) {
    .tickets-section {
        padding: 0 15px;
        border: none;
    }
    .support-info {
        padding: 0 15px;
    }
    .logo img {
        max-height: 40px;
    }
    .panel-main {
        padding: 15px 0;
    }
    .panel-main .page-header.flexnot {
        padding: 0 15px;
    }
    .panel-main .page-header.flexnot .header-right .btn{
        margin-left: 0 !important;
    }
    .support-stats {
        padding: 0 15px;
    }
    
    .welcome-section {
        margin-bottom: 20px;
    }
    
    .welcome-section h1 {
        font-size: 20px;
    }
    
    .welcome-section p {
        font-size: 13px;
    }
    
    .quick-stats {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 25px;
    }
    
    .stat-item {
        padding: 15px;
        background-color: #f8f9fa;
        border: 1px solid #E3E8EF;
        border-radius: 5px;
    }
    
    .stat-number {
        font-size: 20px;
    }
    
    .dashboard-grid {
        gap: 15px;
        margin-bottom: 20px;
    }
    
    .card-header {
        padding: 12px;
    }
    
    .card-header h2 {
        font-size: 16px;
    }
    
    .view-all {
        font-size: 13px;
    }
    
    .card-content {
        padding: 12px;
    }
    
    .order-item,
    .ticket-item {
        padding: 8px;
    }
    
    .order-info strong,
    .ticket-info strong {
        font-size: 13px;
    }
    
    .order-date,
    .ticket-date {
        font-size: 11px;
    }
    
    .order-status span,
    .ticket-status span {
        font-size: 10px;
        padding: 2px 6px;
    }
    
    .order-amount {
        font-size: 13px;
    }
    
    .empty-state {
        padding: 20px 15px;
    }
    
    .empty-state i {
        font-size: 32px;
    }
    
    .empty-state p {
        font-size: 13px;
    }
    
    .quick-actions {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .action-btn {
        width: 100%;
        max-width: 200px;
        padding: 12px;
    }
    
    .action-btn i {
        font-size: 18px;
    }
    
    .action-btn span {
        font-size: 11px;
    }
}

/* Print Styles */
@media print {
    header,
    footer,
    .btn,
    #cookie-consent-banner,
    .demo-buttons,
    .product-form,
    .contact-form,
    .search-form-large,
    .search-form-inline,
    .cart-actions,
    .checkout-actions,
    .auth-form,
    .panel-header,
    .panel-sidebar,
    .panel-footer {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .hero-section,
    .categories-section,
    .products-section,
    .product-detail,
    .categories-page,
    .contact-page,
    .search-page,
    .cart-page,
    .auth-page {
        padding: 20px 0;
    }
    
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .categories-page .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .search-results .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .cart-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .auth-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .panel-layout {
        flex-direction: column;
    }
    
    .panel-main {
        width: 100%;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}
