/**
 * Swiper 4.1.6
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2018 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: February 11, 2018
 */



/* Start By Kartik */

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

        body {
            font-family: Arial, sans-serif;
            background: #f5f5f5;
            min-height: 100vh;
            padding: 20px;
        }

        /* Demo website content */
        .main-content {
            max-width: 1200px;
            margin: 0 auto;
            background: white;
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .main-content h1 {
            color: #333;
            margin-bottom: 20px;
        }

        .main-content p {
            color: #666;
            line-height: 1.6;
            margin-bottom: 15px;
        }

        /* Corner Advertisement */
        .corner-ad {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 320px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
            overflow: hidden;
            z-index: 1000;
            transform: translateX(100%);
            transition: transform 0.4s ease-out;
            border: 1px solid #e0e0e0;
        }

        .corner-ad.show {
            transform: translateX(0);
        }

        .corner-ad.minimized {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            cursor: pointer;
        }

        .corner-ad.minimized .ad-content {
            display: none;
        }

        .corner-ad.minimized .ad-minimize-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 100%;
            background: #ff6b35;
            color: white;
            font-size: 24px;
            font-weight: bold;
        }

        .ad-header {
            background: linear-gradient(135deg, #ff6b35, #f7931e);
            padding: 8px 12px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .ad-header .logo {
            display: flex;
            align-items: center;
            gap: 6px;
            color: white;
            font-size: 12px;
            font-weight: bold;
        }

        .ad-header .logo::before {
            content: "⚙️";
            font-size: 16px;
        }

        .ad-controls {
            display: flex;
            gap: 8px;
        }

        .ad-btn {
            background: none;
            border: none;
            color: white;
            cursor: pointer;
            font-size: 16px;
            padding: 2px;
            border-radius: 3px;
            transition: background 0.2s;
            opacity: 0.8;
        }

        .ad-btn:hover {
            background: rgba(255, 255, 255, 0.2);
            opacity: 1;
        }

        .ad-content {
            padding: 16px;
        }

        .ad-title {
            color: #333;
            font-size: 16px;
            font-weight: bold;
            margin-bottom: 8px;
            text-align: center;
        }

        .ad-subtitle {
            color: #ff6b35;
            font-size: 18px;
            font-weight: bold;
            text-align: center;
            margin-bottom: 6px;
        }

        .ad-description {
            color: #666;
            font-size: 12px;
            text-align: center;
            margin-bottom: 12px;
            line-height: 1.4;
        }

        .ad-highlight {
            background: #fff3f0;
            border: 1px solid #ffdddd;
            border-radius: 6px;
            padding: 8px;
            margin-bottom: 12px;
            text-align: center;
        }

        .ad-highlight-title {
            color: #e74c3c;
            font-weight: bold;
            font-size: 13px;
        }

        .ad-highlight-date {
            color: #666;
            font-size: 11px;
        }

        .ad-offers {
            display: flex;
            gap: 8px;
            margin-bottom: 12px;
        }

        .ad-offer {
            flex: 1;
            background: #f8f9fa;
            border: 1px solid #e9ecef;
            border-radius: 6px;
            padding: 6px;
            text-align: center;
        }

        .ad-offer-title {
            font-size: 10px;
            color: #666;
            text-transform: uppercase;
        }

        .ad-offer-value {
            font-size: 11px;
            font-weight: bold;
            color: #e74c3c;
        }

        .ad-contact {
            display: flex;
            gap: 8px;
            margin-bottom: 12px;
        }

        .ad-contact-item {
            flex: 1;
            background: #f8f9fa;
            border: 1px solid #e9ecef;
            border-radius: 4px;
            padding: 4px;
            text-align: center;
        }

        .ad-contact-location {
            font-size: 9px;
            color: #666;
            font-weight: bold;
        }

        .ad-contact-phone {
            font-size: 10px;
            color: #333;
        }

        .ad-cta {
            background: #ff6b35;
            color: white;
            border: none;
            padding: 10px 16px;
            border-radius: 6px;
            width: 100%;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.2s;
            font-size: 13px;
        }

        .ad-cta:hover {
            background: #e55a2e;
        }

        .ad-minimize-icon {
            display: none;
        }

        /* Responsive design */
        @media (max-width: 768px) {
            .corner-ad {
                width: 280px;
                bottom: 15px;
                right: 15px;
            }
        }

        @media (max-width: 480px) {
            .corner-ad {
                width: calc(100vw - 30px);
                right: 15px;
                left: 15px;
            }
        }

/* End By Kartik */




